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