]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/sctp/socket.c
sctp: Fix break indentation in sctp_ioctl().
[net-next-2.6.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
31 * along with GNU CC; see the file COPYING. If not, write to
32 * the Free Software Foundation, 59 Temple Place - Suite 330,
33 * Boston, MA 02111-1307, USA.
34 *
35 * Please send any bug reports or fixes you make to the
36 * email address(es):
37 * lksctp developers <lksctp-developers@lists.sourceforge.net>
38 *
39 * Or submit a bug report through the following website:
40 * http://www.sf.net/projects/lksctp
41 *
42 * Written or modified by:
43 * La Monte H.P. Yarroll <piggy@acm.org>
44 * Narasimha Budihal <narsi@refcode.org>
45 * Karl Knutson <karl@athena.chicago.il.us>
46 * Jon Grimm <jgrimm@us.ibm.com>
47 * Xingang Guo <xingang.guo@intel.com>
48 * Daisy Chang <daisyc@us.ibm.com>
49 * Sridhar Samudrala <samudrala@us.ibm.com>
50 * Inaky Perez-Gonzalez <inaky.gonzalez@intel.com>
51 * Ardelle Fan <ardelle.fan@intel.com>
52 * Ryan Layer <rmlayer@us.ibm.com>
53 * Anup Pemmaiah <pemmaiah@cc.usu.edu>
54 * Kevin Gao <kevin.gao@intel.com>
55 *
56 * Any bugs reported given to us we will try to fix... any fixes shared will
57 * be incorporated into the next SCTP release.
58 */
59
145ce502
JP
60#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
61
1da177e4
LT
62#include <linux/types.h>
63#include <linux/kernel.h>
64#include <linux/wait.h>
65#include <linux/time.h>
66#include <linux/ip.h>
4fc268d2 67#include <linux/capability.h>
1da177e4
LT
68#include <linux/fcntl.h>
69#include <linux/poll.h>
70#include <linux/init.h>
71#include <linux/crypto.h>
5a0e3ad6 72#include <linux/slab.h>
1da177e4
LT
73
74#include <net/ip.h>
75#include <net/icmp.h>
76#include <net/route.h>
77#include <net/ipv6.h>
78#include <net/inet_common.h>
79
80#include <linux/socket.h> /* for sa_family_t */
81#include <net/sock.h>
82#include <net/sctp/sctp.h>
83#include <net/sctp/sm.h>
84
85/* WARNING: Please do not remove the SCTP_STATIC attribute to
86 * any of the functions below as they are used to export functions
87 * used by a project regression testsuite.
88 */
89
90/* Forward declarations for internal helper functions. */
91static int sctp_writeable(struct sock *sk);
92static void sctp_wfree(struct sk_buff *skb);
93static int sctp_wait_for_sndbuf(struct sctp_association *, long *timeo_p,
94 size_t msg_len);
95static int sctp_wait_for_packet(struct sock * sk, int *err, long *timeo_p);
96static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
97static int sctp_wait_for_accept(struct sock *sk, long timeo);
98static void sctp_wait_for_close(struct sock *sk, long timeo);
99static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
100 union sctp_addr *addr, int len);
101static int sctp_bindx_add(struct sock *, struct sockaddr *, int);
102static int sctp_bindx_rem(struct sock *, struct sockaddr *, int);
103static int sctp_send_asconf_add_ip(struct sock *, struct sockaddr *, int);
104static int sctp_send_asconf_del_ip(struct sock *, struct sockaddr *, int);
105static int sctp_send_asconf(struct sctp_association *asoc,
106 struct sctp_chunk *chunk);
107static int sctp_do_bind(struct sock *, union sctp_addr *, int);
108static int sctp_autobind(struct sock *sk);
109static void sctp_sock_migrate(struct sock *, struct sock *,
110 struct sctp_association *, sctp_socket_type_t);
111static char *sctp_hmac_alg = SCTP_COOKIE_HMAC_ALG;
112
4d93df0a
NH
113extern struct kmem_cache *sctp_bucket_cachep;
114extern int sysctl_sctp_mem[3];
115extern int sysctl_sctp_rmem[3];
116extern int sysctl_sctp_wmem[3];
117
b6fa1a4d
AB
118static int sctp_memory_pressure;
119static atomic_t sctp_memory_allocated;
1748376b 120struct percpu_counter sctp_sockets_allocated;
4d93df0a 121
5c52ba17 122static void sctp_enter_memory_pressure(struct sock *sk)
4d93df0a
NH
123{
124 sctp_memory_pressure = 1;
125}
126
127
1da177e4
LT
128/* Get the sndbuf space available at the time on the association. */
129static inline int sctp_wspace(struct sctp_association *asoc)
130{
4d93df0a 131 int amt;
1da177e4 132
4d93df0a
NH
133 if (asoc->ep->sndbuf_policy)
134 amt = asoc->sndbuf_used;
135 else
31e6d363 136 amt = sk_wmem_alloc_get(asoc->base.sk);
4d93df0a
NH
137
138 if (amt >= asoc->base.sk->sk_sndbuf) {
139 if (asoc->base.sk->sk_userlocks & SOCK_SNDBUF_LOCK)
140 amt = 0;
141 else {
142 amt = sk_stream_wspace(asoc->base.sk);
143 if (amt < 0)
144 amt = 0;
145 }
4eb701df 146 } else {
4d93df0a 147 amt = asoc->base.sk->sk_sndbuf - amt;
4eb701df 148 }
1da177e4
LT
149 return amt;
150}
151
152/* Increment the used sndbuf space count of the corresponding association by
153 * the size of the outgoing data chunk.
154 * Also, set the skb destructor for sndbuf accounting later.
155 *
156 * Since it is always 1-1 between chunk and skb, and also a new skb is always
157 * allocated for chunk bundling in sctp_packet_transmit(), we can use the
158 * destructor in the data chunk skb for the purpose of the sndbuf space
159 * tracking.
160 */
161static inline void sctp_set_owner_w(struct sctp_chunk *chunk)
162{
163 struct sctp_association *asoc = chunk->asoc;
164 struct sock *sk = asoc->base.sk;
165
166 /* The sndbuf space is tracked per association. */
167 sctp_association_hold(asoc);
168
4eb701df
NH
169 skb_set_owner_w(chunk->skb, sk);
170
1da177e4
LT
171 chunk->skb->destructor = sctp_wfree;
172 /* Save the chunk pointer in skb for sctp_wfree to use later. */
173 *((struct sctp_chunk **)(chunk->skb->cb)) = chunk;
174
4eb701df
NH
175 asoc->sndbuf_used += SCTP_DATA_SNDSIZE(chunk) +
176 sizeof(struct sk_buff) +
177 sizeof(struct sctp_chunk);
178
4eb701df 179 atomic_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
3ab224be
HA
180 sk->sk_wmem_queued += chunk->skb->truesize;
181 sk_mem_charge(sk, chunk->skb->truesize);
1da177e4
LT
182}
183
184/* Verify that this is a valid address. */
185static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr,
186 int len)
187{
188 struct sctp_af *af;
189
190 /* Verify basic sockaddr. */
191 af = sctp_sockaddr_af(sctp_sk(sk), addr, len);
192 if (!af)
193 return -EINVAL;
194
195 /* Is this a valid SCTP address? */
5636bef7 196 if (!af->addr_valid(addr, sctp_sk(sk), NULL))
1da177e4
LT
197 return -EINVAL;
198
199 if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr)))
200 return -EINVAL;
201
202 return 0;
203}
204
205/* Look up the association by its id. If this is not a UDP-style
206 * socket, the ID field is always ignored.
207 */
208struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
209{
210 struct sctp_association *asoc = NULL;
211
212 /* If this is not a UDP-style socket, assoc id should be ignored. */
213 if (!sctp_style(sk, UDP)) {
214 /* Return NULL if the socket state is not ESTABLISHED. It
215 * could be a TCP-style listening socket or a socket which
216 * hasn't yet called connect() to establish an association.
217 */
218 if (!sctp_sstate(sk, ESTABLISHED))
219 return NULL;
220
221 /* Get the first and the only association from the list. */
222 if (!list_empty(&sctp_sk(sk)->ep->asocs))
223 asoc = list_entry(sctp_sk(sk)->ep->asocs.next,
224 struct sctp_association, asocs);
225 return asoc;
226 }
227
228 /* Otherwise this is a UDP-style socket. */
229 if (!id || (id == (sctp_assoc_t)-1))
230 return NULL;
231
232 spin_lock_bh(&sctp_assocs_id_lock);
233 asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id);
234 spin_unlock_bh(&sctp_assocs_id_lock);
235
236 if (!asoc || (asoc->base.sk != sk) || asoc->base.dead)
237 return NULL;
238
239 return asoc;
240}
241
242/* Look up the transport from an address and an assoc id. If both address and
243 * id are specified, the associations matching the address and the id should be
244 * the same.
245 */
246static struct sctp_transport *sctp_addr_id2transport(struct sock *sk,
247 struct sockaddr_storage *addr,
248 sctp_assoc_t id)
249{
250 struct sctp_association *addr_asoc = NULL, *id_asoc = NULL;
251 struct sctp_transport *transport;
252 union sctp_addr *laddr = (union sctp_addr *)addr;
253
1da177e4 254 addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
cd4ff034 255 laddr,
1da177e4 256 &transport);
1da177e4
LT
257
258 if (!addr_asoc)
259 return NULL;
260
261 id_asoc = sctp_id2assoc(sk, id);
262 if (id_asoc && (id_asoc != addr_asoc))
263 return NULL;
264
265 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk),
266 (union sctp_addr *)addr);
267
268 return transport;
269}
270
271/* API 3.1.2 bind() - UDP Style Syntax
272 * The syntax of bind() is,
273 *
274 * ret = bind(int sd, struct sockaddr *addr, int addrlen);
275 *
276 * sd - the socket descriptor returned by socket().
277 * addr - the address structure (struct sockaddr_in or struct
278 * sockaddr_in6 [RFC 2553]),
279 * addr_len - the size of the address structure.
280 */
3f7a87d2 281SCTP_STATIC int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len)
1da177e4
LT
282{
283 int retval = 0;
284
285 sctp_lock_sock(sk);
286
3f7a87d2
FF
287 SCTP_DEBUG_PRINTK("sctp_bind(sk: %p, addr: %p, addr_len: %d)\n",
288 sk, addr, addr_len);
1da177e4
LT
289
290 /* Disallow binding twice. */
291 if (!sctp_sk(sk)->ep->base.bind_addr.port)
3f7a87d2 292 retval = sctp_do_bind(sk, (union sctp_addr *)addr,
1da177e4
LT
293 addr_len);
294 else
295 retval = -EINVAL;
296
297 sctp_release_sock(sk);
298
299 return retval;
300}
301
302static long sctp_get_port_local(struct sock *, union sctp_addr *);
303
304/* Verify this is a valid sockaddr. */
305static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
306 union sctp_addr *addr, int len)
307{
308 struct sctp_af *af;
309
310 /* Check minimum size. */
311 if (len < sizeof (struct sockaddr))
312 return NULL;
313
7dab83de
VY
314 /* V4 mapped address are really of AF_INET family */
315 if (addr->sa.sa_family == AF_INET6 &&
316 ipv6_addr_v4mapped(&addr->v6.sin6_addr)) {
317 if (!opt->pf->af_supported(AF_INET, opt))
318 return NULL;
319 } else {
320 /* Does this PF support this AF? */
321 if (!opt->pf->af_supported(addr->sa.sa_family, opt))
322 return NULL;
323 }
1da177e4
LT
324
325 /* If we get this far, af is valid. */
326 af = sctp_get_af_specific(addr->sa.sa_family);
327
328 if (len < af->sockaddr_len)
329 return NULL;
330
331 return af;
332}
333
334/* Bind a local address either to an endpoint or to an association. */
335SCTP_STATIC int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
336{
337 struct sctp_sock *sp = sctp_sk(sk);
338 struct sctp_endpoint *ep = sp->ep;
339 struct sctp_bind_addr *bp = &ep->base.bind_addr;
340 struct sctp_af *af;
341 unsigned short snum;
342 int ret = 0;
343
1da177e4
LT
344 /* Common sockaddr verification. */
345 af = sctp_sockaddr_af(sp, addr, len);
3f7a87d2
FF
346 if (!af) {
347 SCTP_DEBUG_PRINTK("sctp_do_bind(sk: %p, newaddr: %p, len: %d) EINVAL\n",
348 sk, addr, len);
1da177e4 349 return -EINVAL;
3f7a87d2
FF
350 }
351
352 snum = ntohs(addr->v4.sin_port);
353
354 SCTP_DEBUG_PRINTK_IPADDR("sctp_do_bind(sk: %p, new addr: ",
355 ", port: %d, new port: %d, len: %d)\n",
356 sk,
357 addr,
358 bp->port, snum,
359 len);
1da177e4
LT
360
361 /* PF specific bind() address verification. */
362 if (!sp->pf->bind_verify(sp, addr))
363 return -EADDRNOTAVAIL;
364
8b358056
VY
365 /* We must either be unbound, or bind to the same port.
366 * It's OK to allow 0 ports if we are already bound.
367 * We'll just inhert an already bound port in this case
368 */
369 if (bp->port) {
370 if (!snum)
371 snum = bp->port;
372 else if (snum != bp->port) {
373 SCTP_DEBUG_PRINTK("sctp_do_bind:"
1da177e4
LT
374 " New port %d does not match existing port "
375 "%d.\n", snum, bp->port);
8b358056
VY
376 return -EINVAL;
377 }
1da177e4
LT
378 }
379
380 if (snum && snum < PROT_SOCK && !capable(CAP_NET_BIND_SERVICE))
381 return -EACCES;
382
4e54064e
VY
383 /* See if the address matches any of the addresses we may have
384 * already bound before checking against other endpoints.
385 */
386 if (sctp_bind_addr_match(bp, addr, sp))
387 return -EINVAL;
388
1da177e4
LT
389 /* Make sure we are allowed to bind here.
390 * The function sctp_get_port_local() does duplicate address
391 * detection.
392 */
2772b495 393 addr->v4.sin_port = htons(snum);
1da177e4 394 if ((ret = sctp_get_port_local(sk, addr))) {
4e54064e 395 return -EADDRINUSE;
1da177e4
LT
396 }
397
398 /* Refresh ephemeral port. */
399 if (!bp->port)
c720c7e8 400 bp->port = inet_sk(sk)->inet_num;
1da177e4 401
559cf710
VY
402 /* Add the address to the bind address list.
403 * Use GFP_ATOMIC since BHs will be disabled.
404 */
f57d96b2 405 ret = sctp_add_bind_addr(bp, addr, SCTP_ADDR_SRC, GFP_ATOMIC);
1da177e4
LT
406
407 /* Copy back into socket for getsockname() use. */
408 if (!ret) {
c720c7e8 409 inet_sk(sk)->inet_sport = htons(inet_sk(sk)->inet_num);
1da177e4
LT
410 af->to_sk_saddr(addr, sk);
411 }
412
413 return ret;
414}
415
416 /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
417 *
d808ad9a 418 * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
1da177e4 419 * at any one time. If a sender, after sending an ASCONF chunk, decides
d808ad9a 420 * it needs to transfer another ASCONF Chunk, it MUST wait until the
1da177e4 421 * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
d808ad9a
YH
422 * subsequent ASCONF. Note this restriction binds each side, so at any
423 * time two ASCONF may be in-transit on any given association (one sent
1da177e4
LT
424 * from each endpoint).
425 */
426static int sctp_send_asconf(struct sctp_association *asoc,
427 struct sctp_chunk *chunk)
428{
429 int retval = 0;
430
431 /* If there is an outstanding ASCONF chunk, queue it for later
432 * transmission.
d808ad9a 433 */
1da177e4 434 if (asoc->addip_last_asconf) {
79af02c2 435 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
d808ad9a 436 goto out;
1da177e4
LT
437 }
438
439 /* Hold the chunk until an ASCONF_ACK is received. */
440 sctp_chunk_hold(chunk);
441 retval = sctp_primitive_ASCONF(asoc, chunk);
442 if (retval)
443 sctp_chunk_free(chunk);
444 else
445 asoc->addip_last_asconf = chunk;
446
447out:
448 return retval;
449}
450
451/* Add a list of addresses as bind addresses to local endpoint or
452 * association.
453 *
454 * Basically run through each address specified in the addrs/addrcnt
455 * array/length pair, determine if it is IPv6 or IPv4 and call
456 * sctp_do_bind() on it.
457 *
458 * If any of them fails, then the operation will be reversed and the
459 * ones that were added will be removed.
460 *
461 * Only sctp_setsockopt_bindx() is supposed to call this function.
462 */
04675210 463static int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt)
1da177e4
LT
464{
465 int cnt;
466 int retval = 0;
467 void *addr_buf;
468 struct sockaddr *sa_addr;
469 struct sctp_af *af;
470
471 SCTP_DEBUG_PRINTK("sctp_bindx_add (sk: %p, addrs: %p, addrcnt: %d)\n",
472 sk, addrs, addrcnt);
473
474 addr_buf = addrs;
475 for (cnt = 0; cnt < addrcnt; cnt++) {
476 /* The list may contain either IPv4 or IPv6 address;
477 * determine the address length for walking thru the list.
478 */
479 sa_addr = (struct sockaddr *)addr_buf;
480 af = sctp_get_af_specific(sa_addr->sa_family);
481 if (!af) {
482 retval = -EINVAL;
483 goto err_bindx_add;
484 }
485
d808ad9a 486 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
1da177e4
LT
487 af->sockaddr_len);
488
489 addr_buf += af->sockaddr_len;
490
491err_bindx_add:
492 if (retval < 0) {
493 /* Failed. Cleanup the ones that have been added */
494 if (cnt > 0)
495 sctp_bindx_rem(sk, addrs, cnt);
496 return retval;
497 }
498 }
499
500 return retval;
501}
502
503/* Send an ASCONF chunk with Add IP address parameters to all the peers of the
504 * associations that are part of the endpoint indicating that a list of local
505 * addresses are added to the endpoint.
506 *
d808ad9a 507 * If any of the addresses is already in the bind address list of the
1da177e4
LT
508 * association, we do not send the chunk for that association. But it will not
509 * affect other associations.
510 *
511 * Only sctp_setsockopt_bindx() is supposed to call this function.
512 */
d808ad9a 513static int sctp_send_asconf_add_ip(struct sock *sk,
1da177e4
LT
514 struct sockaddr *addrs,
515 int addrcnt)
516{
517 struct sctp_sock *sp;
518 struct sctp_endpoint *ep;
519 struct sctp_association *asoc;
520 struct sctp_bind_addr *bp;
521 struct sctp_chunk *chunk;
522 struct sctp_sockaddr_entry *laddr;
523 union sctp_addr *addr;
dc022a98 524 union sctp_addr saveaddr;
1da177e4
LT
525 void *addr_buf;
526 struct sctp_af *af;
1da177e4
LT
527 struct list_head *p;
528 int i;
529 int retval = 0;
530
531 if (!sctp_addip_enable)
532 return retval;
533
534 sp = sctp_sk(sk);
535 ep = sp->ep;
536
537 SCTP_DEBUG_PRINTK("%s: (sk: %p, addrs: %p, addrcnt: %d)\n",
0dc47877 538 __func__, sk, addrs, addrcnt);
1da177e4 539
9dbc15f0 540 list_for_each_entry(asoc, &ep->asocs, asocs) {
1da177e4
LT
541
542 if (!asoc->peer.asconf_capable)
543 continue;
544
545 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_ADD_IP)
546 continue;
547
548 if (!sctp_state(asoc, ESTABLISHED))
549 continue;
550
551 /* Check if any address in the packed array of addresses is
d808ad9a
YH
552 * in the bind address list of the association. If so,
553 * do not send the asconf chunk to its peer, but continue with
1da177e4
LT
554 * other associations.
555 */
556 addr_buf = addrs;
557 for (i = 0; i < addrcnt; i++) {
558 addr = (union sctp_addr *)addr_buf;
559 af = sctp_get_af_specific(addr->v4.sin_family);
560 if (!af) {
561 retval = -EINVAL;
562 goto out;
563 }
564
565 if (sctp_assoc_lookup_laddr(asoc, addr))
566 break;
567
568 addr_buf += af->sockaddr_len;
569 }
570 if (i < addrcnt)
571 continue;
572
559cf710
VY
573 /* Use the first valid address in bind addr list of
574 * association as Address Parameter of ASCONF CHUNK.
1da177e4 575 */
1da177e4
LT
576 bp = &asoc->base.bind_addr;
577 p = bp->address_list.next;
578 laddr = list_entry(p, struct sctp_sockaddr_entry, list);
5ae955cf 579 chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs,
1da177e4
LT
580 addrcnt, SCTP_PARAM_ADD_IP);
581 if (!chunk) {
582 retval = -ENOMEM;
583 goto out;
584 }
585
586 retval = sctp_send_asconf(asoc, chunk);
dc022a98
SS
587 if (retval)
588 goto out;
1da177e4 589
dc022a98
SS
590 /* Add the new addresses to the bind address list with
591 * use_as_src set to 0.
1da177e4 592 */
dc022a98
SS
593 addr_buf = addrs;
594 for (i = 0; i < addrcnt; i++) {
595 addr = (union sctp_addr *)addr_buf;
596 af = sctp_get_af_specific(addr->v4.sin_family);
597 memcpy(&saveaddr, addr, af->sockaddr_len);
f57d96b2
VY
598 retval = sctp_add_bind_addr(bp, &saveaddr,
599 SCTP_ADDR_NEW, GFP_ATOMIC);
dc022a98
SS
600 addr_buf += af->sockaddr_len;
601 }
1da177e4
LT
602 }
603
604out:
605 return retval;
606}
607
608/* Remove a list of addresses from bind addresses list. Do not remove the
609 * last address.
610 *
611 * Basically run through each address specified in the addrs/addrcnt
612 * array/length pair, determine if it is IPv6 or IPv4 and call
613 * sctp_del_bind() on it.
614 *
615 * If any of them fails, then the operation will be reversed and the
616 * ones that were removed will be added back.
617 *
618 * At least one address has to be left; if only one address is
619 * available, the operation will return -EBUSY.
620 *
621 * Only sctp_setsockopt_bindx() is supposed to call this function.
622 */
04675210 623static int sctp_bindx_rem(struct sock *sk, struct sockaddr *addrs, int addrcnt)
1da177e4
LT
624{
625 struct sctp_sock *sp = sctp_sk(sk);
626 struct sctp_endpoint *ep = sp->ep;
627 int cnt;
628 struct sctp_bind_addr *bp = &ep->base.bind_addr;
629 int retval = 0;
1da177e4 630 void *addr_buf;
c9a08505 631 union sctp_addr *sa_addr;
1da177e4
LT
632 struct sctp_af *af;
633
634 SCTP_DEBUG_PRINTK("sctp_bindx_rem (sk: %p, addrs: %p, addrcnt: %d)\n",
635 sk, addrs, addrcnt);
636
637 addr_buf = addrs;
638 for (cnt = 0; cnt < addrcnt; cnt++) {
639 /* If the bind address list is empty or if there is only one
640 * bind address, there is nothing more to be removed (we need
641 * at least one address here).
642 */
643 if (list_empty(&bp->address_list) ||
644 (sctp_list_single_entry(&bp->address_list))) {
645 retval = -EBUSY;
646 goto err_bindx_rem;
647 }
648
c9a08505
AV
649 sa_addr = (union sctp_addr *)addr_buf;
650 af = sctp_get_af_specific(sa_addr->sa.sa_family);
1da177e4
LT
651 if (!af) {
652 retval = -EINVAL;
653 goto err_bindx_rem;
654 }
0304ff8a
PG
655
656 if (!af->addr_valid(sa_addr, sp, NULL)) {
657 retval = -EADDRNOTAVAIL;
658 goto err_bindx_rem;
659 }
660
c9a08505 661 if (sa_addr->v4.sin_port != htons(bp->port)) {
1da177e4
LT
662 retval = -EINVAL;
663 goto err_bindx_rem;
664 }
665
666 /* FIXME - There is probably a need to check if sk->sk_saddr and
667 * sk->sk_rcv_addr are currently set to one of the addresses to
668 * be removed. This is something which needs to be looked into
669 * when we are fixing the outstanding issues with multi-homing
670 * socket routing and failover schemes. Refer to comments in
671 * sctp_do_bind(). -daisy
672 */
0ed90fb0 673 retval = sctp_del_bind_addr(bp, sa_addr);
1da177e4
LT
674
675 addr_buf += af->sockaddr_len;
676err_bindx_rem:
677 if (retval < 0) {
678 /* Failed. Add the ones that has been removed back */
679 if (cnt > 0)
680 sctp_bindx_add(sk, addrs, cnt);
681 return retval;
682 }
683 }
684
685 return retval;
686}
687
688/* Send an ASCONF chunk with Delete IP address parameters to all the peers of
689 * the associations that are part of the endpoint indicating that a list of
690 * local addresses are removed from the endpoint.
691 *
d808ad9a 692 * If any of the addresses is already in the bind address list of the
1da177e4
LT
693 * association, we do not send the chunk for that association. But it will not
694 * affect other associations.
695 *
696 * Only sctp_setsockopt_bindx() is supposed to call this function.
697 */
698static int sctp_send_asconf_del_ip(struct sock *sk,
699 struct sockaddr *addrs,
700 int addrcnt)
701{
702 struct sctp_sock *sp;
703 struct sctp_endpoint *ep;
704 struct sctp_association *asoc;
dc022a98 705 struct sctp_transport *transport;
1da177e4
LT
706 struct sctp_bind_addr *bp;
707 struct sctp_chunk *chunk;
708 union sctp_addr *laddr;
709 void *addr_buf;
710 struct sctp_af *af;
dc022a98 711 struct sctp_sockaddr_entry *saddr;
1da177e4
LT
712 int i;
713 int retval = 0;
714
715 if (!sctp_addip_enable)
716 return retval;
717
718 sp = sctp_sk(sk);
719 ep = sp->ep;
720
721 SCTP_DEBUG_PRINTK("%s: (sk: %p, addrs: %p, addrcnt: %d)\n",
0dc47877 722 __func__, sk, addrs, addrcnt);
1da177e4 723
9dbc15f0 724 list_for_each_entry(asoc, &ep->asocs, asocs) {
1da177e4
LT
725
726 if (!asoc->peer.asconf_capable)
727 continue;
728
729 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_DEL_IP)
730 continue;
731
732 if (!sctp_state(asoc, ESTABLISHED))
733 continue;
734
735 /* Check if any address in the packed array of addresses is
d808ad9a 736 * not present in the bind address list of the association.
1da177e4
LT
737 * If so, do not send the asconf chunk to its peer, but
738 * continue with other associations.
739 */
740 addr_buf = addrs;
741 for (i = 0; i < addrcnt; i++) {
742 laddr = (union sctp_addr *)addr_buf;
743 af = sctp_get_af_specific(laddr->v4.sin_family);
744 if (!af) {
745 retval = -EINVAL;
746 goto out;
747 }
748
749 if (!sctp_assoc_lookup_laddr(asoc, laddr))
750 break;
751
752 addr_buf += af->sockaddr_len;
753 }
754 if (i < addrcnt)
755 continue;
756
757 /* Find one address in the association's bind address list
758 * that is not in the packed array of addresses. This is to
759 * make sure that we do not delete all the addresses in the
760 * association.
761 */
1da177e4
LT
762 bp = &asoc->base.bind_addr;
763 laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs,
764 addrcnt, sp);
1da177e4
LT
765 if (!laddr)
766 continue;
767
559cf710
VY
768 /* We do not need RCU protection throughout this loop
769 * because this is done under a socket lock from the
770 * setsockopt call.
771 */
1da177e4
LT
772 chunk = sctp_make_asconf_update_ip(asoc, laddr, addrs, addrcnt,
773 SCTP_PARAM_DEL_IP);
774 if (!chunk) {
775 retval = -ENOMEM;
776 goto out;
777 }
778
dc022a98
SS
779 /* Reset use_as_src flag for the addresses in the bind address
780 * list that are to be deleted.
781 */
dc022a98
SS
782 addr_buf = addrs;
783 for (i = 0; i < addrcnt; i++) {
784 laddr = (union sctp_addr *)addr_buf;
785 af = sctp_get_af_specific(laddr->v4.sin_family);
559cf710 786 list_for_each_entry(saddr, &bp->address_list, list) {
5f242a13 787 if (sctp_cmp_addr_exact(&saddr->a, laddr))
f57d96b2 788 saddr->state = SCTP_ADDR_DEL;
dc022a98
SS
789 }
790 addr_buf += af->sockaddr_len;
791 }
1da177e4 792
dc022a98
SS
793 /* Update the route and saddr entries for all the transports
794 * as some of the addresses in the bind address list are
795 * about to be deleted and cannot be used as source addresses.
1da177e4 796 */
9dbc15f0
RD
797 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
798 transports) {
dc022a98
SS
799 dst_release(transport->dst);
800 sctp_transport_route(transport, NULL,
801 sctp_sk(asoc->base.sk));
802 }
803
804 retval = sctp_send_asconf(asoc, chunk);
1da177e4
LT
805 }
806out:
807 return retval;
808}
809
810/* Helper for tunneling sctp_bindx() requests through sctp_setsockopt()
811 *
812 * API 8.1
813 * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt,
814 * int flags);
815 *
816 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
817 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
818 * or IPv6 addresses.
819 *
820 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
821 * Section 3.1.2 for this usage.
822 *
823 * addrs is a pointer to an array of one or more socket addresses. Each
824 * address is contained in its appropriate structure (i.e. struct
825 * sockaddr_in or struct sockaddr_in6) the family of the address type
23c435f7 826 * must be used to distinguish the address length (note that this
1da177e4
LT
827 * representation is termed a "packed array" of addresses). The caller
828 * specifies the number of addresses in the array with addrcnt.
829 *
830 * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns
831 * -1, and sets errno to the appropriate error code.
832 *
833 * For SCTP, the port given in each socket address must be the same, or
834 * sctp_bindx() will fail, setting errno to EINVAL.
835 *
836 * The flags parameter is formed from the bitwise OR of zero or more of
837 * the following currently defined flags:
838 *
839 * SCTP_BINDX_ADD_ADDR
840 *
841 * SCTP_BINDX_REM_ADDR
842 *
843 * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the
844 * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given
845 * addresses from the association. The two flags are mutually exclusive;
846 * if both are given, sctp_bindx() will fail with EINVAL. A caller may
847 * not remove all addresses from an association; sctp_bindx() will
848 * reject such an attempt with EINVAL.
849 *
850 * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate
851 * additional addresses with an endpoint after calling bind(). Or use
852 * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening
853 * socket is associated with so that no new association accepted will be
854 * associated with those addresses. If the endpoint supports dynamic
855 * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a
856 * endpoint to send the appropriate message to the peer to change the
857 * peers address lists.
858 *
859 * Adding and removing addresses from a connected association is
860 * optional functionality. Implementations that do not support this
861 * functionality should return EOPNOTSUPP.
862 *
863 * Basically do nothing but copying the addresses from user to kernel
864 * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk.
3f7a87d2
FF
865 * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
866 * from userspace.
1da177e4
LT
867 *
868 * We don't use copy_from_user() for optimization: we first do the
869 * sanity checks (buffer size -fast- and access check-healthy
870 * pointer); if all of those succeed, then we can alloc the memory
871 * (expensive operation) needed to copy the data to kernel. Then we do
872 * the copying without checking the user space area
873 * (__copy_from_user()).
874 *
875 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
876 * it.
877 *
878 * sk The sk of the socket
879 * addrs The pointer to the addresses in user land
880 * addrssize Size of the addrs buffer
881 * op Operation to perform (add or remove, see the flags of
882 * sctp_bindx)
883 *
884 * Returns 0 if ok, <0 errno code on error.
885 */
886SCTP_STATIC int sctp_setsockopt_bindx(struct sock* sk,
887 struct sockaddr __user *addrs,
888 int addrs_size, int op)
889{
890 struct sockaddr *kaddrs;
891 int err;
892 int addrcnt = 0;
893 int walk_size = 0;
894 struct sockaddr *sa_addr;
895 void *addr_buf;
896 struct sctp_af *af;
897
898 SCTP_DEBUG_PRINTK("sctp_setsocktopt_bindx: sk %p addrs %p"
899 " addrs_size %d opt %d\n", sk, addrs, addrs_size, op);
900
901 if (unlikely(addrs_size <= 0))
902 return -EINVAL;
903
904 /* Check the user passed a healthy pointer. */
905 if (unlikely(!access_ok(VERIFY_READ, addrs, addrs_size)))
906 return -EFAULT;
907
908 /* Alloc space for the address array in kernel memory. */
8b3a7005 909 kaddrs = kmalloc(addrs_size, GFP_KERNEL);
1da177e4
LT
910 if (unlikely(!kaddrs))
911 return -ENOMEM;
912
913 if (__copy_from_user(kaddrs, addrs, addrs_size)) {
914 kfree(kaddrs);
915 return -EFAULT;
916 }
917
d808ad9a 918 /* Walk through the addrs buffer and count the number of addresses. */
1da177e4
LT
919 addr_buf = kaddrs;
920 while (walk_size < addrs_size) {
921 sa_addr = (struct sockaddr *)addr_buf;
922 af = sctp_get_af_specific(sa_addr->sa_family);
923
924 /* If the address family is not supported or if this address
925 * causes the address buffer to overflow return EINVAL.
d808ad9a 926 */
1da177e4
LT
927 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
928 kfree(kaddrs);
929 return -EINVAL;
930 }
931 addrcnt++;
932 addr_buf += af->sockaddr_len;
933 walk_size += af->sockaddr_len;
934 }
935
936 /* Do the work. */
937 switch (op) {
938 case SCTP_BINDX_ADD_ADDR:
939 err = sctp_bindx_add(sk, kaddrs, addrcnt);
940 if (err)
941 goto out;
942 err = sctp_send_asconf_add_ip(sk, kaddrs, addrcnt);
943 break;
944
945 case SCTP_BINDX_REM_ADDR:
946 err = sctp_bindx_rem(sk, kaddrs, addrcnt);
947 if (err)
948 goto out;
949 err = sctp_send_asconf_del_ip(sk, kaddrs, addrcnt);
950 break;
951
952 default:
953 err = -EINVAL;
954 break;
3ff50b79 955 }
1da177e4
LT
956
957out:
958 kfree(kaddrs);
959
960 return err;
961}
962
3f7a87d2
FF
963/* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size)
964 *
965 * Common routine for handling connect() and sctp_connectx().
966 * Connect will come in with just a single address.
967 */
968static int __sctp_connect(struct sock* sk,
969 struct sockaddr *kaddrs,
88a0a948
VY
970 int addrs_size,
971 sctp_assoc_t *assoc_id)
3f7a87d2
FF
972{
973 struct sctp_sock *sp;
974 struct sctp_endpoint *ep;
975 struct sctp_association *asoc = NULL;
976 struct sctp_association *asoc2;
977 struct sctp_transport *transport;
978 union sctp_addr to;
979 struct sctp_af *af;
980 sctp_scope_t scope;
981 long timeo;
982 int err = 0;
983 int addrcnt = 0;
984 int walk_size = 0;
e4d1feab 985 union sctp_addr *sa_addr = NULL;
3f7a87d2 986 void *addr_buf;
16d00fb7 987 unsigned short port;
f50f95ca 988 unsigned int f_flags = 0;
3f7a87d2
FF
989
990 sp = sctp_sk(sk);
991 ep = sp->ep;
992
993 /* connect() cannot be done on a socket that is already in ESTABLISHED
994 * state - UDP-style peeled off socket or a TCP-style socket that
995 * is already connected.
996 * It cannot be done even on a TCP-style listening socket.
997 */
998 if (sctp_sstate(sk, ESTABLISHED) ||
999 (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))) {
1000 err = -EISCONN;
1001 goto out_free;
1002 }
1003
1004 /* Walk through the addrs buffer and count the number of addresses. */
1005 addr_buf = kaddrs;
1006 while (walk_size < addrs_size) {
4bdf4b5f
AV
1007 sa_addr = (union sctp_addr *)addr_buf;
1008 af = sctp_get_af_specific(sa_addr->sa.sa_family);
16d00fb7 1009 port = ntohs(sa_addr->v4.sin_port);
3f7a87d2
FF
1010
1011 /* If the address family is not supported or if this address
1012 * causes the address buffer to overflow return EINVAL.
1013 */
1014 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1015 err = -EINVAL;
1016 goto out_free;
1017 }
1018
e4d1feab
VY
1019 /* Save current address so we can work with it */
1020 memcpy(&to, sa_addr, af->sockaddr_len);
1021
1022 err = sctp_verify_addr(sk, &to, af->sockaddr_len);
3f7a87d2
FF
1023 if (err)
1024 goto out_free;
1025
16d00fb7
VY
1026 /* Make sure the destination port is correctly set
1027 * in all addresses.
1028 */
1029 if (asoc && asoc->peer.port && asoc->peer.port != port)
1030 goto out_free;
1031
3f7a87d2
FF
1032
1033 /* Check if there already is a matching association on the
1034 * endpoint (other than the one created here).
1035 */
e4d1feab 1036 asoc2 = sctp_endpoint_lookup_assoc(ep, &to, &transport);
3f7a87d2
FF
1037 if (asoc2 && asoc2 != asoc) {
1038 if (asoc2->state >= SCTP_STATE_ESTABLISHED)
1039 err = -EISCONN;
1040 else
1041 err = -EALREADY;
1042 goto out_free;
1043 }
1044
1045 /* If we could not find a matching association on the endpoint,
1046 * make sure that there is no peeled-off association matching
1047 * the peer address even on another socket.
1048 */
e4d1feab 1049 if (sctp_endpoint_is_peeled_off(ep, &to)) {
3f7a87d2
FF
1050 err = -EADDRNOTAVAIL;
1051 goto out_free;
1052 }
1053
1054 if (!asoc) {
1055 /* If a bind() or sctp_bindx() is not called prior to
1056 * an sctp_connectx() call, the system picks an
1057 * ephemeral port and will choose an address set
1058 * equivalent to binding with a wildcard address.
1059 */
1060 if (!ep->base.bind_addr.port) {
1061 if (sctp_autobind(sk)) {
1062 err = -EAGAIN;
1063 goto out_free;
1064 }
64a0c1c8
ISJ
1065 } else {
1066 /*
d808ad9a
YH
1067 * If an unprivileged user inherits a 1-many
1068 * style socket with open associations on a
1069 * privileged port, it MAY be permitted to
1070 * accept new associations, but it SHOULD NOT
64a0c1c8
ISJ
1071 * be permitted to open new associations.
1072 */
1073 if (ep->base.bind_addr.port < PROT_SOCK &&
1074 !capable(CAP_NET_BIND_SERVICE)) {
1075 err = -EACCES;
1076 goto out_free;
1077 }
3f7a87d2
FF
1078 }
1079
e4d1feab 1080 scope = sctp_scope(&to);
3f7a87d2
FF
1081 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1082 if (!asoc) {
1083 err = -ENOMEM;
1084 goto out_free;
1085 }
409b95af
VY
1086
1087 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope,
1088 GFP_KERNEL);
1089 if (err < 0) {
1090 goto out_free;
1091 }
1092
3f7a87d2
FF
1093 }
1094
1095 /* Prime the peer's transport structures. */
e4d1feab 1096 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL,
3f7a87d2
FF
1097 SCTP_UNKNOWN);
1098 if (!transport) {
1099 err = -ENOMEM;
1100 goto out_free;
1101 }
1102
1103 addrcnt++;
1104 addr_buf += af->sockaddr_len;
1105 walk_size += af->sockaddr_len;
1106 }
1107
c6ba68a2
VY
1108 /* In case the user of sctp_connectx() wants an association
1109 * id back, assign one now.
1110 */
1111 if (assoc_id) {
1112 err = sctp_assoc_set_id(asoc, GFP_KERNEL);
1113 if (err < 0)
1114 goto out_free;
1115 }
1116
3f7a87d2
FF
1117 err = sctp_primitive_ASSOCIATE(asoc, NULL);
1118 if (err < 0) {
1119 goto out_free;
1120 }
1121
1122 /* Initialize sk's dport and daddr for getpeername() */
c720c7e8 1123 inet_sk(sk)->inet_dport = htons(asoc->peer.port);
e4d1feab
VY
1124 af = sctp_get_af_specific(sa_addr->sa.sa_family);
1125 af->to_sk_daddr(sa_addr, sk);
8de8c873 1126 sk->sk_err = 0;
3f7a87d2 1127
f50f95ca
VY
1128 /* in-kernel sockets don't generally have a file allocated to them
1129 * if all they do is call sock_create_kern().
1130 */
1131 if (sk->sk_socket->file)
1132 f_flags = sk->sk_socket->file->f_flags;
1133
1134 timeo = sock_sndtimeo(sk, f_flags & O_NONBLOCK);
1135
3f7a87d2 1136 err = sctp_wait_for_connect(asoc, &timeo);
c6ba68a2 1137 if ((err == 0 || err == -EINPROGRESS) && assoc_id)
88a0a948 1138 *assoc_id = asoc->assoc_id;
3f7a87d2
FF
1139
1140 /* Don't free association on exit. */
1141 asoc = NULL;
1142
1143out_free:
1144
1145 SCTP_DEBUG_PRINTK("About to exit __sctp_connect() free asoc: %p"
d808ad9a
YH
1146 " kaddrs: %p err: %d\n",
1147 asoc, kaddrs, err);
3f7a87d2
FF
1148 if (asoc)
1149 sctp_association_free(asoc);
1150 return err;
1151}
1152
1153/* Helper for tunneling sctp_connectx() requests through sctp_setsockopt()
1154 *
1155 * API 8.9
88a0a948
VY
1156 * int sctp_connectx(int sd, struct sockaddr *addrs, int addrcnt,
1157 * sctp_assoc_t *asoc);
3f7a87d2
FF
1158 *
1159 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
1160 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
1161 * or IPv6 addresses.
1162 *
1163 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
1164 * Section 3.1.2 for this usage.
1165 *
1166 * addrs is a pointer to an array of one or more socket addresses. Each
1167 * address is contained in its appropriate structure (i.e. struct
1168 * sockaddr_in or struct sockaddr_in6) the family of the address type
1169 * must be used to distengish the address length (note that this
1170 * representation is termed a "packed array" of addresses). The caller
1171 * specifies the number of addresses in the array with addrcnt.
1172 *
88a0a948
VY
1173 * On success, sctp_connectx() returns 0. It also sets the assoc_id to
1174 * the association id of the new association. On failure, sctp_connectx()
1175 * returns -1, and sets errno to the appropriate error code. The assoc_id
1176 * is not touched by the kernel.
3f7a87d2
FF
1177 *
1178 * For SCTP, the port given in each socket address must be the same, or
1179 * sctp_connectx() will fail, setting errno to EINVAL.
1180 *
1181 * An application can use sctp_connectx to initiate an association with
1182 * an endpoint that is multi-homed. Much like sctp_bindx() this call
1183 * allows a caller to specify multiple addresses at which a peer can be
1184 * reached. The way the SCTP stack uses the list of addresses to set up
1185 * the association is implementation dependant. This function only
1186 * specifies that the stack will try to make use of all the addresses in
1187 * the list when needed.
1188 *
1189 * Note that the list of addresses passed in is only used for setting up
1190 * the association. It does not necessarily equal the set of addresses
1191 * the peer uses for the resulting association. If the caller wants to
1192 * find out the set of peer addresses, it must use sctp_getpaddrs() to
1193 * retrieve them after the association has been set up.
1194 *
1195 * Basically do nothing but copying the addresses from user to kernel
1196 * land and invoking either sctp_connectx(). This is used for tunneling
1197 * the sctp_connectx() request through sctp_setsockopt() from userspace.
1198 *
1199 * We don't use copy_from_user() for optimization: we first do the
1200 * sanity checks (buffer size -fast- and access check-healthy
1201 * pointer); if all of those succeed, then we can alloc the memory
1202 * (expensive operation) needed to copy the data to kernel. Then we do
1203 * the copying without checking the user space area
1204 * (__copy_from_user()).
1205 *
1206 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
1207 * it.
1208 *
1209 * sk The sk of the socket
1210 * addrs The pointer to the addresses in user land
1211 * addrssize Size of the addrs buffer
1212 *
88a0a948 1213 * Returns >=0 if ok, <0 errno code on error.
3f7a87d2 1214 */
88a0a948 1215SCTP_STATIC int __sctp_setsockopt_connectx(struct sock* sk,
3f7a87d2 1216 struct sockaddr __user *addrs,
88a0a948
VY
1217 int addrs_size,
1218 sctp_assoc_t *assoc_id)
3f7a87d2
FF
1219{
1220 int err = 0;
1221 struct sockaddr *kaddrs;
1222
1223 SCTP_DEBUG_PRINTK("%s - sk %p addrs %p addrs_size %d\n",
0dc47877 1224 __func__, sk, addrs, addrs_size);
3f7a87d2
FF
1225
1226 if (unlikely(addrs_size <= 0))
1227 return -EINVAL;
1228
1229 /* Check the user passed a healthy pointer. */
1230 if (unlikely(!access_ok(VERIFY_READ, addrs, addrs_size)))
1231 return -EFAULT;
1232
1233 /* Alloc space for the address array in kernel memory. */
8b3a7005 1234 kaddrs = kmalloc(addrs_size, GFP_KERNEL);
3f7a87d2
FF
1235 if (unlikely(!kaddrs))
1236 return -ENOMEM;
1237
1238 if (__copy_from_user(kaddrs, addrs, addrs_size)) {
1239 err = -EFAULT;
1240 } else {
88a0a948 1241 err = __sctp_connect(sk, kaddrs, addrs_size, assoc_id);
3f7a87d2
FF
1242 }
1243
1244 kfree(kaddrs);
88a0a948 1245
3f7a87d2
FF
1246 return err;
1247}
1248
88a0a948
VY
1249/*
1250 * This is an older interface. It's kept for backward compatibility
1251 * to the option that doesn't provide association id.
1252 */
1253SCTP_STATIC int sctp_setsockopt_connectx_old(struct sock* sk,
1254 struct sockaddr __user *addrs,
1255 int addrs_size)
1256{
1257 return __sctp_setsockopt_connectx(sk, addrs, addrs_size, NULL);
1258}
1259
1260/*
1261 * New interface for the API. The since the API is done with a socket
1262 * option, to make it simple we feed back the association id is as a return
1263 * indication to the call. Error is always negative and association id is
1264 * always positive.
1265 */
1266SCTP_STATIC int sctp_setsockopt_connectx(struct sock* sk,
1267 struct sockaddr __user *addrs,
1268 int addrs_size)
1269{
1270 sctp_assoc_t assoc_id = 0;
1271 int err = 0;
1272
1273 err = __sctp_setsockopt_connectx(sk, addrs, addrs_size, &assoc_id);
1274
1275 if (err)
1276 return err;
1277 else
1278 return assoc_id;
1279}
1280
c6ba68a2 1281/*
f9c67811
VY
1282 * New (hopefully final) interface for the API.
1283 * We use the sctp_getaddrs_old structure so that use-space library
1284 * can avoid any unnecessary allocations. The only defferent part
1285 * is that we store the actual length of the address buffer into the
1286 * addrs_num structure member. That way we can re-use the existing
1287 * code.
c6ba68a2
VY
1288 */
1289SCTP_STATIC int sctp_getsockopt_connectx3(struct sock* sk, int len,
1290 char __user *optval,
1291 int __user *optlen)
1292{
f9c67811 1293 struct sctp_getaddrs_old param;
c6ba68a2
VY
1294 sctp_assoc_t assoc_id = 0;
1295 int err = 0;
1296
f9c67811 1297 if (len < sizeof(param))
c6ba68a2
VY
1298 return -EINVAL;
1299
f9c67811
VY
1300 if (copy_from_user(&param, optval, sizeof(param)))
1301 return -EFAULT;
1302
c6ba68a2 1303 err = __sctp_setsockopt_connectx(sk,
f9c67811
VY
1304 (struct sockaddr __user *)param.addrs,
1305 param.addr_num, &assoc_id);
c6ba68a2
VY
1306
1307 if (err == 0 || err == -EINPROGRESS) {
1308 if (copy_to_user(optval, &assoc_id, sizeof(assoc_id)))
1309 return -EFAULT;
1310 if (put_user(sizeof(assoc_id), optlen))
1311 return -EFAULT;
1312 }
1313
1314 return err;
1315}
1316
1da177e4
LT
1317/* API 3.1.4 close() - UDP Style Syntax
1318 * Applications use close() to perform graceful shutdown (as described in
1319 * Section 10.1 of [SCTP]) on ALL the associations currently represented
1320 * by a UDP-style socket.
1321 *
1322 * The syntax is
1323 *
1324 * ret = close(int sd);
1325 *
1326 * sd - the socket descriptor of the associations to be closed.
1327 *
1328 * To gracefully shutdown a specific association represented by the
1329 * UDP-style socket, an application should use the sendmsg() call,
1330 * passing no user data, but including the appropriate flag in the
1331 * ancillary data (see Section xxxx).
1332 *
1333 * If sd in the close() call is a branched-off socket representing only
1334 * one association, the shutdown is performed on that association only.
1335 *
1336 * 4.1.6 close() - TCP Style Syntax
1337 *
1338 * Applications use close() to gracefully close down an association.
1339 *
1340 * The syntax is:
1341 *
1342 * int close(int sd);
1343 *
1344 * sd - the socket descriptor of the association to be closed.
1345 *
1346 * After an application calls close() on a socket descriptor, no further
1347 * socket operations will succeed on that descriptor.
1348 *
1349 * API 7.1.4 SO_LINGER
1350 *
1351 * An application using the TCP-style socket can use this option to
1352 * perform the SCTP ABORT primitive. The linger option structure is:
1353 *
1354 * struct linger {
1355 * int l_onoff; // option on/off
1356 * int l_linger; // linger time
1357 * };
1358 *
1359 * To enable the option, set l_onoff to 1. If the l_linger value is set
1360 * to 0, calling close() is the same as the ABORT primitive. If the
1361 * value is set to a negative value, the setsockopt() call will return
1362 * an error. If the value is set to a positive value linger_time, the
1363 * close() can be blocked for at most linger_time ms. If the graceful
1364 * shutdown phase does not finish during this period, close() will
1365 * return but the graceful shutdown phase continues in the system.
1366 */
1367SCTP_STATIC void sctp_close(struct sock *sk, long timeout)
1368{
1369 struct sctp_endpoint *ep;
1370 struct sctp_association *asoc;
1371 struct list_head *pos, *temp;
1372
1373 SCTP_DEBUG_PRINTK("sctp_close(sk: 0x%p, timeout:%ld)\n", sk, timeout);
1374
1375 sctp_lock_sock(sk);
1376 sk->sk_shutdown = SHUTDOWN_MASK;
bec9640b 1377 sk->sk_state = SCTP_SS_CLOSING;
1da177e4
LT
1378
1379 ep = sctp_sk(sk)->ep;
1380
61c9fed4 1381 /* Walk all associations on an endpoint. */
1da177e4
LT
1382 list_for_each_safe(pos, temp, &ep->asocs) {
1383 asoc = list_entry(pos, struct sctp_association, asocs);
1384
1385 if (sctp_style(sk, TCP)) {
1386 /* A closed association can still be in the list if
1387 * it belongs to a TCP-style listening socket that is
1388 * not yet accepted. If so, free it. If not, send an
1389 * ABORT or SHUTDOWN based on the linger options.
1390 */
1391 if (sctp_state(asoc, CLOSED)) {
1392 sctp_unhash_established(asoc);
1393 sctp_association_free(asoc);
b89498a1
VY
1394 continue;
1395 }
1396 }
1da177e4 1397
b9ac8672
SS
1398 if (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime) {
1399 struct sctp_chunk *chunk;
1400
1401 chunk = sctp_make_abort_user(asoc, NULL, 0);
1402 if (chunk)
1403 sctp_primitive_ABORT(asoc, chunk);
1404 } else
1da177e4
LT
1405 sctp_primitive_SHUTDOWN(asoc, NULL);
1406 }
1407
1408 /* Clean up any skbs sitting on the receive queue. */
1409 sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1410 sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1411
1412 /* On a TCP-style socket, block for at most linger_time if set. */
1413 if (sctp_style(sk, TCP) && timeout)
1414 sctp_wait_for_close(sk, timeout);
1415
1416 /* This will run the backlog queue. */
1417 sctp_release_sock(sk);
1418
1419 /* Supposedly, no process has access to the socket, but
1420 * the net layers still may.
1421 */
1422 sctp_local_bh_disable();
1423 sctp_bh_lock_sock(sk);
1424
1425 /* Hold the sock, since sk_common_release() will put sock_put()
1426 * and we have just a little more cleanup.
1427 */
1428 sock_hold(sk);
1429 sk_common_release(sk);
1430
1431 sctp_bh_unlock_sock(sk);
1432 sctp_local_bh_enable();
1433
1434 sock_put(sk);
1435
1436 SCTP_DBG_OBJCNT_DEC(sock);
1437}
1438
1439/* Handle EPIPE error. */
1440static int sctp_error(struct sock *sk, int flags, int err)
1441{
1442 if (err == -EPIPE)
1443 err = sock_error(sk) ? : -EPIPE;
1444 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1445 send_sig(SIGPIPE, current, 0);
1446 return err;
1447}
1448
1449/* API 3.1.3 sendmsg() - UDP Style Syntax
1450 *
1451 * An application uses sendmsg() and recvmsg() calls to transmit data to
1452 * and receive data from its peer.
1453 *
1454 * ssize_t sendmsg(int socket, const struct msghdr *message,
1455 * int flags);
1456 *
1457 * socket - the socket descriptor of the endpoint.
1458 * message - pointer to the msghdr structure which contains a single
1459 * user message and possibly some ancillary data.
1460 *
1461 * See Section 5 for complete description of the data
1462 * structures.
1463 *
1464 * flags - flags sent or received with the user message, see Section
1465 * 5 for complete description of the flags.
1466 *
1467 * Note: This function could use a rewrite especially when explicit
1468 * connect support comes in.
1469 */
1470/* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */
1471
1472SCTP_STATIC int sctp_msghdr_parse(const struct msghdr *, sctp_cmsgs_t *);
1473
1474SCTP_STATIC int sctp_sendmsg(struct kiocb *iocb, struct sock *sk,
1475 struct msghdr *msg, size_t msg_len)
1476{
1477 struct sctp_sock *sp;
1478 struct sctp_endpoint *ep;
1479 struct sctp_association *new_asoc=NULL, *asoc=NULL;
1480 struct sctp_transport *transport, *chunk_tp;
1481 struct sctp_chunk *chunk;
dce116ae 1482 union sctp_addr to;
1da177e4
LT
1483 struct sockaddr *msg_name = NULL;
1484 struct sctp_sndrcvinfo default_sinfo = { 0 };
1485 struct sctp_sndrcvinfo *sinfo;
1486 struct sctp_initmsg *sinit;
1487 sctp_assoc_t associd = 0;
1488 sctp_cmsgs_t cmsgs = { NULL };
1489 int err;
1490 sctp_scope_t scope;
1491 long timeo;
1492 __u16 sinfo_flags = 0;
1493 struct sctp_datamsg *datamsg;
1da177e4
LT
1494 int msg_flags = msg->msg_flags;
1495
1496 SCTP_DEBUG_PRINTK("sctp_sendmsg(sk: %p, msg: %p, msg_len: %zu)\n",
1497 sk, msg, msg_len);
1498
1499 err = 0;
1500 sp = sctp_sk(sk);
1501 ep = sp->ep;
1502
3f7a87d2 1503 SCTP_DEBUG_PRINTK("Using endpoint: %p.\n", ep);
1da177e4
LT
1504
1505 /* We cannot send a message over a TCP-style listening socket. */
1506 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING)) {
1507 err = -EPIPE;
1508 goto out_nounlock;
1509 }
1510
1511 /* Parse out the SCTP CMSGs. */
1512 err = sctp_msghdr_parse(msg, &cmsgs);
1513
1514 if (err) {
1515 SCTP_DEBUG_PRINTK("msghdr parse err = %x\n", err);
1516 goto out_nounlock;
1517 }
1518
1519 /* Fetch the destination address for this packet. This
1520 * address only selects the association--it is not necessarily
1521 * the address we will send to.
1522 * For a peeled-off socket, msg_name is ignored.
1523 */
1524 if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
1525 int msg_namelen = msg->msg_namelen;
1526
1527 err = sctp_verify_addr(sk, (union sctp_addr *)msg->msg_name,
1528 msg_namelen);
1529 if (err)
1530 return err;
1531
1532 if (msg_namelen > sizeof(to))
1533 msg_namelen = sizeof(to);
1534 memcpy(&to, msg->msg_name, msg_namelen);
1da177e4
LT
1535 msg_name = msg->msg_name;
1536 }
1537
1538 sinfo = cmsgs.info;
1539 sinit = cmsgs.init;
1540
1541 /* Did the user specify SNDRCVINFO? */
1542 if (sinfo) {
1543 sinfo_flags = sinfo->sinfo_flags;
1544 associd = sinfo->sinfo_assoc_id;
1545 }
1546
1547 SCTP_DEBUG_PRINTK("msg_len: %zu, sinfo_flags: 0x%x\n",
1548 msg_len, sinfo_flags);
1549
eaa5c54d
ISJ
1550 /* SCTP_EOF or SCTP_ABORT cannot be set on a TCP-style socket. */
1551 if (sctp_style(sk, TCP) && (sinfo_flags & (SCTP_EOF | SCTP_ABORT))) {
1da177e4
LT
1552 err = -EINVAL;
1553 goto out_nounlock;
1554 }
1555
eaa5c54d
ISJ
1556 /* If SCTP_EOF is set, no data can be sent. Disallow sending zero
1557 * length messages when SCTP_EOF|SCTP_ABORT is not set.
1558 * If SCTP_ABORT is set, the message length could be non zero with
1da177e4 1559 * the msg_iov set to the user abort reason.
d808ad9a 1560 */
eaa5c54d
ISJ
1561 if (((sinfo_flags & SCTP_EOF) && (msg_len > 0)) ||
1562 (!(sinfo_flags & (SCTP_EOF|SCTP_ABORT)) && (msg_len == 0))) {
1da177e4
LT
1563 err = -EINVAL;
1564 goto out_nounlock;
1565 }
1566
eaa5c54d 1567 /* If SCTP_ADDR_OVER is set, there must be an address
1da177e4
LT
1568 * specified in msg_name.
1569 */
eaa5c54d 1570 if ((sinfo_flags & SCTP_ADDR_OVER) && (!msg->msg_name)) {
1da177e4
LT
1571 err = -EINVAL;
1572 goto out_nounlock;
1573 }
1574
1575 transport = NULL;
1576
1577 SCTP_DEBUG_PRINTK("About to look up association.\n");
1578
1579 sctp_lock_sock(sk);
1580
1581 /* If a msg_name has been specified, assume this is to be used. */
1582 if (msg_name) {
1583 /* Look for a matching association on the endpoint. */
dce116ae 1584 asoc = sctp_endpoint_lookup_assoc(ep, &to, &transport);
1da177e4
LT
1585 if (!asoc) {
1586 /* If we could not find a matching association on the
1587 * endpoint, make sure that it is not a TCP-style
1588 * socket that already has an association or there is
1589 * no peeled-off association on another socket.
1590 */
1591 if ((sctp_style(sk, TCP) &&
1592 sctp_sstate(sk, ESTABLISHED)) ||
dce116ae 1593 sctp_endpoint_is_peeled_off(ep, &to)) {
1da177e4
LT
1594 err = -EADDRNOTAVAIL;
1595 goto out_unlock;
1596 }
1597 }
1598 } else {
1599 asoc = sctp_id2assoc(sk, associd);
1600 if (!asoc) {
1601 err = -EPIPE;
1602 goto out_unlock;
1603 }
1604 }
1605
1606 if (asoc) {
1607 SCTP_DEBUG_PRINTK("Just looked up association: %p.\n", asoc);
1608
1609 /* We cannot send a message on a TCP-style SCTP_SS_ESTABLISHED
1610 * socket that has an association in CLOSED state. This can
1611 * happen when an accepted socket has an association that is
1612 * already CLOSED.
1613 */
1614 if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP)) {
1615 err = -EPIPE;
1616 goto out_unlock;
1617 }
1618
eaa5c54d 1619 if (sinfo_flags & SCTP_EOF) {
1da177e4
LT
1620 SCTP_DEBUG_PRINTK("Shutting down association: %p\n",
1621 asoc);
1622 sctp_primitive_SHUTDOWN(asoc, NULL);
1623 err = 0;
1624 goto out_unlock;
1625 }
eaa5c54d 1626 if (sinfo_flags & SCTP_ABORT) {
c164a9ba
SS
1627
1628 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1629 if (!chunk) {
1630 err = -ENOMEM;
1631 goto out_unlock;
1632 }
1633
1da177e4 1634 SCTP_DEBUG_PRINTK("Aborting association: %p\n", asoc);
c164a9ba 1635 sctp_primitive_ABORT(asoc, chunk);
1da177e4
LT
1636 err = 0;
1637 goto out_unlock;
1638 }
1639 }
1640
1641 /* Do we need to create the association? */
1642 if (!asoc) {
1643 SCTP_DEBUG_PRINTK("There is no association yet.\n");
1644
eaa5c54d 1645 if (sinfo_flags & (SCTP_EOF | SCTP_ABORT)) {
1da177e4
LT
1646 err = -EINVAL;
1647 goto out_unlock;
1648 }
1649
1650 /* Check for invalid stream against the stream counts,
1651 * either the default or the user specified stream counts.
1652 */
1653 if (sinfo) {
1654 if (!sinit || (sinit && !sinit->sinit_num_ostreams)) {
1655 /* Check against the defaults. */
1656 if (sinfo->sinfo_stream >=
1657 sp->initmsg.sinit_num_ostreams) {
1658 err = -EINVAL;
1659 goto out_unlock;
1660 }
1661 } else {
1662 /* Check against the requested. */
1663 if (sinfo->sinfo_stream >=
1664 sinit->sinit_num_ostreams) {
1665 err = -EINVAL;
1666 goto out_unlock;
1667 }
1668 }
1669 }
1670
1671 /*
1672 * API 3.1.2 bind() - UDP Style Syntax
1673 * If a bind() or sctp_bindx() is not called prior to a
1674 * sendmsg() call that initiates a new association, the
1675 * system picks an ephemeral port and will choose an address
1676 * set equivalent to binding with a wildcard address.
1677 */
1678 if (!ep->base.bind_addr.port) {
1679 if (sctp_autobind(sk)) {
1680 err = -EAGAIN;
1681 goto out_unlock;
1682 }
64a0c1c8
ISJ
1683 } else {
1684 /*
1685 * If an unprivileged user inherits a one-to-many
1686 * style socket with open associations on a privileged
1687 * port, it MAY be permitted to accept new associations,
1688 * but it SHOULD NOT be permitted to open new
1689 * associations.
1690 */
1691 if (ep->base.bind_addr.port < PROT_SOCK &&
1692 !capable(CAP_NET_BIND_SERVICE)) {
1693 err = -EACCES;
1694 goto out_unlock;
1695 }
1da177e4
LT
1696 }
1697
1698 scope = sctp_scope(&to);
1699 new_asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1700 if (!new_asoc) {
1701 err = -ENOMEM;
1702 goto out_unlock;
1703 }
1704 asoc = new_asoc;
409b95af
VY
1705 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope, GFP_KERNEL);
1706 if (err < 0) {
1707 err = -ENOMEM;
1708 goto out_free;
1709 }
1da177e4
LT
1710
1711 /* If the SCTP_INIT ancillary data is specified, set all
1712 * the association init values accordingly.
1713 */
1714 if (sinit) {
1715 if (sinit->sinit_num_ostreams) {
1716 asoc->c.sinit_num_ostreams =
1717 sinit->sinit_num_ostreams;
1718 }
1719 if (sinit->sinit_max_instreams) {
1720 asoc->c.sinit_max_instreams =
1721 sinit->sinit_max_instreams;
1722 }
1723 if (sinit->sinit_max_attempts) {
1724 asoc->max_init_attempts
1725 = sinit->sinit_max_attempts;
1726 }
1727 if (sinit->sinit_max_init_timeo) {
d808ad9a 1728 asoc->max_init_timeo =
1da177e4
LT
1729 msecs_to_jiffies(sinit->sinit_max_init_timeo);
1730 }
1731 }
1732
1733 /* Prime the peer's transport structures. */
dce116ae 1734 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL, SCTP_UNKNOWN);
1da177e4
LT
1735 if (!transport) {
1736 err = -ENOMEM;
1737 goto out_free;
1738 }
1da177e4
LT
1739 }
1740
1741 /* ASSERT: we have a valid association at this point. */
1742 SCTP_DEBUG_PRINTK("We have a valid association.\n");
1743
1744 if (!sinfo) {
1745 /* If the user didn't specify SNDRCVINFO, make up one with
1746 * some defaults.
1747 */
1748 default_sinfo.sinfo_stream = asoc->default_stream;
1749 default_sinfo.sinfo_flags = asoc->default_flags;
1750 default_sinfo.sinfo_ppid = asoc->default_ppid;
1751 default_sinfo.sinfo_context = asoc->default_context;
1752 default_sinfo.sinfo_timetolive = asoc->default_timetolive;
1753 default_sinfo.sinfo_assoc_id = sctp_assoc2id(asoc);
1754 sinfo = &default_sinfo;
1755 }
1756
1757 /* API 7.1.7, the sndbuf size per association bounds the
1758 * maximum size of data that can be sent in a single send call.
1759 */
1760 if (msg_len > sk->sk_sndbuf) {
1761 err = -EMSGSIZE;
1762 goto out_free;
1763 }
1764
8a479491
VY
1765 if (asoc->pmtu_pending)
1766 sctp_assoc_pending_pmtu(asoc);
1767
1da177e4
LT
1768 /* If fragmentation is disabled and the message length exceeds the
1769 * association fragmentation point, return EMSGSIZE. The I-D
1770 * does not specify what this error is, but this looks like
1771 * a great fit.
1772 */
1773 if (sctp_sk(sk)->disable_fragments && (msg_len > asoc->frag_point)) {
1774 err = -EMSGSIZE;
1775 goto out_free;
1776 }
1777
1778 if (sinfo) {
1779 /* Check for invalid stream. */
1780 if (sinfo->sinfo_stream >= asoc->c.sinit_num_ostreams) {
1781 err = -EINVAL;
1782 goto out_free;
1783 }
1784 }
1785
1786 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1787 if (!sctp_wspace(asoc)) {
1788 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1789 if (err)
1790 goto out_free;
1791 }
1792
1793 /* If an address is passed with the sendto/sendmsg call, it is used
1794 * to override the primary destination address in the TCP model, or
eaa5c54d 1795 * when SCTP_ADDR_OVER flag is set in the UDP model.
1da177e4
LT
1796 */
1797 if ((sctp_style(sk, TCP) && msg_name) ||
eaa5c54d 1798 (sinfo_flags & SCTP_ADDR_OVER)) {
dce116ae 1799 chunk_tp = sctp_assoc_lookup_paddr(asoc, &to);
1da177e4
LT
1800 if (!chunk_tp) {
1801 err = -EINVAL;
1802 goto out_free;
1803 }
1804 } else
1805 chunk_tp = NULL;
1806
1807 /* Auto-connect, if we aren't connected already. */
1808 if (sctp_state(asoc, CLOSED)) {
1809 err = sctp_primitive_ASSOCIATE(asoc, NULL);
1810 if (err < 0)
1811 goto out_free;
1812 SCTP_DEBUG_PRINTK("We associated primitively.\n");
1813 }
1814
1815 /* Break the message into multiple chunks of maximum size. */
1816 datamsg = sctp_datamsg_from_user(asoc, sinfo, msg, msg_len);
1817 if (!datamsg) {
1818 err = -ENOMEM;
1819 goto out_free;
1820 }
1821
1822 /* Now send the (possibly) fragmented message. */
9dbc15f0 1823 list_for_each_entry(chunk, &datamsg->chunks, frag_list) {
80445cfb 1824 sctp_chunk_hold(chunk);
1da177e4
LT
1825
1826 /* Do accounting for the write space. */
1827 sctp_set_owner_w(chunk);
1828
1829 chunk->transport = chunk_tp;
1da177e4
LT
1830 }
1831
9c5c62be
VY
1832 /* Send it to the lower layers. Note: all chunks
1833 * must either fail or succeed. The lower layer
1834 * works that way today. Keep it that way or this
1835 * breaks.
1836 */
1837 err = sctp_primitive_SEND(asoc, datamsg);
1838 /* Did the lower layer accept the chunk? */
1839 if (err)
1840 sctp_datamsg_free(datamsg);
1841 else
1842 sctp_datamsg_put(datamsg);
1843
1844 SCTP_DEBUG_PRINTK("We sent primitively.\n");
1845
1da177e4
LT
1846 if (err)
1847 goto out_free;
1848 else
1849 err = msg_len;
1850
1851 /* If we are already past ASSOCIATE, the lower
1852 * layers are responsible for association cleanup.
1853 */
1854 goto out_unlock;
1855
1856out_free:
1857 if (new_asoc)
1858 sctp_association_free(asoc);
1859out_unlock:
1860 sctp_release_sock(sk);
1861
1862out_nounlock:
1863 return sctp_error(sk, msg_flags, err);
1864
1865#if 0
1866do_sock_err:
1867 if (msg_len)
1868 err = msg_len;
1869 else
1870 err = sock_error(sk);
1871 goto out;
1872
1873do_interrupted:
1874 if (msg_len)
1875 err = msg_len;
1876 goto out;
1877#endif /* 0 */
1878}
1879
1880/* This is an extended version of skb_pull() that removes the data from the
1881 * start of a skb even when data is spread across the list of skb's in the
1882 * frag_list. len specifies the total amount of data that needs to be removed.
1883 * when 'len' bytes could be removed from the skb, it returns 0.
1884 * If 'len' exceeds the total skb length, it returns the no. of bytes that
1885 * could not be removed.
1886 */
1887static int sctp_skb_pull(struct sk_buff *skb, int len)
1888{
1889 struct sk_buff *list;
1890 int skb_len = skb_headlen(skb);
1891 int rlen;
1892
1893 if (len <= skb_len) {
1894 __skb_pull(skb, len);
1895 return 0;
1896 }
1897 len -= skb_len;
1898 __skb_pull(skb, skb_len);
1899
1b003be3 1900 skb_walk_frags(skb, list) {
1da177e4
LT
1901 rlen = sctp_skb_pull(list, len);
1902 skb->len -= (len-rlen);
1903 skb->data_len -= (len-rlen);
1904
1905 if (!rlen)
1906 return 0;
1907
1908 len = rlen;
1909 }
1910
1911 return len;
1912}
1913
1914/* API 3.1.3 recvmsg() - UDP Style Syntax
1915 *
1916 * ssize_t recvmsg(int socket, struct msghdr *message,
1917 * int flags);
1918 *
1919 * socket - the socket descriptor of the endpoint.
1920 * message - pointer to the msghdr structure which contains a single
1921 * user message and possibly some ancillary data.
1922 *
1923 * See Section 5 for complete description of the data
1924 * structures.
1925 *
1926 * flags - flags sent or received with the user message, see Section
1927 * 5 for complete description of the flags.
1928 */
1929static struct sk_buff *sctp_skb_recv_datagram(struct sock *, int, int, int *);
1930
1931SCTP_STATIC int sctp_recvmsg(struct kiocb *iocb, struct sock *sk,
1932 struct msghdr *msg, size_t len, int noblock,
1933 int flags, int *addr_len)
1934{
1935 struct sctp_ulpevent *event = NULL;
1936 struct sctp_sock *sp = sctp_sk(sk);
1937 struct sk_buff *skb;
1938 int copied;
1939 int err = 0;
1940 int skb_len;
1941
1942 SCTP_DEBUG_PRINTK("sctp_recvmsg(%s: %p, %s: %p, %s: %zd, %s: %d, %s: "
1943 "0x%x, %s: %p)\n", "sk", sk, "msghdr", msg,
1944 "len", len, "knoblauch", noblock,
1945 "flags", flags, "addr_len", addr_len);
1946
1947 sctp_lock_sock(sk);
1948
1949 if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED)) {
1950 err = -ENOTCONN;
1951 goto out;
1952 }
1953
1954 skb = sctp_skb_recv_datagram(sk, flags, noblock, &err);
1955 if (!skb)
1956 goto out;
1957
1958 /* Get the total length of the skb including any skb's in the
1959 * frag_list.
1960 */
1961 skb_len = skb->len;
1962
1963 copied = skb_len;
1964 if (copied > len)
1965 copied = len;
1966
1967 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1968
1969 event = sctp_skb2event(skb);
1970
1971 if (err)
1972 goto out_free;
1973
3b885787 1974 sock_recv_ts_and_drops(msg, sk, skb);
1da177e4
LT
1975 if (sctp_ulpevent_is_notification(event)) {
1976 msg->msg_flags |= MSG_NOTIFICATION;
1977 sp->pf->event_msgname(event, msg->msg_name, addr_len);
1978 } else {
1979 sp->pf->skb_msgname(skb, msg->msg_name, addr_len);
1980 }
1981
1982 /* Check if we allow SCTP_SNDRCVINFO. */
1983 if (sp->subscribe.sctp_data_io_event)
1984 sctp_ulpevent_read_sndrcvinfo(event, msg);
1985#if 0
1986 /* FIXME: we should be calling IP/IPv6 layers. */
1987 if (sk->sk_protinfo.af_inet.cmsg_flags)
1988 ip_cmsg_recv(msg, skb);
1989#endif
1990
1991 err = copied;
1992
1993 /* If skb's length exceeds the user's buffer, update the skb and
1994 * push it back to the receive_queue so that the next call to
1995 * recvmsg() will return the remaining data. Don't set MSG_EOR.
1996 */
1997 if (skb_len > copied) {
1998 msg->msg_flags &= ~MSG_EOR;
1999 if (flags & MSG_PEEK)
2000 goto out_free;
2001 sctp_skb_pull(skb, copied);
2002 skb_queue_head(&sk->sk_receive_queue, skb);
2003
2004 /* When only partial message is copied to the user, increase
2005 * rwnd by that amount. If all the data in the skb is read,
2006 * rwnd is updated when the event is freed.
2007 */
0eca8fee
VY
2008 if (!sctp_ulpevent_is_notification(event))
2009 sctp_assoc_rwnd_increase(event->asoc, copied);
1da177e4
LT
2010 goto out;
2011 } else if ((event->msg_flags & MSG_NOTIFICATION) ||
2012 (event->msg_flags & MSG_EOR))
2013 msg->msg_flags |= MSG_EOR;
2014 else
2015 msg->msg_flags &= ~MSG_EOR;
2016
2017out_free:
2018 if (flags & MSG_PEEK) {
2019 /* Release the skb reference acquired after peeking the skb in
2020 * sctp_skb_recv_datagram().
2021 */
2022 kfree_skb(skb);
2023 } else {
2024 /* Free the event which includes releasing the reference to
2025 * the owner of the skb, freeing the skb and updating the
2026 * rwnd.
2027 */
2028 sctp_ulpevent_free(event);
2029 }
2030out:
2031 sctp_release_sock(sk);
2032 return err;
2033}
2034
2035/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
2036 *
2037 * This option is a on/off flag. If enabled no SCTP message
2038 * fragmentation will be performed. Instead if a message being sent
2039 * exceeds the current PMTU size, the message will NOT be sent and
2040 * instead a error will be indicated to the user.
2041 */
2042static int sctp_setsockopt_disable_fragments(struct sock *sk,
b7058842
DM
2043 char __user *optval,
2044 unsigned int optlen)
1da177e4
LT
2045{
2046 int val;
2047
2048 if (optlen < sizeof(int))
2049 return -EINVAL;
2050
2051 if (get_user(val, (int __user *)optval))
2052 return -EFAULT;
2053
2054 sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1;
2055
2056 return 0;
2057}
2058
2059static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
b7058842 2060 unsigned int optlen)
1da177e4 2061{
7e8616d8 2062 if (optlen > sizeof(struct sctp_event_subscribe))
1da177e4
LT
2063 return -EINVAL;
2064 if (copy_from_user(&sctp_sk(sk)->subscribe, optval, optlen))
2065 return -EFAULT;
2066 return 0;
2067}
2068
2069/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
2070 *
2071 * This socket option is applicable to the UDP-style socket only. When
2072 * set it will cause associations that are idle for more than the
2073 * specified number of seconds to automatically close. An association
2074 * being idle is defined an association that has NOT sent or received
2075 * user data. The special value of '0' indicates that no automatic
2076 * close of any associations should be performed. The option expects an
2077 * integer defining the number of seconds of idle time before an
2078 * association is closed.
2079 */
2080static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval,
b7058842 2081 unsigned int optlen)
1da177e4
LT
2082{
2083 struct sctp_sock *sp = sctp_sk(sk);
2084
2085 /* Applicable to UDP-style socket only */
2086 if (sctp_style(sk, TCP))
2087 return -EOPNOTSUPP;
2088 if (optlen != sizeof(int))
2089 return -EINVAL;
2090 if (copy_from_user(&sp->autoclose, optval, optlen))
2091 return -EFAULT;
f6778aab 2092 /* make sure it won't exceed MAX_SCHEDULE_TIMEOUT */
8ffd3208 2093 sp->autoclose = min_t(long, sp->autoclose, MAX_SCHEDULE_TIMEOUT / HZ);
1da177e4 2094
1da177e4
LT
2095 return 0;
2096}
2097
2098/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
2099 *
2100 * Applications can enable or disable heartbeats for any peer address of
2101 * an association, modify an address's heartbeat interval, force a
2102 * heartbeat to be sent immediately, and adjust the address's maximum
2103 * number of retransmissions sent before an address is considered
2104 * unreachable. The following structure is used to access and modify an
2105 * address's parameters:
2106 *
2107 * struct sctp_paddrparams {
52ccb8e9
FF
2108 * sctp_assoc_t spp_assoc_id;
2109 * struct sockaddr_storage spp_address;
2110 * uint32_t spp_hbinterval;
2111 * uint16_t spp_pathmaxrxt;
2112 * uint32_t spp_pathmtu;
2113 * uint32_t spp_sackdelay;
2114 * uint32_t spp_flags;
2115 * };
2116 *
2117 * spp_assoc_id - (one-to-many style socket) This is filled in the
2118 * application, and identifies the association for
2119 * this query.
1da177e4
LT
2120 * spp_address - This specifies which address is of interest.
2121 * spp_hbinterval - This contains the value of the heartbeat interval,
52ccb8e9
FF
2122 * in milliseconds. If a value of zero
2123 * is present in this field then no changes are to
2124 * be made to this parameter.
1da177e4
LT
2125 * spp_pathmaxrxt - This contains the maximum number of
2126 * retransmissions before this address shall be
52ccb8e9
FF
2127 * considered unreachable. If a value of zero
2128 * is present in this field then no changes are to
2129 * be made to this parameter.
2130 * spp_pathmtu - When Path MTU discovery is disabled the value
2131 * specified here will be the "fixed" path mtu.
2132 * Note that if the spp_address field is empty
2133 * then all associations on this address will
2134 * have this fixed path mtu set upon them.
2135 *
2136 * spp_sackdelay - When delayed sack is enabled, this value specifies
2137 * the number of milliseconds that sacks will be delayed
2138 * for. This value will apply to all addresses of an
2139 * association if the spp_address field is empty. Note
2140 * also, that if delayed sack is enabled and this
2141 * value is set to 0, no change is made to the last
2142 * recorded delayed sack timer value.
2143 *
2144 * spp_flags - These flags are used to control various features
2145 * on an association. The flag field may contain
2146 * zero or more of the following options.
2147 *
2148 * SPP_HB_ENABLE - Enable heartbeats on the
2149 * specified address. Note that if the address
2150 * field is empty all addresses for the association
2151 * have heartbeats enabled upon them.
2152 *
2153 * SPP_HB_DISABLE - Disable heartbeats on the
2154 * speicifed address. Note that if the address
2155 * field is empty all addresses for the association
2156 * will have their heartbeats disabled. Note also
2157 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
2158 * mutually exclusive, only one of these two should
2159 * be specified. Enabling both fields will have
2160 * undetermined results.
2161 *
2162 * SPP_HB_DEMAND - Request a user initiated heartbeat
2163 * to be made immediately.
2164 *
bdf3092a
VY
2165 * SPP_HB_TIME_IS_ZERO - Specify's that the time for
2166 * heartbeat delayis to be set to the value of 0
2167 * milliseconds.
2168 *
52ccb8e9
FF
2169 * SPP_PMTUD_ENABLE - This field will enable PMTU
2170 * discovery upon the specified address. Note that
2171 * if the address feild is empty then all addresses
2172 * on the association are effected.
2173 *
2174 * SPP_PMTUD_DISABLE - This field will disable PMTU
2175 * discovery upon the specified address. Note that
2176 * if the address feild is empty then all addresses
2177 * on the association are effected. Not also that
2178 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2179 * exclusive. Enabling both will have undetermined
2180 * results.
2181 *
2182 * SPP_SACKDELAY_ENABLE - Setting this flag turns
2183 * on delayed sack. The time specified in spp_sackdelay
2184 * is used to specify the sack delay for this address. Note
2185 * that if spp_address is empty then all addresses will
2186 * enable delayed sack and take on the sack delay
2187 * value specified in spp_sackdelay.
2188 * SPP_SACKDELAY_DISABLE - Setting this flag turns
2189 * off delayed sack. If the spp_address field is blank then
2190 * delayed sack is disabled for the entire association. Note
2191 * also that this field is mutually exclusive to
2192 * SPP_SACKDELAY_ENABLE, setting both will have undefined
2193 * results.
1da177e4 2194 */
16164366
AB
2195static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2196 struct sctp_transport *trans,
2197 struct sctp_association *asoc,
2198 struct sctp_sock *sp,
2199 int hb_change,
2200 int pmtud_change,
2201 int sackdelay_change)
52ccb8e9
FF
2202{
2203 int error;
2204
2205 if (params->spp_flags & SPP_HB_DEMAND && trans) {
2206 error = sctp_primitive_REQUESTHEARTBEAT (trans->asoc, trans);
2207 if (error)
2208 return error;
2209 }
2210
bdf3092a
VY
2211 /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2212 * this field is ignored. Note also that a value of zero indicates
2213 * the current setting should be left unchanged.
2214 */
2215 if (params->spp_flags & SPP_HB_ENABLE) {
2216
2217 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2218 * set. This lets us use 0 value when this flag
2219 * is set.
2220 */
2221 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2222 params->spp_hbinterval = 0;
2223
2224 if (params->spp_hbinterval ||
2225 (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2226 if (trans) {
2227 trans->hbinterval =
2228 msecs_to_jiffies(params->spp_hbinterval);
2229 } else if (asoc) {
2230 asoc->hbinterval =
2231 msecs_to_jiffies(params->spp_hbinterval);
2232 } else {
2233 sp->hbinterval = params->spp_hbinterval;
2234 }
52ccb8e9
FF
2235 }
2236 }
2237
2238 if (hb_change) {
2239 if (trans) {
2240 trans->param_flags =
2241 (trans->param_flags & ~SPP_HB) | hb_change;
2242 } else if (asoc) {
2243 asoc->param_flags =
2244 (asoc->param_flags & ~SPP_HB) | hb_change;
2245 } else {
2246 sp->param_flags =
2247 (sp->param_flags & ~SPP_HB) | hb_change;
2248 }
2249 }
2250
bdf3092a
VY
2251 /* When Path MTU discovery is disabled the value specified here will
2252 * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2253 * include the flag SPP_PMTUD_DISABLE for this field to have any
2254 * effect).
2255 */
2256 if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
52ccb8e9
FF
2257 if (trans) {
2258 trans->pathmtu = params->spp_pathmtu;
2259 sctp_assoc_sync_pmtu(asoc);
2260 } else if (asoc) {
2261 asoc->pathmtu = params->spp_pathmtu;
f68b2e05 2262 sctp_frag_point(asoc, params->spp_pathmtu);
52ccb8e9
FF
2263 } else {
2264 sp->pathmtu = params->spp_pathmtu;
2265 }
2266 }
2267
2268 if (pmtud_change) {
2269 if (trans) {
2270 int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2271 (params->spp_flags & SPP_PMTUD_ENABLE);
2272 trans->param_flags =
2273 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2274 if (update) {
2275 sctp_transport_pmtu(trans);
2276 sctp_assoc_sync_pmtu(asoc);
2277 }
2278 } else if (asoc) {
2279 asoc->param_flags =
2280 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2281 } else {
2282 sp->param_flags =
2283 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2284 }
2285 }
2286
bdf3092a
VY
2287 /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2288 * value of this field is ignored. Note also that a value of zero
2289 * indicates the current setting should be left unchanged.
2290 */
2291 if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
52ccb8e9
FF
2292 if (trans) {
2293 trans->sackdelay =
2294 msecs_to_jiffies(params->spp_sackdelay);
2295 } else if (asoc) {
2296 asoc->sackdelay =
2297 msecs_to_jiffies(params->spp_sackdelay);
2298 } else {
2299 sp->sackdelay = params->spp_sackdelay;
2300 }
2301 }
2302
2303 if (sackdelay_change) {
2304 if (trans) {
2305 trans->param_flags =
2306 (trans->param_flags & ~SPP_SACKDELAY) |
2307 sackdelay_change;
2308 } else if (asoc) {
2309 asoc->param_flags =
2310 (asoc->param_flags & ~SPP_SACKDELAY) |
2311 sackdelay_change;
2312 } else {
2313 sp->param_flags =
2314 (sp->param_flags & ~SPP_SACKDELAY) |
2315 sackdelay_change;
2316 }
2317 }
2318
37051f73
APO
2319 /* Note that a value of zero indicates the current setting should be
2320 left unchanged.
bdf3092a 2321 */
37051f73 2322 if (params->spp_pathmaxrxt) {
52ccb8e9
FF
2323 if (trans) {
2324 trans->pathmaxrxt = params->spp_pathmaxrxt;
2325 } else if (asoc) {
2326 asoc->pathmaxrxt = params->spp_pathmaxrxt;
2327 } else {
2328 sp->pathmaxrxt = params->spp_pathmaxrxt;
2329 }
2330 }
2331
2332 return 0;
2333}
2334
1da177e4 2335static int sctp_setsockopt_peer_addr_params(struct sock *sk,
b7058842
DM
2336 char __user *optval,
2337 unsigned int optlen)
1da177e4 2338{
52ccb8e9
FF
2339 struct sctp_paddrparams params;
2340 struct sctp_transport *trans = NULL;
2341 struct sctp_association *asoc = NULL;
2342 struct sctp_sock *sp = sctp_sk(sk);
1da177e4 2343 int error;
52ccb8e9 2344 int hb_change, pmtud_change, sackdelay_change;
1da177e4
LT
2345
2346 if (optlen != sizeof(struct sctp_paddrparams))
52ccb8e9
FF
2347 return - EINVAL;
2348
1da177e4
LT
2349 if (copy_from_user(&params, optval, optlen))
2350 return -EFAULT;
2351
52ccb8e9
FF
2352 /* Validate flags and value parameters. */
2353 hb_change = params.spp_flags & SPP_HB;
2354 pmtud_change = params.spp_flags & SPP_PMTUD;
2355 sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2356
2357 if (hb_change == SPP_HB ||
2358 pmtud_change == SPP_PMTUD ||
2359 sackdelay_change == SPP_SACKDELAY ||
2360 params.spp_sackdelay > 500 ||
f64f9e71
JP
2361 (params.spp_pathmtu &&
2362 params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
52ccb8e9 2363 return -EINVAL;
1da177e4 2364
52ccb8e9
FF
2365 /* If an address other than INADDR_ANY is specified, and
2366 * no transport is found, then the request is invalid.
2367 */
52cae8f0 2368 if (!sctp_is_any(sk, ( union sctp_addr *)&params.spp_address)) {
52ccb8e9
FF
2369 trans = sctp_addr_id2transport(sk, &params.spp_address,
2370 params.spp_assoc_id);
2371 if (!trans)
1da177e4 2372 return -EINVAL;
1da177e4
LT
2373 }
2374
52ccb8e9
FF
2375 /* Get association, if assoc_id != 0 and the socket is a one
2376 * to many style socket, and an association was not found, then
2377 * the id was invalid.
2378 */
2379 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
2380 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP))
1da177e4
LT
2381 return -EINVAL;
2382
52ccb8e9
FF
2383 /* Heartbeat demand can only be sent on a transport or
2384 * association, but not a socket.
1da177e4 2385 */
52ccb8e9
FF
2386 if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2387 return -EINVAL;
2388
2389 /* Process parameters. */
2390 error = sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2391 hb_change, pmtud_change,
2392 sackdelay_change);
1da177e4 2393
52ccb8e9
FF
2394 if (error)
2395 return error;
2396
2397 /* If changes are for association, also apply parameters to each
2398 * transport.
1da177e4 2399 */
52ccb8e9 2400 if (!trans && asoc) {
9dbc15f0
RD
2401 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2402 transports) {
52ccb8e9
FF
2403 sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2404 hb_change, pmtud_change,
2405 sackdelay_change);
2406 }
2407 }
1da177e4
LT
2408
2409 return 0;
2410}
2411
d364d927
WY
2412/*
2413 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
2414 *
2415 * This option will effect the way delayed acks are performed. This
2416 * option allows you to get or set the delayed ack time, in
2417 * milliseconds. It also allows changing the delayed ack frequency.
2418 * Changing the frequency to 1 disables the delayed sack algorithm. If
2419 * the assoc_id is 0, then this sets or gets the endpoints default
2420 * values. If the assoc_id field is non-zero, then the set or get
2421 * effects the specified association for the one to many model (the
2422 * assoc_id field is ignored by the one to one model). Note that if
2423 * sack_delay or sack_freq are 0 when setting this option, then the
2424 * current values will remain unchanged.
2425 *
2426 * struct sctp_sack_info {
2427 * sctp_assoc_t sack_assoc_id;
2428 * uint32_t sack_delay;
2429 * uint32_t sack_freq;
2430 * };
2431 *
2432 * sack_assoc_id - This parameter, indicates which association the user
2433 * is performing an action upon. Note that if this field's value is
2434 * zero then the endpoints default value is changed (effecting future
2435 * associations only).
2436 *
2437 * sack_delay - This parameter contains the number of milliseconds that
2438 * the user is requesting the delayed ACK timer be set to. Note that
2439 * this value is defined in the standard to be between 200 and 500
2440 * milliseconds.
2441 *
2442 * sack_freq - This parameter contains the number of packets that must
2443 * be received before a sack is sent without waiting for the delay
2444 * timer to expire. The default value for this is 2, setting this
2445 * value to 1 will disable the delayed sack algorithm.
7708610b
FF
2446 */
2447
d364d927 2448static int sctp_setsockopt_delayed_ack(struct sock *sk,
b7058842 2449 char __user *optval, unsigned int optlen)
7708610b 2450{
d364d927 2451 struct sctp_sack_info params;
7708610b
FF
2452 struct sctp_transport *trans = NULL;
2453 struct sctp_association *asoc = NULL;
2454 struct sctp_sock *sp = sctp_sk(sk);
2455
d364d927
WY
2456 if (optlen == sizeof(struct sctp_sack_info)) {
2457 if (copy_from_user(&params, optval, optlen))
2458 return -EFAULT;
7708610b 2459
d364d927
WY
2460 if (params.sack_delay == 0 && params.sack_freq == 0)
2461 return 0;
2462 } else if (optlen == sizeof(struct sctp_assoc_value)) {
145ce502
JP
2463 pr_warn("Use of struct sctp_assoc_value in delayed_ack socket option deprecated\n");
2464 pr_warn("Use struct sctp_sack_info instead\n");
d364d927
WY
2465 if (copy_from_user(&params, optval, optlen))
2466 return -EFAULT;
2467
2468 if (params.sack_delay == 0)
2469 params.sack_freq = 1;
2470 else
2471 params.sack_freq = 0;
2472 } else
2473 return - EINVAL;
7708610b
FF
2474
2475 /* Validate value parameter. */
d364d927 2476 if (params.sack_delay > 500)
7708610b
FF
2477 return -EINVAL;
2478
d364d927 2479 /* Get association, if sack_assoc_id != 0 and the socket is a one
7708610b
FF
2480 * to many style socket, and an association was not found, then
2481 * the id was invalid.
d808ad9a 2482 */
d364d927
WY
2483 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
2484 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
7708610b
FF
2485 return -EINVAL;
2486
d364d927 2487 if (params.sack_delay) {
7708610b
FF
2488 if (asoc) {
2489 asoc->sackdelay =
d364d927 2490 msecs_to_jiffies(params.sack_delay);
d808ad9a 2491 asoc->param_flags =
7708610b
FF
2492 (asoc->param_flags & ~SPP_SACKDELAY) |
2493 SPP_SACKDELAY_ENABLE;
2494 } else {
d364d927 2495 sp->sackdelay = params.sack_delay;
d808ad9a 2496 sp->param_flags =
7708610b
FF
2497 (sp->param_flags & ~SPP_SACKDELAY) |
2498 SPP_SACKDELAY_ENABLE;
2499 }
d364d927
WY
2500 }
2501
2502 if (params.sack_freq == 1) {
7708610b 2503 if (asoc) {
d808ad9a 2504 asoc->param_flags =
7708610b
FF
2505 (asoc->param_flags & ~SPP_SACKDELAY) |
2506 SPP_SACKDELAY_DISABLE;
2507 } else {
d808ad9a 2508 sp->param_flags =
7708610b
FF
2509 (sp->param_flags & ~SPP_SACKDELAY) |
2510 SPP_SACKDELAY_DISABLE;
2511 }
d364d927
WY
2512 } else if (params.sack_freq > 1) {
2513 if (asoc) {
2514 asoc->sackfreq = params.sack_freq;
2515 asoc->param_flags =
2516 (asoc->param_flags & ~SPP_SACKDELAY) |
2517 SPP_SACKDELAY_ENABLE;
2518 } else {
2519 sp->sackfreq = params.sack_freq;
2520 sp->param_flags =
2521 (sp->param_flags & ~SPP_SACKDELAY) |
2522 SPP_SACKDELAY_ENABLE;
2523 }
7708610b
FF
2524 }
2525
2526 /* If change is for association, also apply to each transport. */
2527 if (asoc) {
9dbc15f0
RD
2528 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2529 transports) {
d364d927 2530 if (params.sack_delay) {
7708610b 2531 trans->sackdelay =
d364d927 2532 msecs_to_jiffies(params.sack_delay);
d808ad9a 2533 trans->param_flags =
7708610b
FF
2534 (trans->param_flags & ~SPP_SACKDELAY) |
2535 SPP_SACKDELAY_ENABLE;
d364d927 2536 }
7bfe8bdb 2537 if (params.sack_freq == 1) {
d808ad9a 2538 trans->param_flags =
7708610b
FF
2539 (trans->param_flags & ~SPP_SACKDELAY) |
2540 SPP_SACKDELAY_DISABLE;
d364d927
WY
2541 } else if (params.sack_freq > 1) {
2542 trans->sackfreq = params.sack_freq;
2543 trans->param_flags =
2544 (trans->param_flags & ~SPP_SACKDELAY) |
2545 SPP_SACKDELAY_ENABLE;
7708610b
FF
2546 }
2547 }
2548 }
d808ad9a 2549
7708610b
FF
2550 return 0;
2551}
2552
1da177e4
LT
2553/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2554 *
2555 * Applications can specify protocol parameters for the default association
2556 * initialization. The option name argument to setsockopt() and getsockopt()
2557 * is SCTP_INITMSG.
2558 *
2559 * Setting initialization parameters is effective only on an unconnected
2560 * socket (for UDP-style sockets only future associations are effected
2561 * by the change). With TCP-style sockets, this option is inherited by
2562 * sockets derived from a listener socket.
2563 */
b7058842 2564static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, unsigned int optlen)
1da177e4
LT
2565{
2566 struct sctp_initmsg sinit;
2567 struct sctp_sock *sp = sctp_sk(sk);
2568
2569 if (optlen != sizeof(struct sctp_initmsg))
2570 return -EINVAL;
2571 if (copy_from_user(&sinit, optval, optlen))
2572 return -EFAULT;
2573
2574 if (sinit.sinit_num_ostreams)
d808ad9a 2575 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
1da177e4 2576 if (sinit.sinit_max_instreams)
d808ad9a 2577 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
1da177e4 2578 if (sinit.sinit_max_attempts)
d808ad9a 2579 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
1da177e4 2580 if (sinit.sinit_max_init_timeo)
d808ad9a 2581 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
1da177e4
LT
2582
2583 return 0;
2584}
2585
2586/*
2587 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2588 *
2589 * Applications that wish to use the sendto() system call may wish to
2590 * specify a default set of parameters that would normally be supplied
2591 * through the inclusion of ancillary data. This socket option allows
2592 * such an application to set the default sctp_sndrcvinfo structure.
2593 * The application that wishes to use this socket option simply passes
2594 * in to this call the sctp_sndrcvinfo structure defined in Section
2595 * 5.2.2) The input parameters accepted by this call include
2596 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2597 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
2598 * to this call if the caller is using the UDP model.
2599 */
2600static int sctp_setsockopt_default_send_param(struct sock *sk,
b7058842
DM
2601 char __user *optval,
2602 unsigned int optlen)
1da177e4
LT
2603{
2604 struct sctp_sndrcvinfo info;
2605 struct sctp_association *asoc;
2606 struct sctp_sock *sp = sctp_sk(sk);
2607
2608 if (optlen != sizeof(struct sctp_sndrcvinfo))
2609 return -EINVAL;
2610 if (copy_from_user(&info, optval, optlen))
2611 return -EFAULT;
2612
2613 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
2614 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
2615 return -EINVAL;
2616
2617 if (asoc) {
2618 asoc->default_stream = info.sinfo_stream;
2619 asoc->default_flags = info.sinfo_flags;
2620 asoc->default_ppid = info.sinfo_ppid;
2621 asoc->default_context = info.sinfo_context;
2622 asoc->default_timetolive = info.sinfo_timetolive;
2623 } else {
2624 sp->default_stream = info.sinfo_stream;
2625 sp->default_flags = info.sinfo_flags;
2626 sp->default_ppid = info.sinfo_ppid;
2627 sp->default_context = info.sinfo_context;
2628 sp->default_timetolive = info.sinfo_timetolive;
2629 }
2630
2631 return 0;
2632}
2633
2634/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
2635 *
2636 * Requests that the local SCTP stack use the enclosed peer address as
2637 * the association primary. The enclosed address must be one of the
2638 * association peer's addresses.
2639 */
2640static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
b7058842 2641 unsigned int optlen)
1da177e4
LT
2642{
2643 struct sctp_prim prim;
2644 struct sctp_transport *trans;
2645
2646 if (optlen != sizeof(struct sctp_prim))
2647 return -EINVAL;
2648
2649 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
2650 return -EFAULT;
2651
2652 trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
2653 if (!trans)
2654 return -EINVAL;
2655
2656 sctp_assoc_set_primary(trans->asoc, trans);
2657
2658 return 0;
2659}
2660
2661/*
2662 * 7.1.5 SCTP_NODELAY
2663 *
2664 * Turn on/off any Nagle-like algorithm. This means that packets are
2665 * generally sent as soon as possible and no unnecessary delays are
2666 * introduced, at the cost of more packets in the network. Expects an
2667 * integer boolean flag.
2668 */
2669static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
b7058842 2670 unsigned int optlen)
1da177e4
LT
2671{
2672 int val;
2673
2674 if (optlen < sizeof(int))
2675 return -EINVAL;
2676 if (get_user(val, (int __user *)optval))
2677 return -EFAULT;
2678
2679 sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
2680 return 0;
2681}
2682
2683/*
2684 *
2685 * 7.1.1 SCTP_RTOINFO
2686 *
2687 * The protocol parameters used to initialize and bound retransmission
2688 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
2689 * and modify these parameters.
2690 * All parameters are time values, in milliseconds. A value of 0, when
2691 * modifying the parameters, indicates that the current value should not
2692 * be changed.
2693 *
2694 */
b7058842
DM
2695static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, unsigned int optlen)
2696{
1da177e4
LT
2697 struct sctp_rtoinfo rtoinfo;
2698 struct sctp_association *asoc;
2699
2700 if (optlen != sizeof (struct sctp_rtoinfo))
2701 return -EINVAL;
2702
2703 if (copy_from_user(&rtoinfo, optval, optlen))
2704 return -EFAULT;
2705
2706 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
2707
2708 /* Set the values to the specific association */
2709 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
2710 return -EINVAL;
2711
2712 if (asoc) {
2713 if (rtoinfo.srto_initial != 0)
d808ad9a 2714 asoc->rto_initial =
1da177e4
LT
2715 msecs_to_jiffies(rtoinfo.srto_initial);
2716 if (rtoinfo.srto_max != 0)
2717 asoc->rto_max = msecs_to_jiffies(rtoinfo.srto_max);
2718 if (rtoinfo.srto_min != 0)
2719 asoc->rto_min = msecs_to_jiffies(rtoinfo.srto_min);
2720 } else {
2721 /* If there is no association or the association-id = 0
2722 * set the values to the endpoint.
2723 */
2724 struct sctp_sock *sp = sctp_sk(sk);
2725
2726 if (rtoinfo.srto_initial != 0)
2727 sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
2728 if (rtoinfo.srto_max != 0)
2729 sp->rtoinfo.srto_max = rtoinfo.srto_max;
2730 if (rtoinfo.srto_min != 0)
2731 sp->rtoinfo.srto_min = rtoinfo.srto_min;
2732 }
2733
2734 return 0;
2735}
2736
2737/*
2738 *
2739 * 7.1.2 SCTP_ASSOCINFO
2740 *
59c51591 2741 * This option is used to tune the maximum retransmission attempts
1da177e4
LT
2742 * of the association.
2743 * Returns an error if the new association retransmission value is
2744 * greater than the sum of the retransmission value of the peer.
2745 * See [SCTP] for more information.
2746 *
2747 */
b7058842 2748static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, unsigned int optlen)
1da177e4
LT
2749{
2750
2751 struct sctp_assocparams assocparams;
2752 struct sctp_association *asoc;
2753
2754 if (optlen != sizeof(struct sctp_assocparams))
2755 return -EINVAL;
2756 if (copy_from_user(&assocparams, optval, optlen))
2757 return -EFAULT;
2758
2759 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
2760
2761 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
2762 return -EINVAL;
2763
2764 /* Set the values to the specific association */
2765 if (asoc) {
402d68c4
VY
2766 if (assocparams.sasoc_asocmaxrxt != 0) {
2767 __u32 path_sum = 0;
2768 int paths = 0;
402d68c4
VY
2769 struct sctp_transport *peer_addr;
2770
9dbc15f0
RD
2771 list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
2772 transports) {
402d68c4
VY
2773 path_sum += peer_addr->pathmaxrxt;
2774 paths++;
2775 }
2776
025dfdaf 2777 /* Only validate asocmaxrxt if we have more than
402d68c4
VY
2778 * one path/transport. We do this because path
2779 * retransmissions are only counted when we have more
2780 * then one path.
2781 */
2782 if (paths > 1 &&
2783 assocparams.sasoc_asocmaxrxt > path_sum)
2784 return -EINVAL;
2785
1da177e4 2786 asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
402d68c4
VY
2787 }
2788
1da177e4
LT
2789 if (assocparams.sasoc_cookie_life != 0) {
2790 asoc->cookie_life.tv_sec =
2791 assocparams.sasoc_cookie_life / 1000;
2792 asoc->cookie_life.tv_usec =
2793 (assocparams.sasoc_cookie_life % 1000)
2794 * 1000;
2795 }
2796 } else {
2797 /* Set the values to the endpoint */
2798 struct sctp_sock *sp = sctp_sk(sk);
2799
2800 if (assocparams.sasoc_asocmaxrxt != 0)
2801 sp->assocparams.sasoc_asocmaxrxt =
2802 assocparams.sasoc_asocmaxrxt;
2803 if (assocparams.sasoc_cookie_life != 0)
2804 sp->assocparams.sasoc_cookie_life =
2805 assocparams.sasoc_cookie_life;
2806 }
2807 return 0;
2808}
2809
2810/*
2811 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
2812 *
2813 * This socket option is a boolean flag which turns on or off mapped V4
2814 * addresses. If this option is turned on and the socket is type
2815 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
2816 * If this option is turned off, then no mapping will be done of V4
2817 * addresses and a user will receive both PF_INET6 and PF_INET type
2818 * addresses on the socket.
2819 */
b7058842 2820static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen)
1da177e4
LT
2821{
2822 int val;
2823 struct sctp_sock *sp = sctp_sk(sk);
2824
2825 if (optlen < sizeof(int))
2826 return -EINVAL;
2827 if (get_user(val, (int __user *)optval))
2828 return -EFAULT;
2829 if (val)
2830 sp->v4mapped = 1;
2831 else
2832 sp->v4mapped = 0;
2833
2834 return 0;
2835}
2836
2837/*
e89c2095
WY
2838 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
2839 * This option will get or set the maximum size to put in any outgoing
2840 * SCTP DATA chunk. If a message is larger than this size it will be
1da177e4
LT
2841 * fragmented by SCTP into the specified size. Note that the underlying
2842 * SCTP implementation may fragment into smaller sized chunks when the
2843 * PMTU of the underlying association is smaller than the value set by
e89c2095
WY
2844 * the user. The default value for this option is '0' which indicates
2845 * the user is NOT limiting fragmentation and only the PMTU will effect
2846 * SCTP's choice of DATA chunk size. Note also that values set larger
2847 * than the maximum size of an IP datagram will effectively let SCTP
2848 * control fragmentation (i.e. the same as setting this option to 0).
2849 *
2850 * The following structure is used to access and modify this parameter:
2851 *
2852 * struct sctp_assoc_value {
2853 * sctp_assoc_t assoc_id;
2854 * uint32_t assoc_value;
2855 * };
2856 *
2857 * assoc_id: This parameter is ignored for one-to-one style sockets.
2858 * For one-to-many style sockets this parameter indicates which
2859 * association the user is performing an action upon. Note that if
2860 * this field's value is zero then the endpoints default value is
2861 * changed (effecting future associations only).
2862 * assoc_value: This parameter specifies the maximum size in bytes.
1da177e4 2863 */
b7058842 2864static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen)
1da177e4 2865{
e89c2095 2866 struct sctp_assoc_value params;
1da177e4 2867 struct sctp_association *asoc;
1da177e4
LT
2868 struct sctp_sock *sp = sctp_sk(sk);
2869 int val;
2870
e89c2095 2871 if (optlen == sizeof(int)) {
145ce502
JP
2872 pr_warn("Use of int in maxseg socket option deprecated\n");
2873 pr_warn("Use struct sctp_assoc_value instead\n");
e89c2095
WY
2874 if (copy_from_user(&val, optval, optlen))
2875 return -EFAULT;
2876 params.assoc_id = 0;
2877 } else if (optlen == sizeof(struct sctp_assoc_value)) {
2878 if (copy_from_user(&params, optval, optlen))
2879 return -EFAULT;
2880 val = params.assoc_value;
2881 } else
1da177e4 2882 return -EINVAL;
e89c2095 2883
96a33998 2884 if ((val != 0) && ((val < 8) || (val > SCTP_MAX_CHUNK_LEN)))
1da177e4 2885 return -EINVAL;
1da177e4 2886
e89c2095
WY
2887 asoc = sctp_id2assoc(sk, params.assoc_id);
2888 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
2889 return -EINVAL;
2890
2891 if (asoc) {
2892 if (val == 0) {
2893 val = asoc->pathmtu;
2894 val -= sp->pf->af->net_header_len;
2895 val -= sizeof(struct sctphdr) +
2896 sizeof(struct sctp_data_chunk);
2897 }
f68b2e05
VY
2898 asoc->user_frag = val;
2899 asoc->frag_point = sctp_frag_point(asoc, asoc->pathmtu);
e89c2095
WY
2900 } else {
2901 sp->user_frag = val;
1da177e4
LT
2902 }
2903
2904 return 0;
2905}
2906
2907
2908/*
2909 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
2910 *
2911 * Requests that the peer mark the enclosed address as the association
2912 * primary. The enclosed address must be one of the association's
2913 * locally bound addresses. The following structure is used to make a
2914 * set primary request:
2915 */
2916static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
b7058842 2917 unsigned int optlen)
1da177e4
LT
2918{
2919 struct sctp_sock *sp;
2920 struct sctp_endpoint *ep;
2921 struct sctp_association *asoc = NULL;
2922 struct sctp_setpeerprim prim;
2923 struct sctp_chunk *chunk;
2924 int err;
2925
2926 sp = sctp_sk(sk);
2927 ep = sp->ep;
2928
2929 if (!sctp_addip_enable)
2930 return -EPERM;
2931
2932 if (optlen != sizeof(struct sctp_setpeerprim))
2933 return -EINVAL;
2934
2935 if (copy_from_user(&prim, optval, optlen))
2936 return -EFAULT;
2937
2938 asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
d808ad9a 2939 if (!asoc)
1da177e4
LT
2940 return -EINVAL;
2941
2942 if (!asoc->peer.asconf_capable)
2943 return -EPERM;
2944
2945 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
2946 return -EPERM;
2947
2948 if (!sctp_state(asoc, ESTABLISHED))
2949 return -ENOTCONN;
2950
2951 if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
2952 return -EADDRNOTAVAIL;
2953
2954 /* Create an ASCONF chunk with SET_PRIMARY parameter */
2955 chunk = sctp_make_asconf_set_prim(asoc,
2956 (union sctp_addr *)&prim.sspp_addr);
2957 if (!chunk)
2958 return -ENOMEM;
2959
2960 err = sctp_send_asconf(asoc, chunk);
2961
2962 SCTP_DEBUG_PRINTK("We set peer primary addr primitively.\n");
2963
2964 return err;
2965}
2966
0f3fffd8 2967static int sctp_setsockopt_adaptation_layer(struct sock *sk, char __user *optval,
b7058842 2968 unsigned int optlen)
1da177e4 2969{
0f3fffd8 2970 struct sctp_setadaptation adaptation;
1da177e4 2971
0f3fffd8 2972 if (optlen != sizeof(struct sctp_setadaptation))
1da177e4 2973 return -EINVAL;
0f3fffd8 2974 if (copy_from_user(&adaptation, optval, optlen))
1da177e4
LT
2975 return -EFAULT;
2976
0f3fffd8 2977 sctp_sk(sk)->adaptation_ind = adaptation.ssb_adaptation_ind;
1da177e4
LT
2978
2979 return 0;
2980}
2981
6ab792f5
ISJ
2982/*
2983 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
2984 *
2985 * The context field in the sctp_sndrcvinfo structure is normally only
2986 * used when a failed message is retrieved holding the value that was
2987 * sent down on the actual send call. This option allows the setting of
2988 * a default context on an association basis that will be received on
2989 * reading messages from the peer. This is especially helpful in the
2990 * one-2-many model for an application to keep some reference to an
2991 * internal state machine that is processing messages on the
2992 * association. Note that the setting of this value only effects
2993 * received messages from the peer and does not effect the value that is
2994 * saved with outbound messages.
2995 */
2996static int sctp_setsockopt_context(struct sock *sk, char __user *optval,
b7058842 2997 unsigned int optlen)
6ab792f5
ISJ
2998{
2999 struct sctp_assoc_value params;
3000 struct sctp_sock *sp;
3001 struct sctp_association *asoc;
3002
3003 if (optlen != sizeof(struct sctp_assoc_value))
3004 return -EINVAL;
3005 if (copy_from_user(&params, optval, optlen))
3006 return -EFAULT;
3007
3008 sp = sctp_sk(sk);
3009
3010 if (params.assoc_id != 0) {
3011 asoc = sctp_id2assoc(sk, params.assoc_id);
3012 if (!asoc)
3013 return -EINVAL;
3014 asoc->default_rcv_context = params.assoc_value;
3015 } else {
3016 sp->default_rcv_context = params.assoc_value;
3017 }
3018
3019 return 0;
3020}
3021
b6e1331f
VY
3022/*
3023 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
3024 *
3025 * This options will at a minimum specify if the implementation is doing
3026 * fragmented interleave. Fragmented interleave, for a one to many
3027 * socket, is when subsequent calls to receive a message may return
3028 * parts of messages from different associations. Some implementations
3029 * may allow you to turn this value on or off. If so, when turned off,
3030 * no fragment interleave will occur (which will cause a head of line
3031 * blocking amongst multiple associations sharing the same one to many
3032 * socket). When this option is turned on, then each receive call may
3033 * come from a different association (thus the user must receive data
3034 * with the extended calls (e.g. sctp_recvmsg) to keep track of which
3035 * association each receive belongs to.
3036 *
3037 * This option takes a boolean value. A non-zero value indicates that
3038 * fragmented interleave is on. A value of zero indicates that
3039 * fragmented interleave is off.
3040 *
3041 * Note that it is important that an implementation that allows this
3042 * option to be turned on, have it off by default. Otherwise an unaware
3043 * application using the one to many model may become confused and act
3044 * incorrectly.
3045 */
3046static int sctp_setsockopt_fragment_interleave(struct sock *sk,
3047 char __user *optval,
b7058842 3048 unsigned int optlen)
b6e1331f
VY
3049{
3050 int val;
3051
3052 if (optlen != sizeof(int))
3053 return -EINVAL;
3054 if (get_user(val, (int __user *)optval))
3055 return -EFAULT;
3056
3057 sctp_sk(sk)->frag_interleave = (val == 0) ? 0 : 1;
3058
3059 return 0;
3060}
3061
d49d91d7 3062/*
8510b937 3063 * 8.1.21. Set or Get the SCTP Partial Delivery Point
d49d91d7 3064 * (SCTP_PARTIAL_DELIVERY_POINT)
8510b937 3065 *
d49d91d7
VY
3066 * This option will set or get the SCTP partial delivery point. This
3067 * point is the size of a message where the partial delivery API will be
3068 * invoked to help free up rwnd space for the peer. Setting this to a
8510b937 3069 * lower value will cause partial deliveries to happen more often. The
d49d91d7 3070 * calls argument is an integer that sets or gets the partial delivery
8510b937
WY
3071 * point. Note also that the call will fail if the user attempts to set
3072 * this value larger than the socket receive buffer size.
3073 *
3074 * Note that any single message having a length smaller than or equal to
3075 * the SCTP partial delivery point will be delivered in one single read
3076 * call as long as the user provided buffer is large enough to hold the
3077 * message.
d49d91d7
VY
3078 */
3079static int sctp_setsockopt_partial_delivery_point(struct sock *sk,
3080 char __user *optval,
b7058842 3081 unsigned int optlen)
d49d91d7
VY
3082{
3083 u32 val;
3084
3085 if (optlen != sizeof(u32))
3086 return -EINVAL;
3087 if (get_user(val, (int __user *)optval))
3088 return -EFAULT;
3089
8510b937
WY
3090 /* Note: We double the receive buffer from what the user sets
3091 * it to be, also initial rwnd is based on rcvbuf/2.
3092 */
3093 if (val > (sk->sk_rcvbuf >> 1))
3094 return -EINVAL;
3095
d49d91d7
VY
3096 sctp_sk(sk)->pd_point = val;
3097
3098 return 0; /* is this the right error code? */
3099}
3100
70331571
VY
3101/*
3102 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
3103 *
3104 * This option will allow a user to change the maximum burst of packets
3105 * that can be emitted by this association. Note that the default value
3106 * is 4, and some implementations may restrict this setting so that it
3107 * can only be lowered.
3108 *
3109 * NOTE: This text doesn't seem right. Do this on a socket basis with
3110 * future associations inheriting the socket value.
3111 */
3112static int sctp_setsockopt_maxburst(struct sock *sk,
3113 char __user *optval,
b7058842 3114 unsigned int optlen)
70331571 3115{
219b99a9
NH
3116 struct sctp_assoc_value params;
3117 struct sctp_sock *sp;
3118 struct sctp_association *asoc;
70331571 3119 int val;
219b99a9 3120 int assoc_id = 0;
70331571 3121
219b99a9 3122 if (optlen == sizeof(int)) {
145ce502
JP
3123 pr_warn("Use of int in max_burst socket option deprecated\n");
3124 pr_warn("Use struct sctp_assoc_value instead\n");
219b99a9
NH
3125 if (copy_from_user(&val, optval, optlen))
3126 return -EFAULT;
3127 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3128 if (copy_from_user(&params, optval, optlen))
3129 return -EFAULT;
3130 val = params.assoc_value;
3131 assoc_id = params.assoc_id;
3132 } else
70331571
VY
3133 return -EINVAL;
3134
219b99a9
NH
3135 sp = sctp_sk(sk);
3136
3137 if (assoc_id != 0) {
3138 asoc = sctp_id2assoc(sk, assoc_id);
3139 if (!asoc)
3140 return -EINVAL;
3141 asoc->max_burst = val;
3142 } else
3143 sp->max_burst = val;
70331571
VY
3144
3145 return 0;
3146}
3147
65b07e5d
VY
3148/*
3149 * 7.1.18. Add a chunk that must be authenticated (SCTP_AUTH_CHUNK)
3150 *
3151 * This set option adds a chunk type that the user is requesting to be
3152 * received only in an authenticated way. Changes to the list of chunks
3153 * will only effect future associations on the socket.
3154 */
3155static int sctp_setsockopt_auth_chunk(struct sock *sk,
b7058842
DM
3156 char __user *optval,
3157 unsigned int optlen)
65b07e5d
VY
3158{
3159 struct sctp_authchunk val;
3160
5e739d17
VY
3161 if (!sctp_auth_enable)
3162 return -EACCES;
3163
65b07e5d
VY
3164 if (optlen != sizeof(struct sctp_authchunk))
3165 return -EINVAL;
3166 if (copy_from_user(&val, optval, optlen))
3167 return -EFAULT;
3168
3169 switch (val.sauth_chunk) {
3170 case SCTP_CID_INIT:
3171 case SCTP_CID_INIT_ACK:
3172 case SCTP_CID_SHUTDOWN_COMPLETE:
3173 case SCTP_CID_AUTH:
3174 return -EINVAL;
3175 }
3176
3177 /* add this chunk id to the endpoint */
3178 return sctp_auth_ep_add_chunkid(sctp_sk(sk)->ep, val.sauth_chunk);
3179}
3180
3181/*
3182 * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
3183 *
3184 * This option gets or sets the list of HMAC algorithms that the local
3185 * endpoint requires the peer to use.
3186 */
3187static int sctp_setsockopt_hmac_ident(struct sock *sk,
b7058842
DM
3188 char __user *optval,
3189 unsigned int optlen)
65b07e5d
VY
3190{
3191 struct sctp_hmacalgo *hmacs;
d9724055 3192 u32 idents;
65b07e5d
VY
3193 int err;
3194
5e739d17
VY
3195 if (!sctp_auth_enable)
3196 return -EACCES;
3197
65b07e5d
VY
3198 if (optlen < sizeof(struct sctp_hmacalgo))
3199 return -EINVAL;
3200
3201 hmacs = kmalloc(optlen, GFP_KERNEL);
3202 if (!hmacs)
3203 return -ENOMEM;
3204
3205 if (copy_from_user(hmacs, optval, optlen)) {
3206 err = -EFAULT;
3207 goto out;
3208 }
3209
d9724055
VY
3210 idents = hmacs->shmac_num_idents;
3211 if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS ||
3212 (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo))) {
65b07e5d
VY
3213 err = -EINVAL;
3214 goto out;
3215 }
3216
3217 err = sctp_auth_ep_set_hmacs(sctp_sk(sk)->ep, hmacs);
3218out:
3219 kfree(hmacs);
3220 return err;
3221}
3222
3223/*
3224 * 7.1.20. Set a shared key (SCTP_AUTH_KEY)
3225 *
3226 * This option will set a shared secret key which is used to build an
3227 * association shared key.
3228 */
3229static int sctp_setsockopt_auth_key(struct sock *sk,
3230 char __user *optval,
b7058842 3231 unsigned int optlen)
65b07e5d
VY
3232{
3233 struct sctp_authkey *authkey;
3234 struct sctp_association *asoc;
3235 int ret;
3236
5e739d17
VY
3237 if (!sctp_auth_enable)
3238 return -EACCES;
3239
65b07e5d
VY
3240 if (optlen <= sizeof(struct sctp_authkey))
3241 return -EINVAL;
3242
3243 authkey = kmalloc(optlen, GFP_KERNEL);
3244 if (!authkey)
3245 return -ENOMEM;
3246
3247 if (copy_from_user(authkey, optval, optlen)) {
3248 ret = -EFAULT;
3249 goto out;
3250 }
3251
328fc47e 3252 if (authkey->sca_keylength > optlen - sizeof(struct sctp_authkey)) {
30c2235c
VY
3253 ret = -EINVAL;
3254 goto out;
3255 }
3256
65b07e5d
VY
3257 asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
3258 if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) {
3259 ret = -EINVAL;
3260 goto out;
3261 }
3262
3263 ret = sctp_auth_set_key(sctp_sk(sk)->ep, asoc, authkey);
3264out:
3265 kfree(authkey);
3266 return ret;
3267}
3268
3269/*
3270 * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
3271 *
3272 * This option will get or set the active shared key to be used to build
3273 * the association shared key.
3274 */
3275static int sctp_setsockopt_active_key(struct sock *sk,
b7058842
DM
3276 char __user *optval,
3277 unsigned int optlen)
65b07e5d
VY
3278{
3279 struct sctp_authkeyid val;
3280 struct sctp_association *asoc;
3281
5e739d17
VY
3282 if (!sctp_auth_enable)
3283 return -EACCES;
3284
65b07e5d
VY
3285 if (optlen != sizeof(struct sctp_authkeyid))
3286 return -EINVAL;
3287 if (copy_from_user(&val, optval, optlen))
3288 return -EFAULT;
3289
3290 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3291 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3292 return -EINVAL;
3293
3294 return sctp_auth_set_active_key(sctp_sk(sk)->ep, asoc,
3295 val.scact_keynumber);
3296}
3297
3298/*
3299 * 7.1.22. Delete a shared key (SCTP_AUTH_DELETE_KEY)
3300 *
3301 * This set option will delete a shared secret key from use.
3302 */
3303static int sctp_setsockopt_del_key(struct sock *sk,
b7058842
DM
3304 char __user *optval,
3305 unsigned int optlen)
65b07e5d
VY
3306{
3307 struct sctp_authkeyid val;
3308 struct sctp_association *asoc;
3309
5e739d17
VY
3310 if (!sctp_auth_enable)
3311 return -EACCES;
3312
65b07e5d
VY
3313 if (optlen != sizeof(struct sctp_authkeyid))
3314 return -EINVAL;
3315 if (copy_from_user(&val, optval, optlen))
3316 return -EFAULT;
3317
3318 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3319 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3320 return -EINVAL;
3321
3322 return sctp_auth_del_key_id(sctp_sk(sk)->ep, asoc,
3323 val.scact_keynumber);
3324
3325}
3326
3327
1da177e4
LT
3328/* API 6.2 setsockopt(), getsockopt()
3329 *
3330 * Applications use setsockopt() and getsockopt() to set or retrieve
3331 * socket options. Socket options are used to change the default
3332 * behavior of sockets calls. They are described in Section 7.
3333 *
3334 * The syntax is:
3335 *
3336 * ret = getsockopt(int sd, int level, int optname, void __user *optval,
3337 * int __user *optlen);
3338 * ret = setsockopt(int sd, int level, int optname, const void __user *optval,
3339 * int optlen);
3340 *
3341 * sd - the socket descript.
3342 * level - set to IPPROTO_SCTP for all SCTP options.
3343 * optname - the option name.
3344 * optval - the buffer to store the value of the option.
3345 * optlen - the size of the buffer.
3346 */
3347SCTP_STATIC int sctp_setsockopt(struct sock *sk, int level, int optname,
b7058842 3348 char __user *optval, unsigned int optlen)
1da177e4
LT
3349{
3350 int retval = 0;
3351
3352 SCTP_DEBUG_PRINTK("sctp_setsockopt(sk: %p... optname: %d)\n",
3353 sk, optname);
3354
3355 /* I can hardly begin to describe how wrong this is. This is
3356 * so broken as to be worse than useless. The API draft
3357 * REALLY is NOT helpful here... I am not convinced that the
3358 * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
3359 * are at all well-founded.
3360 */
3361 if (level != SOL_SCTP) {
3362 struct sctp_af *af = sctp_sk(sk)->pf->af;
3363 retval = af->setsockopt(sk, level, optname, optval, optlen);
3364 goto out_nounlock;
3365 }
3366
3367 sctp_lock_sock(sk);
3368
3369 switch (optname) {
3370 case SCTP_SOCKOPT_BINDX_ADD:
3371 /* 'optlen' is the size of the addresses buffer. */
3372 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
3373 optlen, SCTP_BINDX_ADD_ADDR);
3374 break;
3375
3376 case SCTP_SOCKOPT_BINDX_REM:
3377 /* 'optlen' is the size of the addresses buffer. */
3378 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
3379 optlen, SCTP_BINDX_REM_ADDR);
3380 break;
3381
88a0a948
VY
3382 case SCTP_SOCKOPT_CONNECTX_OLD:
3383 /* 'optlen' is the size of the addresses buffer. */
3384 retval = sctp_setsockopt_connectx_old(sk,
3385 (struct sockaddr __user *)optval,
3386 optlen);
3387 break;
3388
3f7a87d2
FF
3389 case SCTP_SOCKOPT_CONNECTX:
3390 /* 'optlen' is the size of the addresses buffer. */
88a0a948
VY
3391 retval = sctp_setsockopt_connectx(sk,
3392 (struct sockaddr __user *)optval,
3393 optlen);
3f7a87d2
FF
3394 break;
3395
1da177e4
LT
3396 case SCTP_DISABLE_FRAGMENTS:
3397 retval = sctp_setsockopt_disable_fragments(sk, optval, optlen);
3398 break;
3399
3400 case SCTP_EVENTS:
3401 retval = sctp_setsockopt_events(sk, optval, optlen);
3402 break;
3403
3404 case SCTP_AUTOCLOSE:
3405 retval = sctp_setsockopt_autoclose(sk, optval, optlen);
3406 break;
3407
3408 case SCTP_PEER_ADDR_PARAMS:
3409 retval = sctp_setsockopt_peer_addr_params(sk, optval, optlen);
3410 break;
3411
d364d927
WY
3412 case SCTP_DELAYED_ACK:
3413 retval = sctp_setsockopt_delayed_ack(sk, optval, optlen);
7708610b 3414 break;
d49d91d7
VY
3415 case SCTP_PARTIAL_DELIVERY_POINT:
3416 retval = sctp_setsockopt_partial_delivery_point(sk, optval, optlen);
3417 break;
7708610b 3418
1da177e4
LT
3419 case SCTP_INITMSG:
3420 retval = sctp_setsockopt_initmsg(sk, optval, optlen);
3421 break;
3422 case SCTP_DEFAULT_SEND_PARAM:
3423 retval = sctp_setsockopt_default_send_param(sk, optval,
3424 optlen);
3425 break;
3426 case SCTP_PRIMARY_ADDR:
3427 retval = sctp_setsockopt_primary_addr(sk, optval, optlen);
3428 break;
3429 case SCTP_SET_PEER_PRIMARY_ADDR:
3430 retval = sctp_setsockopt_peer_primary_addr(sk, optval, optlen);
3431 break;
3432 case SCTP_NODELAY:
3433 retval = sctp_setsockopt_nodelay(sk, optval, optlen);
3434 break;
3435 case SCTP_RTOINFO:
3436 retval = sctp_setsockopt_rtoinfo(sk, optval, optlen);
3437 break;
3438 case SCTP_ASSOCINFO:
3439 retval = sctp_setsockopt_associnfo(sk, optval, optlen);
3440 break;
3441 case SCTP_I_WANT_MAPPED_V4_ADDR:
3442 retval = sctp_setsockopt_mappedv4(sk, optval, optlen);
3443 break;
3444 case SCTP_MAXSEG:
3445 retval = sctp_setsockopt_maxseg(sk, optval, optlen);
3446 break;
0f3fffd8
ISJ
3447 case SCTP_ADAPTATION_LAYER:
3448 retval = sctp_setsockopt_adaptation_layer(sk, optval, optlen);
1da177e4 3449 break;
6ab792f5
ISJ
3450 case SCTP_CONTEXT:
3451 retval = sctp_setsockopt_context(sk, optval, optlen);
3452 break;
b6e1331f
VY
3453 case SCTP_FRAGMENT_INTERLEAVE:
3454 retval = sctp_setsockopt_fragment_interleave(sk, optval, optlen);
3455 break;
70331571
VY
3456 case SCTP_MAX_BURST:
3457 retval = sctp_setsockopt_maxburst(sk, optval, optlen);
3458 break;
65b07e5d
VY
3459 case SCTP_AUTH_CHUNK:
3460 retval = sctp_setsockopt_auth_chunk(sk, optval, optlen);
3461 break;
3462 case SCTP_HMAC_IDENT:
3463 retval = sctp_setsockopt_hmac_ident(sk, optval, optlen);
3464 break;
3465 case SCTP_AUTH_KEY:
3466 retval = sctp_setsockopt_auth_key(sk, optval, optlen);
3467 break;
3468 case SCTP_AUTH_ACTIVE_KEY:
3469 retval = sctp_setsockopt_active_key(sk, optval, optlen);
3470 break;
3471 case SCTP_AUTH_DELETE_KEY:
3472 retval = sctp_setsockopt_del_key(sk, optval, optlen);
3473 break;
1da177e4
LT
3474 default:
3475 retval = -ENOPROTOOPT;
3476 break;
3ff50b79 3477 }
1da177e4
LT
3478
3479 sctp_release_sock(sk);
3480
3481out_nounlock:
3482 return retval;
3483}
3484
3485/* API 3.1.6 connect() - UDP Style Syntax
3486 *
3487 * An application may use the connect() call in the UDP model to initiate an
3488 * association without sending data.
3489 *
3490 * The syntax is:
3491 *
3492 * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
3493 *
3494 * sd: the socket descriptor to have a new association added to.
3495 *
3496 * nam: the address structure (either struct sockaddr_in or struct
3497 * sockaddr_in6 defined in RFC2553 [7]).
3498 *
3499 * len: the size of the address.
3500 */
3f7a87d2 3501SCTP_STATIC int sctp_connect(struct sock *sk, struct sockaddr *addr,
1da177e4
LT
3502 int addr_len)
3503{
1da177e4 3504 int err = 0;
3f7a87d2 3505 struct sctp_af *af;
1da177e4
LT
3506
3507 sctp_lock_sock(sk);
3508
3f7a87d2 3509 SCTP_DEBUG_PRINTK("%s - sk: %p, sockaddr: %p, addr_len: %d\n",
0dc47877 3510 __func__, sk, addr, addr_len);
1da177e4 3511
3f7a87d2
FF
3512 /* Validate addr_len before calling common connect/connectx routine. */
3513 af = sctp_get_af_specific(addr->sa_family);
3514 if (!af || addr_len < af->sockaddr_len) {
3515 err = -EINVAL;
3516 } else {
3517 /* Pass correct addr len to common routine (so it knows there
3518 * is only one address being passed.
3519 */
88a0a948 3520 err = __sctp_connect(sk, addr, af->sockaddr_len, NULL);
1da177e4
LT
3521 }
3522
1da177e4 3523 sctp_release_sock(sk);
1da177e4
LT
3524 return err;
3525}
3526
3527/* FIXME: Write comments. */
3528SCTP_STATIC int sctp_disconnect(struct sock *sk, int flags)
3529{
3530 return -EOPNOTSUPP; /* STUB */
3531}
3532
3533/* 4.1.4 accept() - TCP Style Syntax
3534 *
3535 * Applications use accept() call to remove an established SCTP
3536 * association from the accept queue of the endpoint. A new socket
3537 * descriptor will be returned from accept() to represent the newly
3538 * formed association.
3539 */
3540SCTP_STATIC struct sock *sctp_accept(struct sock *sk, int flags, int *err)
3541{
3542 struct sctp_sock *sp;
3543 struct sctp_endpoint *ep;
3544 struct sock *newsk = NULL;
3545 struct sctp_association *asoc;
3546 long timeo;
3547 int error = 0;
3548
3549 sctp_lock_sock(sk);
3550
3551 sp = sctp_sk(sk);
3552 ep = sp->ep;
3553
3554 if (!sctp_style(sk, TCP)) {
3555 error = -EOPNOTSUPP;
3556 goto out;
3557 }
3558
3559 if (!sctp_sstate(sk, LISTENING)) {
3560 error = -EINVAL;
3561 goto out;
3562 }
3563
8abfedd8 3564 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
1da177e4
LT
3565
3566 error = sctp_wait_for_accept(sk, timeo);
3567 if (error)
3568 goto out;
3569
3570 /* We treat the list of associations on the endpoint as the accept
3571 * queue and pick the first association on the list.
3572 */
3573 asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
3574
3575 newsk = sp->pf->create_accept_sk(sk, asoc);
3576 if (!newsk) {
3577 error = -ENOMEM;
3578 goto out;
3579 }
3580
3581 /* Populate the fields of the newsk from the oldsk and migrate the
3582 * asoc to the newsk.
3583 */
3584 sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
3585
3586out:
3587 sctp_release_sock(sk);
d808ad9a 3588 *err = error;
1da177e4
LT
3589 return newsk;
3590}
3591
3592/* The SCTP ioctl handler. */
3593SCTP_STATIC int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
3594{
65040c33
DEFP
3595 int rc = -ENOTCONN;
3596
3597 sctp_lock_sock(sk);
3598
3599 /*
3600 * SEQPACKET-style sockets in LISTENING state are valid, for
3601 * SCTP, so only discard TCP-style sockets in LISTENING state.
3602 */
3603 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
3604 goto out;
3605
3606 switch (cmd) {
3607 case SIOCINQ: {
3608 struct sk_buff *skb;
3609 unsigned int amount = 0;
3610
3611 skb = skb_peek(&sk->sk_receive_queue);
3612 if (skb != NULL) {
3613 /*
3614 * We will only return the amount of this packet since
3615 * that is all that will be read.
3616 */
3617 amount = skb->len;
3618 }
3619 rc = put_user(amount, (int __user *)arg);
65040c33 3620 break;
9a7241c2 3621 }
65040c33
DEFP
3622 default:
3623 rc = -ENOIOCTLCMD;
3624 break;
3625 }
3626out:
3627 sctp_release_sock(sk);
3628 return rc;
1da177e4
LT
3629}
3630
3631/* This is the function which gets called during socket creation to
3632 * initialized the SCTP-specific portion of the sock.
3633 * The sock structure should already be zero-filled memory.
3634 */
3635SCTP_STATIC int sctp_init_sock(struct sock *sk)
3636{
3637 struct sctp_endpoint *ep;
3638 struct sctp_sock *sp;
3639
3640 SCTP_DEBUG_PRINTK("sctp_init_sock(sk: %p)\n", sk);
3641
3642 sp = sctp_sk(sk);
3643
3644 /* Initialize the SCTP per socket area. */
3645 switch (sk->sk_type) {
3646 case SOCK_SEQPACKET:
3647 sp->type = SCTP_SOCKET_UDP;
3648 break;
3649 case SOCK_STREAM:
3650 sp->type = SCTP_SOCKET_TCP;
3651 break;
3652 default:
3653 return -ESOCKTNOSUPPORT;
3654 }
3655
3656 /* Initialize default send parameters. These parameters can be
3657 * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
3658 */
3659 sp->default_stream = 0;
3660 sp->default_ppid = 0;
3661 sp->default_flags = 0;
3662 sp->default_context = 0;
3663 sp->default_timetolive = 0;
3664
6ab792f5 3665 sp->default_rcv_context = 0;
70331571 3666 sp->max_burst = sctp_max_burst;
6ab792f5 3667
1da177e4
LT
3668 /* Initialize default setup parameters. These parameters
3669 * can be modified with the SCTP_INITMSG socket option or
3670 * overridden by the SCTP_INIT CMSG.
3671 */
3672 sp->initmsg.sinit_num_ostreams = sctp_max_outstreams;
3673 sp->initmsg.sinit_max_instreams = sctp_max_instreams;
3674 sp->initmsg.sinit_max_attempts = sctp_max_retrans_init;
3fd091e7 3675 sp->initmsg.sinit_max_init_timeo = sctp_rto_max;
1da177e4
LT
3676
3677 /* Initialize default RTO related parameters. These parameters can
3678 * be modified for with the SCTP_RTOINFO socket option.
3679 */
3fd091e7
VY
3680 sp->rtoinfo.srto_initial = sctp_rto_initial;
3681 sp->rtoinfo.srto_max = sctp_rto_max;
3682 sp->rtoinfo.srto_min = sctp_rto_min;
1da177e4
LT
3683
3684 /* Initialize default association related parameters. These parameters
3685 * can be modified with the SCTP_ASSOCINFO socket option.
3686 */
3687 sp->assocparams.sasoc_asocmaxrxt = sctp_max_retrans_association;
3688 sp->assocparams.sasoc_number_peer_destinations = 0;
3689 sp->assocparams.sasoc_peer_rwnd = 0;
3690 sp->assocparams.sasoc_local_rwnd = 0;
3fd091e7 3691 sp->assocparams.sasoc_cookie_life = sctp_valid_cookie_life;
1da177e4
LT
3692
3693 /* Initialize default event subscriptions. By default, all the
d808ad9a 3694 * options are off.
1da177e4
LT
3695 */
3696 memset(&sp->subscribe, 0, sizeof(struct sctp_event_subscribe));
3697
3698 /* Default Peer Address Parameters. These defaults can
3699 * be modified via SCTP_PEER_ADDR_PARAMS
3700 */
3fd091e7 3701 sp->hbinterval = sctp_hb_interval;
52ccb8e9
FF
3702 sp->pathmaxrxt = sctp_max_retrans_path;
3703 sp->pathmtu = 0; // allow default discovery
3fd091e7 3704 sp->sackdelay = sctp_sack_timeout;
7bfe8bdb 3705 sp->sackfreq = 2;
52ccb8e9 3706 sp->param_flags = SPP_HB_ENABLE |
d808ad9a
YH
3707 SPP_PMTUD_ENABLE |
3708 SPP_SACKDELAY_ENABLE;
1da177e4
LT
3709
3710 /* If enabled no SCTP message fragmentation will be performed.
3711 * Configure through SCTP_DISABLE_FRAGMENTS socket option.
3712 */
3713 sp->disable_fragments = 0;
3714
208edef6
SS
3715 /* Enable Nagle algorithm by default. */
3716 sp->nodelay = 0;
1da177e4
LT
3717
3718 /* Enable by default. */
3719 sp->v4mapped = 1;
3720
3721 /* Auto-close idle associations after the configured
3722 * number of seconds. A value of 0 disables this
3723 * feature. Configure through the SCTP_AUTOCLOSE socket option,
3724 * for UDP-style sockets only.
3725 */
3726 sp->autoclose = 0;
3727
3728 /* User specified fragmentation limit. */
3729 sp->user_frag = 0;
3730
0f3fffd8 3731 sp->adaptation_ind = 0;
1da177e4
LT
3732
3733 sp->pf = sctp_get_pf_specific(sk->sk_family);
3734
3735 /* Control variables for partial data delivery. */
b6e1331f 3736 atomic_set(&sp->pd_mode, 0);
1da177e4 3737 skb_queue_head_init(&sp->pd_lobby);
b6e1331f 3738 sp->frag_interleave = 0;
1da177e4
LT
3739
3740 /* Create a per socket endpoint structure. Even if we
3741 * change the data structure relationships, this may still
3742 * be useful for storing pre-connect address information.
3743 */
3744 ep = sctp_endpoint_new(sk, GFP_KERNEL);
3745 if (!ep)
3746 return -ENOMEM;
3747
3748 sp->ep = ep;
3749 sp->hmac = NULL;
3750
3751 SCTP_DBG_OBJCNT_INC(sock);
6f756a8c
DM
3752
3753 local_bh_disable();
81419d86 3754 percpu_counter_inc(&sctp_sockets_allocated);
9a57f7fa 3755 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
6f756a8c
DM
3756 local_bh_enable();
3757
1da177e4
LT
3758 return 0;
3759}
3760
3761/* Cleanup any SCTP per socket resources. */
7d06b2e0 3762SCTP_STATIC void sctp_destroy_sock(struct sock *sk)
1da177e4
LT
3763{
3764 struct sctp_endpoint *ep;
3765
3766 SCTP_DEBUG_PRINTK("sctp_destroy_sock(sk: %p)\n", sk);
3767
3768 /* Release our hold on the endpoint. */
3769 ep = sctp_sk(sk)->ep;
3770 sctp_endpoint_free(ep);
5bc0b3bf 3771 local_bh_disable();
81419d86 3772 percpu_counter_dec(&sctp_sockets_allocated);
9a57f7fa 3773 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
5bc0b3bf 3774 local_bh_enable();
1da177e4
LT
3775}
3776
3777/* API 4.1.7 shutdown() - TCP Style Syntax
3778 * int shutdown(int socket, int how);
3779 *
3780 * sd - the socket descriptor of the association to be closed.
3781 * how - Specifies the type of shutdown. The values are
3782 * as follows:
3783 * SHUT_RD
3784 * Disables further receive operations. No SCTP
3785 * protocol action is taken.
3786 * SHUT_WR
3787 * Disables further send operations, and initiates
3788 * the SCTP shutdown sequence.
3789 * SHUT_RDWR
3790 * Disables further send and receive operations
3791 * and initiates the SCTP shutdown sequence.
3792 */
3793SCTP_STATIC void sctp_shutdown(struct sock *sk, int how)
3794{
3795 struct sctp_endpoint *ep;
3796 struct sctp_association *asoc;
3797
3798 if (!sctp_style(sk, TCP))
3799 return;
3800
3801 if (how & SEND_SHUTDOWN) {
3802 ep = sctp_sk(sk)->ep;
3803 if (!list_empty(&ep->asocs)) {
3804 asoc = list_entry(ep->asocs.next,
3805 struct sctp_association, asocs);
3806 sctp_primitive_SHUTDOWN(asoc, NULL);
3807 }
3808 }
3809}
3810
3811/* 7.2.1 Association Status (SCTP_STATUS)
3812
3813 * Applications can retrieve current status information about an
3814 * association, including association state, peer receiver window size,
3815 * number of unacked data chunks, and number of data chunks pending
3816 * receipt. This information is read-only.
3817 */
3818static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
3819 char __user *optval,
3820 int __user *optlen)
3821{
3822 struct sctp_status status;
3823 struct sctp_association *asoc = NULL;
3824 struct sctp_transport *transport;
3825 sctp_assoc_t associd;
3826 int retval = 0;
3827
408f22e8 3828 if (len < sizeof(status)) {
1da177e4
LT
3829 retval = -EINVAL;
3830 goto out;
3831 }
3832
408f22e8
NH
3833 len = sizeof(status);
3834 if (copy_from_user(&status, optval, len)) {
1da177e4
LT
3835 retval = -EFAULT;
3836 goto out;
3837 }
3838
3839 associd = status.sstat_assoc_id;
3840 asoc = sctp_id2assoc(sk, associd);
3841 if (!asoc) {
3842 retval = -EINVAL;
3843 goto out;
3844 }
3845
3846 transport = asoc->peer.primary_path;
3847
3848 status.sstat_assoc_id = sctp_assoc2id(asoc);
3849 status.sstat_state = asoc->state;
3850 status.sstat_rwnd = asoc->peer.rwnd;
3851 status.sstat_unackdata = asoc->unack_data;
3852
3853 status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
3854 status.sstat_instrms = asoc->c.sinit_max_instreams;
3855 status.sstat_outstrms = asoc->c.sinit_num_ostreams;
3856 status.sstat_fragmentation_point = asoc->frag_point;
3857 status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
8cec6b80
AV
3858 memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
3859 transport->af_specific->sockaddr_len);
1da177e4
LT
3860 /* Map ipv4 address into v4-mapped-on-v6 address. */
3861 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk),
3862 (union sctp_addr *)&status.sstat_primary.spinfo_address);
3f7a87d2 3863 status.sstat_primary.spinfo_state = transport->state;
1da177e4
LT
3864 status.sstat_primary.spinfo_cwnd = transport->cwnd;
3865 status.sstat_primary.spinfo_srtt = transport->srtt;
3866 status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
52ccb8e9 3867 status.sstat_primary.spinfo_mtu = transport->pathmtu;
1da177e4 3868
3f7a87d2
FF
3869 if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
3870 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
3871
1da177e4
LT
3872 if (put_user(len, optlen)) {
3873 retval = -EFAULT;
3874 goto out;
3875 }
3876
3877 SCTP_DEBUG_PRINTK("sctp_getsockopt_sctp_status(%d): %d %d %d\n",
3878 len, status.sstat_state, status.sstat_rwnd,
3879 status.sstat_assoc_id);
3880
3881 if (copy_to_user(optval, &status, len)) {
3882 retval = -EFAULT;
3883 goto out;
3884 }
3885
3886out:
a02cec21 3887 return retval;
1da177e4
LT
3888}
3889
3890
3891/* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
3892 *
3893 * Applications can retrieve information about a specific peer address
3894 * of an association, including its reachability state, congestion
3895 * window, and retransmission timer values. This information is
3896 * read-only.
3897 */
3898static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
3899 char __user *optval,
3900 int __user *optlen)
3901{
3902 struct sctp_paddrinfo pinfo;
3903 struct sctp_transport *transport;
3904 int retval = 0;
3905
408f22e8 3906 if (len < sizeof(pinfo)) {
1da177e4
LT
3907 retval = -EINVAL;
3908 goto out;
3909 }
3910
408f22e8
NH
3911 len = sizeof(pinfo);
3912 if (copy_from_user(&pinfo, optval, len)) {
1da177e4
LT
3913 retval = -EFAULT;
3914 goto out;
3915 }
3916
3917 transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
3918 pinfo.spinfo_assoc_id);
3919 if (!transport)
3920 return -EINVAL;
3921
3922 pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
3f7a87d2 3923 pinfo.spinfo_state = transport->state;
1da177e4
LT
3924 pinfo.spinfo_cwnd = transport->cwnd;
3925 pinfo.spinfo_srtt = transport->srtt;
3926 pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
52ccb8e9 3927 pinfo.spinfo_mtu = transport->pathmtu;
1da177e4 3928
3f7a87d2
FF
3929 if (pinfo.spinfo_state == SCTP_UNKNOWN)
3930 pinfo.spinfo_state = SCTP_ACTIVE;
3931
1da177e4
LT
3932 if (put_user(len, optlen)) {
3933 retval = -EFAULT;
3934 goto out;
3935 }
3936
3937 if (copy_to_user(optval, &pinfo, len)) {
3938 retval = -EFAULT;
3939 goto out;
3940 }
3941
3942out:
a02cec21 3943 return retval;
1da177e4
LT
3944}
3945
3946/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
3947 *
3948 * This option is a on/off flag. If enabled no SCTP message
3949 * fragmentation will be performed. Instead if a message being sent
3950 * exceeds the current PMTU size, the message will NOT be sent and
3951 * instead a error will be indicated to the user.
3952 */
3953static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
3954 char __user *optval, int __user *optlen)
3955{
3956 int val;
3957
3958 if (len < sizeof(int))
3959 return -EINVAL;
3960
3961 len = sizeof(int);
3962 val = (sctp_sk(sk)->disable_fragments == 1);
3963 if (put_user(len, optlen))
3964 return -EFAULT;
3965 if (copy_to_user(optval, &val, len))
3966 return -EFAULT;
3967 return 0;
3968}
3969
3970/* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
3971 *
3972 * This socket option is used to specify various notifications and
3973 * ancillary data the user wishes to receive.
3974 */
3975static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
3976 int __user *optlen)
3977{
408f22e8 3978 if (len < sizeof(struct sctp_event_subscribe))
1da177e4 3979 return -EINVAL;
408f22e8
NH
3980 len = sizeof(struct sctp_event_subscribe);
3981 if (put_user(len, optlen))
3982 return -EFAULT;
1da177e4
LT
3983 if (copy_to_user(optval, &sctp_sk(sk)->subscribe, len))
3984 return -EFAULT;
3985 return 0;
3986}
3987
3988/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
3989 *
3990 * This socket option is applicable to the UDP-style socket only. When
3991 * set it will cause associations that are idle for more than the
3992 * specified number of seconds to automatically close. An association
3993 * being idle is defined an association that has NOT sent or received
3994 * user data. The special value of '0' indicates that no automatic
3995 * close of any associations should be performed. The option expects an
3996 * integer defining the number of seconds of idle time before an
3997 * association is closed.
3998 */
3999static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
4000{
4001 /* Applicable to UDP-style socket only */
4002 if (sctp_style(sk, TCP))
4003 return -EOPNOTSUPP;
408f22e8 4004 if (len < sizeof(int))
1da177e4 4005 return -EINVAL;
408f22e8
NH
4006 len = sizeof(int);
4007 if (put_user(len, optlen))
4008 return -EFAULT;
4009 if (copy_to_user(optval, &sctp_sk(sk)->autoclose, sizeof(int)))
1da177e4
LT
4010 return -EFAULT;
4011 return 0;
4012}
4013
4014/* Helper routine to branch off an association to a new socket. */
4015SCTP_STATIC int sctp_do_peeloff(struct sctp_association *asoc,
4016 struct socket **sockp)
4017{
4018 struct sock *sk = asoc->base.sk;
4019 struct socket *sock;
d570ee49 4020 struct sctp_af *af;
1da177e4
LT
4021 int err = 0;
4022
4023 /* An association cannot be branched off from an already peeled-off
4024 * socket, nor is this supported for tcp style sockets.
4025 */
4026 if (!sctp_style(sk, UDP))
4027 return -EINVAL;
4028
4029 /* Create a new socket. */
4030 err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
4031 if (err < 0)
4032 return err;
4033
914e1c8b 4034 sctp_copy_sock(sock->sk, sk, asoc);
4f444308
VY
4035
4036 /* Make peeled-off sockets more like 1-1 accepted sockets.
4037 * Set the daddr and initialize id to something more random
4038 */
d570ee49
VY
4039 af = sctp_get_af_specific(asoc->peer.primary_addr.sa.sa_family);
4040 af->to_sk_daddr(&asoc->peer.primary_addr, sk);
914e1c8b
VY
4041
4042 /* Populate the fields of the newsk from the oldsk and migrate the
4043 * asoc to the newsk.
4044 */
4045 sctp_sock_migrate(sk, sock->sk, asoc, SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
4f444308 4046
1da177e4
LT
4047 *sockp = sock;
4048
4049 return err;
4050}
4051
4052static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
4053{
4054 sctp_peeloff_arg_t peeloff;
4055 struct socket *newsock;
4056 int retval = 0;
4057 struct sctp_association *asoc;
4058
408f22e8 4059 if (len < sizeof(sctp_peeloff_arg_t))
1da177e4 4060 return -EINVAL;
408f22e8 4061 len = sizeof(sctp_peeloff_arg_t);
1da177e4
LT
4062 if (copy_from_user(&peeloff, optval, len))
4063 return -EFAULT;
4064
4065 asoc = sctp_id2assoc(sk, peeloff.associd);
4066 if (!asoc) {
4067 retval = -EINVAL;
4068 goto out;
4069 }
4070
0dc47877 4071 SCTP_DEBUG_PRINTK("%s: sk: %p asoc: %p\n", __func__, sk, asoc);
1da177e4
LT
4072
4073 retval = sctp_do_peeloff(asoc, &newsock);
4074 if (retval < 0)
4075 goto out;
4076
4077 /* Map the socket to an unused fd that can be returned to the user. */
a677a039 4078 retval = sock_map_fd(newsock, 0);
1da177e4
LT
4079 if (retval < 0) {
4080 sock_release(newsock);
4081 goto out;
4082 }
4083
4084 SCTP_DEBUG_PRINTK("%s: sk: %p asoc: %p newsk: %p sd: %d\n",
0dc47877 4085 __func__, sk, asoc, newsock->sk, retval);
1da177e4
LT
4086
4087 /* Return the fd mapped to the new socket. */
4088 peeloff.sd = retval;
408f22e8
NH
4089 if (put_user(len, optlen))
4090 return -EFAULT;
1da177e4
LT
4091 if (copy_to_user(optval, &peeloff, len))
4092 retval = -EFAULT;
4093
4094out:
4095 return retval;
4096}
4097
4098/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
4099 *
4100 * Applications can enable or disable heartbeats for any peer address of
4101 * an association, modify an address's heartbeat interval, force a
4102 * heartbeat to be sent immediately, and adjust the address's maximum
4103 * number of retransmissions sent before an address is considered
4104 * unreachable. The following structure is used to access and modify an
4105 * address's parameters:
4106 *
4107 * struct sctp_paddrparams {
52ccb8e9
FF
4108 * sctp_assoc_t spp_assoc_id;
4109 * struct sockaddr_storage spp_address;
4110 * uint32_t spp_hbinterval;
4111 * uint16_t spp_pathmaxrxt;
4112 * uint32_t spp_pathmtu;
4113 * uint32_t spp_sackdelay;
4114 * uint32_t spp_flags;
4115 * };
4116 *
4117 * spp_assoc_id - (one-to-many style socket) This is filled in the
4118 * application, and identifies the association for
4119 * this query.
1da177e4
LT
4120 * spp_address - This specifies which address is of interest.
4121 * spp_hbinterval - This contains the value of the heartbeat interval,
52ccb8e9
FF
4122 * in milliseconds. If a value of zero
4123 * is present in this field then no changes are to
4124 * be made to this parameter.
1da177e4
LT
4125 * spp_pathmaxrxt - This contains the maximum number of
4126 * retransmissions before this address shall be
52ccb8e9
FF
4127 * considered unreachable. If a value of zero
4128 * is present in this field then no changes are to
4129 * be made to this parameter.
4130 * spp_pathmtu - When Path MTU discovery is disabled the value
4131 * specified here will be the "fixed" path mtu.
4132 * Note that if the spp_address field is empty
4133 * then all associations on this address will
4134 * have this fixed path mtu set upon them.
4135 *
4136 * spp_sackdelay - When delayed sack is enabled, this value specifies
4137 * the number of milliseconds that sacks will be delayed
4138 * for. This value will apply to all addresses of an
4139 * association if the spp_address field is empty. Note
4140 * also, that if delayed sack is enabled and this
4141 * value is set to 0, no change is made to the last
4142 * recorded delayed sack timer value.
4143 *
4144 * spp_flags - These flags are used to control various features
4145 * on an association. The flag field may contain
4146 * zero or more of the following options.
4147 *
4148 * SPP_HB_ENABLE - Enable heartbeats on the
4149 * specified address. Note that if the address
4150 * field is empty all addresses for the association
4151 * have heartbeats enabled upon them.
4152 *
4153 * SPP_HB_DISABLE - Disable heartbeats on the
4154 * speicifed address. Note that if the address
4155 * field is empty all addresses for the association
4156 * will have their heartbeats disabled. Note also
4157 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
4158 * mutually exclusive, only one of these two should
4159 * be specified. Enabling both fields will have
4160 * undetermined results.
4161 *
4162 * SPP_HB_DEMAND - Request a user initiated heartbeat
4163 * to be made immediately.
4164 *
4165 * SPP_PMTUD_ENABLE - This field will enable PMTU
4166 * discovery upon the specified address. Note that
4167 * if the address feild is empty then all addresses
4168 * on the association are effected.
4169 *
4170 * SPP_PMTUD_DISABLE - This field will disable PMTU
4171 * discovery upon the specified address. Note that
4172 * if the address feild is empty then all addresses
4173 * on the association are effected. Not also that
4174 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
4175 * exclusive. Enabling both will have undetermined
4176 * results.
4177 *
4178 * SPP_SACKDELAY_ENABLE - Setting this flag turns
4179 * on delayed sack. The time specified in spp_sackdelay
4180 * is used to specify the sack delay for this address. Note
4181 * that if spp_address is empty then all addresses will
4182 * enable delayed sack and take on the sack delay
4183 * value specified in spp_sackdelay.
4184 * SPP_SACKDELAY_DISABLE - Setting this flag turns
4185 * off delayed sack. If the spp_address field is blank then
4186 * delayed sack is disabled for the entire association. Note
4187 * also that this field is mutually exclusive to
4188 * SPP_SACKDELAY_ENABLE, setting both will have undefined
4189 * results.
1da177e4
LT
4190 */
4191static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
52ccb8e9 4192 char __user *optval, int __user *optlen)
1da177e4 4193{
52ccb8e9
FF
4194 struct sctp_paddrparams params;
4195 struct sctp_transport *trans = NULL;
4196 struct sctp_association *asoc = NULL;
4197 struct sctp_sock *sp = sctp_sk(sk);
1da177e4 4198
408f22e8 4199 if (len < sizeof(struct sctp_paddrparams))
1da177e4 4200 return -EINVAL;
408f22e8 4201 len = sizeof(struct sctp_paddrparams);
1da177e4
LT
4202 if (copy_from_user(&params, optval, len))
4203 return -EFAULT;
4204
52ccb8e9
FF
4205 /* If an address other than INADDR_ANY is specified, and
4206 * no transport is found, then the request is invalid.
1da177e4 4207 */
52cae8f0 4208 if (!sctp_is_any(sk, ( union sctp_addr *)&params.spp_address)) {
52ccb8e9
FF
4209 trans = sctp_addr_id2transport(sk, &params.spp_address,
4210 params.spp_assoc_id);
4211 if (!trans) {
4212 SCTP_DEBUG_PRINTK("Failed no transport\n");
4213 return -EINVAL;
4214 }
1da177e4
LT
4215 }
4216
52ccb8e9
FF
4217 /* Get association, if assoc_id != 0 and the socket is a one
4218 * to many style socket, and an association was not found, then
4219 * the id was invalid.
4220 */
4221 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
4222 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP)) {
4223 SCTP_DEBUG_PRINTK("Failed no association\n");
1da177e4 4224 return -EINVAL;
52ccb8e9 4225 }
1da177e4 4226
52ccb8e9
FF
4227 if (trans) {
4228 /* Fetch transport values. */
4229 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
4230 params.spp_pathmtu = trans->pathmtu;
4231 params.spp_pathmaxrxt = trans->pathmaxrxt;
4232 params.spp_sackdelay = jiffies_to_msecs(trans->sackdelay);
4233
4234 /*draft-11 doesn't say what to return in spp_flags*/
4235 params.spp_flags = trans->param_flags;
4236 } else if (asoc) {
4237 /* Fetch association values. */
4238 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
4239 params.spp_pathmtu = asoc->pathmtu;
4240 params.spp_pathmaxrxt = asoc->pathmaxrxt;
4241 params.spp_sackdelay = jiffies_to_msecs(asoc->sackdelay);
4242
4243 /*draft-11 doesn't say what to return in spp_flags*/
4244 params.spp_flags = asoc->param_flags;
4245 } else {
4246 /* Fetch socket values. */
4247 params.spp_hbinterval = sp->hbinterval;
4248 params.spp_pathmtu = sp->pathmtu;
4249 params.spp_sackdelay = sp->sackdelay;
4250 params.spp_pathmaxrxt = sp->pathmaxrxt;
1da177e4 4251
52ccb8e9
FF
4252 /*draft-11 doesn't say what to return in spp_flags*/
4253 params.spp_flags = sp->param_flags;
4254 }
1da177e4 4255
1da177e4
LT
4256 if (copy_to_user(optval, &params, len))
4257 return -EFAULT;
4258
4259 if (put_user(len, optlen))
4260 return -EFAULT;
4261
4262 return 0;
4263}
4264
d364d927
WY
4265/*
4266 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
4267 *
4268 * This option will effect the way delayed acks are performed. This
4269 * option allows you to get or set the delayed ack time, in
4270 * milliseconds. It also allows changing the delayed ack frequency.
4271 * Changing the frequency to 1 disables the delayed sack algorithm. If
4272 * the assoc_id is 0, then this sets or gets the endpoints default
4273 * values. If the assoc_id field is non-zero, then the set or get
4274 * effects the specified association for the one to many model (the
4275 * assoc_id field is ignored by the one to one model). Note that if
4276 * sack_delay or sack_freq are 0 when setting this option, then the
4277 * current values will remain unchanged.
4278 *
4279 * struct sctp_sack_info {
4280 * sctp_assoc_t sack_assoc_id;
4281 * uint32_t sack_delay;
4282 * uint32_t sack_freq;
4283 * };
7708610b 4284 *
d364d927
WY
4285 * sack_assoc_id - This parameter, indicates which association the user
4286 * is performing an action upon. Note that if this field's value is
4287 * zero then the endpoints default value is changed (effecting future
4288 * associations only).
7708610b 4289 *
d364d927
WY
4290 * sack_delay - This parameter contains the number of milliseconds that
4291 * the user is requesting the delayed ACK timer be set to. Note that
4292 * this value is defined in the standard to be between 200 and 500
4293 * milliseconds.
7708610b 4294 *
d364d927
WY
4295 * sack_freq - This parameter contains the number of packets that must
4296 * be received before a sack is sent without waiting for the delay
4297 * timer to expire. The default value for this is 2, setting this
4298 * value to 1 will disable the delayed sack algorithm.
7708610b 4299 */
d364d927 4300static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
7708610b
FF
4301 char __user *optval,
4302 int __user *optlen)
4303{
d364d927 4304 struct sctp_sack_info params;
7708610b
FF
4305 struct sctp_association *asoc = NULL;
4306 struct sctp_sock *sp = sctp_sk(sk);
4307
d364d927
WY
4308 if (len >= sizeof(struct sctp_sack_info)) {
4309 len = sizeof(struct sctp_sack_info);
7708610b 4310
d364d927
WY
4311 if (copy_from_user(&params, optval, len))
4312 return -EFAULT;
4313 } else if (len == sizeof(struct sctp_assoc_value)) {
145ce502
JP
4314 pr_warn("Use of struct sctp_assoc_value in delayed_ack socket option deprecated\n");
4315 pr_warn("Use struct sctp_sack_info instead\n");
d364d927
WY
4316 if (copy_from_user(&params, optval, len))
4317 return -EFAULT;
4318 } else
4319 return - EINVAL;
7708610b 4320
d364d927 4321 /* Get association, if sack_assoc_id != 0 and the socket is a one
7708610b
FF
4322 * to many style socket, and an association was not found, then
4323 * the id was invalid.
d808ad9a 4324 */
d364d927
WY
4325 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
4326 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
7708610b
FF
4327 return -EINVAL;
4328
4329 if (asoc) {
4330 /* Fetch association values. */
d364d927
WY
4331 if (asoc->param_flags & SPP_SACKDELAY_ENABLE) {
4332 params.sack_delay = jiffies_to_msecs(
7708610b 4333 asoc->sackdelay);
d364d927
WY
4334 params.sack_freq = asoc->sackfreq;
4335
4336 } else {
4337 params.sack_delay = 0;
4338 params.sack_freq = 1;
4339 }
7708610b
FF
4340 } else {
4341 /* Fetch socket values. */
d364d927
WY
4342 if (sp->param_flags & SPP_SACKDELAY_ENABLE) {
4343 params.sack_delay = sp->sackdelay;
4344 params.sack_freq = sp->sackfreq;
4345 } else {
4346 params.sack_delay = 0;
4347 params.sack_freq = 1;
4348 }
7708610b
FF
4349 }
4350
4351 if (copy_to_user(optval, &params, len))
4352 return -EFAULT;
4353
4354 if (put_user(len, optlen))
4355 return -EFAULT;
4356
4357 return 0;
4358}
4359
1da177e4
LT
4360/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
4361 *
4362 * Applications can specify protocol parameters for the default association
4363 * initialization. The option name argument to setsockopt() and getsockopt()
4364 * is SCTP_INITMSG.
4365 *
4366 * Setting initialization parameters is effective only on an unconnected
4367 * socket (for UDP-style sockets only future associations are effected
4368 * by the change). With TCP-style sockets, this option is inherited by
4369 * sockets derived from a listener socket.
4370 */
4371static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
4372{
408f22e8 4373 if (len < sizeof(struct sctp_initmsg))
1da177e4 4374 return -EINVAL;
408f22e8
NH
4375 len = sizeof(struct sctp_initmsg);
4376 if (put_user(len, optlen))
4377 return -EFAULT;
1da177e4
LT
4378 if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
4379 return -EFAULT;
4380 return 0;
4381}
4382