blob: 1e787a2d0b5ffa9b242f8814bf2ef8d60a8c94a2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/types.h>
61#include <linux/kernel.h>
62#include <linux/wait.h>
63#include <linux/time.h>
64#include <linux/ip.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080065#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#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
Christoph Lametere18b8902006-12-06 20:33:20 -0800110extern struct kmem_cache *sctp_bucket_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
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
Neil Horman4eb701d2005-04-28 12:02:04 -0700118 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 if (amt < 0)
127 amt = 0;
Neil Horman4eb701d2005-04-28 12:02:04 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 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
Neil Horman4eb701d2005-04-28 12:02:04 -0700149 skb_set_owner_w(chunk->skb, sk);
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 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
Neil Horman4eb701d2005-04-28 12:02:04 -0700155 asoc->sndbuf_used += SCTP_DATA_SNDSIZE(chunk) +
156 sizeof(struct sk_buff) +
157 sizeof(struct sctp_chunk);
158
Neil Horman4eb701d2005-04-28 12:02:04 -0700159 atomic_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
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? */
Vlad Yasevich5636bef2006-06-17 22:55:35 -0700174 if (!af->addr_valid(addr, sctp_sk(sk), NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
Al Virocd4ff032006-11-20 17:11:33 -0800233 laddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 &transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
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 */
Frank Filz3f7a87d2005-06-20 13:14:57 -0700259SCTP_STATIC int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
261 int retval = 0;
262
263 sctp_lock_sock(sk);
264
Frank Filz3f7a87d2005-06-20 13:14:57 -0700265 SCTP_DEBUG_PRINTK("sctp_bind(sk: %p, addr: %p, addr_len: %d)\n",
266 sk, addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 /* Disallow binding twice. */
269 if (!sctp_sk(sk)->ep->base.bind_addr.port)
Frank Filz3f7a87d2005-06-20 13:14:57 -0700270 retval = sctp_do_bind(sk, (union sctp_addr *)addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 /* Common sockaddr verification. */
316 af = sctp_sockaddr_af(sp, addr, len);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700317 if (!af) {
318 SCTP_DEBUG_PRINTK("sctp_do_bind(sk: %p, newaddr: %p, len: %d) EINVAL\n",
319 sk, addr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return -EINVAL;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700321 }
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 /* PF specific bind() address verification. */
333 if (!sp->pf->bind_verify(sp, addr))
334 return -EADDRNOTAVAIL;
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 /* 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. */
Al Viro5ab7b852006-11-20 17:10:38 -0800369 ret = sctp_add_bind_addr(bp, addr, 1, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 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 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900384 * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 * at any one time. If a sender, after sending an ASCONF chunk, decides
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900386 * it needs to transfer another ASCONF Chunk, it MUST wait until the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900388 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 * 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.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900399 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 if (asoc->addip_last_asconf) {
David S. Miller79af02c2005-07-08 21:47:49 -0700401 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900402 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
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
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900452 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 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 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900473 * If any of the addresses is already in the bind address list of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 * 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 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900479static int sctp_send_asconf_add_ip(struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 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;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700490 union sctp_addr saveaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 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
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900520 * in the bind address list of the association. If so,
521 * do not send the asconf chunk to its peer, but continue with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 * 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
Al Viro5ae955c2006-11-20 17:22:08 -0800550 chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 addrcnt, SCTP_PARAM_ADD_IP);
552 if (!chunk) {
553 retval = -ENOMEM;
554 goto out;
555 }
556
557 retval = sctp_send_asconf(asoc, chunk);
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700558 if (retval)
559 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700561 /* Add the new addresses to the bind address list with
562 * use_as_src set to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700564 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);
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700571 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();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 void *addr_buf;
Al Viroc9a08502006-11-20 17:07:48 -0800606 union sctp_addr *sa_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 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
Al Viroc9a08502006-11-20 17:07:48 -0800624 sa_addr = (union sctp_addr *)addr_buf;
625 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if (!af) {
627 retval = -EINVAL;
628 goto err_bindx_rem;
629 }
Paolo Galtieri0304ff8a2007-04-17 12:52:36 -0700630
631 if (!af->addr_valid(sa_addr, sp, NULL)) {
632 retval = -EADDRNOTAVAIL;
633 goto err_bindx_rem;
634 }
635
Al Viroc9a08502006-11-20 17:07:48 -0800636 if (sa_addr->v4.sin_port != htons(bp->port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 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
Al Viroc9a08502006-11-20 17:07:48 -0800651 retval = sctp_del_bind_addr(bp, sa_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
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 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900673 * If any of the addresses is already in the bind address list of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 * 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;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700686 struct sctp_transport *transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 struct sctp_bind_addr *bp;
688 struct sctp_chunk *chunk;
689 union sctp_addr *laddr;
690 void *addr_buf;
691 struct sctp_af *af;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700692 struct list_head *pos, *pos1;
693 struct sctp_sockaddr_entry *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 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
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900719 * not present in the bind address list of the association.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 * 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
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700760 /* Reset use_as_src flag for the addresses in the bind address
761 * list that are to be deleted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700763 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);
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700769 list_for_each(pos1, &bp->address_list) {
770 saddr = list_entry(pos1,
771 struct sctp_sockaddr_entry,
772 list);
Al Viro5f242a12006-11-20 17:05:23 -0800773 if (sctp_cmp_addr_exact(&saddr->a, laddr))
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700774 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();
780
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.
784 */
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
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
Ville Nuorvala23c435f2006-10-16 22:08:28 -0700815 * must be used to distinguish the address length (note that this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 * 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.
Frank Filz3f7a87d2005-06-20 13:14:57 -0700854 * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
855 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 *
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. */
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800898 kaddrs = kmalloc(addrs_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 if (unlikely(!kaddrs))
900 return -ENOMEM;
901
902 if (__copy_from_user(kaddrs, addrs, addrs_size)) {
903 kfree(kaddrs);
904 return -EFAULT;
905 }
906
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900907 /* Walk through the addrs buffer and count the number of addresses. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 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.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900915 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 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;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900944 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946out:
947 kfree(kaddrs);
948
949 return err;
950}
951
Frank Filz3f7a87d2005-06-20 13:14:57 -0700952/* __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;
Al Viro4bdf4b52006-11-20 17:10:20 -0800973 union sctp_addr *sa_addr;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700974 void *addr_buf;
975
976 sp = sctp_sk(sk);
977 ep = sp->ep;
978
979 /* connect() cannot be done on a socket that is already in ESTABLISHED
980 * state - UDP-style peeled off socket or a TCP-style socket that
981 * is already connected.
982 * It cannot be done even on a TCP-style listening socket.
983 */
984 if (sctp_sstate(sk, ESTABLISHED) ||
985 (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))) {
986 err = -EISCONN;
987 goto out_free;
988 }
989
990 /* Walk through the addrs buffer and count the number of addresses. */
991 addr_buf = kaddrs;
992 while (walk_size < addrs_size) {
Al Viro4bdf4b52006-11-20 17:10:20 -0800993 sa_addr = (union sctp_addr *)addr_buf;
994 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700995
996 /* If the address family is not supported or if this address
997 * causes the address buffer to overflow return EINVAL.
998 */
999 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1000 err = -EINVAL;
1001 goto out_free;
1002 }
1003
Al Viro4bdf4b52006-11-20 17:10:20 -08001004 err = sctp_verify_addr(sk, sa_addr, af->sockaddr_len);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001005 if (err)
1006 goto out_free;
1007
1008 memcpy(&to, sa_addr, af->sockaddr_len);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001009
1010 /* Check if there already is a matching association on the
1011 * endpoint (other than the one created here).
1012 */
Al Virocd4ff032006-11-20 17:11:33 -08001013 asoc2 = sctp_endpoint_lookup_assoc(ep, sa_addr, &transport);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001014 if (asoc2 && asoc2 != asoc) {
1015 if (asoc2->state >= SCTP_STATE_ESTABLISHED)
1016 err = -EISCONN;
1017 else
1018 err = -EALREADY;
1019 goto out_free;
1020 }
1021
1022 /* If we could not find a matching association on the endpoint,
1023 * make sure that there is no peeled-off association matching
1024 * the peer address even on another socket.
1025 */
Al Viro6c7be552006-11-20 17:11:50 -08001026 if (sctp_endpoint_is_peeled_off(ep, sa_addr)) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07001027 err = -EADDRNOTAVAIL;
1028 goto out_free;
1029 }
1030
1031 if (!asoc) {
1032 /* If a bind() or sctp_bindx() is not called prior to
1033 * an sctp_connectx() call, the system picks an
1034 * ephemeral port and will choose an address set
1035 * equivalent to binding with a wildcard address.
1036 */
1037 if (!ep->base.bind_addr.port) {
1038 if (sctp_autobind(sk)) {
1039 err = -EAGAIN;
1040 goto out_free;
1041 }
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001042 } else {
1043 /*
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001044 * If an unprivileged user inherits a 1-many
1045 * style socket with open associations on a
1046 * privileged port, it MAY be permitted to
1047 * accept new associations, but it SHOULD NOT
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001048 * be permitted to open new associations.
1049 */
1050 if (ep->base.bind_addr.port < PROT_SOCK &&
1051 !capable(CAP_NET_BIND_SERVICE)) {
1052 err = -EACCES;
1053 goto out_free;
1054 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001055 }
1056
Al Virodce116a2006-11-20 17:25:15 -08001057 scope = sctp_scope(sa_addr);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001058 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1059 if (!asoc) {
1060 err = -ENOMEM;
1061 goto out_free;
1062 }
1063 }
1064
1065 /* Prime the peer's transport structures. */
Al Viro4bdf4b52006-11-20 17:10:20 -08001066 transport = sctp_assoc_add_peer(asoc, sa_addr, GFP_KERNEL,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001067 SCTP_UNKNOWN);
1068 if (!transport) {
1069 err = -ENOMEM;
1070 goto out_free;
1071 }
1072
1073 addrcnt++;
1074 addr_buf += af->sockaddr_len;
1075 walk_size += af->sockaddr_len;
1076 }
1077
1078 err = sctp_assoc_set_bind_addr_from_ep(asoc, GFP_KERNEL);
1079 if (err < 0) {
1080 goto out_free;
1081 }
1082
1083 err = sctp_primitive_ASSOCIATE(asoc, NULL);
1084 if (err < 0) {
1085 goto out_free;
1086 }
1087
1088 /* Initialize sk's dport and daddr for getpeername() */
1089 inet_sk(sk)->dport = htons(asoc->peer.port);
1090 af = sctp_get_af_specific(to.sa.sa_family);
1091 af->to_sk_daddr(&to, sk);
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07001092 sk->sk_err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001093
1094 timeo = sock_sndtimeo(sk, sk->sk_socket->file->f_flags & O_NONBLOCK);
1095 err = sctp_wait_for_connect(asoc, &timeo);
1096
1097 /* Don't free association on exit. */
1098 asoc = NULL;
1099
1100out_free:
1101
1102 SCTP_DEBUG_PRINTK("About to exit __sctp_connect() free asoc: %p"
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001103 " kaddrs: %p err: %d\n",
1104 asoc, kaddrs, err);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001105 if (asoc)
1106 sctp_association_free(asoc);
1107 return err;
1108}
1109
1110/* Helper for tunneling sctp_connectx() requests through sctp_setsockopt()
1111 *
1112 * API 8.9
1113 * int sctp_connectx(int sd, struct sockaddr *addrs, int addrcnt);
1114 *
1115 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
1116 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
1117 * or IPv6 addresses.
1118 *
1119 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
1120 * Section 3.1.2 for this usage.
1121 *
1122 * addrs is a pointer to an array of one or more socket addresses. Each
1123 * address is contained in its appropriate structure (i.e. struct
1124 * sockaddr_in or struct sockaddr_in6) the family of the address type
1125 * must be used to distengish the address length (note that this
1126 * representation is termed a "packed array" of addresses). The caller
1127 * specifies the number of addresses in the array with addrcnt.
1128 *
1129 * On success, sctp_connectx() returns 0. On failure, sctp_connectx() returns
1130 * -1, and sets errno to the appropriate error code.
1131 *
1132 * For SCTP, the port given in each socket address must be the same, or
1133 * sctp_connectx() will fail, setting errno to EINVAL.
1134 *
1135 * An application can use sctp_connectx to initiate an association with
1136 * an endpoint that is multi-homed. Much like sctp_bindx() this call
1137 * allows a caller to specify multiple addresses at which a peer can be
1138 * reached. The way the SCTP stack uses the list of addresses to set up
1139 * the association is implementation dependant. This function only
1140 * specifies that the stack will try to make use of all the addresses in
1141 * the list when needed.
1142 *
1143 * Note that the list of addresses passed in is only used for setting up
1144 * the association. It does not necessarily equal the set of addresses
1145 * the peer uses for the resulting association. If the caller wants to
1146 * find out the set of peer addresses, it must use sctp_getpaddrs() to
1147 * retrieve them after the association has been set up.
1148 *
1149 * Basically do nothing but copying the addresses from user to kernel
1150 * land and invoking either sctp_connectx(). This is used for tunneling
1151 * the sctp_connectx() request through sctp_setsockopt() from userspace.
1152 *
1153 * We don't use copy_from_user() for optimization: we first do the
1154 * sanity checks (buffer size -fast- and access check-healthy
1155 * pointer); if all of those succeed, then we can alloc the memory
1156 * (expensive operation) needed to copy the data to kernel. Then we do
1157 * the copying without checking the user space area
1158 * (__copy_from_user()).
1159 *
1160 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
1161 * it.
1162 *
1163 * sk The sk of the socket
1164 * addrs The pointer to the addresses in user land
1165 * addrssize Size of the addrs buffer
1166 *
1167 * Returns 0 if ok, <0 errno code on error.
1168 */
1169SCTP_STATIC int sctp_setsockopt_connectx(struct sock* sk,
1170 struct sockaddr __user *addrs,
1171 int addrs_size)
1172{
1173 int err = 0;
1174 struct sockaddr *kaddrs;
1175
1176 SCTP_DEBUG_PRINTK("%s - sk %p addrs %p addrs_size %d\n",
1177 __FUNCTION__, sk, addrs, addrs_size);
1178
1179 if (unlikely(addrs_size <= 0))
1180 return -EINVAL;
1181
1182 /* Check the user passed a healthy pointer. */
1183 if (unlikely(!access_ok(VERIFY_READ, addrs, addrs_size)))
1184 return -EFAULT;
1185
1186 /* Alloc space for the address array in kernel memory. */
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08001187 kaddrs = kmalloc(addrs_size, GFP_KERNEL);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001188 if (unlikely(!kaddrs))
1189 return -ENOMEM;
1190
1191 if (__copy_from_user(kaddrs, addrs, addrs_size)) {
1192 err = -EFAULT;
1193 } else {
1194 err = __sctp_connect(sk, kaddrs, addrs_size);
1195 }
1196
1197 kfree(kaddrs);
1198 return err;
1199}
1200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201/* API 3.1.4 close() - UDP Style Syntax
1202 * Applications use close() to perform graceful shutdown (as described in
1203 * Section 10.1 of [SCTP]) on ALL the associations currently represented
1204 * by a UDP-style socket.
1205 *
1206 * The syntax is
1207 *
1208 * ret = close(int sd);
1209 *
1210 * sd - the socket descriptor of the associations to be closed.
1211 *
1212 * To gracefully shutdown a specific association represented by the
1213 * UDP-style socket, an application should use the sendmsg() call,
1214 * passing no user data, but including the appropriate flag in the
1215 * ancillary data (see Section xxxx).
1216 *
1217 * If sd in the close() call is a branched-off socket representing only
1218 * one association, the shutdown is performed on that association only.
1219 *
1220 * 4.1.6 close() - TCP Style Syntax
1221 *
1222 * Applications use close() to gracefully close down an association.
1223 *
1224 * The syntax is:
1225 *
1226 * int close(int sd);
1227 *
1228 * sd - the socket descriptor of the association to be closed.
1229 *
1230 * After an application calls close() on a socket descriptor, no further
1231 * socket operations will succeed on that descriptor.
1232 *
1233 * API 7.1.4 SO_LINGER
1234 *
1235 * An application using the TCP-style socket can use this option to
1236 * perform the SCTP ABORT primitive. The linger option structure is:
1237 *
1238 * struct linger {
1239 * int l_onoff; // option on/off
1240 * int l_linger; // linger time
1241 * };
1242 *
1243 * To enable the option, set l_onoff to 1. If the l_linger value is set
1244 * to 0, calling close() is the same as the ABORT primitive. If the
1245 * value is set to a negative value, the setsockopt() call will return
1246 * an error. If the value is set to a positive value linger_time, the
1247 * close() can be blocked for at most linger_time ms. If the graceful
1248 * shutdown phase does not finish during this period, close() will
1249 * return but the graceful shutdown phase continues in the system.
1250 */
1251SCTP_STATIC void sctp_close(struct sock *sk, long timeout)
1252{
1253 struct sctp_endpoint *ep;
1254 struct sctp_association *asoc;
1255 struct list_head *pos, *temp;
1256
1257 SCTP_DEBUG_PRINTK("sctp_close(sk: 0x%p, timeout:%ld)\n", sk, timeout);
1258
1259 sctp_lock_sock(sk);
1260 sk->sk_shutdown = SHUTDOWN_MASK;
1261
1262 ep = sctp_sk(sk)->ep;
1263
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07001264 /* Walk all associations on an endpoint. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 list_for_each_safe(pos, temp, &ep->asocs) {
1266 asoc = list_entry(pos, struct sctp_association, asocs);
1267
1268 if (sctp_style(sk, TCP)) {
1269 /* A closed association can still be in the list if
1270 * it belongs to a TCP-style listening socket that is
1271 * not yet accepted. If so, free it. If not, send an
1272 * ABORT or SHUTDOWN based on the linger options.
1273 */
1274 if (sctp_state(asoc, CLOSED)) {
1275 sctp_unhash_established(asoc);
1276 sctp_association_free(asoc);
Vladislav Yasevichb89498a2006-05-19 14:32:06 -07001277 continue;
1278 }
1279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001281 if (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime) {
1282 struct sctp_chunk *chunk;
1283
1284 chunk = sctp_make_abort_user(asoc, NULL, 0);
1285 if (chunk)
1286 sctp_primitive_ABORT(asoc, chunk);
1287 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 sctp_primitive_SHUTDOWN(asoc, NULL);
1289 }
1290
1291 /* Clean up any skbs sitting on the receive queue. */
1292 sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1293 sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1294
1295 /* On a TCP-style socket, block for at most linger_time if set. */
1296 if (sctp_style(sk, TCP) && timeout)
1297 sctp_wait_for_close(sk, timeout);
1298
1299 /* This will run the backlog queue. */
1300 sctp_release_sock(sk);
1301
1302 /* Supposedly, no process has access to the socket, but
1303 * the net layers still may.
1304 */
1305 sctp_local_bh_disable();
1306 sctp_bh_lock_sock(sk);
1307
1308 /* Hold the sock, since sk_common_release() will put sock_put()
1309 * and we have just a little more cleanup.
1310 */
1311 sock_hold(sk);
1312 sk_common_release(sk);
1313
1314 sctp_bh_unlock_sock(sk);
1315 sctp_local_bh_enable();
1316
1317 sock_put(sk);
1318
1319 SCTP_DBG_OBJCNT_DEC(sock);
1320}
1321
1322/* Handle EPIPE error. */
1323static int sctp_error(struct sock *sk, int flags, int err)
1324{
1325 if (err == -EPIPE)
1326 err = sock_error(sk) ? : -EPIPE;
1327 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1328 send_sig(SIGPIPE, current, 0);
1329 return err;
1330}
1331
1332/* API 3.1.3 sendmsg() - UDP Style Syntax
1333 *
1334 * An application uses sendmsg() and recvmsg() calls to transmit data to
1335 * and receive data from its peer.
1336 *
1337 * ssize_t sendmsg(int socket, const struct msghdr *message,
1338 * int flags);
1339 *
1340 * socket - the socket descriptor of the endpoint.
1341 * message - pointer to the msghdr structure which contains a single
1342 * user message and possibly some ancillary data.
1343 *
1344 * See Section 5 for complete description of the data
1345 * structures.
1346 *
1347 * flags - flags sent or received with the user message, see Section
1348 * 5 for complete description of the flags.
1349 *
1350 * Note: This function could use a rewrite especially when explicit
1351 * connect support comes in.
1352 */
1353/* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */
1354
1355SCTP_STATIC int sctp_msghdr_parse(const struct msghdr *, sctp_cmsgs_t *);
1356
1357SCTP_STATIC int sctp_sendmsg(struct kiocb *iocb, struct sock *sk,
1358 struct msghdr *msg, size_t msg_len)
1359{
1360 struct sctp_sock *sp;
1361 struct sctp_endpoint *ep;
1362 struct sctp_association *new_asoc=NULL, *asoc=NULL;
1363 struct sctp_transport *transport, *chunk_tp;
1364 struct sctp_chunk *chunk;
Al Virodce116a2006-11-20 17:25:15 -08001365 union sctp_addr to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 struct sockaddr *msg_name = NULL;
1367 struct sctp_sndrcvinfo default_sinfo = { 0 };
1368 struct sctp_sndrcvinfo *sinfo;
1369 struct sctp_initmsg *sinit;
1370 sctp_assoc_t associd = 0;
1371 sctp_cmsgs_t cmsgs = { NULL };
1372 int err;
1373 sctp_scope_t scope;
1374 long timeo;
1375 __u16 sinfo_flags = 0;
1376 struct sctp_datamsg *datamsg;
1377 struct list_head *pos;
1378 int msg_flags = msg->msg_flags;
1379
1380 SCTP_DEBUG_PRINTK("sctp_sendmsg(sk: %p, msg: %p, msg_len: %zu)\n",
1381 sk, msg, msg_len);
1382
1383 err = 0;
1384 sp = sctp_sk(sk);
1385 ep = sp->ep;
1386
Frank Filz3f7a87d2005-06-20 13:14:57 -07001387 SCTP_DEBUG_PRINTK("Using endpoint: %p.\n", ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 /* We cannot send a message over a TCP-style listening socket. */
1390 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING)) {
1391 err = -EPIPE;
1392 goto out_nounlock;
1393 }
1394
1395 /* Parse out the SCTP CMSGs. */
1396 err = sctp_msghdr_parse(msg, &cmsgs);
1397
1398 if (err) {
1399 SCTP_DEBUG_PRINTK("msghdr parse err = %x\n", err);
1400 goto out_nounlock;
1401 }
1402
1403 /* Fetch the destination address for this packet. This
1404 * address only selects the association--it is not necessarily
1405 * the address we will send to.
1406 * For a peeled-off socket, msg_name is ignored.
1407 */
1408 if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
1409 int msg_namelen = msg->msg_namelen;
1410
1411 err = sctp_verify_addr(sk, (union sctp_addr *)msg->msg_name,
1412 msg_namelen);
1413 if (err)
1414 return err;
1415
1416 if (msg_namelen > sizeof(to))
1417 msg_namelen = sizeof(to);
1418 memcpy(&to, msg->msg_name, msg_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 msg_name = msg->msg_name;
1420 }
1421
1422 sinfo = cmsgs.info;
1423 sinit = cmsgs.init;
1424
1425 /* Did the user specify SNDRCVINFO? */
1426 if (sinfo) {
1427 sinfo_flags = sinfo->sinfo_flags;
1428 associd = sinfo->sinfo_assoc_id;
1429 }
1430
1431 SCTP_DEBUG_PRINTK("msg_len: %zu, sinfo_flags: 0x%x\n",
1432 msg_len, sinfo_flags);
1433
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001434 /* SCTP_EOF or SCTP_ABORT cannot be set on a TCP-style socket. */
1435 if (sctp_style(sk, TCP) && (sinfo_flags & (SCTP_EOF | SCTP_ABORT))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 err = -EINVAL;
1437 goto out_nounlock;
1438 }
1439
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001440 /* If SCTP_EOF is set, no data can be sent. Disallow sending zero
1441 * length messages when SCTP_EOF|SCTP_ABORT is not set.
1442 * If SCTP_ABORT is set, the message length could be non zero with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 * the msg_iov set to the user abort reason.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001444 */
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001445 if (((sinfo_flags & SCTP_EOF) && (msg_len > 0)) ||
1446 (!(sinfo_flags & (SCTP_EOF|SCTP_ABORT)) && (msg_len == 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 err = -EINVAL;
1448 goto out_nounlock;
1449 }
1450
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001451 /* If SCTP_ADDR_OVER is set, there must be an address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 * specified in msg_name.
1453 */
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001454 if ((sinfo_flags & SCTP_ADDR_OVER) && (!msg->msg_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 err = -EINVAL;
1456 goto out_nounlock;
1457 }
1458
1459 transport = NULL;
1460
1461 SCTP_DEBUG_PRINTK("About to look up association.\n");
1462
1463 sctp_lock_sock(sk);
1464
1465 /* If a msg_name has been specified, assume this is to be used. */
1466 if (msg_name) {
1467 /* Look for a matching association on the endpoint. */
Al Virodce116a2006-11-20 17:25:15 -08001468 asoc = sctp_endpoint_lookup_assoc(ep, &to, &transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 if (!asoc) {
1470 /* If we could not find a matching association on the
1471 * endpoint, make sure that it is not a TCP-style
1472 * socket that already has an association or there is
1473 * no peeled-off association on another socket.
1474 */
1475 if ((sctp_style(sk, TCP) &&
1476 sctp_sstate(sk, ESTABLISHED)) ||
Al Virodce116a2006-11-20 17:25:15 -08001477 sctp_endpoint_is_peeled_off(ep, &to)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 err = -EADDRNOTAVAIL;
1479 goto out_unlock;
1480 }
1481 }
1482 } else {
1483 asoc = sctp_id2assoc(sk, associd);
1484 if (!asoc) {
1485 err = -EPIPE;
1486 goto out_unlock;
1487 }
1488 }
1489
1490 if (asoc) {
1491 SCTP_DEBUG_PRINTK("Just looked up association: %p.\n", asoc);
1492
1493 /* We cannot send a message on a TCP-style SCTP_SS_ESTABLISHED
1494 * socket that has an association in CLOSED state. This can
1495 * happen when an accepted socket has an association that is
1496 * already CLOSED.
1497 */
1498 if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP)) {
1499 err = -EPIPE;
1500 goto out_unlock;
1501 }
1502
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001503 if (sinfo_flags & SCTP_EOF) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 SCTP_DEBUG_PRINTK("Shutting down association: %p\n",
1505 asoc);
1506 sctp_primitive_SHUTDOWN(asoc, NULL);
1507 err = 0;
1508 goto out_unlock;
1509 }
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001510 if (sinfo_flags & SCTP_ABORT) {
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001511 struct sctp_chunk *chunk;
1512
1513 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1514 if (!chunk) {
1515 err = -ENOMEM;
1516 goto out_unlock;
1517 }
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 SCTP_DEBUG_PRINTK("Aborting association: %p\n", asoc);
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001520 sctp_primitive_ABORT(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 err = 0;
1522 goto out_unlock;
1523 }
1524 }
1525
1526 /* Do we need to create the association? */
1527 if (!asoc) {
1528 SCTP_DEBUG_PRINTK("There is no association yet.\n");
1529
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001530 if (sinfo_flags & (SCTP_EOF | SCTP_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 err = -EINVAL;
1532 goto out_unlock;
1533 }
1534
1535 /* Check for invalid stream against the stream counts,
1536 * either the default or the user specified stream counts.
1537 */
1538 if (sinfo) {
1539 if (!sinit || (sinit && !sinit->sinit_num_ostreams)) {
1540 /* Check against the defaults. */
1541 if (sinfo->sinfo_stream >=
1542 sp->initmsg.sinit_num_ostreams) {
1543 err = -EINVAL;
1544 goto out_unlock;
1545 }
1546 } else {
1547 /* Check against the requested. */
1548 if (sinfo->sinfo_stream >=
1549 sinit->sinit_num_ostreams) {
1550 err = -EINVAL;
1551 goto out_unlock;
1552 }
1553 }
1554 }
1555
1556 /*
1557 * API 3.1.2 bind() - UDP Style Syntax
1558 * If a bind() or sctp_bindx() is not called prior to a
1559 * sendmsg() call that initiates a new association, the
1560 * system picks an ephemeral port and will choose an address
1561 * set equivalent to binding with a wildcard address.
1562 */
1563 if (!ep->base.bind_addr.port) {
1564 if (sctp_autobind(sk)) {
1565 err = -EAGAIN;
1566 goto out_unlock;
1567 }
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001568 } else {
1569 /*
1570 * If an unprivileged user inherits a one-to-many
1571 * style socket with open associations on a privileged
1572 * port, it MAY be permitted to accept new associations,
1573 * but it SHOULD NOT be permitted to open new
1574 * associations.
1575 */
1576 if (ep->base.bind_addr.port < PROT_SOCK &&
1577 !capable(CAP_NET_BIND_SERVICE)) {
1578 err = -EACCES;
1579 goto out_unlock;
1580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 }
1582
1583 scope = sctp_scope(&to);
1584 new_asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1585 if (!new_asoc) {
1586 err = -ENOMEM;
1587 goto out_unlock;
1588 }
1589 asoc = new_asoc;
1590
1591 /* If the SCTP_INIT ancillary data is specified, set all
1592 * the association init values accordingly.
1593 */
1594 if (sinit) {
1595 if (sinit->sinit_num_ostreams) {
1596 asoc->c.sinit_num_ostreams =
1597 sinit->sinit_num_ostreams;
1598 }
1599 if (sinit->sinit_max_instreams) {
1600 asoc->c.sinit_max_instreams =
1601 sinit->sinit_max_instreams;
1602 }
1603 if (sinit->sinit_max_attempts) {
1604 asoc->max_init_attempts
1605 = sinit->sinit_max_attempts;
1606 }
1607 if (sinit->sinit_max_init_timeo) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001608 asoc->max_init_timeo =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 msecs_to_jiffies(sinit->sinit_max_init_timeo);
1610 }
1611 }
1612
1613 /* Prime the peer's transport structures. */
Al Virodce116a2006-11-20 17:25:15 -08001614 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL, SCTP_UNKNOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 if (!transport) {
1616 err = -ENOMEM;
1617 goto out_free;
1618 }
1619 err = sctp_assoc_set_bind_addr_from_ep(asoc, GFP_KERNEL);
1620 if (err < 0) {
1621 err = -ENOMEM;
1622 goto out_free;
1623 }
1624 }
1625
1626 /* ASSERT: we have a valid association at this point. */
1627 SCTP_DEBUG_PRINTK("We have a valid association.\n");
1628
1629 if (!sinfo) {
1630 /* If the user didn't specify SNDRCVINFO, make up one with
1631 * some defaults.
1632 */
1633 default_sinfo.sinfo_stream = asoc->default_stream;
1634 default_sinfo.sinfo_flags = asoc->default_flags;
1635 default_sinfo.sinfo_ppid = asoc->default_ppid;
1636 default_sinfo.sinfo_context = asoc->default_context;
1637 default_sinfo.sinfo_timetolive = asoc->default_timetolive;
1638 default_sinfo.sinfo_assoc_id = sctp_assoc2id(asoc);
1639 sinfo = &default_sinfo;
1640 }
1641
1642 /* API 7.1.7, the sndbuf size per association bounds the
1643 * maximum size of data that can be sent in a single send call.
1644 */
1645 if (msg_len > sk->sk_sndbuf) {
1646 err = -EMSGSIZE;
1647 goto out_free;
1648 }
1649
1650 /* If fragmentation is disabled and the message length exceeds the
1651 * association fragmentation point, return EMSGSIZE. The I-D
1652 * does not specify what this error is, but this looks like
1653 * a great fit.
1654 */
1655 if (sctp_sk(sk)->disable_fragments && (msg_len > asoc->frag_point)) {
1656 err = -EMSGSIZE;
1657 goto out_free;
1658 }
1659
1660 if (sinfo) {
1661 /* Check for invalid stream. */
1662 if (sinfo->sinfo_stream >= asoc->c.sinit_num_ostreams) {
1663 err = -EINVAL;
1664 goto out_free;
1665 }
1666 }
1667
1668 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1669 if (!sctp_wspace(asoc)) {
1670 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1671 if (err)
1672 goto out_free;
1673 }
1674
1675 /* If an address is passed with the sendto/sendmsg call, it is used
1676 * to override the primary destination address in the TCP model, or
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001677 * when SCTP_ADDR_OVER flag is set in the UDP model.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 */
1679 if ((sctp_style(sk, TCP) && msg_name) ||
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001680 (sinfo_flags & SCTP_ADDR_OVER)) {
Al Virodce116a2006-11-20 17:25:15 -08001681 chunk_tp = sctp_assoc_lookup_paddr(asoc, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 if (!chunk_tp) {
1683 err = -EINVAL;
1684 goto out_free;
1685 }
1686 } else
1687 chunk_tp = NULL;
1688
1689 /* Auto-connect, if we aren't connected already. */
1690 if (sctp_state(asoc, CLOSED)) {
1691 err = sctp_primitive_ASSOCIATE(asoc, NULL);
1692 if (err < 0)
1693 goto out_free;
1694 SCTP_DEBUG_PRINTK("We associated primitively.\n");
1695 }
1696
1697 /* Break the message into multiple chunks of maximum size. */
1698 datamsg = sctp_datamsg_from_user(asoc, sinfo, msg, msg_len);
1699 if (!datamsg) {
1700 err = -ENOMEM;
1701 goto out_free;
1702 }
1703
1704 /* Now send the (possibly) fragmented message. */
1705 list_for_each(pos, &datamsg->chunks) {
1706 chunk = list_entry(pos, struct sctp_chunk, frag_list);
1707 sctp_datamsg_track(chunk);
1708
1709 /* Do accounting for the write space. */
1710 sctp_set_owner_w(chunk);
1711
1712 chunk->transport = chunk_tp;
1713
1714 /* Send it to the lower layers. Note: all chunks
1715 * must either fail or succeed. The lower layer
1716 * works that way today. Keep it that way or this
1717 * breaks.
1718 */
1719 err = sctp_primitive_SEND(asoc, chunk);
1720 /* Did the lower layer accept the chunk? */
1721 if (err)
1722 sctp_chunk_free(chunk);
1723 SCTP_DEBUG_PRINTK("We sent primitively.\n");
1724 }
1725
1726 sctp_datamsg_free(datamsg);
1727 if (err)
1728 goto out_free;
1729 else
1730 err = msg_len;
1731
1732 /* If we are already past ASSOCIATE, the lower
1733 * layers are responsible for association cleanup.
1734 */
1735 goto out_unlock;
1736
1737out_free:
1738 if (new_asoc)
1739 sctp_association_free(asoc);
1740out_unlock:
1741 sctp_release_sock(sk);
1742
1743out_nounlock:
1744 return sctp_error(sk, msg_flags, err);
1745
1746#if 0
1747do_sock_err:
1748 if (msg_len)
1749 err = msg_len;
1750 else
1751 err = sock_error(sk);
1752 goto out;
1753
1754do_interrupted:
1755 if (msg_len)
1756 err = msg_len;
1757 goto out;
1758#endif /* 0 */
1759}
1760
1761/* This is an extended version of skb_pull() that removes the data from the
1762 * start of a skb even when data is spread across the list of skb's in the
1763 * frag_list. len specifies the total amount of data that needs to be removed.
1764 * when 'len' bytes could be removed from the skb, it returns 0.
1765 * If 'len' exceeds the total skb length, it returns the no. of bytes that
1766 * could not be removed.
1767 */
1768static int sctp_skb_pull(struct sk_buff *skb, int len)
1769{
1770 struct sk_buff *list;
1771 int skb_len = skb_headlen(skb);
1772 int rlen;
1773
1774 if (len <= skb_len) {
1775 __skb_pull(skb, len);
1776 return 0;
1777 }
1778 len -= skb_len;
1779 __skb_pull(skb, skb_len);
1780
1781 for (list = skb_shinfo(skb)->frag_list; list; list = list->next) {
1782 rlen = sctp_skb_pull(list, len);
1783 skb->len -= (len-rlen);
1784 skb->data_len -= (len-rlen);
1785
1786 if (!rlen)
1787 return 0;
1788
1789 len = rlen;
1790 }
1791
1792 return len;
1793}
1794
1795/* API 3.1.3 recvmsg() - UDP Style Syntax
1796 *
1797 * ssize_t recvmsg(int socket, struct msghdr *message,
1798 * int flags);
1799 *
1800 * socket - the socket descriptor of the endpoint.
1801 * message - pointer to the msghdr structure which contains a single
1802 * user message and possibly some ancillary data.
1803 *
1804 * See Section 5 for complete description of the data
1805 * structures.
1806 *
1807 * flags - flags sent or received with the user message, see Section
1808 * 5 for complete description of the flags.
1809 */
1810static struct sk_buff *sctp_skb_recv_datagram(struct sock *, int, int, int *);
1811
1812SCTP_STATIC int sctp_recvmsg(struct kiocb *iocb, struct sock *sk,
1813 struct msghdr *msg, size_t len, int noblock,
1814 int flags, int *addr_len)
1815{
1816 struct sctp_ulpevent *event = NULL;
1817 struct sctp_sock *sp = sctp_sk(sk);
1818 struct sk_buff *skb;
1819 int copied;
1820 int err = 0;
1821 int skb_len;
1822
1823 SCTP_DEBUG_PRINTK("sctp_recvmsg(%s: %p, %s: %p, %s: %zd, %s: %d, %s: "
1824 "0x%x, %s: %p)\n", "sk", sk, "msghdr", msg,
1825 "len", len, "knoblauch", noblock,
1826 "flags", flags, "addr_len", addr_len);
1827
1828 sctp_lock_sock(sk);
1829
1830 if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED)) {
1831 err = -ENOTCONN;
1832 goto out;
1833 }
1834
1835 skb = sctp_skb_recv_datagram(sk, flags, noblock, &err);
1836 if (!skb)
1837 goto out;
1838
1839 /* Get the total length of the skb including any skb's in the
1840 * frag_list.
1841 */
1842 skb_len = skb->len;
1843
1844 copied = skb_len;
1845 if (copied > len)
1846 copied = len;
1847
1848 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1849
1850 event = sctp_skb2event(skb);
1851
1852 if (err)
1853 goto out_free;
1854
1855 sock_recv_timestamp(msg, sk, skb);
1856 if (sctp_ulpevent_is_notification(event)) {
1857 msg->msg_flags |= MSG_NOTIFICATION;
1858 sp->pf->event_msgname(event, msg->msg_name, addr_len);
1859 } else {
1860 sp->pf->skb_msgname(skb, msg->msg_name, addr_len);
1861 }
1862
1863 /* Check if we allow SCTP_SNDRCVINFO. */
1864 if (sp->subscribe.sctp_data_io_event)
1865 sctp_ulpevent_read_sndrcvinfo(event, msg);
1866#if 0
1867 /* FIXME: we should be calling IP/IPv6 layers. */
1868 if (sk->sk_protinfo.af_inet.cmsg_flags)
1869 ip_cmsg_recv(msg, skb);
1870#endif
1871
1872 err = copied;
1873
1874 /* If skb's length exceeds the user's buffer, update the skb and
1875 * push it back to the receive_queue so that the next call to
1876 * recvmsg() will return the remaining data. Don't set MSG_EOR.
1877 */
1878 if (skb_len > copied) {
1879 msg->msg_flags &= ~MSG_EOR;
1880 if (flags & MSG_PEEK)
1881 goto out_free;
1882 sctp_skb_pull(skb, copied);
1883 skb_queue_head(&sk->sk_receive_queue, skb);
1884
1885 /* When only partial message is copied to the user, increase
1886 * rwnd by that amount. If all the data in the skb is read,
1887 * rwnd is updated when the event is freed.
1888 */
1889 sctp_assoc_rwnd_increase(event->asoc, copied);
1890 goto out;
1891 } else if ((event->msg_flags & MSG_NOTIFICATION) ||
1892 (event->msg_flags & MSG_EOR))
1893 msg->msg_flags |= MSG_EOR;
1894 else
1895 msg->msg_flags &= ~MSG_EOR;
1896
1897out_free:
1898 if (flags & MSG_PEEK) {
1899 /* Release the skb reference acquired after peeking the skb in
1900 * sctp_skb_recv_datagram().
1901 */
1902 kfree_skb(skb);
1903 } else {
1904 /* Free the event which includes releasing the reference to
1905 * the owner of the skb, freeing the skb and updating the
1906 * rwnd.
1907 */
1908 sctp_ulpevent_free(event);
1909 }
1910out:
1911 sctp_release_sock(sk);
1912 return err;
1913}
1914
1915/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
1916 *
1917 * This option is a on/off flag. If enabled no SCTP message
1918 * fragmentation will be performed. Instead if a message being sent
1919 * exceeds the current PMTU size, the message will NOT be sent and
1920 * instead a error will be indicated to the user.
1921 */
1922static int sctp_setsockopt_disable_fragments(struct sock *sk,
1923 char __user *optval, int optlen)
1924{
1925 int val;
1926
1927 if (optlen < sizeof(int))
1928 return -EINVAL;
1929
1930 if (get_user(val, (int __user *)optval))
1931 return -EFAULT;
1932
1933 sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1;
1934
1935 return 0;
1936}
1937
1938static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
1939 int optlen)
1940{
1941 if (optlen != sizeof(struct sctp_event_subscribe))
1942 return -EINVAL;
1943 if (copy_from_user(&sctp_sk(sk)->subscribe, optval, optlen))
1944 return -EFAULT;
1945 return 0;
1946}
1947
1948/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
1949 *
1950 * This socket option is applicable to the UDP-style socket only. When
1951 * set it will cause associations that are idle for more than the
1952 * specified number of seconds to automatically close. An association
1953 * being idle is defined an association that has NOT sent or received
1954 * user data. The special value of '0' indicates that no automatic
1955 * close of any associations should be performed. The option expects an
1956 * integer defining the number of seconds of idle time before an
1957 * association is closed.
1958 */
1959static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval,
1960 int optlen)
1961{
1962 struct sctp_sock *sp = sctp_sk(sk);
1963
1964 /* Applicable to UDP-style socket only */
1965 if (sctp_style(sk, TCP))
1966 return -EOPNOTSUPP;
1967 if (optlen != sizeof(int))
1968 return -EINVAL;
1969 if (copy_from_user(&sp->autoclose, optval, optlen))
1970 return -EFAULT;
1971
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 return 0;
1973}
1974
1975/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
1976 *
1977 * Applications can enable or disable heartbeats for any peer address of
1978 * an association, modify an address's heartbeat interval, force a
1979 * heartbeat to be sent immediately, and adjust the address's maximum
1980 * number of retransmissions sent before an address is considered
1981 * unreachable. The following structure is used to access and modify an
1982 * address's parameters:
1983 *
1984 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08001985 * sctp_assoc_t spp_assoc_id;
1986 * struct sockaddr_storage spp_address;
1987 * uint32_t spp_hbinterval;
1988 * uint16_t spp_pathmaxrxt;
1989 * uint32_t spp_pathmtu;
1990 * uint32_t spp_sackdelay;
1991 * uint32_t spp_flags;
1992 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08001994 * spp_assoc_id - (one-to-many style socket) This is filled in the
1995 * application, and identifies the association for
1996 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 * spp_address - This specifies which address is of interest.
1998 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08001999 * in milliseconds. If a value of zero
2000 * is present in this field then no changes are to
2001 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 * spp_pathmaxrxt - This contains the maximum number of
2003 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08002004 * considered unreachable. If a value of zero
2005 * is present in this field then no changes are to
2006 * be made to this parameter.
2007 * spp_pathmtu - When Path MTU discovery is disabled the value
2008 * specified here will be the "fixed" path mtu.
2009 * Note that if the spp_address field is empty
2010 * then all associations on this address will
2011 * have this fixed path mtu set upon them.
2012 *
2013 * spp_sackdelay - When delayed sack is enabled, this value specifies
2014 * the number of milliseconds that sacks will be delayed
2015 * for. This value will apply to all addresses of an
2016 * association if the spp_address field is empty. Note
2017 * also, that if delayed sack is enabled and this
2018 * value is set to 0, no change is made to the last
2019 * recorded delayed sack timer value.
2020 *
2021 * spp_flags - These flags are used to control various features
2022 * on an association. The flag field may contain
2023 * zero or more of the following options.
2024 *
2025 * SPP_HB_ENABLE - Enable heartbeats on the
2026 * specified address. Note that if the address
2027 * field is empty all addresses for the association
2028 * have heartbeats enabled upon them.
2029 *
2030 * SPP_HB_DISABLE - Disable heartbeats on the
2031 * speicifed address. Note that if the address
2032 * field is empty all addresses for the association
2033 * will have their heartbeats disabled. Note also
2034 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
2035 * mutually exclusive, only one of these two should
2036 * be specified. Enabling both fields will have
2037 * undetermined results.
2038 *
2039 * SPP_HB_DEMAND - Request a user initiated heartbeat
2040 * to be made immediately.
2041 *
2042 * SPP_PMTUD_ENABLE - This field will enable PMTU
2043 * discovery upon the specified address. Note that
2044 * if the address feild is empty then all addresses
2045 * on the association are effected.
2046 *
2047 * SPP_PMTUD_DISABLE - This field will disable PMTU
2048 * discovery upon the specified address. Note that
2049 * if the address feild is empty then all addresses
2050 * on the association are effected. Not also that
2051 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2052 * exclusive. Enabling both will have undetermined
2053 * results.
2054 *
2055 * SPP_SACKDELAY_ENABLE - Setting this flag turns
2056 * on delayed sack. The time specified in spp_sackdelay
2057 * is used to specify the sack delay for this address. Note
2058 * that if spp_address is empty then all addresses will
2059 * enable delayed sack and take on the sack delay
2060 * value specified in spp_sackdelay.
2061 * SPP_SACKDELAY_DISABLE - Setting this flag turns
2062 * off delayed sack. If the spp_address field is blank then
2063 * delayed sack is disabled for the entire association. Note
2064 * also that this field is mutually exclusive to
2065 * SPP_SACKDELAY_ENABLE, setting both will have undefined
2066 * results.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 */
Adrian Bunk16164362006-09-18 00:40:38 -07002068static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2069 struct sctp_transport *trans,
2070 struct sctp_association *asoc,
2071 struct sctp_sock *sp,
2072 int hb_change,
2073 int pmtud_change,
2074 int sackdelay_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 int error;
2077
Frank Filz52ccb8e2005-12-22 11:36:46 -08002078 if (params->spp_flags & SPP_HB_DEMAND && trans) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 error = sctp_primitive_REQUESTHEARTBEAT (trans->asoc, trans);
2080 if (error)
2081 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 }
2083
Frank Filz52ccb8e2005-12-22 11:36:46 -08002084 if (params->spp_hbinterval) {
2085 if (trans) {
2086 trans->hbinterval = msecs_to_jiffies(params->spp_hbinterval);
2087 } else if (asoc) {
2088 asoc->hbinterval = msecs_to_jiffies(params->spp_hbinterval);
2089 } else {
2090 sp->hbinterval = params->spp_hbinterval;
2091 }
2092 }
2093
2094 if (hb_change) {
2095 if (trans) {
2096 trans->param_flags =
2097 (trans->param_flags & ~SPP_HB) | hb_change;
2098 } else if (asoc) {
2099 asoc->param_flags =
2100 (asoc->param_flags & ~SPP_HB) | hb_change;
2101 } else {
2102 sp->param_flags =
2103 (sp->param_flags & ~SPP_HB) | hb_change;
2104 }
2105 }
2106
2107 if (params->spp_pathmtu) {
2108 if (trans) {
2109 trans->pathmtu = params->spp_pathmtu;
2110 sctp_assoc_sync_pmtu(asoc);
2111 } else if (asoc) {
2112 asoc->pathmtu = params->spp_pathmtu;
2113 sctp_frag_point(sp, params->spp_pathmtu);
2114 } else {
2115 sp->pathmtu = params->spp_pathmtu;
2116 }
2117 }
2118
2119 if (pmtud_change) {
2120 if (trans) {
2121 int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2122 (params->spp_flags & SPP_PMTUD_ENABLE);
2123 trans->param_flags =
2124 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2125 if (update) {
2126 sctp_transport_pmtu(trans);
2127 sctp_assoc_sync_pmtu(asoc);
2128 }
2129 } else if (asoc) {
2130 asoc->param_flags =
2131 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2132 } else {
2133 sp->param_flags =
2134 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2135 }
2136 }
2137
2138 if (params->spp_sackdelay) {
2139 if (trans) {
2140 trans->sackdelay =
2141 msecs_to_jiffies(params->spp_sackdelay);
2142 } else if (asoc) {
2143 asoc->sackdelay =
2144 msecs_to_jiffies(params->spp_sackdelay);
2145 } else {
2146 sp->sackdelay = params->spp_sackdelay;
2147 }
2148 }
2149
2150 if (sackdelay_change) {
2151 if (trans) {
2152 trans->param_flags =
2153 (trans->param_flags & ~SPP_SACKDELAY) |
2154 sackdelay_change;
2155 } else if (asoc) {
2156 asoc->param_flags =
2157 (asoc->param_flags & ~SPP_SACKDELAY) |
2158 sackdelay_change;
2159 } else {
2160 sp->param_flags =
2161 (sp->param_flags & ~SPP_SACKDELAY) |
2162 sackdelay_change;
2163 }
2164 }
2165
2166 if (params->spp_pathmaxrxt) {
2167 if (trans) {
2168 trans->pathmaxrxt = params->spp_pathmaxrxt;
2169 } else if (asoc) {
2170 asoc->pathmaxrxt = params->spp_pathmaxrxt;
2171 } else {
2172 sp->pathmaxrxt = params->spp_pathmaxrxt;
2173 }
2174 }
2175
2176 return 0;
2177}
2178
2179static int sctp_setsockopt_peer_addr_params(struct sock *sk,
2180 char __user *optval, int optlen)
2181{
2182 struct sctp_paddrparams params;
2183 struct sctp_transport *trans = NULL;
2184 struct sctp_association *asoc = NULL;
2185 struct sctp_sock *sp = sctp_sk(sk);
2186 int error;
2187 int hb_change, pmtud_change, sackdelay_change;
2188
2189 if (optlen != sizeof(struct sctp_paddrparams))
2190 return - EINVAL;
2191
2192 if (copy_from_user(&params, optval, optlen))
2193 return -EFAULT;
2194
2195 /* Validate flags and value parameters. */
2196 hb_change = params.spp_flags & SPP_HB;
2197 pmtud_change = params.spp_flags & SPP_PMTUD;
2198 sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2199
2200 if (hb_change == SPP_HB ||
2201 pmtud_change == SPP_PMTUD ||
2202 sackdelay_change == SPP_SACKDELAY ||
2203 params.spp_sackdelay > 500 ||
2204 (params.spp_pathmtu
2205 && params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
2206 return -EINVAL;
2207
2208 /* If an address other than INADDR_ANY is specified, and
2209 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 */
Frank Filz52ccb8e2005-12-22 11:36:46 -08002211 if (!sctp_is_any(( union sctp_addr *)&params.spp_address)) {
2212 trans = sctp_addr_id2transport(sk, &params.spp_address,
2213 params.spp_assoc_id);
2214 if (!trans)
2215 return -EINVAL;
2216 }
2217
2218 /* Get association, if assoc_id != 0 and the socket is a one
2219 * to many style socket, and an association was not found, then
2220 * the id was invalid.
2221 */
2222 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
2223 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP))
2224 return -EINVAL;
2225
2226 /* Heartbeat demand can only be sent on a transport or
2227 * association, but not a socket.
2228 */
2229 if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2230 return -EINVAL;
2231
2232 /* Process parameters. */
2233 error = sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2234 hb_change, pmtud_change,
2235 sackdelay_change);
2236
2237 if (error)
2238 return error;
2239
2240 /* If changes are for association, also apply parameters to each
2241 * transport.
2242 */
2243 if (!trans && asoc) {
2244 struct list_head *pos;
2245
2246 list_for_each(pos, &asoc->peer.transport_addr_list) {
2247 trans = list_entry(pos, struct sctp_transport,
2248 transports);
2249 sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2250 hb_change, pmtud_change,
2251 sackdelay_change);
2252 }
2253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
2255 return 0;
2256}
2257
Vlad Yasevichb6e13312007-04-20 12:23:15 -07002258/* 7.1.23. Delayed Ack Timer (SCTP_DELAYED_ACK_TIME)
Frank Filz77086102005-12-22 11:37:30 -08002259 *
2260 * This options will get or set the delayed ack timer. The time is set
2261 * in milliseconds. If the assoc_id is 0, then this sets or gets the
2262 * endpoints default delayed ack timer value. If the assoc_id field is
2263 * non-zero, then the set or get effects the specified association.
2264 *
2265 * struct sctp_assoc_value {
2266 * sctp_assoc_t assoc_id;
2267 * uint32_t assoc_value;
2268 * };
2269 *
2270 * assoc_id - This parameter, indicates which association the
2271 * user is preforming an action upon. Note that if
2272 * this field's value is zero then the endpoints
2273 * default value is changed (effecting future
2274 * associations only).
2275 *
2276 * assoc_value - This parameter contains the number of milliseconds
2277 * that the user is requesting the delayed ACK timer
2278 * be set to. Note that this value is defined in
2279 * the standard to be between 200 and 500 milliseconds.
2280 *
2281 * Note: a value of zero will leave the value alone,
2282 * but disable SACK delay. A non-zero value will also
2283 * enable SACK delay.
2284 */
2285
2286static int sctp_setsockopt_delayed_ack_time(struct sock *sk,
2287 char __user *optval, int optlen)
2288{
2289 struct sctp_assoc_value params;
2290 struct sctp_transport *trans = NULL;
2291 struct sctp_association *asoc = NULL;
2292 struct sctp_sock *sp = sctp_sk(sk);
2293
2294 if (optlen != sizeof(struct sctp_assoc_value))
2295 return - EINVAL;
2296
2297 if (copy_from_user(&params, optval, optlen))
2298 return -EFAULT;
2299
2300 /* Validate value parameter. */
2301 if (params.assoc_value > 500)
2302 return -EINVAL;
2303
2304 /* Get association, if assoc_id != 0 and the socket is a one
2305 * to many style socket, and an association was not found, then
2306 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002307 */
Frank Filz77086102005-12-22 11:37:30 -08002308 asoc = sctp_id2assoc(sk, params.assoc_id);
2309 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
2310 return -EINVAL;
2311
2312 if (params.assoc_value) {
2313 if (asoc) {
2314 asoc->sackdelay =
2315 msecs_to_jiffies(params.assoc_value);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002316 asoc->param_flags =
Frank Filz77086102005-12-22 11:37:30 -08002317 (asoc->param_flags & ~SPP_SACKDELAY) |
2318 SPP_SACKDELAY_ENABLE;
2319 } else {
2320 sp->sackdelay = params.assoc_value;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002321 sp->param_flags =
Frank Filz77086102005-12-22 11:37:30 -08002322 (sp->param_flags & ~SPP_SACKDELAY) |
2323 SPP_SACKDELAY_ENABLE;
2324 }
2325 } else {
2326 if (asoc) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002327 asoc->param_flags =
Frank Filz77086102005-12-22 11:37:30 -08002328 (asoc->param_flags & ~SPP_SACKDELAY) |
2329 SPP_SACKDELAY_DISABLE;
2330 } else {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002331 sp->param_flags =
Frank Filz77086102005-12-22 11:37:30 -08002332 (sp->param_flags & ~SPP_SACKDELAY) |
2333 SPP_SACKDELAY_DISABLE;
2334 }
2335 }
2336
2337 /* If change is for association, also apply to each transport. */
2338 if (asoc) {
2339 struct list_head *pos;
2340
2341 list_for_each(pos, &asoc->peer.transport_addr_list) {
2342 trans = list_entry(pos, struct sctp_transport,
2343 transports);
2344 if (params.assoc_value) {
2345 trans->sackdelay =
2346 msecs_to_jiffies(params.assoc_value);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002347 trans->param_flags =
Frank Filz77086102005-12-22 11:37:30 -08002348 (trans->param_flags & ~SPP_SACKDELAY) |
2349 SPP_SACKDELAY_ENABLE;
2350 } else {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002351 trans->param_flags =
Frank Filz77086102005-12-22 11:37:30 -08002352 (trans->param_flags & ~SPP_SACKDELAY) |
2353 SPP_SACKDELAY_DISABLE;
2354 }
2355 }
2356 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002357
Frank Filz77086102005-12-22 11:37:30 -08002358 return 0;
2359}
2360
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2362 *
2363 * Applications can specify protocol parameters for the default association
2364 * initialization. The option name argument to setsockopt() and getsockopt()
2365 * is SCTP_INITMSG.
2366 *
2367 * Setting initialization parameters is effective only on an unconnected
2368 * socket (for UDP-style sockets only future associations are effected
2369 * by the change). With TCP-style sockets, this option is inherited by
2370 * sockets derived from a listener socket.
2371 */
2372static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, int optlen)
2373{
2374 struct sctp_initmsg sinit;
2375 struct sctp_sock *sp = sctp_sk(sk);
2376
2377 if (optlen != sizeof(struct sctp_initmsg))
2378 return -EINVAL;
2379 if (copy_from_user(&sinit, optval, optlen))
2380 return -EFAULT;
2381
2382 if (sinit.sinit_num_ostreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002383 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 if (sinit.sinit_max_instreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002385 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 if (sinit.sinit_max_attempts)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002387 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 if (sinit.sinit_max_init_timeo)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002389 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
2391 return 0;
2392}
2393
2394/*
2395 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2396 *
2397 * Applications that wish to use the sendto() system call may wish to
2398 * specify a default set of parameters that would normally be supplied
2399 * through the inclusion of ancillary data. This socket option allows
2400 * such an application to set the default sctp_sndrcvinfo structure.
2401 * The application that wishes to use this socket option simply passes
2402 * in to this call the sctp_sndrcvinfo structure defined in Section
2403 * 5.2.2) The input parameters accepted by this call include
2404 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2405 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
2406 * to this call if the caller is using the UDP model.
2407 */
2408static int sctp_setsockopt_default_send_param(struct sock *sk,
2409 char __user *optval, int optlen)
2410{
2411 struct sctp_sndrcvinfo info;
2412 struct sctp_association *asoc;
2413 struct sctp_sock *sp = sctp_sk(sk);
2414
2415 if (optlen != sizeof(struct sctp_sndrcvinfo))
2416 return -EINVAL;
2417 if (copy_from_user(&info, optval, optlen))
2418 return -EFAULT;
2419
2420 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
2421 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
2422 return -EINVAL;
2423
2424 if (asoc) {
2425 asoc->default_stream = info.sinfo_stream;
2426 asoc->default_flags = info.sinfo_flags;
2427 asoc->default_ppid = info.sinfo_ppid;
2428 asoc->default_context = info.sinfo_context;
2429 asoc->default_timetolive = info.sinfo_timetolive;
2430 } else {
2431 sp->default_stream = info.sinfo_stream;
2432 sp->default_flags = info.sinfo_flags;
2433 sp->default_ppid = info.sinfo_ppid;
2434 sp->default_context = info.sinfo_context;
2435 sp->default_timetolive = info.sinfo_timetolive;
2436 }
2437
2438 return 0;
2439}
2440
2441/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
2442 *
2443 * Requests that the local SCTP stack use the enclosed peer address as
2444 * the association primary. The enclosed address must be one of the
2445 * association peer's addresses.
2446 */
2447static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
2448 int optlen)
2449{
2450 struct sctp_prim prim;
2451 struct sctp_transport *trans;
2452
2453 if (optlen != sizeof(struct sctp_prim))
2454 return -EINVAL;
2455
2456 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
2457 return -EFAULT;
2458
2459 trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
2460 if (!trans)
2461 return -EINVAL;
2462
2463 sctp_assoc_set_primary(trans->asoc, trans);
2464
2465 return 0;
2466}
2467
2468/*
2469 * 7.1.5 SCTP_NODELAY
2470 *
2471 * Turn on/off any Nagle-like algorithm. This means that packets are
2472 * generally sent as soon as possible and no unnecessary delays are
2473 * introduced, at the cost of more packets in the network. Expects an
2474 * integer boolean flag.
2475 */
2476static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
2477 int optlen)
2478{
2479 int val;
2480
2481 if (optlen < sizeof(int))
2482 return -EINVAL;
2483 if (get_user(val, (int __user *)optval))
2484 return -EFAULT;
2485
2486 sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
2487 return 0;
2488}
2489
2490/*
2491 *
2492 * 7.1.1 SCTP_RTOINFO
2493 *
2494 * The protocol parameters used to initialize and bound retransmission
2495 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
2496 * and modify these parameters.
2497 * All parameters are time values, in milliseconds. A value of 0, when
2498 * modifying the parameters, indicates that the current value should not
2499 * be changed.
2500 *
2501 */
2502static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, int optlen) {
2503 struct sctp_rtoinfo rtoinfo;
2504 struct sctp_association *asoc;
2505
2506 if (optlen != sizeof (struct sctp_rtoinfo))
2507 return -EINVAL;
2508
2509 if (copy_from_user(&rtoinfo, optval, optlen))
2510 return -EFAULT;
2511
2512 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
2513
2514 /* Set the values to the specific association */
2515 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
2516 return -EINVAL;
2517
2518 if (asoc) {
2519 if (rtoinfo.srto_initial != 0)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002520 asoc->rto_initial =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 msecs_to_jiffies(rtoinfo.srto_initial);
2522 if (rtoinfo.srto_max != 0)
2523 asoc->rto_max = msecs_to_jiffies(rtoinfo.srto_max);
2524 if (rtoinfo.srto_min != 0)
2525 asoc->rto_min = msecs_to_jiffies(rtoinfo.srto_min);
2526 } else {
2527 /* If there is no association or the association-id = 0
2528 * set the values to the endpoint.
2529 */
2530 struct sctp_sock *sp = sctp_sk(sk);
2531
2532 if (rtoinfo.srto_initial != 0)
2533 sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
2534 if (rtoinfo.srto_max != 0)
2535 sp->rtoinfo.srto_max = rtoinfo.srto_max;
2536 if (rtoinfo.srto_min != 0)
2537 sp->rtoinfo.srto_min = rtoinfo.srto_min;
2538 }
2539
2540 return 0;
2541}
2542
2543/*
2544 *
2545 * 7.1.2 SCTP_ASSOCINFO
2546 *
2547 * This option is used to tune the the maximum retransmission attempts
2548 * of the association.
2549 * Returns an error if the new association retransmission value is
2550 * greater than the sum of the retransmission value of the peer.
2551 * See [SCTP] for more information.
2552 *
2553 */
2554static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, int optlen)
2555{
2556
2557 struct sctp_assocparams assocparams;
2558 struct sctp_association *asoc;
2559
2560 if (optlen != sizeof(struct sctp_assocparams))
2561 return -EINVAL;
2562 if (copy_from_user(&assocparams, optval, optlen))
2563 return -EFAULT;
2564
2565 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
2566
2567 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
2568 return -EINVAL;
2569
2570 /* Set the values to the specific association */
2571 if (asoc) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07002572 if (assocparams.sasoc_asocmaxrxt != 0) {
2573 __u32 path_sum = 0;
2574 int paths = 0;
2575 struct list_head *pos;
2576 struct sctp_transport *peer_addr;
2577
2578 list_for_each(pos, &asoc->peer.transport_addr_list) {
2579 peer_addr = list_entry(pos,
2580 struct sctp_transport,
2581 transports);
2582 path_sum += peer_addr->pathmaxrxt;
2583 paths++;
2584 }
2585
2586 /* Only validate asocmaxrxt if we have more then
2587 * one path/transport. We do this because path
2588 * retransmissions are only counted when we have more
2589 * then one path.
2590 */
2591 if (paths > 1 &&
2592 assocparams.sasoc_asocmaxrxt > path_sum)
2593 return -EINVAL;
2594
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07002596 }
2597
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 if (assocparams.sasoc_cookie_life != 0) {
2599 asoc->cookie_life.tv_sec =
2600 assocparams.sasoc_cookie_life / 1000;
2601 asoc->cookie_life.tv_usec =
2602 (assocparams.sasoc_cookie_life % 1000)
2603 * 1000;
2604 }
2605 } else {
2606 /* Set the values to the endpoint */
2607 struct sctp_sock *sp = sctp_sk(sk);
2608
2609 if (assocparams.sasoc_asocmaxrxt != 0)
2610 sp->assocparams.sasoc_asocmaxrxt =
2611 assocparams.sasoc_asocmaxrxt;
2612 if (assocparams.sasoc_cookie_life != 0)
2613 sp->assocparams.sasoc_cookie_life =
2614 assocparams.sasoc_cookie_life;
2615 }
2616 return 0;
2617}
2618
2619/*
2620 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
2621 *
2622 * This socket option is a boolean flag which turns on or off mapped V4
2623 * addresses. If this option is turned on and the socket is type
2624 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
2625 * If this option is turned off, then no mapping will be done of V4
2626 * addresses and a user will receive both PF_INET6 and PF_INET type
2627 * addresses on the socket.
2628 */
2629static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, int optlen)
2630{
2631 int val;
2632 struct sctp_sock *sp = sctp_sk(sk);
2633
2634 if (optlen < sizeof(int))
2635 return -EINVAL;
2636 if (get_user(val, (int __user *)optval))
2637 return -EFAULT;
2638 if (val)
2639 sp->v4mapped = 1;
2640 else
2641 sp->v4mapped = 0;
2642
2643 return 0;
2644}
2645
2646/*
2647 * 7.1.17 Set the maximum fragrmentation size (SCTP_MAXSEG)
2648 *
2649 * This socket option specifies the maximum size to put in any outgoing
2650 * SCTP chunk. If a message is larger than this size it will be
2651 * fragmented by SCTP into the specified size. Note that the underlying
2652 * SCTP implementation may fragment into smaller sized chunks when the
2653 * PMTU of the underlying association is smaller than the value set by
2654 * the user.
2655 */
2656static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, int optlen)
2657{
2658 struct sctp_association *asoc;
2659 struct list_head *pos;
2660 struct sctp_sock *sp = sctp_sk(sk);
2661 int val;
2662
2663 if (optlen < sizeof(int))
2664 return -EINVAL;
2665 if (get_user(val, (int __user *)optval))
2666 return -EFAULT;
Ivan Skytte Jorgensen96a33992005-10-28 15:36:12 -07002667 if ((val != 0) && ((val < 8) || (val > SCTP_MAX_CHUNK_LEN)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 return -EINVAL;
2669 sp->user_frag = val;
2670
Ivan Skytte Jorgensen96a33992005-10-28 15:36:12 -07002671 /* Update the frag_point of the existing associations. */
2672 list_for_each(pos, &(sp->ep->asocs)) {
2673 asoc = list_entry(pos, struct sctp_association, asocs);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002674 asoc->frag_point = sctp_frag_point(sp, asoc->pathmtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 }
2676
2677 return 0;
2678}
2679
2680
2681/*
2682 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
2683 *
2684 * Requests that the peer mark the enclosed address as the association
2685 * primary. The enclosed address must be one of the association's
2686 * locally bound addresses. The following structure is used to make a
2687 * set primary request:
2688 */
2689static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
2690 int optlen)
2691{
2692 struct sctp_sock *sp;
2693 struct sctp_endpoint *ep;
2694 struct sctp_association *asoc = NULL;
2695 struct sctp_setpeerprim prim;
2696 struct sctp_chunk *chunk;
2697 int err;
2698
2699 sp = sctp_sk(sk);
2700 ep = sp->ep;
2701
2702 if (!sctp_addip_enable)
2703 return -EPERM;
2704
2705 if (optlen != sizeof(struct sctp_setpeerprim))
2706 return -EINVAL;
2707
2708 if (copy_from_user(&prim, optval, optlen))
2709 return -EFAULT;
2710
2711 asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002712 if (!asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 return -EINVAL;
2714
2715 if (!asoc->peer.asconf_capable)
2716 return -EPERM;
2717
2718 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
2719 return -EPERM;
2720
2721 if (!sctp_state(asoc, ESTABLISHED))
2722 return -ENOTCONN;
2723
2724 if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
2725 return -EADDRNOTAVAIL;
2726
2727 /* Create an ASCONF chunk with SET_PRIMARY parameter */
2728 chunk = sctp_make_asconf_set_prim(asoc,
2729 (union sctp_addr *)&prim.sspp_addr);
2730 if (!chunk)
2731 return -ENOMEM;
2732
2733 err = sctp_send_asconf(asoc, chunk);
2734
2735 SCTP_DEBUG_PRINTK("We set peer primary addr primitively.\n");
2736
2737 return err;
2738}
2739
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08002740static int sctp_setsockopt_adaptation_layer(struct sock *sk, char __user *optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 int optlen)
2742{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08002743 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08002745 if (optlen != sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 return -EINVAL;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08002747 if (copy_from_user(&adaptation, optval, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 return -EFAULT;
2749
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08002750 sctp_sk(sk)->adaptation_ind = adaptation.ssb_adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
2752 return 0;
2753}
2754
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08002755/*
2756 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
2757 *
2758 * The context field in the sctp_sndrcvinfo structure is normally only
2759 * used when a failed message is retrieved holding the value that was
2760 * sent down on the actual send call. This option allows the setting of
2761 * a default context on an association basis that will be received on
2762 * reading messages from the peer. This is especially helpful in the
2763 * one-2-many model for an application to keep some reference to an
2764 * internal state machine that is processing messages on the
2765 * association. Note that the setting of this value only effects
2766 * received messages from the peer and does not effect the value that is
2767 * saved with outbound messages.
2768 */
2769static int sctp_setsockopt_context(struct sock *sk, char __user *optval,
2770 int optlen)
2771{
2772 struct sctp_assoc_value params;
2773 struct sctp_sock *sp;
2774 struct sctp_association *asoc;
2775
2776 if (optlen != sizeof(struct sctp_assoc_value))
2777 return -EINVAL;
2778 if (copy_from_user(&params, optval, optlen))
2779 return -EFAULT;
2780
2781 sp = sctp_sk(sk);
2782
2783 if (params.assoc_id != 0) {
2784 asoc = sctp_id2assoc(sk, params.assoc_id);
2785 if (!asoc)
2786 return -EINVAL;
2787 asoc->default_rcv_context = params.assoc_value;
2788 } else {
2789 sp->default_rcv_context = params.assoc_value;
2790 }
2791
2792 return 0;
2793}
2794
Vlad Yasevichb6e13312007-04-20 12:23:15 -07002795/*
2796 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
2797 *
2798 * This options will at a minimum specify if the implementation is doing
2799 * fragmented interleave. Fragmented interleave, for a one to many
2800 * socket, is when subsequent calls to receive a message may return
2801 * parts of messages from different associations. Some implementations
2802 * may allow you to turn this value on or off. If so, when turned off,
2803 * no fragment interleave will occur (which will cause a head of line
2804 * blocking amongst multiple associations sharing the same one to many
2805 * socket). When this option is turned on, then each receive call may
2806 * come from a different association (thus the user must receive data
2807 * with the extended calls (e.g. sctp_recvmsg) to keep track of which
2808 * association each receive belongs to.
2809 *
2810 * This option takes a boolean value. A non-zero value indicates that
2811 * fragmented interleave is on. A value of zero indicates that
2812 * fragmented interleave is off.
2813 *
2814 * Note that it is important that an implementation that allows this
2815 * option to be turned on, have it off by default. Otherwise an unaware
2816 * application using the one to many model may become confused and act
2817 * incorrectly.
2818 */
2819static int sctp_setsockopt_fragment_interleave(struct sock *sk,
2820 char __user *optval,
2821 int optlen)
2822{
2823 int val;
2824
2825 if (optlen != sizeof(int))
2826 return -EINVAL;
2827 if (get_user(val, (int __user *)optval))
2828 return -EFAULT;
2829
2830 sctp_sk(sk)->frag_interleave = (val == 0) ? 0 : 1;
2831
2832 return 0;
2833}
2834
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07002835/*
2836 * 7.1.25. Set or Get the sctp partial delivery point
2837 * (SCTP_PARTIAL_DELIVERY_POINT)
2838 * This option will set or get the SCTP partial delivery point. This
2839 * point is the size of a message where the partial delivery API will be
2840 * invoked to help free up rwnd space for the peer. Setting this to a
2841 * lower value will cause partial delivery's to happen more often. The
2842 * calls argument is an integer that sets or gets the partial delivery
2843 * point.
2844 */
2845static int sctp_setsockopt_partial_delivery_point(struct sock *sk,
2846 char __user *optval,
2847 int optlen)
2848{
2849 u32 val;
2850
2851 if (optlen != sizeof(u32))
2852 return -EINVAL;
2853 if (get_user(val, (int __user *)optval))
2854 return -EFAULT;
2855
2856 sctp_sk(sk)->pd_point = val;
2857
2858 return 0; /* is this the right error code? */
2859}
2860
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861/* API 6.2 setsockopt(), getsockopt()
2862 *
2863 * Applications use setsockopt() and getsockopt() to set or retrieve
2864 * socket options. Socket options are used to change the default
2865 * behavior of sockets calls. They are described in Section 7.
2866 *
2867 * The syntax is:
2868 *
2869 * ret = getsockopt(int sd, int level, int optname, void __user *optval,
2870 * int __user *optlen);
2871 * ret = setsockopt(int sd, int level, int optname, const void __user *optval,
2872 * int optlen);
2873 *
2874 * sd - the socket descript.
2875 * level - set to IPPROTO_SCTP for all SCTP options.
2876 * optname - the option name.
2877 * optval - the buffer to store the value of the option.
2878 * optlen - the size of the buffer.
2879 */
2880SCTP_STATIC int sctp_setsockopt(struct sock *sk, int level, int optname,
2881 char __user *optval, int optlen)
2882{
2883 int retval = 0;
2884
2885 SCTP_DEBUG_PRINTK("sctp_setsockopt(sk: %p... optname: %d)\n",
2886 sk, optname);
2887
2888 /* I can hardly begin to describe how wrong this is. This is
2889 * so broken as to be worse than useless. The API draft
2890 * REALLY is NOT helpful here... I am not convinced that the
2891 * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
2892 * are at all well-founded.
2893 */
2894 if (level != SOL_SCTP) {
2895 struct sctp_af *af = sctp_sk(sk)->pf->af;
2896 retval = af->setsockopt(sk, level, optname, optval, optlen);
2897 goto out_nounlock;
2898 }
2899
2900 sctp_lock_sock(sk);
2901
2902 switch (optname) {
2903 case SCTP_SOCKOPT_BINDX_ADD:
2904 /* 'optlen' is the size of the addresses buffer. */
2905 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
2906 optlen, SCTP_BINDX_ADD_ADDR);
2907 break;
2908
2909 case SCTP_SOCKOPT_BINDX_REM:
2910 /* 'optlen' is the size of the addresses buffer. */
2911 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
2912 optlen, SCTP_BINDX_REM_ADDR);
2913 break;
2914
Frank Filz3f7a87d2005-06-20 13:14:57 -07002915 case SCTP_SOCKOPT_CONNECTX:
2916 /* 'optlen' is the size of the addresses buffer. */
2917 retval = sctp_setsockopt_connectx(sk, (struct sockaddr __user *)optval,
2918 optlen);
2919 break;
2920
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 case SCTP_DISABLE_FRAGMENTS:
2922 retval = sctp_setsockopt_disable_fragments(sk, optval, optlen);
2923 break;
2924
2925 case SCTP_EVENTS:
2926 retval = sctp_setsockopt_events(sk, optval, optlen);
2927 break;
2928
2929 case SCTP_AUTOCLOSE:
2930 retval = sctp_setsockopt_autoclose(sk, optval, optlen);
2931 break;
2932
2933 case SCTP_PEER_ADDR_PARAMS:
2934 retval = sctp_setsockopt_peer_addr_params(sk, optval, optlen);
2935 break;
2936
Frank Filz77086102005-12-22 11:37:30 -08002937 case SCTP_DELAYED_ACK_TIME:
2938 retval = sctp_setsockopt_delayed_ack_time(sk, optval, optlen);
2939 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07002940 case SCTP_PARTIAL_DELIVERY_POINT:
2941 retval = sctp_setsockopt_partial_delivery_point(sk, optval, optlen);
2942 break;
Frank Filz77086102005-12-22 11:37:30 -08002943
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 case SCTP_INITMSG:
2945 retval = sctp_setsockopt_initmsg(sk, optval, optlen);
2946 break;
2947 case SCTP_DEFAULT_SEND_PARAM:
2948 retval = sctp_setsockopt_default_send_param(sk, optval,
2949 optlen);
2950 break;
2951 case SCTP_PRIMARY_ADDR:
2952 retval = sctp_setsockopt_primary_addr(sk, optval, optlen);
2953 break;
2954 case SCTP_SET_PEER_PRIMARY_ADDR:
2955 retval = sctp_setsockopt_peer_primary_addr(sk, optval, optlen);
2956 break;
2957 case SCTP_NODELAY:
2958 retval = sctp_setsockopt_nodelay(sk, optval, optlen);
2959 break;
2960 case SCTP_RTOINFO:
2961 retval = sctp_setsockopt_rtoinfo(sk, optval, optlen);
2962 break;
2963 case SCTP_ASSOCINFO:
2964 retval = sctp_setsockopt_associnfo(sk, optval, optlen);
2965 break;
2966 case SCTP_I_WANT_MAPPED_V4_ADDR:
2967 retval = sctp_setsockopt_mappedv4(sk, optval, optlen);
2968 break;
2969 case SCTP_MAXSEG:
2970 retval = sctp_setsockopt_maxseg(sk, optval, optlen);
2971 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08002972 case SCTP_ADAPTATION_LAYER:
2973 retval = sctp_setsockopt_adaptation_layer(sk, optval, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08002975 case SCTP_CONTEXT:
2976 retval = sctp_setsockopt_context(sk, optval, optlen);
2977 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07002978 case SCTP_FRAGMENT_INTERLEAVE:
2979 retval = sctp_setsockopt_fragment_interleave(sk, optval, optlen);
2980 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 default:
2982 retval = -ENOPROTOOPT;
2983 break;
2984 };
2985
2986 sctp_release_sock(sk);
2987
2988out_nounlock:
2989 return retval;
2990}
2991
2992/* API 3.1.6 connect() - UDP Style Syntax
2993 *
2994 * An application may use the connect() call in the UDP model to initiate an
2995 * association without sending data.
2996 *
2997 * The syntax is:
2998 *
2999 * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
3000 *
3001 * sd: the socket descriptor to have a new association added to.
3002 *
3003 * nam: the address structure (either struct sockaddr_in or struct
3004 * sockaddr_in6 defined in RFC2553 [7]).
3005 *
3006 * len: the size of the address.
3007 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07003008SCTP_STATIC int sctp_connect(struct sock *sk, struct sockaddr *addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 int addr_len)
3010{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 int err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07003012 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013
3014 sctp_lock_sock(sk);
3015
Frank Filz3f7a87d2005-06-20 13:14:57 -07003016 SCTP_DEBUG_PRINTK("%s - sk: %p, sockaddr: %p, addr_len: %d\n",
3017 __FUNCTION__, sk, addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018
Frank Filz3f7a87d2005-06-20 13:14:57 -07003019 /* Validate addr_len before calling common connect/connectx routine. */
3020 af = sctp_get_af_specific(addr->sa_family);
3021 if (!af || addr_len < af->sockaddr_len) {
3022 err = -EINVAL;
3023 } else {
3024 /* Pass correct addr len to common routine (so it knows there
3025 * is only one address being passed.
3026 */
3027 err = __sctp_connect(sk, addr, af->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 }
3029
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 sctp_release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 return err;
3032}
3033
3034/* FIXME: Write comments. */
3035SCTP_STATIC int sctp_disconnect(struct sock *sk, int flags)
3036{
3037 return -EOPNOTSUPP; /* STUB */
3038}
3039
3040/* 4.1.4 accept() - TCP Style Syntax
3041 *
3042 * Applications use accept() call to remove an established SCTP
3043 * association from the accept queue of the endpoint. A new socket
3044 * descriptor will be returned from accept() to represent the newly
3045 * formed association.
3046 */
3047SCTP_STATIC struct sock *sctp_accept(struct sock *sk, int flags, int *err)
3048{
3049 struct sctp_sock *sp;
3050 struct sctp_endpoint *ep;
3051 struct sock *newsk = NULL;
3052 struct sctp_association *asoc;
3053 long timeo;
3054 int error = 0;
3055
3056 sctp_lock_sock(sk);
3057
3058 sp = sctp_sk(sk);
3059 ep = sp->ep;
3060
3061 if (!sctp_style(sk, TCP)) {
3062 error = -EOPNOTSUPP;
3063 goto out;
3064 }
3065
3066 if (!sctp_sstate(sk, LISTENING)) {
3067 error = -EINVAL;
3068 goto out;
3069 }
3070
Sridhar Samudrala8abfedd2006-08-22 00:24:09 -07003071 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072
3073 error = sctp_wait_for_accept(sk, timeo);
3074 if (error)
3075 goto out;
3076
3077 /* We treat the list of associations on the endpoint as the accept
3078 * queue and pick the first association on the list.
3079 */
3080 asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
3081
3082 newsk = sp->pf->create_accept_sk(sk, asoc);
3083 if (!newsk) {
3084 error = -ENOMEM;
3085 goto out;
3086 }
3087
3088 /* Populate the fields of the newsk from the oldsk and migrate the
3089 * asoc to the newsk.
3090 */
3091 sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
3092
3093out:
3094 sctp_release_sock(sk);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003095 *err = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 return newsk;
3097}
3098
3099/* The SCTP ioctl handler. */
3100SCTP_STATIC int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
3101{
3102 return -ENOIOCTLCMD;
3103}
3104
3105/* This is the function which gets called during socket creation to
3106 * initialized the SCTP-specific portion of the sock.
3107 * The sock structure should already be zero-filled memory.
3108 */
3109SCTP_STATIC int sctp_init_sock(struct sock *sk)
3110{
3111 struct sctp_endpoint *ep;
3112 struct sctp_sock *sp;
3113
3114 SCTP_DEBUG_PRINTK("sctp_init_sock(sk: %p)\n", sk);
3115
3116 sp = sctp_sk(sk);
3117
3118 /* Initialize the SCTP per socket area. */
3119 switch (sk->sk_type) {
3120 case SOCK_SEQPACKET:
3121 sp->type = SCTP_SOCKET_UDP;
3122 break;
3123 case SOCK_STREAM:
3124 sp->type = SCTP_SOCKET_TCP;
3125 break;
3126 default:
3127 return -ESOCKTNOSUPPORT;
3128 }
3129
3130 /* Initialize default send parameters. These parameters can be
3131 * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
3132 */
3133 sp->default_stream = 0;
3134 sp->default_ppid = 0;
3135 sp->default_flags = 0;
3136 sp->default_context = 0;
3137 sp->default_timetolive = 0;
3138
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003139 sp->default_rcv_context = 0;
3140
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 /* Initialize default setup parameters. These parameters
3142 * can be modified with the SCTP_INITMSG socket option or
3143 * overridden by the SCTP_INIT CMSG.
3144 */
3145 sp->initmsg.sinit_num_ostreams = sctp_max_outstreams;
3146 sp->initmsg.sinit_max_instreams = sctp_max_instreams;
3147 sp->initmsg.sinit_max_attempts = sctp_max_retrans_init;
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -07003148 sp->initmsg.sinit_max_init_timeo = sctp_rto_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
3150 /* Initialize default RTO related parameters. These parameters can
3151 * be modified for with the SCTP_RTOINFO socket option.
3152 */
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -07003153 sp->rtoinfo.srto_initial = sctp_rto_initial;
3154 sp->rtoinfo.srto_max = sctp_rto_max;
3155 sp->rtoinfo.srto_min = sctp_rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
3157 /* Initialize default association related parameters. These parameters
3158 * can be modified with the SCTP_ASSOCINFO socket option.
3159 */
3160 sp->assocparams.sasoc_asocmaxrxt = sctp_max_retrans_association;
3161 sp->assocparams.sasoc_number_peer_destinations = 0;
3162 sp->assocparams.sasoc_peer_rwnd = 0;
3163 sp->assocparams.sasoc_local_rwnd = 0;
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -07003164 sp->assocparams.sasoc_cookie_life = sctp_valid_cookie_life;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165
3166 /* Initialize default event subscriptions. By default, all the
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003167 * options are off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 */
3169 memset(&sp->subscribe, 0, sizeof(struct sctp_event_subscribe));
3170
3171 /* Default Peer Address Parameters. These defaults can
3172 * be modified via SCTP_PEER_ADDR_PARAMS
3173 */
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -07003174 sp->hbinterval = sctp_hb_interval;
Frank Filz52ccb8e2005-12-22 11:36:46 -08003175 sp->pathmaxrxt = sctp_max_retrans_path;
3176 sp->pathmtu = 0; // allow default discovery
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -07003177 sp->sackdelay = sctp_sack_timeout;
Frank Filz52ccb8e2005-12-22 11:36:46 -08003178 sp->param_flags = SPP_HB_ENABLE |
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003179 SPP_PMTUD_ENABLE |
3180 SPP_SACKDELAY_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181
3182 /* If enabled no SCTP message fragmentation will be performed.
3183 * Configure through SCTP_DISABLE_FRAGMENTS socket option.
3184 */
3185 sp->disable_fragments = 0;
3186
Sridhar Samudrala208edef2006-09-29 17:08:01 -07003187 /* Enable Nagle algorithm by default. */
3188 sp->nodelay = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189
3190 /* Enable by default. */
3191 sp->v4mapped = 1;
3192
3193 /* Auto-close idle associations after the configured
3194 * number of seconds. A value of 0 disables this
3195 * feature. Configure through the SCTP_AUTOCLOSE socket option,
3196 * for UDP-style sockets only.
3197 */
3198 sp->autoclose = 0;
3199
3200 /* User specified fragmentation limit. */
3201 sp->user_frag = 0;
3202
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003203 sp->adaptation_ind = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204
3205 sp->pf = sctp_get_pf_specific(sk->sk_family);
3206
3207 /* Control variables for partial data delivery. */
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003208 atomic_set(&sp->pd_mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 skb_queue_head_init(&sp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003210 sp->frag_interleave = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211
3212 /* Create a per socket endpoint structure. Even if we
3213 * change the data structure relationships, this may still
3214 * be useful for storing pre-connect address information.
3215 */
3216 ep = sctp_endpoint_new(sk, GFP_KERNEL);
3217 if (!ep)
3218 return -ENOMEM;
3219
3220 sp->ep = ep;
3221 sp->hmac = NULL;
3222
3223 SCTP_DBG_OBJCNT_INC(sock);
3224 return 0;
3225}
3226
3227/* Cleanup any SCTP per socket resources. */
3228SCTP_STATIC int sctp_destroy_sock(struct sock *sk)
3229{
3230 struct sctp_endpoint *ep;
3231
3232 SCTP_DEBUG_PRINTK("sctp_destroy_sock(sk: %p)\n", sk);
3233
3234 /* Release our hold on the endpoint. */
3235 ep = sctp_sk(sk)->ep;
3236 sctp_endpoint_free(ep);
3237
3238 return 0;
3239}
3240
3241/* API 4.1.7 shutdown() - TCP Style Syntax
3242 * int shutdown(int socket, int how);
3243 *
3244 * sd - the socket descriptor of the association to be closed.
3245 * how - Specifies the type of shutdown. The values are
3246 * as follows:
3247 * SHUT_RD
3248 * Disables further receive operations. No SCTP
3249 * protocol action is taken.
3250 * SHUT_WR
3251 * Disables further send operations, and initiates
3252 * the SCTP shutdown sequence.
3253 * SHUT_RDWR
3254 * Disables further send and receive operations
3255 * and initiates the SCTP shutdown sequence.
3256 */
3257SCTP_STATIC void sctp_shutdown(struct sock *sk, int how)
3258{
3259 struct sctp_endpoint *ep;
3260 struct sctp_association *asoc;
3261
3262 if (!sctp_style(sk, TCP))
3263 return;
3264
3265 if (how & SEND_SHUTDOWN) {
3266 ep = sctp_sk(sk)->ep;
3267 if (!list_empty(&ep->asocs)) {
3268 asoc = list_entry(ep->asocs.next,
3269 struct sctp_association, asocs);
3270 sctp_primitive_SHUTDOWN(asoc, NULL);
3271 }
3272 }
3273}
3274
3275/* 7.2.1 Association Status (SCTP_STATUS)
3276
3277 * Applications can retrieve current status information about an
3278 * association, including association state, peer receiver window size,
3279 * number of unacked data chunks, and number of data chunks pending
3280 * receipt. This information is read-only.
3281 */
3282static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
3283 char __user *optval,
3284 int __user *optlen)
3285{
3286 struct sctp_status status;
3287 struct sctp_association *asoc = NULL;
3288 struct sctp_transport *transport;
3289 sctp_assoc_t associd;
3290 int retval = 0;
3291
3292 if (len != sizeof(status)) {
3293 retval = -EINVAL;
3294 goto out;
3295 }
3296
3297 if (copy_from_user(&status, optval, sizeof(status))) {
3298 retval = -EFAULT;
3299 goto out;
3300 }
3301
3302 associd = status.sstat_assoc_id;
3303 asoc = sctp_id2assoc(sk, associd);
3304 if (!asoc) {
3305 retval = -EINVAL;
3306 goto out;
3307 }
3308
3309 transport = asoc->peer.primary_path;
3310
3311 status.sstat_assoc_id = sctp_assoc2id(asoc);
3312 status.sstat_state = asoc->state;
3313 status.sstat_rwnd = asoc->peer.rwnd;
3314 status.sstat_unackdata = asoc->unack_data;
3315
3316 status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
3317 status.sstat_instrms = asoc->c.sinit_max_instreams;
3318 status.sstat_outstrms = asoc->c.sinit_num_ostreams;
3319 status.sstat_fragmentation_point = asoc->frag_point;
3320 status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Al Viro8cec6b82006-11-20 17:23:01 -08003321 memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
3322 transport->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 /* Map ipv4 address into v4-mapped-on-v6 address. */
3324 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk),
3325 (union sctp_addr *)&status.sstat_primary.spinfo_address);
Frank Filz3f7a87d2005-06-20 13:14:57 -07003326 status.sstat_primary.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 status.sstat_primary.spinfo_cwnd = transport->cwnd;
3328 status.sstat_primary.spinfo_srtt = transport->srtt;
3329 status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08003330 status.sstat_primary.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
Frank Filz3f7a87d2005-06-20 13:14:57 -07003332 if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
3333 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
3334
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 if (put_user(len, optlen)) {
3336 retval = -EFAULT;
3337 goto out;
3338 }
3339
3340 SCTP_DEBUG_PRINTK("sctp_getsockopt_sctp_status(%d): %d %d %d\n",
3341 len, status.sstat_state, status.sstat_rwnd,
3342 status.sstat_assoc_id);
3343
3344 if (copy_to_user(optval, &status, len)) {
3345 retval = -EFAULT;
3346 goto out;
3347 }
3348
3349out:
3350 return (retval);
3351}
3352
3353
3354/* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
3355 *
3356 * Applications can retrieve information about a specific peer address
3357 * of an association, including its reachability state, congestion
3358 * window, and retransmission timer values. This information is
3359 * read-only.
3360 */
3361static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
3362 char __user *optval,
3363 int __user *optlen)
3364{
3365 struct sctp_paddrinfo pinfo;
3366 struct sctp_transport *transport;
3367 int retval = 0;
3368
3369 if (len != sizeof(pinfo)) {
3370 retval = -EINVAL;
3371 goto out;
3372 }
3373
3374 if (copy_from_user(&pinfo, optval, sizeof(pinfo))) {
3375 retval = -EFAULT;
3376 goto out;
3377 }
3378
3379 transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
3380 pinfo.spinfo_assoc_id);
3381 if (!transport)
3382 return -EINVAL;
3383
3384 pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07003385 pinfo.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 pinfo.spinfo_cwnd = transport->cwnd;
3387 pinfo.spinfo_srtt = transport->srtt;
3388 pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08003389 pinfo.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390
Frank Filz3f7a87d2005-06-20 13:14:57 -07003391 if (pinfo.spinfo_state == SCTP_UNKNOWN)
3392 pinfo.spinfo_state = SCTP_ACTIVE;
3393
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 if (put_user(len, optlen)) {
3395 retval = -EFAULT;
3396 goto out;
3397 }
3398
3399 if (copy_to_user(optval, &pinfo, len)) {
3400 retval = -EFAULT;
3401 goto out;
3402 }
3403
3404out:
3405 return (retval);
3406}
3407
3408/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
3409 *
3410 * This option is a on/off flag. If enabled no SCTP message
3411 * fragmentation will be performed. Instead if a message being sent
3412 * exceeds the current PMTU size, the message will NOT be sent and
3413 * instead a error will be indicated to the user.
3414 */
3415static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
3416 char __user *optval, int __user *optlen)
3417{
3418 int val;
3419
3420 if (len < sizeof(int))
3421 return -EINVAL;
3422
3423 len = sizeof(int);
3424 val = (sctp_sk(sk)->disable_fragments == 1);
3425 if (put_user(len, optlen))
3426 return -EFAULT;
3427 if (copy_to_user(optval, &val, len))
3428 return -EFAULT;
3429 return 0;
3430}
3431
3432/* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
3433 *
3434 * This socket option is used to specify various notifications and
3435 * ancillary data the user wishes to receive.
3436 */
3437static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
3438 int __user *optlen)
3439{
3440 if (len != sizeof(struct sctp_event_subscribe))
3441 return -EINVAL;
3442 if (copy_to_user(optval, &sctp_sk(sk)->subscribe, len))
3443 return -EFAULT;
3444 return 0;
3445}
3446
3447/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
3448 *
3449 * This socket option is applicable to the UDP-style socket only. When
3450 * set it will cause associations that are idle for more than the
3451 * specified number of seconds to automatically close. An association
3452 * being idle is defined an association that has NOT sent or received
3453 * user data. The special value of '0' indicates that no automatic
3454 * close of any associations should be performed. The option expects an
3455 * integer defining the number of seconds of idle time before an
3456 * association is closed.
3457 */
3458static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
3459{
3460 /* Applicable to UDP-style socket only */
3461 if (sctp_style(sk, TCP))
3462 return -EOPNOTSUPP;
3463 if (len != sizeof(int))
3464 return -EINVAL;
3465 if (copy_to_user(optval, &sctp_sk(sk)->autoclose, len))
3466 return -EFAULT;
3467 return 0;
3468}
3469
3470/* Helper routine to branch off an association to a new socket. */
3471SCTP_STATIC int sctp_do_peeloff(struct sctp_association *asoc,
3472 struct socket **sockp)
3473{
3474 struct sock *sk = asoc->base.sk;
3475 struct socket *sock;
Vlad Yasevich4f444302006-10-30 18:54:32 -08003476 struct inet_sock *inetsk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 int err = 0;
3478
3479 /* An association cannot be branched off from an already peeled-off
3480 * socket, nor is this supported for tcp style sockets.
3481 */
3482 if (!sctp_style(sk, UDP))
3483 return -EINVAL;
3484
3485 /* Create a new socket. */
3486 err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
3487 if (err < 0)
3488 return err;
3489
3490 /* Populate the fields of the newsk from the oldsk and migrate the
3491 * asoc to the newsk.
3492 */
3493 sctp_sock_migrate(sk, sock->sk, asoc, SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
Vlad Yasevich4f444302006-10-30 18:54:32 -08003494
3495 /* Make peeled-off sockets more like 1-1 accepted sockets.
3496 * Set the daddr and initialize id to something more random
3497 */
3498 inetsk = inet_sk(sock->sk);
3499 inetsk->daddr = asoc->peer.primary_addr.v4.sin_addr.s_addr;
3500 inetsk->id = asoc->next_tsn ^ jiffies;
3501
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 *sockp = sock;
3503
3504 return err;
3505}
3506
3507static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
3508{
3509 sctp_peeloff_arg_t peeloff;
3510 struct socket *newsock;
3511 int retval = 0;
3512 struct sctp_association *asoc;
3513
3514 if (len != sizeof(sctp_peeloff_arg_t))
3515 return -EINVAL;
3516 if (copy_from_user(&peeloff, optval, len))
3517 return -EFAULT;
3518
3519 asoc = sctp_id2assoc(sk, peeloff.associd);
3520 if (!asoc) {
3521 retval = -EINVAL;
3522 goto out;
3523 }
3524
3525 SCTP_DEBUG_PRINTK("%s: sk: %p asoc: %p\n", __FUNCTION__, sk, asoc);
3526
3527 retval = sctp_do_peeloff(asoc, &newsock);
3528 if (retval < 0)
3529 goto out;
3530
3531 /* Map the socket to an unused fd that can be returned to the user. */
3532 retval = sock_map_fd(newsock);
3533 if (retval < 0) {
3534 sock_release(newsock);
3535 goto out;
3536 }
3537
3538 SCTP_DEBUG_PRINTK("%s: sk: %p asoc: %p newsk: %p sd: %d\n",
3539 __FUNCTION__, sk, asoc, newsock->sk, retval);
3540
3541 /* Return the fd mapped to the new socket. */
3542 peeloff.sd = retval;
3543 if (copy_to_user(optval, &peeloff, len))
3544 retval = -EFAULT;
3545
3546out:
3547 return retval;
3548}
3549
3550/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
3551 *
3552 * Applications can enable or disable heartbeats for any peer address of
3553 * an association, modify an address's heartbeat interval, force a
3554 * heartbeat to be sent immediately, and adjust the address's maximum
3555 * number of retransmissions sent before an address is considered
3556 * unreachable. The following structure is used to access and modify an
3557 * address's parameters:
3558 *
3559 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08003560 * sctp_assoc_t spp_assoc_id;
3561 * struct sockaddr_storage spp_address;
3562 * uint32_t spp_hbinterval;
3563 * uint16_t spp_pathmaxrxt;
3564 * uint32_t spp_pathmtu;
3565 * uint32_t spp_sackdelay;
3566 * uint32_t spp_flags;
3567 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08003569 * spp_assoc_id - (one-to-many style socket) This is filled in the
3570 * application, and identifies the association for
3571 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 * spp_address - This specifies which address is of interest.
3573 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08003574 * in milliseconds. If a value of zero
3575 * is present in this field then no changes are to
3576 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 * spp_pathmaxrxt - This contains the maximum number of
3578 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08003579 * considered unreachable. If a value of zero
3580 * is present in this field then no changes are to
3581 * be made to this parameter.
3582 * spp_pathmtu - When Path MTU discovery is disabled the value
3583 * specified here will be the "fixed" path mtu.
3584 * Note that if the spp_address field is empty
3585 * then all associations on this address will
3586 * have this fixed path mtu set upon them.
3587 *
3588 * spp_sackdelay - When delayed sack is enabled, this value specifies
3589 * the number of milliseconds that sacks will be delayed
3590 * for. This value will apply to all addresses of an
3591 * association if the spp_address field is empty. Note
3592 * also, that if delayed sack is enabled and this
3593 * value is set to 0, no change is made to the last
3594 * recorded delayed sack timer value.
3595 *
3596 * spp_flags - These flags are used to control various features
3597 * on an association. The flag field may contain
3598 * zero or more of the following options.
3599 *
3600 * SPP_HB_ENABLE - Enable heartbeats on the
3601 * specified address. Note that if the address
3602 * field is empty all addresses for the association
3603 * have heartbeats enabled upon them.
3604 *
3605 * SPP_HB_DISABLE - Disable heartbeats on the
3606 * speicifed address. Note that if the address
3607 * field is empty all addresses for the association
3608 * will have their heartbeats disabled. Note also
3609 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
3610 * mutually exclusive, only one of these two should
3611 * be specified. Enabling both fields will have
3612 * undetermined results.
3613 *
3614 * SPP_HB_DEMAND - Request a user initiated heartbeat
3615 * to be made immediately.
3616 *
3617 * SPP_PMTUD_ENABLE - This field will enable PMTU
3618 * discovery upon the specified address. Note that
3619 * if the address feild is empty then all addresses
3620 * on the association are effected.
3621 *
3622 * SPP_PMTUD_DISABLE - This field will disable PMTU
3623 * discovery upon the specified address. Note that
3624 * if the address feild is empty then all addresses
3625 * on the association are effected. Not also that
3626 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
3627 * exclusive. Enabling both will have undetermined
3628 * results.
3629 *
3630 * SPP_SACKDELAY_ENABLE - Setting this flag turns
3631 * on delayed sack. The time specified in spp_sackdelay
3632 * is used to specify the sack delay for this address. Note
3633 * that if spp_address is empty then all addresses will
3634 * enable delayed sack and take on the sack delay
3635 * value specified in spp_sackdelay.
3636 * SPP_SACKDELAY_DISABLE - Setting this flag turns
3637 * off delayed sack. If the spp_address field is blank then
3638 * delayed sack is disabled for the entire association. Note
3639 * also that this field is mutually exclusive to
3640 * SPP_SACKDELAY_ENABLE, setting both will have undefined
3641 * results.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642 */
3643static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
Frank Filz52ccb8e2005-12-22 11:36:46 -08003644 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645{
Frank Filz52ccb8e2005-12-22 11:36:46 -08003646 struct sctp_paddrparams params;
3647 struct sctp_transport *trans = NULL;
3648 struct sctp_association *asoc = NULL;
3649 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650
3651 if (len != sizeof(struct sctp_paddrparams))
3652 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08003653
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 if (copy_from_user(&params, optval, len))
3655 return -EFAULT;
3656
Frank Filz52ccb8e2005-12-22 11:36:46 -08003657 /* If an address other than INADDR_ANY is specified, and
3658 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 */
Frank Filz52ccb8e2005-12-22 11:36:46 -08003660 if (!sctp_is_any(( union sctp_addr *)&params.spp_address)) {
3661 trans = sctp_addr_id2transport(sk, &params.spp_address,
3662 params.spp_assoc_id);
3663 if (!trans) {
3664 SCTP_DEBUG_PRINTK("Failed no transport\n");
3665 return -EINVAL;
3666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 }
3668
Frank Filz52ccb8e2005-12-22 11:36:46 -08003669 /* Get association, if assoc_id != 0 and the socket is a one
3670 * to many style socket, and an association was not found, then
3671 * the id was invalid.
3672 */
3673 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
3674 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP)) {
3675 SCTP_DEBUG_PRINTK("Failed no association\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08003677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678
Frank Filz52ccb8e2005-12-22 11:36:46 -08003679 if (trans) {
3680 /* Fetch transport values. */
3681 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
3682 params.spp_pathmtu = trans->pathmtu;
3683 params.spp_pathmaxrxt = trans->pathmaxrxt;
3684 params.spp_sackdelay = jiffies_to_msecs(trans->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685
Frank Filz52ccb8e2005-12-22 11:36:46 -08003686 /*draft-11 doesn't say what to return in spp_flags*/
3687 params.spp_flags = trans->param_flags;
3688 } else if (asoc) {
3689 /* Fetch association values. */
3690 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
3691 params.spp_pathmtu = asoc->pathmtu;
3692 params.spp_pathmaxrxt = asoc->pathmaxrxt;
3693 params.spp_sackdelay = jiffies_to_msecs(asoc->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694
Frank Filz52ccb8e2005-12-22 11:36:46 -08003695 /*draft-11 doesn't say what to return in spp_flags*/
3696 params.spp_flags = asoc->param_flags;
3697 } else {
3698 /* Fetch socket values. */
3699 params.spp_hbinterval = sp->hbinterval;
3700 params.spp_pathmtu = sp->pathmtu;
3701 params.spp_sackdelay = sp->sackdelay;
3702 params.spp_pathmaxrxt = sp->pathmaxrxt;
3703
3704 /*draft-11 doesn't say what to return in spp_flags*/
3705 params.spp_flags = sp->param_flags;
3706 }
3707
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708 if (copy_to_user(optval, &params, len))
3709 return -EFAULT;
3710
3711 if (put_user(len, optlen))
3712 return -EFAULT;
3713
3714 return 0;
3715}
3716
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003717/* 7.1.23. Delayed Ack Timer (SCTP_DELAYED_ACK_TIME)
Frank Filz77086102005-12-22 11:37:30 -08003718 *
3719 * This options will get or set the delayed ack timer. The time is set
3720 * in milliseconds. If the assoc_id is 0, then this sets or gets the
3721 * endpoints default delayed ack timer value. If the assoc_id field is
3722 * non-zero, then the set or get effects the specified association.
3723 *
3724 * struct sctp_assoc_value {
3725 * sctp_assoc_t assoc_id;
3726 * uint32_t assoc_value;
3727 * };
3728 *
3729 * assoc_id - This parameter, indicates which association the
3730 * user is preforming an action upon. Note that if
3731 * this field's value is zero then the endpoints
3732 * default value is changed (effecting future
3733 * associations only).
3734 *
3735 * assoc_value - This parameter contains the number of milliseconds
3736 * that the user is requesting the delayed ACK timer
3737 * be set to. Note that this value is defined in
3738 * the standard to be between 200 and 500 milliseconds.
3739 *
3740 * Note: a value of zero will leave the value alone,
3741 * but disable SACK delay. A non-zero value will also
3742 * enable SACK delay.
3743 */
3744static int sctp_getsockopt_delayed_ack_time(struct sock *sk, int len,
3745 char __user *optval,
3746 int __user *optlen)
3747{
3748 struct sctp_assoc_value params;
3749 struct sctp_association *asoc = NULL;
3750 struct sctp_sock *sp = sctp_sk(sk);
3751
3752 if (len != sizeof(struct sctp_assoc_value))
3753 return - EINVAL;
3754
3755 if (copy_from_user(&params, optval, len))
3756 return -EFAULT;
3757
3758 /* Get association, if assoc_id != 0 and the socket is a one
3759 * to many style socket, and an association was not found, then
3760 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003761 */
Frank Filz77086102005-12-22 11:37:30 -08003762 asoc = sctp_id2assoc(sk, params.assoc_id);
3763 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
3764 return -EINVAL;
3765
3766 if (asoc) {
3767 /* Fetch association values. */
3768 if (asoc->param_flags & SPP_SACKDELAY_ENABLE)
3769 params.assoc_value = jiffies_to_msecs(
3770 asoc->sackdelay);
3771 else
3772 params.assoc_value = 0;
3773 } else {
3774 /* Fetch socket values. */
3775 if (sp->param_flags & SPP_SACKDELAY_ENABLE)
3776 params.assoc_value = sp->sackdelay;
3777 else
3778 params.assoc_value = 0;
3779 }
3780
3781 if (copy_to_user(optval, &params, len))
3782 return -EFAULT;
3783
3784 if (put_user(len, optlen))
3785 return -EFAULT;
3786
3787 return 0;
3788}
3789
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
3791 *
3792 * Applications can specify protocol parameters for the default association
3793 * initialization. The option name argument to setsockopt() and getsockopt()
3794 * is SCTP_INITMSG.
3795 *
3796 * Setting initialization parameters is effective only on an unconnected
3797 * socket (for UDP-style sockets only future associations are effected
3798 * by the change). With TCP-style sockets, this option is inherited by
3799 * sockets derived from a listener socket.
3800 */
3801static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
3802{
3803 if (len != sizeof(struct sctp_initmsg))
3804 return -EINVAL;
3805 if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
3806 return -EFAULT;
3807 return 0;
3808}
3809
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003810static int sctp_getsockopt_peer_addrs_num_old(struct sock *sk, int len,
3811 char __user *optval,
3812 int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813{
3814 sctp_assoc_t id;
3815 struct sctp_association *asoc;
3816 struct list_head *pos;
3817 int cnt = 0;
3818
3819 if (len != sizeof(sctp_assoc_t))
3820 return -EINVAL;
3821
3822 if (copy_from_user(&id, optval, sizeof(sctp_assoc_t)))
3823 return -EFAULT;
3824
3825 /* For UDP-style sockets, id specifies the association to query. */
3826 asoc = sctp_id2assoc(sk, id);
3827 if (!asoc)
3828 return -EINVAL;
3829
3830 list_for_each(pos, &asoc->peer.transport_addr_list) {
3831 cnt ++;
3832 }
3833
3834 return cnt;
3835}
3836
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003837/*
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003838 * Old API for getting list of peer addresses. Does not work for 32-bit
3839 * programs running on a 64-bit kernel
3840 */
3841static int sctp_getsockopt_peer_addrs_old(struct sock *sk, int len,
3842 char __user *optval,
3843 int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844{
3845 struct sctp_association *asoc;
3846 struct list_head *pos;
3847 int cnt = 0;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003848 struct sctp_getaddrs_old getaddrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 struct sctp_transport *from;
3850 void __user *to;
3851 union sctp_addr temp;
3852 struct sctp_sock *sp = sctp_sk(sk);
3853 int addrlen;
3854
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003855 if (len != sizeof(struct sctp_getaddrs_old))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856 return -EINVAL;
3857
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003858 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs_old)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 return -EFAULT;
3860
3861 if (getaddrs.addr_num <= 0) return -EINVAL;
3862
3863 /* For UDP-style sockets, id specifies the association to query. */
3864 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
3865 if (!asoc)
3866 return -EINVAL;
3867
3868 to = (void __user *)getaddrs.addrs;
3869 list_for_each(pos, &asoc->peer.transport_addr_list) {
3870 from = list_entry(pos, struct sctp_transport, transports);
Al Virob3f5b3b2006-11-20 17:22:43 -08003871 memcpy(&temp, &from->ipaddr, sizeof(temp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp, &temp);
3873 addrlen = sctp_get_af_specific(sk->sk_family)->sockaddr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874 if (copy_to_user(to, &temp, addrlen))
3875 return -EFAULT;
3876 to += addrlen ;
3877 cnt ++;
3878 if (cnt >= getaddrs.addr_num) break;
3879 }
3880 getaddrs.addr_num = cnt;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003881 if (copy_to_user(optval, &getaddrs, sizeof(struct sctp_getaddrs_old)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 return -EFAULT;
3883
3884 return 0;
3885}
3886
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003887static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
3888 char __user *optval, int __user *optlen)
3889{
3890 struct sctp_association *asoc;
3891 struct list_head *pos;
3892 int cnt = 0;
3893 struct sctp_getaddrs getaddrs;
3894 struct sctp_transport *from;
3895 void __user *to;
3896 union sctp_addr temp;
3897 struct sctp_sock *sp = sctp_sk(sk);
3898 int addrlen;
3899 size_t space_left;
3900 int bytes_copied;
3901
3902 if (len < sizeof(struct sctp_getaddrs))
3903 return -EINVAL;
3904
3905 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
3906 return -EFAULT;
3907
3908 /* For UDP-style sockets, id specifies the association to query. */
3909 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
3910 if (!asoc)
3911 return -EINVAL;
3912
3913 to = optval + offsetof(struct sctp_getaddrs,addrs);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003914 space_left = len - sizeof(struct sctp_getaddrs) -
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003915 offsetof(struct sctp_getaddrs,addrs);
3916
3917 list_for_each(pos, &asoc->peer.transport_addr_list) {
3918 from = list_entry(pos, struct sctp_transport, transports);
Al Virob3f5b3b2006-11-20 17:22:43 -08003919 memcpy(&temp, &from->ipaddr, sizeof(temp));
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003920 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp, &temp);
3921 addrlen = sctp_get_af_specific(sk->sk_family)->sockaddr_len;
3922 if(space_left < addrlen)
3923 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003924 if (copy_to_user(to, &temp, addrlen))
3925 return -EFAULT;
3926 to += addrlen;
3927 cnt++;
3928 space_left -= addrlen;
3929 }
3930
3931 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
3932 return -EFAULT;
3933 bytes_copied = ((char __user *)to) - optval;
3934 if (put_user(bytes_copied, optlen))
3935 return -EFAULT;
3936
3937 return 0;
3938}
3939
3940static int sctp_getsockopt_local_addrs_num_old(struct sock *sk, int len,
3941 char __user *optval,
3942 int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943{
3944 sctp_assoc_t id;
3945 struct sctp_bind_addr *bp;
3946 struct sctp_association *asoc;
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08003947 struct list_head *pos, *temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 struct sctp_sockaddr_entry *addr;
3949 rwlock_t *addr_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950 int cnt = 0;
3951
3952 if (len != sizeof(sctp_assoc_t))
3953 return -EINVAL;
3954
3955 if (copy_from_user(&id, optval, sizeof(sctp_assoc_t)))
3956 return -EFAULT;
3957
3958 /*
3959 * For UDP-style sockets, id specifies the association to query.
3960 * If the id field is set to the value '0' then the locally bound
3961 * addresses are returned without regard to any particular
3962 * association.
3963 */
3964 if (0 == id) {
3965 bp = &sctp_sk(sk)->ep->base.bind_addr;
3966 addr_lock = &sctp_sk(sk)->ep->base.addr_lock;
3967 } else {
3968 asoc = sctp_id2assoc(sk, id);
3969 if (!asoc)
3970 return -EINVAL;
3971 bp = &asoc->base.bind_addr;
3972 addr_lock = &asoc->base.addr_lock;
3973 }
3974
3975 sctp_read_lock(addr_lock);
3976
3977 /* If the endpoint is bound to 0.0.0.0 or ::0, count the valid
3978 * addresses from the global local address list.
3979 */
3980 if (sctp_list_single_entry(&bp->address_list)) {
3981 addr = list_entry(bp->address_list.next,
3982 struct sctp_sockaddr_entry, list);
Al Viro6244be42006-11-20 17:21:44 -08003983 if (sctp_is_any(&addr->a)) {
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08003984 list_for_each_safe(pos, temp, &sctp_local_addr_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985 addr = list_entry(pos,
3986 struct sctp_sockaddr_entry,
3987 list);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003988 if ((PF_INET == sk->sk_family) &&
Al Viro6244be42006-11-20 17:21:44 -08003989 (AF_INET6 == addr->a.sa.sa_family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 continue;
3991 cnt++;
3992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993 } else {
3994 cnt = 1;
3995 }
3996 goto done;
3997 }
3998
3999 list_for_each(pos, &bp->address_list) {
4000 cnt ++;
4001 }
4002
4003done:
4004 sctp_read_unlock(addr_lock);
4005 return cnt;
4006}
4007
4008/* Helper function that copies local addresses to user and returns the number
4009 * of addresses copied.
4010 */
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004011static int sctp_copy_laddrs_to_user_old(struct sock *sk, __u16 port, int max_addrs,
4012 void __user *to)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013{
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08004014 struct list_head *pos, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 struct sctp_sockaddr_entry *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016 union sctp_addr temp;
4017 int cnt = 0;
4018 int addrlen;
4019
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08004020 list_for_each_safe(pos, next, &sctp_local_addr_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 addr = list_entry(pos, struct sctp_sockaddr_entry, list);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004022 if ((PF_INET == sk->sk_family) &&
Al Viro6244be42006-11-20 17:21:44 -08004023 (AF_INET6 == addr->a.sa.sa_family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 continue;
Al Viro6244be42006-11-20 17:21:44 -08004025 memcpy(&temp, &addr->a, sizeof(temp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk),
4027 &temp);
4028 addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len;
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08004029 if (copy_to_user(to, &temp, addrlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030 return -EFAULT;
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08004031
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 to += addrlen;
4033 cnt ++;
4034 if (cnt >= max_addrs) break;
4035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036
4037 return cnt;
4038}
4039
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004040static int sctp_copy_laddrs_to_user(struct sock *sk, __u16 port,
Al Virod3a880e2005-12-15 09:18:30 +00004041 void __user **to, size_t space_left)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004042{
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08004043 struct list_head *pos, *next;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004044 struct sctp_sockaddr_entry *addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004045 union sctp_addr temp;
4046 int cnt = 0;
4047 int addrlen;
4048
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08004049 list_for_each_safe(pos, next, &sctp_local_addr_list) {
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004050 addr = list_entry(pos, struct sctp_sockaddr_entry, list);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004051 if ((PF_INET == sk->sk_family) &&
Al Viro6244be42006-11-20 17:21:44 -08004052 (AF_INET6 == addr->a.sa.sa_family))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004053 continue;
Al Viro6244be42006-11-20 17:21:44 -08004054 memcpy(&temp, &addr->a, sizeof(temp));
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004055 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk),
4056 &temp);
4057 addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len;
4058 if(space_left<addrlen)
4059 return -ENOMEM;
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08004060 if (copy_to_user(*to, &temp, addrlen))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004061 return -EFAULT;
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08004062
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004063 *to += addrlen;
4064 cnt ++;
4065 space_left -= addrlen;
4066 }
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004067
4068 return cnt;
4069}
4070
4071/* Old API for getting list of local addresses. Does not work for 32-bit
4072 * programs running on a 64-bit kernel
4073 */
4074static int sctp_getsockopt_local_addrs_old(struct sock *sk, int len,
4075 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076{
4077 struct sctp_bind_addr *bp;
4078 struct sctp_association *asoc;
4079 struct list_head *pos;
4080 int cnt = 0;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004081 struct sctp_getaddrs_old getaddrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 struct sctp_sockaddr_entry *addr;
4083 void __user *to;
4084 union sctp_addr temp;
4085 struct sctp_sock *sp = sctp_sk(sk);
4086 int addrlen;
4087 rwlock_t *addr_lock;
4088 int err = 0;
4089
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004090 if (len != sizeof(struct sctp_getaddrs_old))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 return -EINVAL;
4092
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004093 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs_old)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094 return -EFAULT;
4095
4096 if (getaddrs.addr_num <= 0) return -EINVAL;
4097 /*
4098 * For UDP-style sockets, id specifies the association to query.
4099 * If the id field is set to the value '0' then the locally bound
4100 * addresses are returned without regard to any particular
4101 * association.
4102 */
4103 if (0 == getaddrs.assoc_id) {
4104 bp = &sctp_sk(sk)->ep->base.bind_addr;
4105 addr_lock = &sctp_sk(sk)->ep->base.addr_lock;
4106 } else {
4107 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
4108 if (!asoc)
4109 return -EINVAL;
4110 bp = &asoc->base.bind_addr;
4111 addr_lock = &asoc->base.addr_lock;
4112 }
4113
4114 to = getaddrs.addrs;
4115
4116 sctp_read_lock(addr_lock);
4117
4118 /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
4119 * addresses from the global local address list.
4120 */
4121 if (sctp_list_single_entry(&bp->address_list)) {
4122 addr = list_entry(bp->address_list.next,
4123 struct sctp_sockaddr_entry, list);
Al Viro6244be42006-11-20 17:21:44 -08004124 if (sctp_is_any(&addr->a)) {
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004125 cnt = sctp_copy_laddrs_to_user_old(sk, bp->port,
4126 getaddrs.addr_num,
4127 to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 if (cnt < 0) {
4129 err = cnt;
4130 goto unlock;
4131 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004132 goto copy_getaddrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133 }
4134 }
4135
4136 list_for_each(pos, &bp->address_list) {
4137 addr = list_entry(pos, struct sctp_sockaddr_entry, list);
Al Viro6244be42006-11-20 17:21:44 -08004138 memcpy(&temp, &addr->a, sizeof(temp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp, &temp);
4140 addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 if (copy_to_user(to, &temp, addrlen)) {
4142 err = -EFAULT;
4143 goto unlock;
4144 }
4145 to += addrlen;
4146 cnt ++;
4147 if (cnt >= getaddrs.addr_num) break;
4148 }
4149
4150copy_getaddrs:
4151 getaddrs.addr_num = cnt;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004152 if (copy_to_user(optval, &getaddrs, sizeof(struct sctp_getaddrs_old)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153 err = -EFAULT;
4154
4155unlock:
4156 sctp_read_unlock(addr_lock);
4157 return err;
4158}
4159
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004160static int sctp_getsockopt_local_addrs(struct sock *sk, int len,
4161 char __user *optval, int __user *optlen)
4162{
4163 struct sctp_bind_addr *bp;
4164 struct sctp_association *asoc;
4165 struct list_head *pos;
4166 int cnt = 0;
4167 struct sctp_getaddrs getaddrs;
4168 struct sctp_sockaddr_entry *addr;
4169 void __user *to;
4170 union sctp_addr temp;
4171 struct sctp_sock *sp = sctp_sk(sk);
4172 int addrlen;
4173 rwlock_t *addr_lock;
4174 int err = 0;
4175 size_t space_left;
4176 int bytes_copied;
4177
4178 if (len <= sizeof(struct sctp_getaddrs))
4179 return -EINVAL;
4180
4181 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
4182 return -EFAULT;
4183
4184 /*
4185 * For UDP-style sockets, id specifies the association to query.
4186 * If the id field is set to the value '0' then the locally bound
4187 * addresses are returned without regard to any particular
4188 * association.
4189 */
4190 if (0 == getaddrs.assoc_id) {
4191 bp = &sctp_sk(sk)->ep->base.bind_addr;
4192 addr_lock = &sctp_sk(sk)->ep->base.addr_lock;
4193 } else {
4194 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
4195 if (!asoc)
4196 return -EINVAL;
4197 bp = &asoc->base.bind_addr;
4198 addr_lock = &asoc->base.addr_lock;
4199 }
4200
4201 to = optval + offsetof(struct sctp_getaddrs,addrs);
4202 space_left = len - sizeof(struct sctp_getaddrs) -
4203 offsetof(struct sctp_getaddrs,addrs);
4204
4205 sctp_read_lock(addr_lock);
4206
4207 /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
4208 * addresses from the global local address list.
4209 */
4210 if (sctp_list_single_entry(&bp->address_list)) {
4211 addr = list_entry(bp->address_list.next,
4212 struct sctp_sockaddr_entry, list);
Al Viro6244be42006-11-20 17:21:44 -08004213 if (sctp_is_any(&addr->a)) {
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004214 cnt = sctp_copy_laddrs_to_user(sk, bp->port,
4215 &to, space_left);
4216 if (cnt < 0) {
4217 err = cnt;
4218 goto unlock;
4219 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004220 goto copy_getaddrs;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004221 }
4222 }
4223
4224 list_for_each(pos, &bp->address_list) {
4225 addr = list_entry(pos, struct sctp_sockaddr_entry, list);
Al Viro6244be42006-11-20 17:21:44 -08004226 memcpy(&temp, &addr->a, sizeof(temp));
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004227 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp, &temp);
4228 addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len;
4229 if(space_left < addrlen)
4230 return -ENOMEM; /*fixme: right error?*/
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004231 if (copy_to_user(to, &temp, addrlen)) {
4232 err = -EFAULT;
4233 goto unlock;
4234 }
4235 to += addrlen;
4236 cnt ++;
4237 space_left -= addrlen;
4238 }
4239
4240copy_getaddrs:
4241 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
4242 return -EFAULT;
4243 bytes_copied = ((char __user *)to) - optval;
4244 if (put_user(bytes_copied, optlen))
4245 return -EFAULT;
4246
4247unlock:
4248 sctp_read_unlock(addr_lock);
4249 return err;
4250}
4251
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
4253 *
4254 * Requests that the local SCTP stack use the enclosed peer address as
4255 * the association primary. The enclosed address must be one of the
4256 * association peer's addresses.
4257 */
4258static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
4259 char __user *optval, int __user *optlen)
4260{
4261 struct sctp_prim prim;
4262 struct sctp_association *asoc;
4263 struct sctp_sock *sp = sctp_sk(sk);
4264
4265 if (len != sizeof(struct sctp_prim))
4266 return -EINVAL;
4267
4268 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
4269 return -EFAULT;
4270
4271 asoc = sctp_id2assoc(sk, prim.ssp_assoc_id);
4272 if (!asoc)
4273 return -EINVAL;
4274
4275 if (!asoc->peer.primary_path)
4276 return -ENOTCONN;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004277
Al Viro8cec6b82006-11-20 17:23:01 -08004278 memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr,
4279 asoc->peer.primary_path->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280
4281 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp,
4282 (union sctp_addr *)&prim.ssp_addr);
4283
4284 if (copy_to_user(optval, &prim, sizeof(struct sctp_prim)))
4285 return -EFAULT;
4286
4287 return 0;
4288}
4289
4290/*
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004291 * 7.1.11 Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292 *
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004293 * Requests that the local endpoint set the specified Adaptation Layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 * Indication parameter for all future INIT and INIT-ACK exchanges.
4295 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004296static int sctp_getsockopt_adaptation_layer(struct sock *sk, int len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 char __user *optval, int __user *optlen)
4298{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004299 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004301 if (len != sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 return -EINVAL;
4303
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004304 adaptation.ssb_adaptation_ind = sctp_sk(sk)->adaptation_ind;
4305 if (copy_to_user(optval, &adaptation, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 return -EFAULT;
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07004307
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308 return 0;
4309}
4310
4311/*
4312 *
4313 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
4314 *
4315 * Applications that wish to use the sendto() system call may wish to
4316 * specify a default set of parameters that would normally be supplied
4317 * through the inclusion of ancillary data. This socket option allows
4318 * such an application to set the default sctp_sndrcvinfo structure.
4319
4320
4321 * The application that wishes to use this socket option simply passes
4322 * in to this call the sctp_sndrcvinfo structure defined in Section
4323 * 5.2.2) The input parameters accepted by this call include
4324 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
4325 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
4326 * to this call if the caller is using the UDP model.
4327 *
4328 * For getsockopt, it get the default sctp_sndrcvinfo structure.
4329 */
4330static int sctp_getsockopt_default_send_param(struct sock *sk,
4331 int len, char __user *optval,
4332 int __user *optlen)
4333{
4334 struct sctp_sndrcvinfo info;
4335 struct sctp_association *asoc;
4336 struct sctp_sock *sp = sctp_sk(sk);
4337
4338 if (len != sizeof(struct sctp_sndrcvinfo))
4339 return -EINVAL;
4340 if (copy_from_user(&info, optval, sizeof(struct sctp_sndrcvinfo)))
4341 return -EFAULT;
4342
4343 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
4344 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
4345 return -EINVAL;
4346
4347 if (asoc) {
4348 info.sinfo_stream = asoc->default_stream;
4349 info.sinfo_flags = asoc->default_flags;
4350 info.sinfo_ppid = asoc->default_ppid;
4351 info.sinfo_context = asoc->default_context;
4352 info.sinfo_timetolive = asoc->default_timetolive;
4353 } else {
4354 info.sinfo_stream = sp->default_stream;
4355 info.sinfo_flags = sp->default_flags;
4356 info.sinfo_ppid = sp->default_ppid;
4357 info.sinfo_context = sp->default_context;
4358 info.sinfo_timetolive = sp->default_timetolive;
4359 }
4360
4361 if (copy_to_user(optval, &info, sizeof(struct sctp_sndrcvinfo)))
4362 return -EFAULT;
4363
4364 return 0;
4365}
4366
4367/*
4368 *
4369 * 7.1.5 SCTP_NODELAY
4370 *
4371 * Turn on/off any Nagle-like algorithm. This means that packets are
4372 * generally sent as soon as possible and no unnecessary delays are
4373 * introduced, at the cost of more packets in the network. Expects an
4374 * integer boolean flag.
4375 */
4376
4377static int sctp_getsockopt_nodelay(struct sock *sk, int len,
4378 char __user *optval, int __user *optlen)
4379{
4380 int val;
4381
4382 if (len < sizeof(int))
4383 return -EINVAL;
4384
4385 len = sizeof(int);
4386 val = (sctp_sk(sk)->nodelay == 1);
4387 if (put_user(len, optlen))
4388 return -EFAULT;
4389 if (copy_to_user(optval, &val, len))
4390 return -EFAULT;
4391 return 0;
4392}
4393
4394/*
4395 *
4396 * 7.1.1 SCTP_RTOINFO
4397 *
4398 * The protocol parameters used to initialize and bound retransmission
4399 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
4400 * and modify these parameters.
4401 * All parameters are time values, in milliseconds. A value of 0, when
4402 * modifying the parameters, indicates that the current value should not
4403 * be changed.
4404 *
4405 */
4406static int sctp_getsockopt_rtoinfo(struct sock *sk, int len,
4407 char __user *optval,
4408 int __user *optlen) {
4409 struct sctp_rtoinfo rtoinfo;
4410 struct sctp_association *asoc;
4411
4412 if (len != sizeof (struct sctp_rtoinfo))
4413 return -EINVAL;
4414
4415 if (copy_from_user(&rtoinfo, optval, sizeof (struct sctp_rtoinfo)))
4416 return -EFAULT;
4417
4418 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
4419
4420 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
4421 return -EINVAL;
4422
4423 /* Values corresponding to the specific association. */
4424 if (asoc) {
4425 rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial);
4426 rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max);
4427 rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min);
4428 } else {
4429 /* Values corresponding to the endpoint. */
4430 struct sctp_sock *sp = sctp_sk(sk);
4431
4432 rtoinfo.srto_initial = sp->rtoinfo.srto_initial;
4433 rtoinfo.srto_max = sp->rtoinfo.srto_max;
4434 rtoinfo.srto_min = sp->rtoinfo.srto_min;
4435 }
4436
4437 if (put_user(len, optlen))
4438 return -EFAULT;
4439
4440 if (copy_to_user(optval, &rtoinfo, len))
4441 return -EFAULT;
4442
4443 return 0;
4444}
4445
4446/*
4447 *
4448 * 7.1.2 SCTP_ASSOCINFO
4449 *
4450 * This option is used to tune the the maximum retransmission attempts
4451 * of the association.
4452 * Returns an error if the new association retransmission value is
4453 * greater than the sum of the retransmission value of the peer.
4454 * See [SCTP] for more information.
4455 *
4456 */
4457static int sctp_getsockopt_associnfo(struct sock *sk, int len,
4458 char __user *optval,
4459 int __user *optlen)
4460{
4461
4462 struct sctp_assocparams assocparams;
4463 struct sctp_association *asoc;
4464 struct list_head *pos;
4465 int cnt = 0;
4466
4467 if (len != sizeof (struct sctp_assocparams))
4468 return -EINVAL;
4469
4470 if (copy_from_user(&assocparams, optval,
4471 sizeof (struct sctp_assocparams)))
4472 return -EFAULT;
4473
4474 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
4475
4476 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
4477 return -EINVAL;
4478
4479 /* Values correspoinding to the specific association */
Vladislav Yasevich17337212005-04-28 11:57:54 -07004480 if (asoc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481 assocparams.sasoc_asocmaxrxt = asoc->max_retrans;
4482 assocparams.sasoc_peer_rwnd = asoc->peer.rwnd;
4483 assocparams.sasoc_local_rwnd = asoc->a_rwnd;
4484 assocparams.sasoc_cookie_life = (asoc->cookie_life.tv_sec
4485 * 1000) +
4486 (asoc->cookie_life.tv_usec
4487 / 1000);
4488
4489 list_for_each(pos, &asoc->peer.transport_addr_list) {
4490 cnt ++;
4491 }
4492
4493 assocparams.sasoc_number_peer_destinations = cnt;
4494 } else {
4495 /* Values corresponding to the endpoint */
4496 struct sctp_sock *sp = sctp_sk(sk);
4497
4498 assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt;
4499 assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd;
4500 assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd;
4501 assocparams.sasoc_cookie_life =
4502 sp->assocparams.sasoc_cookie_life;
4503 assocparams.sasoc_number_peer_destinations =
4504 sp->assocparams.
4505 sasoc_number_peer_destinations;
4506 }
4507
4508 if (put_user(len, optlen))
4509 return -EFAULT;
4510
4511 if (copy_to_user(optval, &assocparams, len))
4512 return -EFAULT;
4513
4514 return 0;
4515}
4516
4517/*
4518 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
4519 *
4520 * This socket option is a boolean flag which turns on or off mapped V4
4521 * addresses. If this option is turned on and the socket is type
4522 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
4523 * If this option is turned off, then no mapping will be done of V4
4524 * addresses and a user will receive both PF_INET6 and PF_INET type
4525 * addresses on the socket.
4526 */
4527static int sctp_getsockopt_mappedv4(struct sock *sk, int len,
4528 char __user *optval, int __user *optlen)
4529{
4530 int val;
4531 struct sctp_sock *sp = sctp_sk(sk);
4532
4533 if (len < sizeof(int))
4534 return -EINVAL;
4535
4536 len = sizeof(int);
4537 val = sp->v4mapped;
4538 if (put_user(len, optlen))
4539 return -EFAULT;
4540 if (copy_to_user(optval, &val, len))
4541 return -EFAULT;
4542
4543 return 0;
4544}
4545
4546/*
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004547 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
4548 * (chapter and verse is quoted at sctp_setsockopt_context())
4549 */
4550static int sctp_getsockopt_context(struct sock *sk, int len,
4551 char __user *optval, int __user *optlen)
4552{
4553 struct sctp_assoc_value params;
4554 struct sctp_sock *sp;
4555 struct sctp_association *asoc;
4556
4557 if (len != sizeof(struct sctp_assoc_value))
4558 return -EINVAL;
4559
4560 if (copy_from_user(&params, optval, len))
4561 return -EFAULT;
4562
4563 sp = sctp_sk(sk);
4564
4565 if (params.assoc_id != 0) {
4566 asoc = sctp_id2assoc(sk, params.assoc_id);
4567 if (!asoc)
4568 return -EINVAL;
4569 params.assoc_value = asoc->default_rcv_context;
4570 } else {
4571 params.assoc_value = sp->default_rcv_context;
4572 }
4573
4574 if (put_user(len, optlen))
4575 return -EFAULT;
4576 if (copy_to_user(optval, &params, len))
4577 return -EFAULT;
4578
4579 return 0;
4580}
4581
4582/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 * 7.1.17 Set the maximum fragrmentation size (SCTP_MAXSEG)
4584 *
4585 * This socket option specifies the maximum size to put in any outgoing
4586 * SCTP chunk. If a message is larger than this size it will be
4587 * fragmented by SCTP into the specified size. Note that the underlying
4588 * SCTP implementation may fragment into smaller sized chunks when the
4589 * PMTU of the underlying association is smaller than the value set by
4590 * the user.
4591 */
4592static int sctp_getsockopt_maxseg(struct sock *sk, int len,
4593 char __user *optval, int __user *optlen)
4594{
4595 int val;
4596
4597 if (len < sizeof(int))
4598 return -EINVAL;
4599
4600 len = sizeof(int);
4601
4602 val = sctp_sk(sk)->user_frag;
4603 if (put_user(len, optlen))
4604 return -EFAULT;
4605 if (copy_to_user(optval, &val, len))
4606 return -EFAULT;
4607
4608 return 0;
4609}
4610
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004611/*
4612 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
4613 * (chapter and verse is quoted at sctp_setsockopt_fragment_interleave())
4614 */
4615static int sctp_getsockopt_fragment_interleave(struct sock *sk, int len,
4616 char __user *optval, int __user *optlen)
4617{
4618 int val;
4619
4620 if (len < sizeof(int))
4621 return -EINVAL;
4622
4623 len = sizeof(int);
4624
4625 val = sctp_sk(sk)->frag_interleave;
4626 if (put_user(len, optlen))
4627 return -EFAULT;
4628 if (copy_to_user(optval, &val, len))
4629 return -EFAULT;
4630
4631 return 0;
4632}
4633
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07004634/*
4635 * 7.1.25. Set or Get the sctp partial delivery point
4636 * (chapter and verse is quoted at sctp_setsockopt_partial_delivery_point())
4637 */
4638static int sctp_getsockopt_partial_delivery_point(struct sock *sk, int len,
4639 char __user *optval,
4640 int __user *optlen)
4641{
4642 u32 val;
4643
4644 if (len < sizeof(u32))
4645 return -EINVAL;
4646
4647 len = sizeof(u32);
4648
4649 val = sctp_sk(sk)->pd_point;
4650 if (put_user(len, optlen))
4651 return -EFAULT;
4652 if (copy_to_user(optval, &val, len))
4653 return -EFAULT;
4654
4655 return -ENOTSUPP;
4656}
4657
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658SCTP_STATIC int sctp_getsockopt(struct sock *sk, int level, int optname,
4659 char __user *optval, int __user *optlen)
4660{
4661 int retval = 0;
4662 int len;
4663
Frank Filz3f7a87d2005-06-20 13:14:57 -07004664 SCTP_DEBUG_PRINTK("sctp_getsockopt(sk: %p... optname: %d)\n",
4665 sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666
4667 /* I can hardly begin to describe how wrong this is. This is
4668 * so broken as to be worse than useless. The API draft
4669 * REALLY is NOT helpful here... I am not convinced that the
4670 * semantics of getsockopt() with a level OTHER THAN SOL_SCTP
4671 * are at all well-founded.
4672 */
4673 if (level != SOL_SCTP) {
4674 struct sctp_af *af = sctp_sk(sk)->pf->af;
4675
4676 retval = af->getsockopt(sk, level, optname, optval, optlen);
4677 return retval;
4678 }
4679
4680 if (get_user(len, optlen))
4681 return -EFAULT;
4682
4683 sctp_lock_sock(sk);
4684
4685 switch (optname) {
4686 case SCTP_STATUS:
4687 retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen);
4688 break;
4689 case SCTP_DISABLE_FRAGMENTS:
4690 retval = sctp_getsockopt_disable_fragments(sk, len, optval,
4691 optlen);
4692 break;
4693 case SCTP_EVENTS:
4694 retval = sctp_getsockopt_events(sk, len, optval, optlen);
4695 break;
4696 case SCTP_AUTOCLOSE:
4697 retval = sctp_getsockopt_autoclose(sk, len, optval, optlen);
4698 break;
4699 case SCTP_SOCKOPT_PEELOFF:
4700 retval = sctp_getsockopt_peeloff(sk, len, optval, optlen);
4701 break;
4702 case SCTP_PEER_ADDR_PARAMS:
4703 retval = sctp_getsockopt_peer_addr_params(sk, len, optval,
4704 optlen);
4705 break;
Frank Filz77086102005-12-22 11:37:30 -08004706 case SCTP_DELAYED_ACK_TIME:
4707 retval = sctp_getsockopt_delayed_ack_time(sk, len, optval,
4708 optlen);
4709 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710 case SCTP_INITMSG:
4711 retval = sctp_getsockopt_initmsg(sk, len, optval, optlen);
4712 break;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004713 case SCTP_GET_PEER_ADDRS_NUM_OLD:
4714 retval = sctp_getsockopt_peer_addrs_num_old(sk, len, optval,
4715 optlen);
4716 break;
4717 case SCTP_GET_LOCAL_ADDRS_NUM_OLD:
4718 retval = sctp_getsockopt_local_addrs_num_old(sk, len, optval,
4719 optlen);
4720 break;
4721 case SCTP_GET_PEER_ADDRS_OLD:
4722 retval = sctp_getsockopt_peer_addrs_old(sk, len, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 optlen);
4724 break;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004725 case SCTP_GET_LOCAL_ADDRS_OLD:
4726 retval = sctp_getsockopt_local_addrs_old(sk, len, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727 optlen);
4728 break;
4729 case SCTP_GET_PEER_ADDRS:
4730 retval = sctp_getsockopt_peer_addrs(sk, len, optval,
4731 optlen);
4732 break;
4733 case SCTP_GET_LOCAL_ADDRS:
4734 retval = sctp_getsockopt_local_addrs(sk, len, optval,
4735 optlen);
4736 break;
4737 case SCTP_DEFAULT_SEND_PARAM:
4738 retval = sctp_getsockopt_default_send_param(sk, len,
4739 optval, optlen);
4740 break;
4741 case SCTP_PRIMARY_ADDR:
4742 retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen);
4743 break;
4744 case SCTP_NODELAY:
4745 retval = sctp_getsockopt_nodelay(sk, len, optval, optlen);
4746 break;
4747 case SCTP_RTOINFO:
4748 retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen);
4749 break;
4750 case SCTP_ASSOCINFO:
4751 retval = sctp_getsockopt_associnfo(sk, len, optval, optlen);
4752 break;
4753 case SCTP_I_WANT_MAPPED_V4_ADDR:
4754 retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen);
4755 break;
4756 case SCTP_MAXSEG:
4757 retval = sctp_getsockopt_maxseg(sk, len, optval, optlen);
4758 break;
4759 case SCTP_GET_PEER_ADDR_INFO:
4760 retval = sctp_getsockopt_peer_addr_info(sk, len, optval,
4761 optlen);
4762 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004763 case SCTP_ADAPTATION_LAYER:
4764 retval = sctp_getsockopt_adaptation_layer(sk, len, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765 optlen);
4766 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004767 case SCTP_CONTEXT:
4768 retval = sctp_getsockopt_context(sk, len, optval, optlen);
4769 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004770 case SCTP_FRAGMENT_INTERLEAVE:
4771 retval = sctp_getsockopt_fragment_interleave(sk, len, optval,
4772 optlen);
4773 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07004774 case SCTP_PARTIAL_DELIVERY_POINT:
4775 retval = sctp_getsockopt_partial_delivery_point(sk, len, optval,
4776 optlen);
4777 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778 default:
4779 retval = -ENOPROTOOPT;
4780 break;
4781 };
4782
4783 sctp_release_sock(sk);
4784 return retval;
4785}
4786
4787static void sctp_hash(struct sock *sk)
4788{
4789 /* STUB */
4790}
4791
4792static void sctp_unhash(struct sock *sk)
4793{
4794 /* STUB */
4795}
4796
4797/* Check if port is acceptable. Possibly find first available port.
4798 *
4799 * The port hash table (contained in the 'global' SCTP protocol storage
4800 * returned by struct sctp_protocol *sctp_get_protocol()). The hash
4801 * table is an array of 4096 lists (sctp_bind_hashbucket). Each
4802 * list (the list number is the port number hashed out, so as you
4803 * would expect from a hash function, all the ports in a given list have
4804 * such a number that hashes out to the same list number; you were
4805 * expecting that, right?); so each list has a set of ports, with a
4806 * link to the socket (struct sock) that uses it, the port number and
4807 * a fastreuse flag (FIXME: NPI ipg).
4808 */
4809static struct sctp_bind_bucket *sctp_bucket_create(
4810 struct sctp_bind_hashbucket *head, unsigned short snum);
4811
4812static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
4813{
4814 struct sctp_bind_hashbucket *head; /* hash list */
4815 struct sctp_bind_bucket *pp; /* hash list port iterator */
4816 unsigned short snum;
4817 int ret;
4818
Al Viro04afd8b2006-11-20 17:02:01 -08004819 snum = ntohs(addr->v4.sin_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820
4821 SCTP_DEBUG_PRINTK("sctp_get_port() begins, snum=%d\n", snum);
4822 sctp_local_bh_disable();
4823
4824 if (snum == 0) {
4825 /* Search for an available port.
4826 *
4827 * 'sctp_port_rover' was the last port assigned, so
4828 * we start to search from 'sctp_port_rover +
4829 * 1'. What we do is first check if port 'rover' is
4830 * already in the hash table; if not, we use that; if
4831 * it is, we try next.
4832 */
4833 int low = sysctl_local_port_range[0];
4834 int high = sysctl_local_port_range[1];
4835 int remaining = (high - low) + 1;
4836 int rover;
4837 int index;
4838
4839 sctp_spin_lock(&sctp_port_alloc_lock);
4840 rover = sctp_port_rover;
4841 do {
4842 rover++;
4843 if ((rover < low) || (rover > high))
4844 rover = low;
4845 index = sctp_phashfn(rover);
4846 head = &sctp_port_hashtable[index];
4847 sctp_spin_lock(&head->lock);
4848 for (pp = head->chain; pp; pp = pp->next)
4849 if (pp->port == rover)
4850 goto next;
4851 break;
4852 next:
4853 sctp_spin_unlock(&head->lock);
4854 } while (--remaining > 0);
4855 sctp_port_rover = rover;
4856 sctp_spin_unlock(&sctp_port_alloc_lock);
4857
4858 /* Exhausted local port range during search? */
4859 ret = 1;
4860 if (remaining <= 0)
4861 goto fail;
4862
4863 /* OK, here is the one we will use. HEAD (the port
4864 * hash table list entry) is non-NULL and we hold it's
4865 * mutex.
4866 */
4867 snum = rover;
4868 } else {
4869 /* We are given an specific port number; we verify
4870 * that it is not being used. If it is used, we will
4871 * exahust the search in the hash list corresponding
4872 * to the port number (snum) - we detect that with the
4873 * port iterator, pp being NULL.
4874 */
4875 head = &sctp_port_hashtable[sctp_phashfn(snum)];
4876 sctp_spin_lock(&head->lock);
4877 for (pp = head->chain; pp; pp = pp->next) {
4878 if (pp->port == snum)
4879 goto pp_found;
4880 }
4881 }
4882 pp = NULL;
4883 goto pp_not_found;
4884pp_found:
4885 if (!hlist_empty(&pp->owner)) {
4886 /* We had a port hash table hit - there is an
4887 * available port (pp != NULL) and it is being
4888 * used by other socket (pp->owner not empty); that other
4889 * socket is going to be sk2.
4890 */
4891 int reuse = sk->sk_reuse;
4892 struct sock *sk2;
4893 struct hlist_node *node;
4894
4895 SCTP_DEBUG_PRINTK("sctp_get_port() found a possible match\n");
4896 if (pp->fastreuse && sk->sk_reuse)
4897 goto success;
4898
4899 /* Run through the list of sockets bound to the port
4900 * (pp->port) [via the pointers bind_next and
4901 * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one,
4902 * we get the endpoint they describe and run through
4903 * the endpoint's list of IP (v4 or v6) addresses,
4904 * comparing each of the addresses with the address of
4905 * the socket sk. If we find a match, then that means
4906 * that this port/socket (sk) combination are already
4907 * in an endpoint.
4908 */
4909 sk_for_each_bound(sk2, node, &pp->owner) {
4910 struct sctp_endpoint *ep2;
4911 ep2 = sctp_sk(sk2)->ep;
4912
4913 if (reuse && sk2->sk_reuse)
4914 continue;
4915
Al Viro7e1e4a22006-11-20 17:05:43 -08004916 if (sctp_bind_addr_match(&ep2->base.bind_addr, addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917 sctp_sk(sk))) {
4918 ret = (long)sk2;
4919 goto fail_unlock;
4920 }
4921 }
4922 SCTP_DEBUG_PRINTK("sctp_get_port(): Found a match\n");
4923 }
4924pp_not_found:
4925 /* If there was a hash table miss, create a new port. */
4926 ret = 1;
4927 if (!pp && !(pp = sctp_bucket_create(head, snum)))
4928 goto fail_unlock;
4929
4930 /* In either case (hit or miss), make sure fastreuse is 1 only
4931 * if sk->sk_reuse is too (that is, if the caller requested
4932 * SO_REUSEADDR on this socket -sk-).
4933 */
4934 if (hlist_empty(&pp->owner))
4935 pp->fastreuse = sk->sk_reuse ? 1 : 0;
4936 else if (pp->fastreuse && !sk->sk_reuse)
4937 pp->fastreuse = 0;
4938
4939 /* We are set, so fill up all the data in the hash table
4940 * entry, tie the socket list information with the rest of the
4941 * sockets FIXME: Blurry, NPI (ipg).
4942 */
4943success:
4944 inet_sk(sk)->num = snum;
4945 if (!sctp_sk(sk)->bind_hash) {
4946 sk_add_bind_node(sk, &pp->owner);
4947 sctp_sk(sk)->bind_hash = pp;
4948 }
4949 ret = 0;
4950
4951fail_unlock:
4952 sctp_spin_unlock(&head->lock);
4953
4954fail:
4955 sctp_local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956 return ret;
4957}
4958
4959/* Assign a 'snum' port to the socket. If snum == 0, an ephemeral
4960 * port is requested.
4961 */
4962static int sctp_get_port(struct sock *sk, unsigned short snum)
4963{
4964 long ret;
4965 union sctp_addr addr;
4966 struct sctp_af *af = sctp_sk(sk)->pf->af;
4967
4968 /* Set up a dummy address struct from the sk. */
4969 af->from_sk(&addr, sk);
4970 addr.v4.sin_port = htons(snum);
4971
4972 /* Note: sk->sk_num gets filled in if ephemeral port request. */
4973 ret = sctp_get_port_local(sk, &addr);
4974
4975 return (ret ? 1 : 0);
4976}
4977
4978/*
4979 * 3.1.3 listen() - UDP Style Syntax
4980 *
4981 * By default, new associations are not accepted for UDP style sockets.
4982 * An application uses listen() to mark a socket as being able to
4983 * accept new associations.
4984 */
4985SCTP_STATIC int sctp_seqpacket_listen(struct sock *sk, int backlog)
4986{
4987 struct sctp_sock *sp = sctp_sk(sk);
4988 struct sctp_endpoint *ep = sp->ep;
4989
4990 /* Only UDP style sockets that are not peeled off are allowed to
4991 * listen().
4992 */
4993 if (!sctp_style(sk, UDP))
4994 return -EINVAL;
4995
4996 /* If backlog is zero, disable listening. */
4997 if (!backlog) {
4998 if (sctp_sstate(sk, CLOSED))
4999 return 0;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005000
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001 sctp_unhash_endpoint(ep);
5002 sk->sk_state = SCTP_SS_CLOSED;
5003 }
5004
5005 /* Return if we are already listening. */
5006 if (sctp_sstate(sk, LISTENING))
5007 return 0;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005008
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009 /*
5010 * If a bind() or sctp_bindx() is not called prior to a listen()
5011 * call that allows new associations to be accepted, the system
5012 * picks an ephemeral port and will choose an address set equivalent
5013 * to binding with a wildcard address.
5014 *
5015 * This is not currently spelled out in the SCTP sockets
5016 * extensions draft, but follows the practice as seen in TCP
5017 * sockets.
5018 */
5019 if (!ep->base.bind_addr.port) {
5020 if (sctp_autobind(sk))
5021 return -EAGAIN;
5022 }
5023 sk->sk_state = SCTP_SS_LISTENING;
5024 sctp_hash_endpoint(ep);
5025 return 0;
5026}
5027
5028/*
5029 * 4.1.3 listen() - TCP Style Syntax
5030 *
5031 * Applications uses listen() to ready the SCTP endpoint for accepting
5032 * inbound associations.
5033 */
5034SCTP_STATIC int sctp_stream_listen(struct sock *sk, int backlog)
5035{
5036 struct sctp_sock *sp = sctp_sk(sk);
5037 struct sctp_endpoint *ep = sp->ep;
5038
5039 /* If backlog is zero, disable listening. */
5040 if (!backlog) {
5041 if (sctp_sstate(sk, CLOSED))
5042 return 0;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005043
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044 sctp_unhash_endpoint(ep);
5045 sk->sk_state = SCTP_SS_CLOSED;
5046 }
5047
5048 if (sctp_sstate(sk, LISTENING))
5049 return 0;
5050
5051 /*
5052 * If a bind() or sctp_bindx() is not called prior to a listen()
5053 * call that allows new associations to be accepted, the system
5054 * picks an ephemeral port and will choose an address set equivalent
5055 * to binding with a wildcard address.
5056 *
5057 * This is not currently spelled out in the SCTP sockets
5058 * extensions draft, but follows the practice as seen in TCP
5059 * sockets.
5060 */
5061 if (!ep->base.bind_addr.port) {
5062 if (sctp_autobind(sk))
5063 return -EAGAIN;
5064 }
5065 sk->sk_state = SCTP_SS_LISTENING;
5066 sk->sk_max_ack_backlog = backlog;
5067 sctp_hash_endpoint(ep);
5068 return 0;
5069}
5070
5071/*
5072 * Move a socket to LISTENING state.
5073 */
5074int sctp_inet_listen(struct socket *sock, int backlog)
5075{
5076 struct sock *sk = sock->sk;
Herbert Xu1b489e12006-08-20 15:07:14 +10005077 struct crypto_hash *tfm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078 int err = -EINVAL;
5079
5080 if (unlikely(backlog < 0))
5081 goto out;
5082
5083 sctp_lock_sock(sk);
5084
5085 if (sock->state != SS_UNCONNECTED)
5086 goto out;
5087
5088 /* Allocate HMAC for generating cookie. */
5089 if (sctp_hmac_alg) {
Herbert Xu1b489e12006-08-20 15:07:14 +10005090 tfm = crypto_alloc_hash(sctp_hmac_alg, 0, CRYPTO_ALG_ASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005091 if (!tfm) {
5092 err = -ENOSYS;
5093 goto out;
5094 }
5095 }
5096
5097 switch (sock->type) {
5098 case SOCK_SEQPACKET:
5099 err = sctp_seqpacket_listen(sk, backlog);
5100 break;
5101 case SOCK_STREAM:
5102 err = sctp_stream_listen(sk, backlog);
5103 break;
5104 default:
5105 break;
5106 };
5107 if (err)
5108 goto cleanup;
5109
5110 /* Store away the transform reference. */
5111 sctp_sk(sk)->hmac = tfm;
5112out:
5113 sctp_release_sock(sk);
5114 return err;
5115cleanup:
Herbert Xu1b489e12006-08-20 15:07:14 +10005116 crypto_free_hash(tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117 goto out;
5118}
5119
5120/*
5121 * This function is done by modeling the current datagram_poll() and the
5122 * tcp_poll(). Note that, based on these implementations, we don't
5123 * lock the socket in this function, even though it seems that,
5124 * ideally, locking or some other mechanisms can be used to ensure
Neil Horman9bffc4a2005-12-19 14:24:40 -08005125 * the integrity of the counters (sndbuf and wmem_alloc) used
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126 * in this place. We assume that we don't need locks either until proven
5127 * otherwise.
5128 *
5129 * Another thing to note is that we include the Async I/O support
5130 * here, again, by modeling the current TCP/UDP code. We don't have
5131 * a good way to test with it yet.
5132 */
5133unsigned int sctp_poll(struct file *file, struct socket *sock, poll_table *wait)
5134{
5135 struct sock *sk = sock->sk;
5136 struct sctp_sock *sp = sctp_sk(sk);
5137 unsigned int mask;
5138
5139 poll_wait(file, sk->sk_sleep, wait);
5140
5141 /* A TCP-style listening socket becomes readable when the accept queue
5142 * is not empty.
5143 */
5144 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
5145 return (!list_empty(&sp->ep->asocs)) ?
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005146 (POLLIN | POLLRDNORM) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147
5148 mask = 0;
5149
5150 /* Is there any exceptional events? */
5151 if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
5152 mask |= POLLERR;
Davide Libenzif348d702006-03-25 03:07:39 -08005153 if (sk->sk_shutdown & RCV_SHUTDOWN)
5154 mask |= POLLRDHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155 if (sk->sk_shutdown == SHUTDOWN_MASK)
5156 mask |= POLLHUP;
5157
5158 /* Is it readable? Reconsider this code with TCP-style support. */
5159 if (!skb_queue_empty(&sk->sk_receive_queue) ||
5160 (sk->sk_shutdown & RCV_SHUTDOWN))
5161 mask |= POLLIN | POLLRDNORM;
5162
5163 /* The association is either gone or not ready. */
5164 if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED))
5165 return mask;
5166
5167 /* Is it writable? */
5168 if (sctp_writeable(sk)) {
5169 mask |= POLLOUT | POLLWRNORM;
5170 } else {
5171 set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
5172 /*
5173 * Since the socket is not locked, the buffer
5174 * might be made available after the writeable check and
5175 * before the bit is set. This could cause a lost I/O
5176 * signal. tcp_poll() has a race breaker for this race
5177 * condition. Based on their implementation, we put
5178 * in the following code to cover it as well.
5179 */
5180 if (sctp_writeable(sk))
5181 mask |= POLLOUT | POLLWRNORM;
5182 }
5183 return mask;
5184}
5185
5186/********************************************************************
5187 * 2nd Level Abstractions
5188 ********************************************************************/
5189
5190static struct sctp_bind_bucket *sctp_bucket_create(
5191 struct sctp_bind_hashbucket *head, unsigned short snum)
5192{
5193 struct sctp_bind_bucket *pp;
5194
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08005195 pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196 SCTP_DBG_OBJCNT_INC(bind_bucket);
5197 if (pp) {
5198 pp->port = snum;
5199 pp->fastreuse = 0;
5200 INIT_HLIST_HEAD(&pp->owner);
5201 if ((pp->next = head->chain) != NULL)
5202 pp->next->pprev = &pp->next;
5203 head->chain = pp;
5204 pp->pprev = &head->chain;
5205 }
5206 return pp;
5207}
5208
5209/* Caller must hold hashbucket lock for this tb with local BH disabled */
5210static void sctp_bucket_destroy(struct sctp_bind_bucket *pp)
5211{
Sridhar Samudrala37fa6872006-07-21 14:45:47 -07005212 if (pp && hlist_empty(&pp->owner)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213 if (pp->next)
5214 pp->next->pprev = pp->pprev;
5215 *(pp->pprev) = pp->next;
5216 kmem_cache_free(sctp_bucket_cachep, pp);
5217 SCTP_DBG_OBJCNT_DEC(bind_bucket);
5218 }
5219}
5220
5221/* Release this socket's reference to a local port. */
5222static inline void __sctp_put_port(struct sock *sk)
5223{
5224 struct sctp_bind_hashbucket *head =
5225 &sctp_port_hashtable[sctp_phashfn(inet_sk(sk)->num)];
5226 struct sctp_bind_bucket *pp;
5227
5228 sctp_spin_lock(&head->lock);
5229 pp = sctp_sk(sk)->bind_hash;
5230 __sk_del_bind_node(sk);
5231 sctp_sk(sk)->bind_hash = NULL;
5232 inet_sk(sk)->num = 0;
5233 sctp_bucket_destroy(pp);
5234 sctp_spin_unlock(&head->lock);
5235}
5236
5237void sctp_put_port(struct sock *sk)
5238{
5239 sctp_local_bh_disable();
5240 __sctp_put_port(sk);
5241 sctp_local_bh_enable();
5242}
5243
5244/*
5245 * The system picks an ephemeral port and choose an address set equivalent
5246 * to binding with a wildcard address.
5247 * One of those addresses will be the primary address for the association.
5248 * This automatically enables the multihoming capability of SCTP.
5249 */
5250static int sctp_autobind(struct sock *sk)
5251{
5252 union sctp_addr autoaddr;
5253 struct sctp_af *af;
Al Viro6fbfa9f2006-11-20 17:24:53 -08005254 __be16 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255
5256 /* Initialize a local sockaddr structure to INADDR_ANY. */
5257 af = sctp_sk(sk)->pf->af;
5258
5259 port = htons(inet_sk(sk)->num);
5260 af->inaddr_any(&autoaddr, port);
5261
5262 return sctp_do_bind(sk, &autoaddr, af->sockaddr_len);
5263}
5264
5265/* Parse out IPPROTO_SCTP CMSG headers. Perform only minimal validation.
5266 *
5267 * From RFC 2292
5268 * 4.2 The cmsghdr Structure *
5269 *
5270 * When ancillary data is sent or received, any number of ancillary data
5271 * objects can be specified by the msg_control and msg_controllen members of
5272 * the msghdr structure, because each object is preceded by
5273 * a cmsghdr structure defining the object's length (the cmsg_len member).
5274 * Historically Berkeley-derived implementations have passed only one object
5275 * at a time, but this API allows multiple objects to be
5276 * passed in a single call to sendmsg() or recvmsg(). The following example
5277 * shows two ancillary data objects in a control buffer.
5278 *
5279 * |<--------------------------- msg_controllen -------------------------->|
5280 * | |
5281 *
5282 * |<----- ancillary data object ----->|<----- ancillary data object ----->|
5283 *
5284 * |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->|
5285 * | | |
5286 *
5287 * |<---------- cmsg_len ---------->| |<--------- cmsg_len ----------->| |
5288 *
5289 * |<--------- CMSG_LEN() --------->| |<-------- CMSG_LEN() ---------->| |
5290 * | | | | |
5291 *
5292 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
5293 * |cmsg_|cmsg_|cmsg_|XX| |XX|cmsg_|cmsg_|cmsg_|XX| |XX|
5294 *
5295 * |len |level|type |XX|cmsg_data[]|XX|len |level|type |XX|cmsg_data[]|XX|
5296 *
5297 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
5298 * ^
5299 * |
5300 *
5301 * msg_control
5302 * points here
5303 */
5304SCTP_STATIC int sctp_msghdr_parse(const struct msghdr *msg,
5305 sctp_cmsgs_t *cmsgs)
5306{
5307 struct cmsghdr *cmsg;
5308
5309 for (cmsg = CMSG_FIRSTHDR(msg);
5310 cmsg != NULL;
5311 cmsg = CMSG_NXTHDR((struct msghdr*)msg, cmsg)) {
5312 if (!CMSG_OK(msg, cmsg))
5313 return -EINVAL;
5314
5315 /* Should we parse this header or ignore? */
5316 if (cmsg->cmsg_level != IPPROTO_SCTP)
5317 continue;
5318
5319 /* Strictly check lengths following example in SCM code. */
5320 switch (cmsg->cmsg_type) {
5321 case SCTP_INIT:
5322 /* SCTP Socket API Extension
5323 * 5.2.1 SCTP Initiation Structure (SCTP_INIT)
5324 *
5325 * This cmsghdr structure provides information for
5326 * initializing new SCTP associations with sendmsg().
5327 * The SCTP_INITMSG socket option uses this same data
5328 * structure. This structure is not used for
5329 * recvmsg().
5330 *
5331 * cmsg_level cmsg_type cmsg_data[]
5332 * ------------ ------------ ----------------------
5333 * IPPROTO_SCTP SCTP_INIT struct sctp_initmsg
5334 */
5335 if (cmsg->cmsg_len !=
5336 CMSG_LEN(sizeof(struct sctp_initmsg)))
5337 return -EINVAL;
5338 cmsgs->init = (struct sctp_initmsg *)CMSG_DATA(cmsg);
5339 break;
5340
5341 case SCTP_SNDRCV:
5342 /* SCTP Socket API Extension
5343 * 5.2.2 SCTP Header Information Structure(SCTP_SNDRCV)
5344 *
5345 * This cmsghdr structure specifies SCTP options for
5346 * sendmsg() and describes SCTP header information
5347 * about a received message through recvmsg().
5348 *
5349 * cmsg_level cmsg_type cmsg_data[]
5350 * ------------ ------------ ----------------------
5351 * IPPROTO_SCTP SCTP_SNDRCV struct sctp_sndrcvinfo
5352 */
5353 if (cmsg->cmsg_len !=
5354 CMSG_LEN(sizeof(struct sctp_sndrcvinfo)))
5355 return -EINVAL;
5356
5357 cmsgs->info =
5358 (struct sctp_sndrcvinfo *)CMSG_DATA(cmsg);
5359
5360 /* Minimally, validate the sinfo_flags. */
5361 if (cmsgs->info->sinfo_flags &
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07005362 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
5363 SCTP_ABORT | SCTP_EOF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364 return -EINVAL;
5365 break;
5366
5367 default:
5368 return -EINVAL;
5369 };
5370 }
5371 return 0;
5372}
5373
5374/*
5375 * Wait for a packet..
5376 * Note: This function is the same function as in core/datagram.c
5377 * with a few modifications to make lksctp work.
5378 */
5379static int sctp_wait_for_packet(struct sock * sk, int *err, long *timeo_p)
5380{
5381 int error;
5382 DEFINE_WAIT(wait);
5383
5384 prepare_to_wait_exclusive(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
5385
5386 /* Socket errors? */
5387 error = sock_error(sk);
5388 if (error)
5389 goto out;
5390
5391 if (!skb_queue_empty(&sk->sk_receive_queue))
5392 goto ready;
5393
5394 /* Socket shut down? */
5395 if (sk->sk_shutdown & RCV_SHUTDOWN)
5396 goto out;
5397
5398 /* Sequenced packets can come disconnected. If so we report the
5399 * problem.
5400 */
5401 error = -ENOTCONN;
5402
5403 /* Is there a good reason to think that we may receive some data? */
5404 if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING))
5405 goto out;
5406
5407 /* Handle signals. */
5408 if (signal_pending(current))
5409 goto interrupted;
5410
5411 /* Let another process have a go. Since we are going to sleep
5412 * anyway. Note: This may cause odd behaviors if the message
5413 * does not fit in the user's buffer, but this seems to be the
5414 * only way to honor MSG_DONTWAIT realistically.
5415 */
5416 sctp_release_sock(sk);
5417 *timeo_p = schedule_timeout(*timeo_p);
5418 sctp_lock_sock(sk);
5419
5420ready:
5421 finish_wait(sk->sk_sleep, &wait);
5422 return 0;
5423
5424interrupted:
5425 error = sock_intr_errno(*timeo_p);
5426
5427out:
5428 finish_wait(sk->sk_sleep, &wait);
5429 *err = error;
5430 return error;
5431}
5432
5433/* Receive a datagram.
5434 * Note: This is pretty much the same routine as in core/datagram.c
5435 * with a few changes to make lksctp work.
5436 */
5437static struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags,
5438 int noblock, int *err)
5439{
5440 int error;
5441 struct sk_buff *skb;
5442 long timeo;
5443
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444 timeo = sock_rcvtimeo(sk, noblock);
5445
5446 SCTP_DEBUG_PRINTK("Timeout: timeo: %ld, MAX: %ld.\n",
5447 timeo, MAX_SCHEDULE_TIMEOUT);
5448
5449 do {
5450 /* Again only user level code calls this function,
5451 * so nothing interrupt level
5452 * will suddenly eat the receive_queue.
5453 *
5454 * Look at current nfs client by the way...
5455 * However, this function was corrent in any case. 8)
5456 */
5457 if (flags & MSG_PEEK) {
Herbert Xu1e061ab2005-06-18 22:56:42 -07005458 spin_lock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459 skb = skb_peek(&sk->sk_receive_queue);
5460 if (skb)
5461 atomic_inc(&skb->users);
Herbert Xu1e061ab2005-06-18 22:56:42 -07005462 spin_unlock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463 } else {
5464 skb = skb_dequeue(&sk->sk_receive_queue);
5465 }
5466
5467 if (skb)
5468 return skb;
5469
Neil Horman6736dc32005-12-02 20:30:06 -08005470 /* Caller is allowed not to check sk->sk_err before calling. */
5471 error = sock_error(sk);
5472 if (error)
5473 goto no_packet;
5474
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475 if (sk->sk_shutdown & RCV_SHUTDOWN)
5476 break;
5477
5478 /* User doesn't want to wait. */
5479 error = -EAGAIN;
5480 if (!timeo)
5481 goto no_packet;
5482 } while (sctp_wait_for_packet(sk, err, &timeo) == 0);
5483
5484 return NULL;
5485
5486no_packet:
5487 *err = error;
5488 return NULL;
5489}
5490
5491/* If sndbuf has changed, wake up per association sndbuf waiters. */
5492static void __sctp_write_space(struct sctp_association *asoc)
5493{
5494 struct sock *sk = asoc->base.sk;
5495 struct socket *sock = sk->sk_socket;
5496
5497 if ((sctp_wspace(asoc) > 0) && sock) {
5498 if (waitqueue_active(&asoc->wait))
5499 wake_up_interruptible(&asoc->wait);
5500
5501 if (sctp_writeable(sk)) {
5502 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
5503 wake_up_interruptible(sk->sk_sleep);
5504
5505 /* Note that we try to include the Async I/O support
5506 * here by modeling from the current TCP/UDP code.
5507 * We have not tested with it yet.
5508 */
5509 if (sock->fasync_list &&
5510 !(sk->sk_shutdown & SEND_SHUTDOWN))
5511 sock_wake_async(sock, 2, POLL_OUT);
5512 }
5513 }
5514}
5515
5516/* Do accounting for the sndbuf space.
5517 * Decrement the used sndbuf space of the corresponding association by the
5518 * data size which was just transmitted(freed).
5519 */
5520static void sctp_wfree(struct sk_buff *skb)
5521{
5522 struct sctp_association *asoc;
5523 struct sctp_chunk *chunk;
5524 struct sock *sk;
5525
5526 /* Get the saved chunk pointer. */
5527 chunk = *((struct sctp_chunk **)(skb->cb));
5528 asoc = chunk->asoc;
5529 sk = asoc->base.sk;
Neil Horman4eb701d2005-04-28 12:02:04 -07005530 asoc->sndbuf_used -= SCTP_DATA_SNDSIZE(chunk) +
5531 sizeof(struct sk_buff) +
5532 sizeof(struct sctp_chunk);
5533
Neil Horman4eb701d2005-04-28 12:02:04 -07005534 atomic_sub(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
5535
5536 sock_wfree(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537 __sctp_write_space(asoc);
5538
5539 sctp_association_put(asoc);
5540}
5541
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07005542/* Do accounting for the receive space on the socket.
5543 * Accounting for the association is done in ulpevent.c
5544 * We set this as a destructor for the cloned data skbs so that
5545 * accounting is done at the correct time.
5546 */
5547void sctp_sock_rfree(struct sk_buff *skb)
5548{
5549 struct sock *sk = skb->sk;
5550 struct sctp_ulpevent *event = sctp_skb2event(skb);
5551
5552 atomic_sub(event->rmem_len, &sk->sk_rmem_alloc);
5553}
5554
5555
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556/* Helper function to wait for space in the sndbuf. */
5557static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
5558 size_t msg_len)
5559{
5560 struct sock *sk = asoc->base.sk;
5561 int err = 0;
5562 long current_timeo = *timeo_p;
5563 DEFINE_WAIT(wait);
5564
5565 SCTP_DEBUG_PRINTK("wait_for_sndbuf: asoc=%p, timeo=%ld, msg_len=%zu\n",
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005566 asoc, (long)(*timeo_p), msg_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567
5568 /* Increment the association's refcnt. */
5569 sctp_association_hold(asoc);
5570
5571 /* Wait on the association specific sndbuf space. */
5572 for (;;) {
5573 prepare_to_wait_exclusive(&asoc->wait, &wait,
5574 TASK_INTERRUPTIBLE);
5575 if (!*timeo_p)
5576 goto do_nonblock;
5577 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
5578 asoc->base.dead)
5579 goto do_error;
5580 if (signal_pending(current))
5581 goto do_interrupted;
5582 if (msg_len <= sctp_wspace(asoc))
5583 break;
5584
5585 /* Let another process have a go. Since we are going
5586 * to sleep anyway.
5587 */
5588 sctp_release_sock(sk);
5589 current_timeo = schedule_timeout(current_timeo);
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07005590 BUG_ON(sk != asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591 sctp_lock_sock(sk);
5592
5593 *timeo_p = current_timeo;
5594 }
5595
5596out:
5597 finish_wait(&asoc->wait, &wait);
5598
5599 /* Release the association's refcnt. */
5600 sctp_association_put(asoc);
5601
5602 return err;
5603
5604do_error:
5605 err = -EPIPE;
5606 goto out;
5607
5608do_interrupted:
5609 err = sock_intr_errno(*timeo_p);
5610 goto out;
5611
5612do_nonblock:
5613 err = -EAGAIN;
5614 goto out;
5615}
5616
5617/* If socket sndbuf has changed, wake up all per association waiters. */
5618void sctp_write_space(struct sock *sk)
5619{
5620 struct sctp_association *asoc;
5621 struct list_head *pos;
5622
5623 /* Wake up the tasks in each wait queue. */
5624 list_for_each(pos, &((sctp_sk(sk))->ep->asocs)) {
5625 asoc = list_entry(pos, struct sctp_association, asocs);
5626 __sctp_write_space(asoc);
5627 }
5628}
5629
5630/* Is there any sndbuf space available on the socket?
5631 *
Neil Horman9bffc4a2005-12-19 14:24:40 -08005632 * Note that sk_wmem_alloc is the sum of the send buffers on all of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633 * associations on the same socket. For a UDP-style socket with
5634 * multiple associations, it is possible for it to be "unwriteable"
5635 * prematurely. I assume that this is acceptable because
5636 * a premature "unwriteable" is better than an accidental "writeable" which
5637 * would cause an unwanted block under certain circumstances. For the 1-1
5638 * UDP-style sockets or TCP-style sockets, this code should work.
5639 * - Daisy
5640 */
5641static int sctp_writeable(struct sock *sk)
5642{
5643 int amt = 0;
5644
Neil Horman9bffc4a2005-12-19 14:24:40 -08005645 amt = sk->sk_sndbuf - atomic_read(&sk->sk_wmem_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646 if (amt < 0)
5647 amt = 0;
5648 return amt;
5649}
5650
5651/* Wait for an association to go into ESTABLISHED state. If timeout is 0,
5652 * returns immediately with EINPROGRESS.
5653 */
5654static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p)
5655{
5656 struct sock *sk = asoc->base.sk;
5657 int err = 0;
5658 long current_timeo = *timeo_p;
5659 DEFINE_WAIT(wait);
5660
5661 SCTP_DEBUG_PRINTK("%s: asoc=%p, timeo=%ld\n", __FUNCTION__, asoc,
5662 (long)(*timeo_p));
5663
5664 /* Increment the association's refcnt. */
5665 sctp_association_hold(asoc);
5666
5667 for (;;) {
5668 prepare_to_wait_exclusive(&asoc->wait, &wait,
5669 TASK_INTERRUPTIBLE);
5670 if (!*timeo_p)
5671 goto do_nonblock;
5672 if (sk->sk_shutdown & RCV_SHUTDOWN)
5673 break;
5674 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
5675 asoc->base.dead)
5676 goto do_error;
5677 if (signal_pending(current))
5678 goto do_interrupted;
5679
5680 if (sctp_state(asoc, ESTABLISHED))
5681 break;
5682
5683 /* Let another process have a go. Since we are going
5684 * to sleep anyway.
5685 */
5686 sctp_release_sock(sk);
5687 current_timeo = schedule_timeout(current_timeo);
5688 sctp_lock_sock(sk);
5689
5690 *timeo_p = current_timeo;
5691 }
5692
5693out:
5694 finish_wait(&asoc->wait, &wait);
5695
5696 /* Release the association's refcnt. */
5697 sctp_association_put(asoc);
5698
5699 return err;
5700
5701do_error:
Vlad Yasevich81845c22006-01-30 15:59:54 -08005702 if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703 err = -ETIMEDOUT;
5704 else
5705 err = -ECONNREFUSED;
5706 goto out;
5707
5708do_interrupted:
5709 err = sock_intr_errno(*timeo_p);
5710 goto out;
5711
5712do_nonblock:
5713 err = -EINPROGRESS;
5714 goto out;
5715}
5716
5717static int sctp_wait_for_accept(struct sock *sk, long timeo)
5718{
5719 struct sctp_endpoint *ep;
5720 int err = 0;
5721 DEFINE_WAIT(wait);
5722
5723 ep = sctp_sk(sk)->ep;
5724
5725
5726 for (;;) {
5727 prepare_to_wait_exclusive(sk->sk_sleep, &wait,
5728 TASK_INTERRUPTIBLE);
5729
5730 if (list_empty(&ep->asocs)) {
5731 sctp_release_sock(sk);
5732 timeo = schedule_timeout(timeo);
5733 sctp_lock_sock(sk);
5734 }
5735
5736 err = -EINVAL;
5737 if (!sctp_sstate(sk, LISTENING))
5738 break;
5739
5740 err = 0;
5741 if (!list_empty(&ep->asocs))
5742 break;
5743
5744 err = sock_intr_errno(timeo);
5745 if (signal_pending(current))
5746 break;
5747
5748 err = -EAGAIN;
5749 if (!timeo)
5750 break;
5751 }
5752
5753 finish_wait(sk->sk_sleep, &wait);
5754
5755 return err;
5756}
5757
5758void sctp_wait_for_close(struct sock *sk, long timeout)
5759{
5760 DEFINE_WAIT(wait);
5761
5762 do {
5763 prepare_to_wait(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
5764 if (list_empty(&sctp_sk(sk)->ep->asocs))
5765 break;
5766 sctp_release_sock(sk);
5767 timeout = schedule_timeout(timeout);
5768 sctp_lock_sock(sk);
5769 } while (!signal_pending(current) && timeout);
5770
5771 finish_wait(sk->sk_sleep, &wait);
5772}
5773
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07005774static void sctp_sock_rfree_frag(struct sk_buff *skb)
5775{
5776 struct sk_buff *frag;
5777
5778 if (!skb->data_len)
5779 goto done;
5780
5781 /* Don't forget the fragments. */
5782 for (frag = skb_shinfo(skb)->frag_list; frag; frag = frag->next)
5783 sctp_sock_rfree_frag(frag);
5784
5785done:
5786 sctp_sock_rfree(skb);
5787}
5788
5789static void sctp_skb_set_owner_r_frag(struct sk_buff *skb, struct sock *sk)
5790{
5791 struct sk_buff *frag;
5792
5793 if (!skb->data_len)
5794 goto done;
5795
5796 /* Don't forget the fragments. */
5797 for (frag = skb_shinfo(skb)->frag_list; frag; frag = frag->next)
5798 sctp_skb_set_owner_r_frag(frag, sk);
5799
5800done:
5801 sctp_skb_set_owner_r(skb, sk);
5802}
5803
Linus Torvalds1da177e2005-04-16 15:20:36 -07005804/* Populate the fields of the newsk from the oldsk and migrate the assoc
5805 * and its messages to the newsk.
5806 */
5807static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
5808 struct sctp_association *assoc,
5809 sctp_socket_type_t type)
5810{
5811 struct sctp_sock *oldsp = sctp_sk(oldsk);
5812 struct sctp_sock *newsp = sctp_sk(newsk);
5813 struct sctp_bind_bucket *pp; /* hash list port iterator */
5814 struct sctp_endpoint *newep = newsp->ep;
5815 struct sk_buff *skb, *tmp;
5816 struct sctp_ulpevent *event;
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07005817 int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818
5819 /* Migrate socket buffer sizes and all the socket level options to the
5820 * new socket.
5821 */
5822 newsk->sk_sndbuf = oldsk->sk_sndbuf;
5823 newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
5824 /* Brute force copy old sctp opt. */
5825 inet_sk_copy_descendant(newsk, oldsk);
5826
5827 /* Restore the ep value that was overwritten with the above structure
5828 * copy.
5829 */
5830 newsp->ep = newep;
5831 newsp->hmac = NULL;
5832
5833 /* Hook this new socket in to the bind_hash list. */
5834 pp = sctp_sk(oldsk)->bind_hash;
5835 sk_add_bind_node(newsk, &pp->owner);
5836 sctp_sk(newsk)->bind_hash = pp;
5837 inet_sk(newsk)->num = inet_sk(oldsk)->num;
5838
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07005839 /* Copy the bind_addr list from the original endpoint to the new
5840 * endpoint so that we can handle restarts properly
5841 */
Vladislav Yasevicheb5fa392006-08-22 00:23:13 -07005842 if (PF_INET6 == assoc->base.sk->sk_family)
5843 flags = SCTP_ADDR6_ALLOWED;
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07005844 if (assoc->peer.ipv4_address)
5845 flags |= SCTP_ADDR4_PEERSUPP;
5846 if (assoc->peer.ipv6_address)
5847 flags |= SCTP_ADDR6_PEERSUPP;
5848 sctp_bind_addr_copy(&newsp->ep->base.bind_addr,
5849 &oldsp->ep->base.bind_addr,
5850 SCTP_SCOPE_GLOBAL, GFP_KERNEL, flags);
5851
Linus Torvalds1da177e2005-04-16 15:20:36 -07005852 /* Move any messages in the old socket's receive queue that are for the
5853 * peeled off association to the new socket's receive queue.
5854 */
5855 sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) {
5856 event = sctp_skb2event(skb);
5857 if (event->asoc == assoc) {
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07005858 sctp_sock_rfree_frag(skb);
David S. Miller8728b832005-08-09 19:25:21 -07005859 __skb_unlink(skb, &oldsk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860 __skb_queue_tail(&newsk->sk_receive_queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07005861 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005862 }
5863 }
5864
5865 /* Clean up any messages pending delivery due to partial
5866 * delivery. Three cases:
5867 * 1) No partial deliver; no work.
5868 * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby.
5869 * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue.
5870 */
5871 skb_queue_head_init(&newsp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07005872 atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005873
Vlad Yasevichb6e13312007-04-20 12:23:15 -07005874 if (atomic_read(&sctp_sk(oldsk)->pd_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875 struct sk_buff_head *queue;
5876
5877 /* Decide which queue to move pd_lobby skbs to. */
5878 if (assoc->ulpq.pd_mode) {
5879 queue = &newsp->pd_lobby;
5880 } else
5881 queue = &newsk->sk_receive_queue;
5882
5883 /* Walk through the pd_lobby, looking for skbs that
5884 * need moved to the new socket.
5885 */
5886 sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) {
5887 event = sctp_skb2event(skb);
5888 if (event->asoc == assoc) {
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07005889 sctp_sock_rfree_frag(skb);
David S. Miller8728b832005-08-09 19:25:21 -07005890 __skb_unlink(skb, &oldsp->pd_lobby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005891 __skb_queue_tail(queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07005892 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005893 }
5894 }
5895
5896 /* Clear up any skbs waiting for the partial
5897 * delivery to finish.
5898 */
5899 if (assoc->ulpq.pd_mode)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07005900 sctp_clear_pd(oldsk, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901
5902 }
5903
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07005904 sctp_skb_for_each(skb, &assoc->ulpq.reasm, tmp) {
5905 sctp_sock_rfree_frag(skb);
5906 sctp_skb_set_owner_r_frag(skb, newsk);
5907 }
5908
5909 sctp_skb_for_each(skb, &assoc->ulpq.lobby, tmp) {
5910 sctp_sock_rfree_frag(skb);
5911 sctp_skb_set_owner_r_frag(skb, newsk);
5912 }
5913
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914 /* Set the type of socket to indicate that it is peeled off from the
5915 * original UDP-style socket or created with the accept() call on a
5916 * TCP-style socket..
5917 */
5918 newsp->type = type;
5919
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07005920 /* Mark the new socket "in-use" by the user so that any packets
5921 * that may arrive on the association after we've moved it are
5922 * queued to the backlog. This prevents a potential race between
5923 * backlog processing on the old socket and new-packet processing
5924 * on the new socket.
5925 */
5926 sctp_lock_sock(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927 sctp_assoc_migrate(assoc, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005928
5929 /* If the association on the newsk is already closed before accept()
5930 * is called, set RCV_SHUTDOWN flag.
5931 */
5932 if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP))
5933 newsk->sk_shutdown |= RCV_SHUTDOWN;
5934
5935 newsk->sk_state = SCTP_SS_ESTABLISHED;
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07005936 sctp_release_sock(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005937}
5938
5939/* This proto struct describes the ULP interface for SCTP. */
5940struct proto sctp_prot = {
5941 .name = "SCTP",
5942 .owner = THIS_MODULE,
5943 .close = sctp_close,
5944 .connect = sctp_connect,
5945 .disconnect = sctp_disconnect,
5946 .accept = sctp_accept,
5947 .ioctl = sctp_ioctl,
5948 .init = sctp_init_sock,
5949 .destroy = sctp_destroy_sock,
5950 .shutdown = sctp_shutdown,
5951 .setsockopt = sctp_setsockopt,
5952 .getsockopt = sctp_getsockopt,
5953 .sendmsg = sctp_sendmsg,
5954 .recvmsg = sctp_recvmsg,
5955 .bind = sctp_bind,
5956 .backlog_rcv = sctp_backlog_rcv,
5957 .hash = sctp_hash,
5958 .unhash = sctp_unhash,
5959 .get_port = sctp_get_port,
5960 .obj_size = sizeof(struct sctp_sock),
5961};
5962
5963#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
5964struct proto sctpv6_prot = {
5965 .name = "SCTPv6",
5966 .owner = THIS_MODULE,
5967 .close = sctp_close,
5968 .connect = sctp_connect,
5969 .disconnect = sctp_disconnect,
5970 .accept = sctp_accept,
5971 .ioctl = sctp_ioctl,
5972 .init = sctp_init_sock,
5973 .destroy = sctp_destroy_sock,
5974 .shutdown = sctp_shutdown,
5975 .setsockopt = sctp_setsockopt,
5976 .getsockopt = sctp_getsockopt,
5977 .sendmsg = sctp_sendmsg,
5978 .recvmsg = sctp_recvmsg,
5979 .bind = sctp_bind,
5980 .backlog_rcv = sctp_backlog_rcv,
5981 .hash = sctp_hash,
5982 .unhash = sctp_unhash,
5983 .get_port = sctp_get_port,
5984 .obj_size = sizeof(struct sctp6_sock),
5985};
5986#endif /* defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) */