blob: e527267a0536145b631bdc724a2a38f283cdea40 [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
110extern kmem_cache_t *sctp_bucket_cachep;
111
112/* Get the sndbuf space available at the time on the association. */
113static inline int sctp_wspace(struct sctp_association *asoc)
114{
115 struct sock *sk = asoc->base.sk;
116 int amt = 0;
117
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 *
384 * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
385 * at any one time. If a sender, after sending an ASCONF chunk, decides
386 * it needs to transfer another ASCONF Chunk, it MUST wait until the
387 * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
388 * subsequent ASCONF. Note this restriction binds each side, so at any
389 * time two ASCONF may be in-transit on any given association (one sent
390 * from each endpoint).
391 */
392static int sctp_send_asconf(struct sctp_association *asoc,
393 struct sctp_chunk *chunk)
394{
395 int retval = 0;
396
397 /* If there is an outstanding ASCONF chunk, queue it for later
398 * transmission.
399 */
400 if (asoc->addip_last_asconf) {
David S. Miller79af02c2005-07-08 21:47:49 -0700401 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 goto out;
403 }
404
405 /* Hold the chunk until an ASCONF_ACK is received. */
406 sctp_chunk_hold(chunk);
407 retval = sctp_primitive_ASCONF(asoc, chunk);
408 if (retval)
409 sctp_chunk_free(chunk);
410 else
411 asoc->addip_last_asconf = chunk;
412
413out:
414 return retval;
415}
416
417/* Add a list of addresses as bind addresses to local endpoint or
418 * association.
419 *
420 * Basically run through each address specified in the addrs/addrcnt
421 * array/length pair, determine if it is IPv6 or IPv4 and call
422 * sctp_do_bind() on it.
423 *
424 * If any of them fails, then the operation will be reversed and the
425 * ones that were added will be removed.
426 *
427 * Only sctp_setsockopt_bindx() is supposed to call this function.
428 */
429int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt)
430{
431 int cnt;
432 int retval = 0;
433 void *addr_buf;
434 struct sockaddr *sa_addr;
435 struct sctp_af *af;
436
437 SCTP_DEBUG_PRINTK("sctp_bindx_add (sk: %p, addrs: %p, addrcnt: %d)\n",
438 sk, addrs, addrcnt);
439
440 addr_buf = addrs;
441 for (cnt = 0; cnt < addrcnt; cnt++) {
442 /* The list may contain either IPv4 or IPv6 address;
443 * determine the address length for walking thru the list.
444 */
445 sa_addr = (struct sockaddr *)addr_buf;
446 af = sctp_get_af_specific(sa_addr->sa_family);
447 if (!af) {
448 retval = -EINVAL;
449 goto err_bindx_add;
450 }
451
452 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
453 af->sockaddr_len);
454
455 addr_buf += af->sockaddr_len;
456
457err_bindx_add:
458 if (retval < 0) {
459 /* Failed. Cleanup the ones that have been added */
460 if (cnt > 0)
461 sctp_bindx_rem(sk, addrs, cnt);
462 return retval;
463 }
464 }
465
466 return retval;
467}
468
469/* Send an ASCONF chunk with Add IP address parameters to all the peers of the
470 * associations that are part of the endpoint indicating that a list of local
471 * addresses are added to the endpoint.
472 *
473 * If any of the addresses is already in the bind address list of the
474 * association, we do not send the chunk for that association. But it will not
475 * affect other associations.
476 *
477 * Only sctp_setsockopt_bindx() is supposed to call this function.
478 */
479static int sctp_send_asconf_add_ip(struct sock *sk,
480 struct sockaddr *addrs,
481 int addrcnt)
482{
483 struct sctp_sock *sp;
484 struct sctp_endpoint *ep;
485 struct sctp_association *asoc;
486 struct sctp_bind_addr *bp;
487 struct sctp_chunk *chunk;
488 struct sctp_sockaddr_entry *laddr;
489 union sctp_addr *addr;
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
520 * in the bind address list of the association. If so,
521 * do not send the asconf chunk to its peer, but continue with
522 * other associations.
523 */
524 addr_buf = addrs;
525 for (i = 0; i < addrcnt; i++) {
526 addr = (union sctp_addr *)addr_buf;
527 af = sctp_get_af_specific(addr->v4.sin_family);
528 if (!af) {
529 retval = -EINVAL;
530 goto out;
531 }
532
533 if (sctp_assoc_lookup_laddr(asoc, addr))
534 break;
535
536 addr_buf += af->sockaddr_len;
537 }
538 if (i < addrcnt)
539 continue;
540
541 /* Use the first address in bind addr list of association as
542 * Address Parameter of ASCONF CHUNK.
543 */
544 sctp_read_lock(&asoc->base.addr_lock);
545 bp = &asoc->base.bind_addr;
546 p = bp->address_list.next;
547 laddr = list_entry(p, struct sctp_sockaddr_entry, list);
548 sctp_read_unlock(&asoc->base.addr_lock);
549
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 }
Al Viroc9a08502006-11-20 17:07:48 -0800630 if (sa_addr->v4.sin_port != htons(bp->port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 retval = -EINVAL;
632 goto err_bindx_rem;
633 }
634
635 /* FIXME - There is probably a need to check if sk->sk_saddr and
636 * sk->sk_rcv_addr are currently set to one of the addresses to
637 * be removed. This is something which needs to be looked into
638 * when we are fixing the outstanding issues with multi-homing
639 * socket routing and failover schemes. Refer to comments in
640 * sctp_do_bind(). -daisy
641 */
642 sctp_local_bh_disable();
643 sctp_write_lock(&ep->base.addr_lock);
644
Al Viroc9a08502006-11-20 17:07:48 -0800645 retval = sctp_del_bind_addr(bp, sa_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 sctp_write_unlock(&ep->base.addr_lock);
648 sctp_local_bh_enable();
649
650 addr_buf += af->sockaddr_len;
651err_bindx_rem:
652 if (retval < 0) {
653 /* Failed. Add the ones that has been removed back */
654 if (cnt > 0)
655 sctp_bindx_add(sk, addrs, cnt);
656 return retval;
657 }
658 }
659
660 return retval;
661}
662
663/* Send an ASCONF chunk with Delete IP address parameters to all the peers of
664 * the associations that are part of the endpoint indicating that a list of
665 * local addresses are removed from the endpoint.
666 *
667 * If any of the addresses is already in the bind address list of the
668 * association, we do not send the chunk for that association. But it will not
669 * affect other associations.
670 *
671 * Only sctp_setsockopt_bindx() is supposed to call this function.
672 */
673static int sctp_send_asconf_del_ip(struct sock *sk,
674 struct sockaddr *addrs,
675 int addrcnt)
676{
677 struct sctp_sock *sp;
678 struct sctp_endpoint *ep;
679 struct sctp_association *asoc;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700680 struct sctp_transport *transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 struct sctp_bind_addr *bp;
682 struct sctp_chunk *chunk;
683 union sctp_addr *laddr;
684 void *addr_buf;
685 struct sctp_af *af;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700686 struct list_head *pos, *pos1;
687 struct sctp_sockaddr_entry *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 int i;
689 int retval = 0;
690
691 if (!sctp_addip_enable)
692 return retval;
693
694 sp = sctp_sk(sk);
695 ep = sp->ep;
696
697 SCTP_DEBUG_PRINTK("%s: (sk: %p, addrs: %p, addrcnt: %d)\n",
698 __FUNCTION__, sk, addrs, addrcnt);
699
700 list_for_each(pos, &ep->asocs) {
701 asoc = list_entry(pos, struct sctp_association, asocs);
702
703 if (!asoc->peer.asconf_capable)
704 continue;
705
706 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_DEL_IP)
707 continue;
708
709 if (!sctp_state(asoc, ESTABLISHED))
710 continue;
711
712 /* Check if any address in the packed array of addresses is
713 * not present in the bind address list of the association.
714 * If so, do not send the asconf chunk to its peer, but
715 * continue with other associations.
716 */
717 addr_buf = addrs;
718 for (i = 0; i < addrcnt; i++) {
719 laddr = (union sctp_addr *)addr_buf;
720 af = sctp_get_af_specific(laddr->v4.sin_family);
721 if (!af) {
722 retval = -EINVAL;
723 goto out;
724 }
725
726 if (!sctp_assoc_lookup_laddr(asoc, laddr))
727 break;
728
729 addr_buf += af->sockaddr_len;
730 }
731 if (i < addrcnt)
732 continue;
733
734 /* Find one address in the association's bind address list
735 * that is not in the packed array of addresses. This is to
736 * make sure that we do not delete all the addresses in the
737 * association.
738 */
739 sctp_read_lock(&asoc->base.addr_lock);
740 bp = &asoc->base.bind_addr;
741 laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs,
742 addrcnt, sp);
743 sctp_read_unlock(&asoc->base.addr_lock);
744 if (!laddr)
745 continue;
746
747 chunk = sctp_make_asconf_update_ip(asoc, laddr, addrs, addrcnt,
748 SCTP_PARAM_DEL_IP);
749 if (!chunk) {
750 retval = -ENOMEM;
751 goto out;
752 }
753
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700754 /* Reset use_as_src flag for the addresses in the bind address
755 * list that are to be deleted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700757 sctp_local_bh_disable();
758 sctp_write_lock(&asoc->base.addr_lock);
759 addr_buf = addrs;
760 for (i = 0; i < addrcnt; i++) {
761 laddr = (union sctp_addr *)addr_buf;
762 af = sctp_get_af_specific(laddr->v4.sin_family);
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700763 list_for_each(pos1, &bp->address_list) {
764 saddr = list_entry(pos1,
765 struct sctp_sockaddr_entry,
766 list);
Al Viro5f242a12006-11-20 17:05:23 -0800767 if (sctp_cmp_addr_exact(&saddr->a, laddr))
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700768 saddr->use_as_src = 0;
769 }
770 addr_buf += af->sockaddr_len;
771 }
772 sctp_write_unlock(&asoc->base.addr_lock);
773 sctp_local_bh_enable();
774
775 /* Update the route and saddr entries for all the transports
776 * as some of the addresses in the bind address list are
777 * about to be deleted and cannot be used as source addresses.
778 */
779 list_for_each(pos1, &asoc->peer.transport_addr_list) {
780 transport = list_entry(pos1, struct sctp_transport,
781 transports);
782 dst_release(transport->dst);
783 sctp_transport_route(transport, NULL,
784 sctp_sk(asoc->base.sk));
785 }
786
787 retval = sctp_send_asconf(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 }
789out:
790 return retval;
791}
792
793/* Helper for tunneling sctp_bindx() requests through sctp_setsockopt()
794 *
795 * API 8.1
796 * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt,
797 * int flags);
798 *
799 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
800 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
801 * or IPv6 addresses.
802 *
803 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
804 * Section 3.1.2 for this usage.
805 *
806 * addrs is a pointer to an array of one or more socket addresses. Each
807 * address is contained in its appropriate structure (i.e. struct
808 * sockaddr_in or struct sockaddr_in6) the family of the address type
Ville Nuorvala23c435f2006-10-16 22:08:28 -0700809 * must be used to distinguish the address length (note that this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 * representation is termed a "packed array" of addresses). The caller
811 * specifies the number of addresses in the array with addrcnt.
812 *
813 * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns
814 * -1, and sets errno to the appropriate error code.
815 *
816 * For SCTP, the port given in each socket address must be the same, or
817 * sctp_bindx() will fail, setting errno to EINVAL.
818 *
819 * The flags parameter is formed from the bitwise OR of zero or more of
820 * the following currently defined flags:
821 *
822 * SCTP_BINDX_ADD_ADDR
823 *
824 * SCTP_BINDX_REM_ADDR
825 *
826 * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the
827 * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given
828 * addresses from the association. The two flags are mutually exclusive;
829 * if both are given, sctp_bindx() will fail with EINVAL. A caller may
830 * not remove all addresses from an association; sctp_bindx() will
831 * reject such an attempt with EINVAL.
832 *
833 * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate
834 * additional addresses with an endpoint after calling bind(). Or use
835 * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening
836 * socket is associated with so that no new association accepted will be
837 * associated with those addresses. If the endpoint supports dynamic
838 * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a
839 * endpoint to send the appropriate message to the peer to change the
840 * peers address lists.
841 *
842 * Adding and removing addresses from a connected association is
843 * optional functionality. Implementations that do not support this
844 * functionality should return EOPNOTSUPP.
845 *
846 * Basically do nothing but copying the addresses from user to kernel
847 * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk.
Frank Filz3f7a87d2005-06-20 13:14:57 -0700848 * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
849 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 *
851 * We don't use copy_from_user() for optimization: we first do the
852 * sanity checks (buffer size -fast- and access check-healthy
853 * pointer); if all of those succeed, then we can alloc the memory
854 * (expensive operation) needed to copy the data to kernel. Then we do
855 * the copying without checking the user space area
856 * (__copy_from_user()).
857 *
858 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
859 * it.
860 *
861 * sk The sk of the socket
862 * addrs The pointer to the addresses in user land
863 * addrssize Size of the addrs buffer
864 * op Operation to perform (add or remove, see the flags of
865 * sctp_bindx)
866 *
867 * Returns 0 if ok, <0 errno code on error.
868 */
869SCTP_STATIC int sctp_setsockopt_bindx(struct sock* sk,
870 struct sockaddr __user *addrs,
871 int addrs_size, int op)
872{
873 struct sockaddr *kaddrs;
874 int err;
875 int addrcnt = 0;
876 int walk_size = 0;
877 struct sockaddr *sa_addr;
878 void *addr_buf;
879 struct sctp_af *af;
880
881 SCTP_DEBUG_PRINTK("sctp_setsocktopt_bindx: sk %p addrs %p"
882 " addrs_size %d opt %d\n", sk, addrs, addrs_size, op);
883
884 if (unlikely(addrs_size <= 0))
885 return -EINVAL;
886
887 /* Check the user passed a healthy pointer. */
888 if (unlikely(!access_ok(VERIFY_READ, addrs, addrs_size)))
889 return -EFAULT;
890
891 /* Alloc space for the address array in kernel memory. */
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800892 kaddrs = kmalloc(addrs_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (unlikely(!kaddrs))
894 return -ENOMEM;
895
896 if (__copy_from_user(kaddrs, addrs, addrs_size)) {
897 kfree(kaddrs);
898 return -EFAULT;
899 }
900
901 /* Walk through the addrs buffer and count the number of addresses. */
902 addr_buf = kaddrs;
903 while (walk_size < addrs_size) {
904 sa_addr = (struct sockaddr *)addr_buf;
905 af = sctp_get_af_specific(sa_addr->sa_family);
906
907 /* If the address family is not supported or if this address
908 * causes the address buffer to overflow return EINVAL.
909 */
910 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
911 kfree(kaddrs);
912 return -EINVAL;
913 }
914 addrcnt++;
915 addr_buf += af->sockaddr_len;
916 walk_size += af->sockaddr_len;
917 }
918
919 /* Do the work. */
920 switch (op) {
921 case SCTP_BINDX_ADD_ADDR:
922 err = sctp_bindx_add(sk, kaddrs, addrcnt);
923 if (err)
924 goto out;
925 err = sctp_send_asconf_add_ip(sk, kaddrs, addrcnt);
926 break;
927
928 case SCTP_BINDX_REM_ADDR:
929 err = sctp_bindx_rem(sk, kaddrs, addrcnt);
930 if (err)
931 goto out;
932 err = sctp_send_asconf_del_ip(sk, kaddrs, addrcnt);
933 break;
934
935 default:
936 err = -EINVAL;
937 break;
938 };
939
940out:
941 kfree(kaddrs);
942
943 return err;
944}
945
Frank Filz3f7a87d2005-06-20 13:14:57 -0700946/* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size)
947 *
948 * Common routine for handling connect() and sctp_connectx().
949 * Connect will come in with just a single address.
950 */
951static int __sctp_connect(struct sock* sk,
952 struct sockaddr *kaddrs,
953 int addrs_size)
954{
955 struct sctp_sock *sp;
956 struct sctp_endpoint *ep;
957 struct sctp_association *asoc = NULL;
958 struct sctp_association *asoc2;
959 struct sctp_transport *transport;
960 union sctp_addr to;
961 struct sctp_af *af;
962 sctp_scope_t scope;
963 long timeo;
964 int err = 0;
965 int addrcnt = 0;
966 int walk_size = 0;
Al Viro4bdf4b52006-11-20 17:10:20 -0800967 union sctp_addr *sa_addr;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700968 void *addr_buf;
969
970 sp = sctp_sk(sk);
971 ep = sp->ep;
972
973 /* connect() cannot be done on a socket that is already in ESTABLISHED
974 * state - UDP-style peeled off socket or a TCP-style socket that
975 * is already connected.
976 * It cannot be done even on a TCP-style listening socket.
977 */
978 if (sctp_sstate(sk, ESTABLISHED) ||
979 (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))) {
980 err = -EISCONN;
981 goto out_free;
982 }
983
984 /* Walk through the addrs buffer and count the number of addresses. */
985 addr_buf = kaddrs;
986 while (walk_size < addrs_size) {
Al Viro4bdf4b52006-11-20 17:10:20 -0800987 sa_addr = (union sctp_addr *)addr_buf;
988 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700989
990 /* If the address family is not supported or if this address
991 * causes the address buffer to overflow return EINVAL.
992 */
993 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
994 err = -EINVAL;
995 goto out_free;
996 }
997
Al Viro4bdf4b52006-11-20 17:10:20 -0800998 err = sctp_verify_addr(sk, sa_addr, af->sockaddr_len);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700999 if (err)
1000 goto out_free;
1001
1002 memcpy(&to, sa_addr, af->sockaddr_len);
1003 to.v4.sin_port = ntohs(to.v4.sin_port);
1004
1005 /* Check if there already is a matching association on the
1006 * endpoint (other than the one created here).
1007 */
Al Virocd4ff032006-11-20 17:11:33 -08001008 asoc2 = sctp_endpoint_lookup_assoc(ep, sa_addr, &transport);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001009 if (asoc2 && asoc2 != asoc) {
1010 if (asoc2->state >= SCTP_STATE_ESTABLISHED)
1011 err = -EISCONN;
1012 else
1013 err = -EALREADY;
1014 goto out_free;
1015 }
1016
1017 /* If we could not find a matching association on the endpoint,
1018 * make sure that there is no peeled-off association matching
1019 * the peer address even on another socket.
1020 */
Al Viro6c7be552006-11-20 17:11:50 -08001021 if (sctp_endpoint_is_peeled_off(ep, sa_addr)) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07001022 err = -EADDRNOTAVAIL;
1023 goto out_free;
1024 }
1025
1026 if (!asoc) {
1027 /* If a bind() or sctp_bindx() is not called prior to
1028 * an sctp_connectx() call, the system picks an
1029 * ephemeral port and will choose an address set
1030 * equivalent to binding with a wildcard address.
1031 */
1032 if (!ep->base.bind_addr.port) {
1033 if (sctp_autobind(sk)) {
1034 err = -EAGAIN;
1035 goto out_free;
1036 }
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001037 } else {
1038 /*
1039 * If an unprivileged user inherits a 1-many
1040 * style socket with open associations on a
1041 * privileged port, it MAY be permitted to
1042 * accept new associations, but it SHOULD NOT
1043 * be permitted to open new associations.
1044 */
1045 if (ep->base.bind_addr.port < PROT_SOCK &&
1046 !capable(CAP_NET_BIND_SERVICE)) {
1047 err = -EACCES;
1048 goto out_free;
1049 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001050 }
1051
1052 scope = sctp_scope(&to);
1053 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1054 if (!asoc) {
1055 err = -ENOMEM;
1056 goto out_free;
1057 }
1058 }
1059
1060 /* Prime the peer's transport structures. */
Al Viro4bdf4b52006-11-20 17:10:20 -08001061 transport = sctp_assoc_add_peer(asoc, sa_addr, GFP_KERNEL,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001062 SCTP_UNKNOWN);
1063 if (!transport) {
1064 err = -ENOMEM;
1065 goto out_free;
1066 }
1067
1068 addrcnt++;
1069 addr_buf += af->sockaddr_len;
1070 walk_size += af->sockaddr_len;
1071 }
1072
1073 err = sctp_assoc_set_bind_addr_from_ep(asoc, GFP_KERNEL);
1074 if (err < 0) {
1075 goto out_free;
1076 }
1077
1078 err = sctp_primitive_ASSOCIATE(asoc, NULL);
1079 if (err < 0) {
1080 goto out_free;
1081 }
1082
1083 /* Initialize sk's dport and daddr for getpeername() */
1084 inet_sk(sk)->dport = htons(asoc->peer.port);
1085 af = sctp_get_af_specific(to.sa.sa_family);
1086 af->to_sk_daddr(&to, sk);
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07001087 sk->sk_err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001088
1089 timeo = sock_sndtimeo(sk, sk->sk_socket->file->f_flags & O_NONBLOCK);
1090 err = sctp_wait_for_connect(asoc, &timeo);
1091
1092 /* Don't free association on exit. */
1093 asoc = NULL;
1094
1095out_free:
1096
1097 SCTP_DEBUG_PRINTK("About to exit __sctp_connect() free asoc: %p"
1098 " kaddrs: %p err: %d\n",
1099 asoc, kaddrs, err);
1100 if (asoc)
1101 sctp_association_free(asoc);
1102 return err;
1103}
1104
1105/* Helper for tunneling sctp_connectx() requests through sctp_setsockopt()
1106 *
1107 * API 8.9
1108 * int sctp_connectx(int sd, struct sockaddr *addrs, int addrcnt);
1109 *
1110 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
1111 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
1112 * or IPv6 addresses.
1113 *
1114 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
1115 * Section 3.1.2 for this usage.
1116 *
1117 * addrs is a pointer to an array of one or more socket addresses. Each
1118 * address is contained in its appropriate structure (i.e. struct
1119 * sockaddr_in or struct sockaddr_in6) the family of the address type
1120 * must be used to distengish the address length (note that this
1121 * representation is termed a "packed array" of addresses). The caller
1122 * specifies the number of addresses in the array with addrcnt.
1123 *
1124 * On success, sctp_connectx() returns 0. On failure, sctp_connectx() returns
1125 * -1, and sets errno to the appropriate error code.
1126 *
1127 * For SCTP, the port given in each socket address must be the same, or
1128 * sctp_connectx() will fail, setting errno to EINVAL.
1129 *
1130 * An application can use sctp_connectx to initiate an association with
1131 * an endpoint that is multi-homed. Much like sctp_bindx() this call
1132 * allows a caller to specify multiple addresses at which a peer can be
1133 * reached. The way the SCTP stack uses the list of addresses to set up
1134 * the association is implementation dependant. This function only
1135 * specifies that the stack will try to make use of all the addresses in
1136 * the list when needed.
1137 *
1138 * Note that the list of addresses passed in is only used for setting up
1139 * the association. It does not necessarily equal the set of addresses
1140 * the peer uses for the resulting association. If the caller wants to
1141 * find out the set of peer addresses, it must use sctp_getpaddrs() to
1142 * retrieve them after the association has been set up.
1143 *
1144 * Basically do nothing but copying the addresses from user to kernel
1145 * land and invoking either sctp_connectx(). This is used for tunneling
1146 * the sctp_connectx() request through sctp_setsockopt() from userspace.
1147 *
1148 * We don't use copy_from_user() for optimization: we first do the
1149 * sanity checks (buffer size -fast- and access check-healthy
1150 * pointer); if all of those succeed, then we can alloc the memory
1151 * (expensive operation) needed to copy the data to kernel. Then we do
1152 * the copying without checking the user space area
1153 * (__copy_from_user()).
1154 *
1155 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
1156 * it.
1157 *
1158 * sk The sk of the socket
1159 * addrs The pointer to the addresses in user land
1160 * addrssize Size of the addrs buffer
1161 *
1162 * Returns 0 if ok, <0 errno code on error.
1163 */
1164SCTP_STATIC int sctp_setsockopt_connectx(struct sock* sk,
1165 struct sockaddr __user *addrs,
1166 int addrs_size)
1167{
1168 int err = 0;
1169 struct sockaddr *kaddrs;
1170
1171 SCTP_DEBUG_PRINTK("%s - sk %p addrs %p addrs_size %d\n",
1172 __FUNCTION__, sk, addrs, addrs_size);
1173
1174 if (unlikely(addrs_size <= 0))
1175 return -EINVAL;
1176
1177 /* Check the user passed a healthy pointer. */
1178 if (unlikely(!access_ok(VERIFY_READ, addrs, addrs_size)))
1179 return -EFAULT;
1180
1181 /* Alloc space for the address array in kernel memory. */
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08001182 kaddrs = kmalloc(addrs_size, GFP_KERNEL);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001183 if (unlikely(!kaddrs))
1184 return -ENOMEM;
1185
1186 if (__copy_from_user(kaddrs, addrs, addrs_size)) {
1187 err = -EFAULT;
1188 } else {
1189 err = __sctp_connect(sk, kaddrs, addrs_size);
1190 }
1191
1192 kfree(kaddrs);
1193 return err;
1194}
1195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196/* API 3.1.4 close() - UDP Style Syntax
1197 * Applications use close() to perform graceful shutdown (as described in
1198 * Section 10.1 of [SCTP]) on ALL the associations currently represented
1199 * by a UDP-style socket.
1200 *
1201 * The syntax is
1202 *
1203 * ret = close(int sd);
1204 *
1205 * sd - the socket descriptor of the associations to be closed.
1206 *
1207 * To gracefully shutdown a specific association represented by the
1208 * UDP-style socket, an application should use the sendmsg() call,
1209 * passing no user data, but including the appropriate flag in the
1210 * ancillary data (see Section xxxx).
1211 *
1212 * If sd in the close() call is a branched-off socket representing only
1213 * one association, the shutdown is performed on that association only.
1214 *
1215 * 4.1.6 close() - TCP Style Syntax
1216 *
1217 * Applications use close() to gracefully close down an association.
1218 *
1219 * The syntax is:
1220 *
1221 * int close(int sd);
1222 *
1223 * sd - the socket descriptor of the association to be closed.
1224 *
1225 * After an application calls close() on a socket descriptor, no further
1226 * socket operations will succeed on that descriptor.
1227 *
1228 * API 7.1.4 SO_LINGER
1229 *
1230 * An application using the TCP-style socket can use this option to
1231 * perform the SCTP ABORT primitive. The linger option structure is:
1232 *
1233 * struct linger {
1234 * int l_onoff; // option on/off
1235 * int l_linger; // linger time
1236 * };
1237 *
1238 * To enable the option, set l_onoff to 1. If the l_linger value is set
1239 * to 0, calling close() is the same as the ABORT primitive. If the
1240 * value is set to a negative value, the setsockopt() call will return
1241 * an error. If the value is set to a positive value linger_time, the
1242 * close() can be blocked for at most linger_time ms. If the graceful
1243 * shutdown phase does not finish during this period, close() will
1244 * return but the graceful shutdown phase continues in the system.
1245 */
1246SCTP_STATIC void sctp_close(struct sock *sk, long timeout)
1247{
1248 struct sctp_endpoint *ep;
1249 struct sctp_association *asoc;
1250 struct list_head *pos, *temp;
1251
1252 SCTP_DEBUG_PRINTK("sctp_close(sk: 0x%p, timeout:%ld)\n", sk, timeout);
1253
1254 sctp_lock_sock(sk);
1255 sk->sk_shutdown = SHUTDOWN_MASK;
1256
1257 ep = sctp_sk(sk)->ep;
1258
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07001259 /* Walk all associations on an endpoint. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 list_for_each_safe(pos, temp, &ep->asocs) {
1261 asoc = list_entry(pos, struct sctp_association, asocs);
1262
1263 if (sctp_style(sk, TCP)) {
1264 /* A closed association can still be in the list if
1265 * it belongs to a TCP-style listening socket that is
1266 * not yet accepted. If so, free it. If not, send an
1267 * ABORT or SHUTDOWN based on the linger options.
1268 */
1269 if (sctp_state(asoc, CLOSED)) {
1270 sctp_unhash_established(asoc);
1271 sctp_association_free(asoc);
Vladislav Yasevichb89498a2006-05-19 14:32:06 -07001272 continue;
1273 }
1274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001276 if (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime) {
1277 struct sctp_chunk *chunk;
1278
1279 chunk = sctp_make_abort_user(asoc, NULL, 0);
1280 if (chunk)
1281 sctp_primitive_ABORT(asoc, chunk);
1282 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 sctp_primitive_SHUTDOWN(asoc, NULL);
1284 }
1285
1286 /* Clean up any skbs sitting on the receive queue. */
1287 sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1288 sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1289
1290 /* On a TCP-style socket, block for at most linger_time if set. */
1291 if (sctp_style(sk, TCP) && timeout)
1292 sctp_wait_for_close(sk, timeout);
1293
1294 /* This will run the backlog queue. */
1295 sctp_release_sock(sk);
1296
1297 /* Supposedly, no process has access to the socket, but
1298 * the net layers still may.
1299 */
1300 sctp_local_bh_disable();
1301 sctp_bh_lock_sock(sk);
1302
1303 /* Hold the sock, since sk_common_release() will put sock_put()
1304 * and we have just a little more cleanup.
1305 */
1306 sock_hold(sk);
1307 sk_common_release(sk);
1308
1309 sctp_bh_unlock_sock(sk);
1310 sctp_local_bh_enable();
1311
1312 sock_put(sk);
1313
1314 SCTP_DBG_OBJCNT_DEC(sock);
1315}
1316
1317/* Handle EPIPE error. */
1318static int sctp_error(struct sock *sk, int flags, int err)
1319{
1320 if (err == -EPIPE)
1321 err = sock_error(sk) ? : -EPIPE;
1322 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1323 send_sig(SIGPIPE, current, 0);
1324 return err;
1325}
1326
1327/* API 3.1.3 sendmsg() - UDP Style Syntax
1328 *
1329 * An application uses sendmsg() and recvmsg() calls to transmit data to
1330 * and receive data from its peer.
1331 *
1332 * ssize_t sendmsg(int socket, const struct msghdr *message,
1333 * int flags);
1334 *
1335 * socket - the socket descriptor of the endpoint.
1336 * message - pointer to the msghdr structure which contains a single
1337 * user message and possibly some ancillary data.
1338 *
1339 * See Section 5 for complete description of the data
1340 * structures.
1341 *
1342 * flags - flags sent or received with the user message, see Section
1343 * 5 for complete description of the flags.
1344 *
1345 * Note: This function could use a rewrite especially when explicit
1346 * connect support comes in.
1347 */
1348/* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */
1349
1350SCTP_STATIC int sctp_msghdr_parse(const struct msghdr *, sctp_cmsgs_t *);
1351
1352SCTP_STATIC int sctp_sendmsg(struct kiocb *iocb, struct sock *sk,
1353 struct msghdr *msg, size_t msg_len)
1354{
1355 struct sctp_sock *sp;
1356 struct sctp_endpoint *ep;
1357 struct sctp_association *new_asoc=NULL, *asoc=NULL;
1358 struct sctp_transport *transport, *chunk_tp;
1359 struct sctp_chunk *chunk;
Al Virobe296812006-11-20 17:07:06 -08001360 union sctp_addr to, tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 struct sockaddr *msg_name = NULL;
1362 struct sctp_sndrcvinfo default_sinfo = { 0 };
1363 struct sctp_sndrcvinfo *sinfo;
1364 struct sctp_initmsg *sinit;
1365 sctp_assoc_t associd = 0;
1366 sctp_cmsgs_t cmsgs = { NULL };
1367 int err;
1368 sctp_scope_t scope;
1369 long timeo;
1370 __u16 sinfo_flags = 0;
1371 struct sctp_datamsg *datamsg;
1372 struct list_head *pos;
1373 int msg_flags = msg->msg_flags;
1374
1375 SCTP_DEBUG_PRINTK("sctp_sendmsg(sk: %p, msg: %p, msg_len: %zu)\n",
1376 sk, msg, msg_len);
1377
1378 err = 0;
1379 sp = sctp_sk(sk);
1380 ep = sp->ep;
1381
Frank Filz3f7a87d2005-06-20 13:14:57 -07001382 SCTP_DEBUG_PRINTK("Using endpoint: %p.\n", ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384 /* We cannot send a message over a TCP-style listening socket. */
1385 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING)) {
1386 err = -EPIPE;
1387 goto out_nounlock;
1388 }
1389
1390 /* Parse out the SCTP CMSGs. */
1391 err = sctp_msghdr_parse(msg, &cmsgs);
1392
1393 if (err) {
1394 SCTP_DEBUG_PRINTK("msghdr parse err = %x\n", err);
1395 goto out_nounlock;
1396 }
1397
1398 /* Fetch the destination address for this packet. This
1399 * address only selects the association--it is not necessarily
1400 * the address we will send to.
1401 * For a peeled-off socket, msg_name is ignored.
1402 */
1403 if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
1404 int msg_namelen = msg->msg_namelen;
1405
1406 err = sctp_verify_addr(sk, (union sctp_addr *)msg->msg_name,
1407 msg_namelen);
1408 if (err)
1409 return err;
1410
1411 if (msg_namelen > sizeof(to))
1412 msg_namelen = sizeof(to);
1413 memcpy(&to, msg->msg_name, msg_namelen);
Al Virobe296812006-11-20 17:07:06 -08001414 memcpy(&tmp, msg->msg_name, msg_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 SCTP_DEBUG_PRINTK("Just memcpy'd. msg_name is "
1416 "0x%x:%u.\n",
1417 to.v4.sin_addr.s_addr, to.v4.sin_port);
1418
1419 to.v4.sin_port = ntohs(to.v4.sin_port);
1420 msg_name = msg->msg_name;
1421 }
1422
1423 sinfo = cmsgs.info;
1424 sinit = cmsgs.init;
1425
1426 /* Did the user specify SNDRCVINFO? */
1427 if (sinfo) {
1428 sinfo_flags = sinfo->sinfo_flags;
1429 associd = sinfo->sinfo_assoc_id;
1430 }
1431
1432 SCTP_DEBUG_PRINTK("msg_len: %zu, sinfo_flags: 0x%x\n",
1433 msg_len, sinfo_flags);
1434
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001435 /* SCTP_EOF or SCTP_ABORT cannot be set on a TCP-style socket. */
1436 if (sctp_style(sk, TCP) && (sinfo_flags & (SCTP_EOF | SCTP_ABORT))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 err = -EINVAL;
1438 goto out_nounlock;
1439 }
1440
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001441 /* If SCTP_EOF is set, no data can be sent. Disallow sending zero
1442 * length messages when SCTP_EOF|SCTP_ABORT is not set.
1443 * If SCTP_ABORT is set, the message length could be non zero with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 * the msg_iov set to the user abort reason.
1445 */
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001446 if (((sinfo_flags & SCTP_EOF) && (msg_len > 0)) ||
1447 (!(sinfo_flags & (SCTP_EOF|SCTP_ABORT)) && (msg_len == 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 err = -EINVAL;
1449 goto out_nounlock;
1450 }
1451
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001452 /* If SCTP_ADDR_OVER is set, there must be an address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 * specified in msg_name.
1454 */
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001455 if ((sinfo_flags & SCTP_ADDR_OVER) && (!msg->msg_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 err = -EINVAL;
1457 goto out_nounlock;
1458 }
1459
1460 transport = NULL;
1461
1462 SCTP_DEBUG_PRINTK("About to look up association.\n");
1463
1464 sctp_lock_sock(sk);
1465
1466 /* If a msg_name has been specified, assume this is to be used. */
1467 if (msg_name) {
1468 /* Look for a matching association on the endpoint. */
Al Virocd4ff032006-11-20 17:11:33 -08001469 asoc = sctp_endpoint_lookup_assoc(ep, &tmp, &transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 if (!asoc) {
1471 /* If we could not find a matching association on the
1472 * endpoint, make sure that it is not a TCP-style
1473 * socket that already has an association or there is
1474 * no peeled-off association on another socket.
1475 */
1476 if ((sctp_style(sk, TCP) &&
1477 sctp_sstate(sk, ESTABLISHED)) ||
Al Viro6c7be552006-11-20 17:11:50 -08001478 sctp_endpoint_is_peeled_off(ep, &tmp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 err = -EADDRNOTAVAIL;
1480 goto out_unlock;
1481 }
1482 }
1483 } else {
1484 asoc = sctp_id2assoc(sk, associd);
1485 if (!asoc) {
1486 err = -EPIPE;
1487 goto out_unlock;
1488 }
1489 }
1490
1491 if (asoc) {
1492 SCTP_DEBUG_PRINTK("Just looked up association: %p.\n", asoc);
1493
1494 /* We cannot send a message on a TCP-style SCTP_SS_ESTABLISHED
1495 * socket that has an association in CLOSED state. This can
1496 * happen when an accepted socket has an association that is
1497 * already CLOSED.
1498 */
1499 if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP)) {
1500 err = -EPIPE;
1501 goto out_unlock;
1502 }
1503
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001504 if (sinfo_flags & SCTP_EOF) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 SCTP_DEBUG_PRINTK("Shutting down association: %p\n",
1506 asoc);
1507 sctp_primitive_SHUTDOWN(asoc, NULL);
1508 err = 0;
1509 goto out_unlock;
1510 }
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001511 if (sinfo_flags & SCTP_ABORT) {
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001512 struct sctp_chunk *chunk;
1513
1514 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1515 if (!chunk) {
1516 err = -ENOMEM;
1517 goto out_unlock;
1518 }
1519
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 SCTP_DEBUG_PRINTK("Aborting association: %p\n", asoc);
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001521 sctp_primitive_ABORT(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 err = 0;
1523 goto out_unlock;
1524 }
1525 }
1526
1527 /* Do we need to create the association? */
1528 if (!asoc) {
1529 SCTP_DEBUG_PRINTK("There is no association yet.\n");
1530
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001531 if (sinfo_flags & (SCTP_EOF | SCTP_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 err = -EINVAL;
1533 goto out_unlock;
1534 }
1535
1536 /* Check for invalid stream against the stream counts,
1537 * either the default or the user specified stream counts.
1538 */
1539 if (sinfo) {
1540 if (!sinit || (sinit && !sinit->sinit_num_ostreams)) {
1541 /* Check against the defaults. */
1542 if (sinfo->sinfo_stream >=
1543 sp->initmsg.sinit_num_ostreams) {
1544 err = -EINVAL;
1545 goto out_unlock;
1546 }
1547 } else {
1548 /* Check against the requested. */
1549 if (sinfo->sinfo_stream >=
1550 sinit->sinit_num_ostreams) {
1551 err = -EINVAL;
1552 goto out_unlock;
1553 }
1554 }
1555 }
1556
1557 /*
1558 * API 3.1.2 bind() - UDP Style Syntax
1559 * If a bind() or sctp_bindx() is not called prior to a
1560 * sendmsg() call that initiates a new association, the
1561 * system picks an ephemeral port and will choose an address
1562 * set equivalent to binding with a wildcard address.
1563 */
1564 if (!ep->base.bind_addr.port) {
1565 if (sctp_autobind(sk)) {
1566 err = -EAGAIN;
1567 goto out_unlock;
1568 }
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001569 } else {
1570 /*
1571 * If an unprivileged user inherits a one-to-many
1572 * style socket with open associations on a privileged
1573 * port, it MAY be permitted to accept new associations,
1574 * but it SHOULD NOT be permitted to open new
1575 * associations.
1576 */
1577 if (ep->base.bind_addr.port < PROT_SOCK &&
1578 !capable(CAP_NET_BIND_SERVICE)) {
1579 err = -EACCES;
1580 goto out_unlock;
1581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 }
1583
1584 scope = sctp_scope(&to);
1585 new_asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1586 if (!new_asoc) {
1587 err = -ENOMEM;
1588 goto out_unlock;
1589 }
1590 asoc = new_asoc;
1591
1592 /* If the SCTP_INIT ancillary data is specified, set all
1593 * the association init values accordingly.
1594 */
1595 if (sinit) {
1596 if (sinit->sinit_num_ostreams) {
1597 asoc->c.sinit_num_ostreams =
1598 sinit->sinit_num_ostreams;
1599 }
1600 if (sinit->sinit_max_instreams) {
1601 asoc->c.sinit_max_instreams =
1602 sinit->sinit_max_instreams;
1603 }
1604 if (sinit->sinit_max_attempts) {
1605 asoc->max_init_attempts
1606 = sinit->sinit_max_attempts;
1607 }
1608 if (sinit->sinit_max_init_timeo) {
1609 asoc->max_init_timeo =
1610 msecs_to_jiffies(sinit->sinit_max_init_timeo);
1611 }
1612 }
1613
1614 /* Prime the peer's transport structures. */
Al Viro4bdf4b52006-11-20 17:10:20 -08001615 transport = sctp_assoc_add_peer(asoc, &tmp, GFP_KERNEL, SCTP_UNKNOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 if (!transport) {
1617 err = -ENOMEM;
1618 goto out_free;
1619 }
1620 err = sctp_assoc_set_bind_addr_from_ep(asoc, GFP_KERNEL);
1621 if (err < 0) {
1622 err = -ENOMEM;
1623 goto out_free;
1624 }
1625 }
1626
1627 /* ASSERT: we have a valid association at this point. */
1628 SCTP_DEBUG_PRINTK("We have a valid association.\n");
1629
1630 if (!sinfo) {
1631 /* If the user didn't specify SNDRCVINFO, make up one with
1632 * some defaults.
1633 */
1634 default_sinfo.sinfo_stream = asoc->default_stream;
1635 default_sinfo.sinfo_flags = asoc->default_flags;
1636 default_sinfo.sinfo_ppid = asoc->default_ppid;
1637 default_sinfo.sinfo_context = asoc->default_context;
1638 default_sinfo.sinfo_timetolive = asoc->default_timetolive;
1639 default_sinfo.sinfo_assoc_id = sctp_assoc2id(asoc);
1640 sinfo = &default_sinfo;
1641 }
1642
1643 /* API 7.1.7, the sndbuf size per association bounds the
1644 * maximum size of data that can be sent in a single send call.
1645 */
1646 if (msg_len > sk->sk_sndbuf) {
1647 err = -EMSGSIZE;
1648 goto out_free;
1649 }
1650
1651 /* If fragmentation is disabled and the message length exceeds the
1652 * association fragmentation point, return EMSGSIZE. The I-D
1653 * does not specify what this error is, but this looks like
1654 * a great fit.
1655 */
1656 if (sctp_sk(sk)->disable_fragments && (msg_len > asoc->frag_point)) {
1657 err = -EMSGSIZE;
1658 goto out_free;
1659 }
1660
1661 if (sinfo) {
1662 /* Check for invalid stream. */
1663 if (sinfo->sinfo_stream >= asoc->c.sinit_num_ostreams) {
1664 err = -EINVAL;
1665 goto out_free;
1666 }
1667 }
1668
1669 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1670 if (!sctp_wspace(asoc)) {
1671 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1672 if (err)
1673 goto out_free;
1674 }
1675
1676 /* If an address is passed with the sendto/sendmsg call, it is used
1677 * to override the primary destination address in the TCP model, or
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001678 * when SCTP_ADDR_OVER flag is set in the UDP model.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 */
1680 if ((sctp_style(sk, TCP) && msg_name) ||
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001681 (sinfo_flags & SCTP_ADDR_OVER)) {
Al Virobe296812006-11-20 17:07:06 -08001682 chunk_tp = sctp_assoc_lookup_paddr(asoc, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (!chunk_tp) {
1684 err = -EINVAL;
1685 goto out_free;
1686 }
1687 } else
1688 chunk_tp = NULL;
1689
1690 /* Auto-connect, if we aren't connected already. */
1691 if (sctp_state(asoc, CLOSED)) {
1692 err = sctp_primitive_ASSOCIATE(asoc, NULL);
1693 if (err < 0)
1694 goto out_free;
1695 SCTP_DEBUG_PRINTK("We associated primitively.\n");
1696 }
1697
1698 /* Break the message into multiple chunks of maximum size. */
1699 datamsg = sctp_datamsg_from_user(asoc, sinfo, msg, msg_len);
1700 if (!datamsg) {
1701 err = -ENOMEM;
1702 goto out_free;
1703 }
1704
1705 /* Now send the (possibly) fragmented message. */
1706 list_for_each(pos, &datamsg->chunks) {
1707 chunk = list_entry(pos, struct sctp_chunk, frag_list);
1708 sctp_datamsg_track(chunk);
1709
1710 /* Do accounting for the write space. */
1711 sctp_set_owner_w(chunk);
1712
1713 chunk->transport = chunk_tp;
1714
1715 /* Send it to the lower layers. Note: all chunks
1716 * must either fail or succeed. The lower layer
1717 * works that way today. Keep it that way or this
1718 * breaks.
1719 */
1720 err = sctp_primitive_SEND(asoc, chunk);
1721 /* Did the lower layer accept the chunk? */
1722 if (err)
1723 sctp_chunk_free(chunk);
1724 SCTP_DEBUG_PRINTK("We sent primitively.\n");
1725 }
1726
1727 sctp_datamsg_free(datamsg);
1728 if (err)
1729 goto out_free;
1730 else
1731 err = msg_len;
1732
1733 /* If we are already past ASSOCIATE, the lower
1734 * layers are responsible for association cleanup.
1735 */
1736 goto out_unlock;
1737
1738out_free:
1739 if (new_asoc)
1740 sctp_association_free(asoc);
1741out_unlock:
1742 sctp_release_sock(sk);
1743
1744out_nounlock:
1745 return sctp_error(sk, msg_flags, err);
1746
1747#if 0
1748do_sock_err:
1749 if (msg_len)
1750 err = msg_len;
1751 else
1752 err = sock_error(sk);
1753 goto out;
1754
1755do_interrupted:
1756 if (msg_len)
1757 err = msg_len;
1758 goto out;
1759#endif /* 0 */
1760}
1761
1762/* This is an extended version of skb_pull() that removes the data from the
1763 * start of a skb even when data is spread across the list of skb's in the
1764 * frag_list. len specifies the total amount of data that needs to be removed.
1765 * when 'len' bytes could be removed from the skb, it returns 0.
1766 * If 'len' exceeds the total skb length, it returns the no. of bytes that
1767 * could not be removed.
1768 */
1769static int sctp_skb_pull(struct sk_buff *skb, int len)
1770{
1771 struct sk_buff *list;
1772 int skb_len = skb_headlen(skb);
1773 int rlen;
1774
1775 if (len <= skb_len) {
1776 __skb_pull(skb, len);
1777 return 0;
1778 }
1779 len -= skb_len;
1780 __skb_pull(skb, skb_len);
1781
1782 for (list = skb_shinfo(skb)->frag_list; list; list = list->next) {
1783 rlen = sctp_skb_pull(list, len);
1784 skb->len -= (len-rlen);
1785 skb->data_len -= (len-rlen);
1786
1787 if (!rlen)
1788 return 0;
1789
1790 len = rlen;
1791 }
1792
1793 return len;
1794}
1795
1796/* API 3.1.3 recvmsg() - UDP Style Syntax
1797 *
1798 * ssize_t recvmsg(int socket, struct msghdr *message,
1799 * int flags);
1800 *
1801 * socket - the socket descriptor of the endpoint.
1802 * message - pointer to the msghdr structure which contains a single
1803 * user message and possibly some ancillary data.
1804 *
1805 * See Section 5 for complete description of the data
1806 * structures.
1807 *
1808 * flags - flags sent or received with the user message, see Section
1809 * 5 for complete description of the flags.
1810 */
1811static struct sk_buff *sctp_skb_recv_datagram(struct sock *, int, int, int *);
1812
1813SCTP_STATIC int sctp_recvmsg(struct kiocb *iocb, struct sock *sk,
1814 struct msghdr *msg, size_t len, int noblock,
1815 int flags, int *addr_len)
1816{
1817 struct sctp_ulpevent *event = NULL;
1818 struct sctp_sock *sp = sctp_sk(sk);
1819 struct sk_buff *skb;
1820 int copied;
1821 int err = 0;
1822 int skb_len;
1823
1824 SCTP_DEBUG_PRINTK("sctp_recvmsg(%s: %p, %s: %p, %s: %zd, %s: %d, %s: "
1825 "0x%x, %s: %p)\n", "sk", sk, "msghdr", msg,
1826 "len", len, "knoblauch", noblock,
1827 "flags", flags, "addr_len", addr_len);
1828
1829 sctp_lock_sock(sk);
1830
1831 if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED)) {
1832 err = -ENOTCONN;
1833 goto out;
1834 }
1835
1836 skb = sctp_skb_recv_datagram(sk, flags, noblock, &err);
1837 if (!skb)
1838 goto out;
1839
1840 /* Get the total length of the skb including any skb's in the
1841 * frag_list.
1842 */
1843 skb_len = skb->len;
1844
1845 copied = skb_len;
1846 if (copied > len)
1847 copied = len;
1848
1849 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1850
1851 event = sctp_skb2event(skb);
1852
1853 if (err)
1854 goto out_free;
1855
1856 sock_recv_timestamp(msg, sk, skb);
1857 if (sctp_ulpevent_is_notification(event)) {
1858 msg->msg_flags |= MSG_NOTIFICATION;
1859 sp->pf->event_msgname(event, msg->msg_name, addr_len);
1860 } else {
1861 sp->pf->skb_msgname(skb, msg->msg_name, addr_len);
1862 }
1863
1864 /* Check if we allow SCTP_SNDRCVINFO. */
1865 if (sp->subscribe.sctp_data_io_event)
1866 sctp_ulpevent_read_sndrcvinfo(event, msg);
1867#if 0
1868 /* FIXME: we should be calling IP/IPv6 layers. */
1869 if (sk->sk_protinfo.af_inet.cmsg_flags)
1870 ip_cmsg_recv(msg, skb);
1871#endif
1872
1873 err = copied;
1874
1875 /* If skb's length exceeds the user's buffer, update the skb and
1876 * push it back to the receive_queue so that the next call to
1877 * recvmsg() will return the remaining data. Don't set MSG_EOR.
1878 */
1879 if (skb_len > copied) {
1880 msg->msg_flags &= ~MSG_EOR;
1881 if (flags & MSG_PEEK)
1882 goto out_free;
1883 sctp_skb_pull(skb, copied);
1884 skb_queue_head(&sk->sk_receive_queue, skb);
1885
1886 /* When only partial message is copied to the user, increase
1887 * rwnd by that amount. If all the data in the skb is read,
1888 * rwnd is updated when the event is freed.
1889 */
1890 sctp_assoc_rwnd_increase(event->asoc, copied);
1891 goto out;
1892 } else if ((event->msg_flags & MSG_NOTIFICATION) ||
1893 (event->msg_flags & MSG_EOR))
1894 msg->msg_flags |= MSG_EOR;
1895 else
1896 msg->msg_flags &= ~MSG_EOR;
1897
1898out_free:
1899 if (flags & MSG_PEEK) {
1900 /* Release the skb reference acquired after peeking the skb in
1901 * sctp_skb_recv_datagram().
1902 */
1903 kfree_skb(skb);
1904 } else {
1905 /* Free the event which includes releasing the reference to
1906 * the owner of the skb, freeing the skb and updating the
1907 * rwnd.
1908 */
1909 sctp_ulpevent_free(event);
1910 }
1911out:
1912 sctp_release_sock(sk);
1913 return err;
1914}
1915
1916/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
1917 *
1918 * This option is a on/off flag. If enabled no SCTP message
1919 * fragmentation will be performed. Instead if a message being sent
1920 * exceeds the current PMTU size, the message will NOT be sent and
1921 * instead a error will be indicated to the user.
1922 */
1923static int sctp_setsockopt_disable_fragments(struct sock *sk,
1924 char __user *optval, int optlen)
1925{
1926 int val;
1927
1928 if (optlen < sizeof(int))
1929 return -EINVAL;
1930
1931 if (get_user(val, (int __user *)optval))
1932 return -EFAULT;
1933
1934 sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1;
1935
1936 return 0;
1937}
1938
1939static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
1940 int optlen)
1941{
1942 if (optlen != sizeof(struct sctp_event_subscribe))
1943 return -EINVAL;
1944 if (copy_from_user(&sctp_sk(sk)->subscribe, optval, optlen))
1945 return -EFAULT;
1946 return 0;
1947}
1948
1949/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
1950 *
1951 * This socket option is applicable to the UDP-style socket only. When
1952 * set it will cause associations that are idle for more than the
1953 * specified number of seconds to automatically close. An association
1954 * being idle is defined an association that has NOT sent or received
1955 * user data. The special value of '0' indicates that no automatic
1956 * close of any associations should be performed. The option expects an
1957 * integer defining the number of seconds of idle time before an
1958 * association is closed.
1959 */
1960static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval,
1961 int optlen)
1962{
1963 struct sctp_sock *sp = sctp_sk(sk);
1964
1965 /* Applicable to UDP-style socket only */
1966 if (sctp_style(sk, TCP))
1967 return -EOPNOTSUPP;
1968 if (optlen != sizeof(int))
1969 return -EINVAL;
1970 if (copy_from_user(&sp->autoclose, optval, optlen))
1971 return -EFAULT;
1972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 return 0;
1974}
1975
1976/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
1977 *
1978 * Applications can enable or disable heartbeats for any peer address of
1979 * an association, modify an address's heartbeat interval, force a
1980 * heartbeat to be sent immediately, and adjust the address's maximum
1981 * number of retransmissions sent before an address is considered
1982 * unreachable. The following structure is used to access and modify an
1983 * address's parameters:
1984 *
1985 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08001986 * sctp_assoc_t spp_assoc_id;
1987 * struct sockaddr_storage spp_address;
1988 * uint32_t spp_hbinterval;
1989 * uint16_t spp_pathmaxrxt;
1990 * uint32_t spp_pathmtu;
1991 * uint32_t spp_sackdelay;
1992 * uint32_t spp_flags;
1993 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08001995 * spp_assoc_id - (one-to-many style socket) This is filled in the
1996 * application, and identifies the association for
1997 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 * spp_address - This specifies which address is of interest.
1999 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08002000 * in milliseconds. If a value of zero
2001 * is present in this field then no changes are to
2002 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 * spp_pathmaxrxt - This contains the maximum number of
2004 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08002005 * considered unreachable. If a value of zero
2006 * is present in this field then no changes are to
2007 * be made to this parameter.
2008 * spp_pathmtu - When Path MTU discovery is disabled the value
2009 * specified here will be the "fixed" path mtu.
2010 * Note that if the spp_address field is empty
2011 * then all associations on this address will
2012 * have this fixed path mtu set upon them.
2013 *
2014 * spp_sackdelay - When delayed sack is enabled, this value specifies
2015 * the number of milliseconds that sacks will be delayed
2016 * for. This value will apply to all addresses of an
2017 * association if the spp_address field is empty. Note
2018 * also, that if delayed sack is enabled and this
2019 * value is set to 0, no change is made to the last
2020 * recorded delayed sack timer value.
2021 *
2022 * spp_flags - These flags are used to control various features
2023 * on an association. The flag field may contain
2024 * zero or more of the following options.
2025 *
2026 * SPP_HB_ENABLE - Enable heartbeats on the
2027 * specified address. Note that if the address
2028 * field is empty all addresses for the association
2029 * have heartbeats enabled upon them.
2030 *
2031 * SPP_HB_DISABLE - Disable heartbeats on the
2032 * speicifed address. Note that if the address
2033 * field is empty all addresses for the association
2034 * will have their heartbeats disabled. Note also
2035 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
2036 * mutually exclusive, only one of these two should
2037 * be specified. Enabling both fields will have
2038 * undetermined results.
2039 *
2040 * SPP_HB_DEMAND - Request a user initiated heartbeat
2041 * to be made immediately.
2042 *
2043 * SPP_PMTUD_ENABLE - This field will enable PMTU
2044 * discovery upon the specified address. Note that
2045 * if the address feild is empty then all addresses
2046 * on the association are effected.
2047 *
2048 * SPP_PMTUD_DISABLE - This field will disable PMTU
2049 * discovery upon the specified address. Note that
2050 * if the address feild is empty then all addresses
2051 * on the association are effected. Not also that
2052 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2053 * exclusive. Enabling both will have undetermined
2054 * results.
2055 *
2056 * SPP_SACKDELAY_ENABLE - Setting this flag turns
2057 * on delayed sack. The time specified in spp_sackdelay
2058 * is used to specify the sack delay for this address. Note
2059 * that if spp_address is empty then all addresses will
2060 * enable delayed sack and take on the sack delay
2061 * value specified in spp_sackdelay.
2062 * SPP_SACKDELAY_DISABLE - Setting this flag turns
2063 * off delayed sack. If the spp_address field is blank then
2064 * delayed sack is disabled for the entire association. Note
2065 * also that this field is mutually exclusive to
2066 * SPP_SACKDELAY_ENABLE, setting both will have undefined
2067 * results.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 */
Adrian Bunk16164362006-09-18 00:40:38 -07002069static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2070 struct sctp_transport *trans,
2071 struct sctp_association *asoc,
2072 struct sctp_sock *sp,
2073 int hb_change,
2074 int pmtud_change,
2075 int sackdelay_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 int error;
2078
Frank Filz52ccb8e2005-12-22 11:36:46 -08002079 if (params->spp_flags & SPP_HB_DEMAND && trans) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 error = sctp_primitive_REQUESTHEARTBEAT (trans->asoc, trans);
2081 if (error)
2082 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 }
2084
Frank Filz52ccb8e2005-12-22 11:36:46 -08002085 if (params->spp_hbinterval) {
2086 if (trans) {
2087 trans->hbinterval = msecs_to_jiffies(params->spp_hbinterval);
2088 } else if (asoc) {
2089 asoc->hbinterval = msecs_to_jiffies(params->spp_hbinterval);
2090 } else {
2091 sp->hbinterval = params->spp_hbinterval;
2092 }
2093 }
2094
2095 if (hb_change) {
2096 if (trans) {
2097 trans->param_flags =
2098 (trans->param_flags & ~SPP_HB) | hb_change;
2099 } else if (asoc) {
2100 asoc->param_flags =
2101 (asoc->param_flags & ~SPP_HB) | hb_change;
2102 } else {
2103 sp->param_flags =
2104 (sp->param_flags & ~SPP_HB) | hb_change;
2105 }
2106 }
2107
2108 if (params->spp_pathmtu) {
2109 if (trans) {
2110 trans->pathmtu = params->spp_pathmtu;
2111 sctp_assoc_sync_pmtu(asoc);
2112 } else if (asoc) {
2113 asoc->pathmtu = params->spp_pathmtu;
2114 sctp_frag_point(sp, params->spp_pathmtu);
2115 } else {
2116 sp->pathmtu = params->spp_pathmtu;
2117 }
2118 }
2119
2120 if (pmtud_change) {
2121 if (trans) {
2122 int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2123 (params->spp_flags & SPP_PMTUD_ENABLE);
2124 trans->param_flags =
2125 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2126 if (update) {
2127 sctp_transport_pmtu(trans);
2128 sctp_assoc_sync_pmtu(asoc);
2129 }
2130 } else if (asoc) {
2131 asoc->param_flags =
2132 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2133 } else {
2134 sp->param_flags =
2135 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2136 }
2137 }
2138
2139 if (params->spp_sackdelay) {
2140 if (trans) {
2141 trans->sackdelay =
2142 msecs_to_jiffies(params->spp_sackdelay);
2143 } else if (asoc) {
2144 asoc->sackdelay =
2145 msecs_to_jiffies(params->spp_sackdelay);
2146 } else {
2147 sp->sackdelay = params->spp_sackdelay;
2148 }
2149 }
2150
2151 if (sackdelay_change) {
2152 if (trans) {
2153 trans->param_flags =
2154 (trans->param_flags & ~SPP_SACKDELAY) |
2155 sackdelay_change;
2156 } else if (asoc) {
2157 asoc->param_flags =
2158 (asoc->param_flags & ~SPP_SACKDELAY) |
2159 sackdelay_change;
2160 } else {
2161 sp->param_flags =
2162 (sp->param_flags & ~SPP_SACKDELAY) |
2163 sackdelay_change;
2164 }
2165 }
2166
2167 if (params->spp_pathmaxrxt) {
2168 if (trans) {
2169 trans->pathmaxrxt = params->spp_pathmaxrxt;
2170 } else if (asoc) {
2171 asoc->pathmaxrxt = params->spp_pathmaxrxt;
2172 } else {
2173 sp->pathmaxrxt = params->spp_pathmaxrxt;
2174 }
2175 }
2176
2177 return 0;
2178}
2179
2180static int sctp_setsockopt_peer_addr_params(struct sock *sk,
2181 char __user *optval, int optlen)
2182{
2183 struct sctp_paddrparams params;
2184 struct sctp_transport *trans = NULL;
2185 struct sctp_association *asoc = NULL;
2186 struct sctp_sock *sp = sctp_sk(sk);
2187 int error;
2188 int hb_change, pmtud_change, sackdelay_change;
2189
2190 if (optlen != sizeof(struct sctp_paddrparams))
2191 return - EINVAL;
2192
2193 if (copy_from_user(&params, optval, optlen))
2194 return -EFAULT;
2195
2196 /* Validate flags and value parameters. */
2197 hb_change = params.spp_flags & SPP_HB;
2198 pmtud_change = params.spp_flags & SPP_PMTUD;
2199 sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2200
2201 if (hb_change == SPP_HB ||
2202 pmtud_change == SPP_PMTUD ||
2203 sackdelay_change == SPP_SACKDELAY ||
2204 params.spp_sackdelay > 500 ||
2205 (params.spp_pathmtu
2206 && params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
2207 return -EINVAL;
2208
2209 /* If an address other than INADDR_ANY is specified, and
2210 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 */
Frank Filz52ccb8e2005-12-22 11:36:46 -08002212 if (!sctp_is_any(( union sctp_addr *)&params.spp_address)) {
2213 trans = sctp_addr_id2transport(sk, &params.spp_address,
2214 params.spp_assoc_id);
2215 if (!trans)
2216 return -EINVAL;
2217 }
2218
2219 /* Get association, if assoc_id != 0 and the socket is a one
2220 * to many style socket, and an association was not found, then
2221 * the id was invalid.
2222 */
2223 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
2224 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP))
2225 return -EINVAL;
2226
2227 /* Heartbeat demand can only be sent on a transport or
2228 * association, but not a socket.
2229 */
2230 if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2231 return -EINVAL;
2232
2233 /* Process parameters. */
2234 error = sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2235 hb_change, pmtud_change,
2236 sackdelay_change);
2237
2238 if (error)
2239 return error;
2240
2241 /* If changes are for association, also apply parameters to each
2242 * transport.
2243 */
2244 if (!trans && asoc) {
2245 struct list_head *pos;
2246
2247 list_for_each(pos, &asoc->peer.transport_addr_list) {
2248 trans = list_entry(pos, struct sctp_transport,
2249 transports);
2250 sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2251 hb_change, pmtud_change,
2252 sackdelay_change);
2253 }
2254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
2256 return 0;
2257}
2258
Frank Filz77086102005-12-22 11:37:30 -08002259/* 7.1.24. Delayed Ack Timer (SCTP_DELAYED_ACK_TIME)
2260 *
2261 * This options will get or set the delayed ack timer. The time is set
2262 * in milliseconds. If the assoc_id is 0, then this sets or gets the
2263 * endpoints default delayed ack timer value. If the assoc_id field is
2264 * non-zero, then the set or get effects the specified association.
2265 *
2266 * struct sctp_assoc_value {
2267 * sctp_assoc_t assoc_id;
2268 * uint32_t assoc_value;
2269 * };
2270 *
2271 * assoc_id - This parameter, indicates which association the
2272 * user is preforming an action upon. Note that if
2273 * this field's value is zero then the endpoints
2274 * default value is changed (effecting future
2275 * associations only).
2276 *
2277 * assoc_value - This parameter contains the number of milliseconds
2278 * that the user is requesting the delayed ACK timer
2279 * be set to. Note that this value is defined in
2280 * the standard to be between 200 and 500 milliseconds.
2281 *
2282 * Note: a value of zero will leave the value alone,
2283 * but disable SACK delay. A non-zero value will also
2284 * enable SACK delay.
2285 */
2286
2287static int sctp_setsockopt_delayed_ack_time(struct sock *sk,
2288 char __user *optval, int optlen)
2289{
2290 struct sctp_assoc_value params;
2291 struct sctp_transport *trans = NULL;
2292 struct sctp_association *asoc = NULL;
2293 struct sctp_sock *sp = sctp_sk(sk);
2294
2295 if (optlen != sizeof(struct sctp_assoc_value))
2296 return - EINVAL;
2297
2298 if (copy_from_user(&params, optval, optlen))
2299 return -EFAULT;
2300
2301 /* Validate value parameter. */
2302 if (params.assoc_value > 500)
2303 return -EINVAL;
2304
2305 /* Get association, if assoc_id != 0 and the socket is a one
2306 * to many style socket, and an association was not found, then
2307 * the id was invalid.
2308 */
2309 asoc = sctp_id2assoc(sk, params.assoc_id);
2310 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
2311 return -EINVAL;
2312
2313 if (params.assoc_value) {
2314 if (asoc) {
2315 asoc->sackdelay =
2316 msecs_to_jiffies(params.assoc_value);
2317 asoc->param_flags =
2318 (asoc->param_flags & ~SPP_SACKDELAY) |
2319 SPP_SACKDELAY_ENABLE;
2320 } else {
2321 sp->sackdelay = params.assoc_value;
2322 sp->param_flags =
2323 (sp->param_flags & ~SPP_SACKDELAY) |
2324 SPP_SACKDELAY_ENABLE;
2325 }
2326 } else {
2327 if (asoc) {
2328 asoc->param_flags =
2329 (asoc->param_flags & ~SPP_SACKDELAY) |
2330 SPP_SACKDELAY_DISABLE;
2331 } else {
2332 sp->param_flags =
2333 (sp->param_flags & ~SPP_SACKDELAY) |
2334 SPP_SACKDELAY_DISABLE;
2335 }
2336 }
2337
2338 /* If change is for association, also apply to each transport. */
2339 if (asoc) {
2340 struct list_head *pos;
2341
2342 list_for_each(pos, &asoc->peer.transport_addr_list) {
2343 trans = list_entry(pos, struct sctp_transport,
2344 transports);
2345 if (params.assoc_value) {
2346 trans->sackdelay =
2347 msecs_to_jiffies(params.assoc_value);
2348 trans->param_flags =
2349 (trans->param_flags & ~SPP_SACKDELAY) |
2350 SPP_SACKDELAY_ENABLE;
2351 } else {
2352 trans->param_flags =
2353 (trans->param_flags & ~SPP_SACKDELAY) |
2354 SPP_SACKDELAY_DISABLE;
2355 }
2356 }
2357 }
2358
2359 return 0;
2360}
2361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2363 *
2364 * Applications can specify protocol parameters for the default association
2365 * initialization. The option name argument to setsockopt() and getsockopt()
2366 * is SCTP_INITMSG.
2367 *
2368 * Setting initialization parameters is effective only on an unconnected
2369 * socket (for UDP-style sockets only future associations are effected
2370 * by the change). With TCP-style sockets, this option is inherited by
2371 * sockets derived from a listener socket.
2372 */
2373static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, int optlen)
2374{
2375 struct sctp_initmsg sinit;
2376 struct sctp_sock *sp = sctp_sk(sk);
2377
2378 if (optlen != sizeof(struct sctp_initmsg))
2379 return -EINVAL;
2380 if (copy_from_user(&sinit, optval, optlen))
2381 return -EFAULT;
2382
2383 if (sinit.sinit_num_ostreams)
2384 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
2385 if (sinit.sinit_max_instreams)
2386 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
2387 if (sinit.sinit_max_attempts)
2388 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
2389 if (sinit.sinit_max_init_timeo)
2390 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
2391
2392 return 0;
2393}
2394
2395/*
2396 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2397 *
2398 * Applications that wish to use the sendto() system call may wish to
2399 * specify a default set of parameters that would normally be supplied
2400 * through the inclusion of ancillary data. This socket option allows
2401 * such an application to set the default sctp_sndrcvinfo structure.
2402 * The application that wishes to use this socket option simply passes
2403 * in to this call the sctp_sndrcvinfo structure defined in Section
2404 * 5.2.2) The input parameters accepted by this call include
2405 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2406 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
2407 * to this call if the caller is using the UDP model.
2408 */
2409static int sctp_setsockopt_default_send_param(struct sock *sk,
2410 char __user *optval, int optlen)
2411{
2412 struct sctp_sndrcvinfo info;
2413 struct sctp_association *asoc;
2414 struct sctp_sock *sp = sctp_sk(sk);
2415
2416 if (optlen != sizeof(struct sctp_sndrcvinfo))
2417 return -EINVAL;
2418 if (copy_from_user(&info, optval, optlen))
2419 return -EFAULT;
2420
2421 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
2422 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
2423 return -EINVAL;
2424
2425 if (asoc) {
2426 asoc->default_stream = info.sinfo_stream;
2427 asoc->default_flags = info.sinfo_flags;
2428 asoc->default_ppid = info.sinfo_ppid;
2429 asoc->default_context = info.sinfo_context;
2430 asoc->default_timetolive = info.sinfo_timetolive;
2431 } else {
2432 sp->default_stream = info.sinfo_stream;
2433 sp->default_flags = info.sinfo_flags;
2434 sp->default_ppid = info.sinfo_ppid;
2435 sp->default_context = info.sinfo_context;
2436 sp->default_timetolive = info.sinfo_timetolive;
2437 }
2438
2439 return 0;
2440}
2441
2442/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
2443 *
2444 * Requests that the local SCTP stack use the enclosed peer address as
2445 * the association primary. The enclosed address must be one of the
2446 * association peer's addresses.
2447 */
2448static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
2449 int optlen)
2450{
2451 struct sctp_prim prim;
2452 struct sctp_transport *trans;
2453
2454 if (optlen != sizeof(struct sctp_prim))
2455 return -EINVAL;
2456
2457 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
2458 return -EFAULT;
2459
2460 trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
2461 if (!trans)
2462 return -EINVAL;
2463
2464 sctp_assoc_set_primary(trans->asoc, trans);
2465
2466 return 0;
2467}
2468
2469/*
2470 * 7.1.5 SCTP_NODELAY
2471 *
2472 * Turn on/off any Nagle-like algorithm. This means that packets are
2473 * generally sent as soon as possible and no unnecessary delays are
2474 * introduced, at the cost of more packets in the network. Expects an
2475 * integer boolean flag.
2476 */
2477static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
2478 int optlen)
2479{
2480 int val;
2481
2482 if (optlen < sizeof(int))
2483 return -EINVAL;
2484 if (get_user(val, (int __user *)optval))
2485 return -EFAULT;
2486
2487 sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
2488 return 0;
2489}
2490
2491/*
2492 *
2493 * 7.1.1 SCTP_RTOINFO
2494 *
2495 * The protocol parameters used to initialize and bound retransmission
2496 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
2497 * and modify these parameters.
2498 * All parameters are time values, in milliseconds. A value of 0, when
2499 * modifying the parameters, indicates that the current value should not
2500 * be changed.
2501 *
2502 */
2503static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, int optlen) {
2504 struct sctp_rtoinfo rtoinfo;
2505 struct sctp_association *asoc;
2506
2507 if (optlen != sizeof (struct sctp_rtoinfo))
2508 return -EINVAL;
2509
2510 if (copy_from_user(&rtoinfo, optval, optlen))
2511 return -EFAULT;
2512
2513 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
2514
2515 /* Set the values to the specific association */
2516 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
2517 return -EINVAL;
2518
2519 if (asoc) {
2520 if (rtoinfo.srto_initial != 0)
2521 asoc->rto_initial =
2522 msecs_to_jiffies(rtoinfo.srto_initial);
2523 if (rtoinfo.srto_max != 0)
2524 asoc->rto_max = msecs_to_jiffies(rtoinfo.srto_max);
2525 if (rtoinfo.srto_min != 0)
2526 asoc->rto_min = msecs_to_jiffies(rtoinfo.srto_min);
2527 } else {
2528 /* If there is no association or the association-id = 0
2529 * set the values to the endpoint.
2530 */
2531 struct sctp_sock *sp = sctp_sk(sk);
2532
2533 if (rtoinfo.srto_initial != 0)
2534 sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
2535 if (rtoinfo.srto_max != 0)
2536 sp->rtoinfo.srto_max = rtoinfo.srto_max;
2537 if (rtoinfo.srto_min != 0)
2538 sp->rtoinfo.srto_min = rtoinfo.srto_min;
2539 }
2540
2541 return 0;
2542}
2543
2544/*
2545 *
2546 * 7.1.2 SCTP_ASSOCINFO
2547 *
2548 * This option is used to tune the the maximum retransmission attempts
2549 * of the association.
2550 * Returns an error if the new association retransmission value is
2551 * greater than the sum of the retransmission value of the peer.
2552 * See [SCTP] for more information.
2553 *
2554 */
2555static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, int optlen)
2556{
2557
2558 struct sctp_assocparams assocparams;
2559 struct sctp_association *asoc;
2560
2561 if (optlen != sizeof(struct sctp_assocparams))
2562 return -EINVAL;
2563 if (copy_from_user(&assocparams, optval, optlen))
2564 return -EFAULT;
2565
2566 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
2567
2568 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
2569 return -EINVAL;
2570
2571 /* Set the values to the specific association */
2572 if (asoc) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07002573 if (assocparams.sasoc_asocmaxrxt != 0) {
2574 __u32 path_sum = 0;
2575 int paths = 0;
2576 struct list_head *pos;
2577 struct sctp_transport *peer_addr;
2578
2579 list_for_each(pos, &asoc->peer.transport_addr_list) {
2580 peer_addr = list_entry(pos,
2581 struct sctp_transport,
2582 transports);
2583 path_sum += peer_addr->pathmaxrxt;
2584 paths++;
2585 }
2586
2587 /* Only validate asocmaxrxt if we have more then
2588 * one path/transport. We do this because path
2589 * retransmissions are only counted when we have more
2590 * then one path.
2591 */
2592 if (paths > 1 &&
2593 assocparams.sasoc_asocmaxrxt > path_sum)
2594 return -EINVAL;
2595
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07002597 }
2598
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 if (assocparams.sasoc_cookie_life != 0) {
2600 asoc->cookie_life.tv_sec =
2601 assocparams.sasoc_cookie_life / 1000;
2602 asoc->cookie_life.tv_usec =
2603 (assocparams.sasoc_cookie_life % 1000)
2604 * 1000;
2605 }
2606 } else {
2607 /* Set the values to the endpoint */
2608 struct sctp_sock *sp = sctp_sk(sk);
2609
2610 if (assocparams.sasoc_asocmaxrxt != 0)
2611 sp->assocparams.sasoc_asocmaxrxt =
2612 assocparams.sasoc_asocmaxrxt;
2613 if (assocparams.sasoc_cookie_life != 0)
2614 sp->assocparams.sasoc_cookie_life =
2615 assocparams.sasoc_cookie_life;
2616 }
2617 return 0;
2618}
2619
2620/*
2621 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
2622 *
2623 * This socket option is a boolean flag which turns on or off mapped V4
2624 * addresses. If this option is turned on and the socket is type
2625 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
2626 * If this option is turned off, then no mapping will be done of V4
2627 * addresses and a user will receive both PF_INET6 and PF_INET type
2628 * addresses on the socket.
2629 */
2630static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, int optlen)
2631{
2632 int val;
2633 struct sctp_sock *sp = sctp_sk(sk);
2634
2635 if (optlen < sizeof(int))
2636 return -EINVAL;
2637 if (get_user(val, (int __user *)optval))
2638 return -EFAULT;
2639 if (val)
2640 sp->v4mapped = 1;
2641 else
2642 sp->v4mapped = 0;
2643
2644 return 0;
2645}
2646
2647/*
2648 * 7.1.17 Set the maximum fragrmentation size (SCTP_MAXSEG)
2649 *
2650 * This socket option specifies the maximum size to put in any outgoing
2651 * SCTP chunk. If a message is larger than this size it will be
2652 * fragmented by SCTP into the specified size. Note that the underlying
2653 * SCTP implementation may fragment into smaller sized chunks when the
2654 * PMTU of the underlying association is smaller than the value set by
2655 * the user.
2656 */
2657static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, int optlen)
2658{
2659 struct sctp_association *asoc;
2660 struct list_head *pos;
2661 struct sctp_sock *sp = sctp_sk(sk);
2662 int val;
2663
2664 if (optlen < sizeof(int))
2665 return -EINVAL;
2666 if (get_user(val, (int __user *)optval))
2667 return -EFAULT;
Ivan Skytte Jorgensen96a33992005-10-28 15:36:12 -07002668 if ((val != 0) && ((val < 8) || (val > SCTP_MAX_CHUNK_LEN)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 return -EINVAL;
2670 sp->user_frag = val;
2671
Ivan Skytte Jorgensen96a33992005-10-28 15:36:12 -07002672 /* Update the frag_point of the existing associations. */
2673 list_for_each(pos, &(sp->ep->asocs)) {
2674 asoc = list_entry(pos, struct sctp_association, asocs);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002675 asoc->frag_point = sctp_frag_point(sp, asoc->pathmtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 }
2677
2678 return 0;
2679}
2680
2681
2682/*
2683 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
2684 *
2685 * Requests that the peer mark the enclosed address as the association
2686 * primary. The enclosed address must be one of the association's
2687 * locally bound addresses. The following structure is used to make a
2688 * set primary request:
2689 */
2690static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
2691 int optlen)
2692{
2693 struct sctp_sock *sp;
2694 struct sctp_endpoint *ep;
2695 struct sctp_association *asoc = NULL;
2696 struct sctp_setpeerprim prim;
2697 struct sctp_chunk *chunk;
2698 int err;
2699
2700 sp = sctp_sk(sk);
2701 ep = sp->ep;
2702
2703 if (!sctp_addip_enable)
2704 return -EPERM;
2705
2706 if (optlen != sizeof(struct sctp_setpeerprim))
2707 return -EINVAL;
2708
2709 if (copy_from_user(&prim, optval, optlen))
2710 return -EFAULT;
2711
2712 asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
2713 if (!asoc)
2714 return -EINVAL;
2715
2716 if (!asoc->peer.asconf_capable)
2717 return -EPERM;
2718
2719 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
2720 return -EPERM;
2721
2722 if (!sctp_state(asoc, ESTABLISHED))
2723 return -ENOTCONN;
2724
2725 if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
2726 return -EADDRNOTAVAIL;
2727
2728 /* Create an ASCONF chunk with SET_PRIMARY parameter */
2729 chunk = sctp_make_asconf_set_prim(asoc,
2730 (union sctp_addr *)&prim.sspp_addr);
2731 if (!chunk)
2732 return -ENOMEM;
2733
2734 err = sctp_send_asconf(asoc, chunk);
2735
2736 SCTP_DEBUG_PRINTK("We set peer primary addr primitively.\n");
2737
2738 return err;
2739}
2740
2741static int sctp_setsockopt_adaption_layer(struct sock *sk, char __user *optval,
2742 int optlen)
2743{
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07002744 struct sctp_setadaption adaption;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07002746 if (optlen != sizeof(struct sctp_setadaption))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 return -EINVAL;
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07002748 if (copy_from_user(&adaption, optval, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 return -EFAULT;
2750
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07002751 sctp_sk(sk)->adaption_ind = adaption.ssb_adaption_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
2753 return 0;
2754}
2755
2756/* API 6.2 setsockopt(), getsockopt()
2757 *
2758 * Applications use setsockopt() and getsockopt() to set or retrieve
2759 * socket options. Socket options are used to change the default
2760 * behavior of sockets calls. They are described in Section 7.
2761 *
2762 * The syntax is:
2763 *
2764 * ret = getsockopt(int sd, int level, int optname, void __user *optval,
2765 * int __user *optlen);
2766 * ret = setsockopt(int sd, int level, int optname, const void __user *optval,
2767 * int optlen);
2768 *
2769 * sd - the socket descript.
2770 * level - set to IPPROTO_SCTP for all SCTP options.
2771 * optname - the option name.
2772 * optval - the buffer to store the value of the option.
2773 * optlen - the size of the buffer.
2774 */
2775SCTP_STATIC int sctp_setsockopt(struct sock *sk, int level, int optname,
2776 char __user *optval, int optlen)
2777{
2778 int retval = 0;
2779
2780 SCTP_DEBUG_PRINTK("sctp_setsockopt(sk: %p... optname: %d)\n",
2781 sk, optname);
2782
2783 /* I can hardly begin to describe how wrong this is. This is
2784 * so broken as to be worse than useless. The API draft
2785 * REALLY is NOT helpful here... I am not convinced that the
2786 * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
2787 * are at all well-founded.
2788 */
2789 if (level != SOL_SCTP) {
2790 struct sctp_af *af = sctp_sk(sk)->pf->af;
2791 retval = af->setsockopt(sk, level, optname, optval, optlen);
2792 goto out_nounlock;
2793 }
2794
2795 sctp_lock_sock(sk);
2796
2797 switch (optname) {
2798 case SCTP_SOCKOPT_BINDX_ADD:
2799 /* 'optlen' is the size of the addresses buffer. */
2800 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
2801 optlen, SCTP_BINDX_ADD_ADDR);
2802 break;
2803
2804 case SCTP_SOCKOPT_BINDX_REM:
2805 /* 'optlen' is the size of the addresses buffer. */
2806 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
2807 optlen, SCTP_BINDX_REM_ADDR);
2808 break;
2809
Frank Filz3f7a87d2005-06-20 13:14:57 -07002810 case SCTP_SOCKOPT_CONNECTX:
2811 /* 'optlen' is the size of the addresses buffer. */
2812 retval = sctp_setsockopt_connectx(sk, (struct sockaddr __user *)optval,
2813 optlen);
2814 break;
2815
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 case SCTP_DISABLE_FRAGMENTS:
2817 retval = sctp_setsockopt_disable_fragments(sk, optval, optlen);
2818 break;
2819
2820 case SCTP_EVENTS:
2821 retval = sctp_setsockopt_events(sk, optval, optlen);
2822 break;
2823
2824 case SCTP_AUTOCLOSE:
2825 retval = sctp_setsockopt_autoclose(sk, optval, optlen);
2826 break;
2827
2828 case SCTP_PEER_ADDR_PARAMS:
2829 retval = sctp_setsockopt_peer_addr_params(sk, optval, optlen);
2830 break;
2831
Frank Filz77086102005-12-22 11:37:30 -08002832 case SCTP_DELAYED_ACK_TIME:
2833 retval = sctp_setsockopt_delayed_ack_time(sk, optval, optlen);
2834 break;
2835
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 case SCTP_INITMSG:
2837 retval = sctp_setsockopt_initmsg(sk, optval, optlen);
2838 break;
2839 case SCTP_DEFAULT_SEND_PARAM:
2840 retval = sctp_setsockopt_default_send_param(sk, optval,
2841 optlen);
2842 break;
2843 case SCTP_PRIMARY_ADDR:
2844 retval = sctp_setsockopt_primary_addr(sk, optval, optlen);
2845 break;
2846 case SCTP_SET_PEER_PRIMARY_ADDR:
2847 retval = sctp_setsockopt_peer_primary_addr(sk, optval, optlen);
2848 break;
2849 case SCTP_NODELAY:
2850 retval = sctp_setsockopt_nodelay(sk, optval, optlen);
2851 break;
2852 case SCTP_RTOINFO:
2853 retval = sctp_setsockopt_rtoinfo(sk, optval, optlen);
2854 break;
2855 case SCTP_ASSOCINFO:
2856 retval = sctp_setsockopt_associnfo(sk, optval, optlen);
2857 break;
2858 case SCTP_I_WANT_MAPPED_V4_ADDR:
2859 retval = sctp_setsockopt_mappedv4(sk, optval, optlen);
2860 break;
2861 case SCTP_MAXSEG:
2862 retval = sctp_setsockopt_maxseg(sk, optval, optlen);
2863 break;
2864 case SCTP_ADAPTION_LAYER:
2865 retval = sctp_setsockopt_adaption_layer(sk, optval, optlen);
2866 break;
2867
2868 default:
2869 retval = -ENOPROTOOPT;
2870 break;
2871 };
2872
2873 sctp_release_sock(sk);
2874
2875out_nounlock:
2876 return retval;
2877}
2878
2879/* API 3.1.6 connect() - UDP Style Syntax
2880 *
2881 * An application may use the connect() call in the UDP model to initiate an
2882 * association without sending data.
2883 *
2884 * The syntax is:
2885 *
2886 * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
2887 *
2888 * sd: the socket descriptor to have a new association added to.
2889 *
2890 * nam: the address structure (either struct sockaddr_in or struct
2891 * sockaddr_in6 defined in RFC2553 [7]).
2892 *
2893 * len: the size of the address.
2894 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07002895SCTP_STATIC int sctp_connect(struct sock *sk, struct sockaddr *addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 int addr_len)
2897{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 int err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07002899 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
2901 sctp_lock_sock(sk);
2902
Frank Filz3f7a87d2005-06-20 13:14:57 -07002903 SCTP_DEBUG_PRINTK("%s - sk: %p, sockaddr: %p, addr_len: %d\n",
2904 __FUNCTION__, sk, addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
Frank Filz3f7a87d2005-06-20 13:14:57 -07002906 /* Validate addr_len before calling common connect/connectx routine. */
2907 af = sctp_get_af_specific(addr->sa_family);
2908 if (!af || addr_len < af->sockaddr_len) {
2909 err = -EINVAL;
2910 } else {
2911 /* Pass correct addr len to common routine (so it knows there
2912 * is only one address being passed.
2913 */
2914 err = __sctp_connect(sk, addr, af->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 }
2916
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 sctp_release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 return err;
2919}
2920
2921/* FIXME: Write comments. */
2922SCTP_STATIC int sctp_disconnect(struct sock *sk, int flags)
2923{
2924 return -EOPNOTSUPP; /* STUB */
2925}
2926
2927/* 4.1.4 accept() - TCP Style Syntax
2928 *
2929 * Applications use accept() call to remove an established SCTP
2930 * association from the accept queue of the endpoint. A new socket
2931 * descriptor will be returned from accept() to represent the newly
2932 * formed association.
2933 */
2934SCTP_STATIC struct sock *sctp_accept(struct sock *sk, int flags, int *err)
2935{
2936 struct sctp_sock *sp;
2937 struct sctp_endpoint *ep;
2938 struct sock *newsk = NULL;
2939 struct sctp_association *asoc;
2940 long timeo;
2941 int error = 0;
2942
2943 sctp_lock_sock(sk);
2944
2945 sp = sctp_sk(sk);
2946 ep = sp->ep;
2947
2948 if (!sctp_style(sk, TCP)) {
2949 error = -EOPNOTSUPP;
2950 goto out;
2951 }
2952
2953 if (!sctp_sstate(sk, LISTENING)) {
2954 error = -EINVAL;
2955 goto out;
2956 }
2957
Sridhar Samudrala8abfedd2006-08-22 00:24:09 -07002958 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
2960 error = sctp_wait_for_accept(sk, timeo);
2961 if (error)
2962 goto out;
2963
2964 /* We treat the list of associations on the endpoint as the accept
2965 * queue and pick the first association on the list.
2966 */
2967 asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
2968
2969 newsk = sp->pf->create_accept_sk(sk, asoc);
2970 if (!newsk) {
2971 error = -ENOMEM;
2972 goto out;
2973 }
2974
2975 /* Populate the fields of the newsk from the oldsk and migrate the
2976 * asoc to the newsk.
2977 */
2978 sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
2979
2980out:
2981 sctp_release_sock(sk);
2982 *err = error;
2983 return newsk;
2984}
2985
2986/* The SCTP ioctl handler. */
2987SCTP_STATIC int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
2988{
2989 return -ENOIOCTLCMD;
2990}
2991
2992/* This is the function which gets called during socket creation to
2993 * initialized the SCTP-specific portion of the sock.
2994 * The sock structure should already be zero-filled memory.
2995 */
2996SCTP_STATIC int sctp_init_sock(struct sock *sk)
2997{
2998 struct sctp_endpoint *ep;
2999 struct sctp_sock *sp;
3000
3001 SCTP_DEBUG_PRINTK("sctp_init_sock(sk: %p)\n", sk);
3002
3003 sp = sctp_sk(sk);
3004
3005 /* Initialize the SCTP per socket area. */
3006 switch (sk->sk_type) {
3007 case SOCK_SEQPACKET:
3008 sp->type = SCTP_SOCKET_UDP;
3009 break;
3010 case SOCK_STREAM:
3011 sp->type = SCTP_SOCKET_TCP;
3012 break;
3013 default:
3014 return -ESOCKTNOSUPPORT;
3015 }
3016
3017 /* Initialize default send parameters. These parameters can be
3018 * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
3019 */
3020 sp->default_stream = 0;
3021 sp->default_ppid = 0;
3022 sp->default_flags = 0;
3023 sp->default_context = 0;
3024 sp->default_timetolive = 0;
3025
3026 /* Initialize default setup parameters. These parameters
3027 * can be modified with the SCTP_INITMSG socket option or
3028 * overridden by the SCTP_INIT CMSG.
3029 */
3030 sp->initmsg.sinit_num_ostreams = sctp_max_outstreams;
3031 sp->initmsg.sinit_max_instreams = sctp_max_instreams;
3032 sp->initmsg.sinit_max_attempts = sctp_max_retrans_init;
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -07003033 sp->initmsg.sinit_max_init_timeo = sctp_rto_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034
3035 /* Initialize default RTO related parameters. These parameters can
3036 * be modified for with the SCTP_RTOINFO socket option.
3037 */
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -07003038 sp->rtoinfo.srto_initial = sctp_rto_initial;
3039 sp->rtoinfo.srto_max = sctp_rto_max;
3040 sp->rtoinfo.srto_min = sctp_rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041
3042 /* Initialize default association related parameters. These parameters
3043 * can be modified with the SCTP_ASSOCINFO socket option.
3044 */
3045 sp->assocparams.sasoc_asocmaxrxt = sctp_max_retrans_association;
3046 sp->assocparams.sasoc_number_peer_destinations = 0;
3047 sp->assocparams.sasoc_peer_rwnd = 0;
3048 sp->assocparams.sasoc_local_rwnd = 0;
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -07003049 sp->assocparams.sasoc_cookie_life = sctp_valid_cookie_life;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
3051 /* Initialize default event subscriptions. By default, all the
3052 * options are off.
3053 */
3054 memset(&sp->subscribe, 0, sizeof(struct sctp_event_subscribe));
3055
3056 /* Default Peer Address Parameters. These defaults can
3057 * be modified via SCTP_PEER_ADDR_PARAMS
3058 */
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -07003059 sp->hbinterval = sctp_hb_interval;
Frank Filz52ccb8e2005-12-22 11:36:46 -08003060 sp->pathmaxrxt = sctp_max_retrans_path;
3061 sp->pathmtu = 0; // allow default discovery
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -07003062 sp->sackdelay = sctp_sack_timeout;
Frank Filz52ccb8e2005-12-22 11:36:46 -08003063 sp->param_flags = SPP_HB_ENABLE |
3064 SPP_PMTUD_ENABLE |
3065 SPP_SACKDELAY_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066
3067 /* If enabled no SCTP message fragmentation will be performed.
3068 * Configure through SCTP_DISABLE_FRAGMENTS socket option.
3069 */
3070 sp->disable_fragments = 0;
3071
Sridhar Samudrala208edef2006-09-29 17:08:01 -07003072 /* Enable Nagle algorithm by default. */
3073 sp->nodelay = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
3075 /* Enable by default. */
3076 sp->v4mapped = 1;
3077
3078 /* Auto-close idle associations after the configured
3079 * number of seconds. A value of 0 disables this
3080 * feature. Configure through the SCTP_AUTOCLOSE socket option,
3081 * for UDP-style sockets only.
3082 */
3083 sp->autoclose = 0;
3084
3085 /* User specified fragmentation limit. */
3086 sp->user_frag = 0;
3087
3088 sp->adaption_ind = 0;
3089
3090 sp->pf = sctp_get_pf_specific(sk->sk_family);
3091
3092 /* Control variables for partial data delivery. */
3093 sp->pd_mode = 0;
3094 skb_queue_head_init(&sp->pd_lobby);
3095
3096 /* Create a per socket endpoint structure. Even if we
3097 * change the data structure relationships, this may still
3098 * be useful for storing pre-connect address information.
3099 */
3100 ep = sctp_endpoint_new(sk, GFP_KERNEL);
3101 if (!ep)
3102 return -ENOMEM;
3103
3104 sp->ep = ep;
3105 sp->hmac = NULL;
3106
3107 SCTP_DBG_OBJCNT_INC(sock);
3108 return 0;
3109}
3110
3111/* Cleanup any SCTP per socket resources. */
3112SCTP_STATIC int sctp_destroy_sock(struct sock *sk)
3113{
3114 struct sctp_endpoint *ep;
3115
3116 SCTP_DEBUG_PRINTK("sctp_destroy_sock(sk: %p)\n", sk);
3117
3118 /* Release our hold on the endpoint. */
3119 ep = sctp_sk(sk)->ep;
3120 sctp_endpoint_free(ep);
3121
3122 return 0;
3123}
3124
3125/* API 4.1.7 shutdown() - TCP Style Syntax
3126 * int shutdown(int socket, int how);
3127 *
3128 * sd - the socket descriptor of the association to be closed.
3129 * how - Specifies the type of shutdown. The values are
3130 * as follows:
3131 * SHUT_RD
3132 * Disables further receive operations. No SCTP
3133 * protocol action is taken.
3134 * SHUT_WR
3135 * Disables further send operations, and initiates
3136 * the SCTP shutdown sequence.
3137 * SHUT_RDWR
3138 * Disables further send and receive operations
3139 * and initiates the SCTP shutdown sequence.
3140 */
3141SCTP_STATIC void sctp_shutdown(struct sock *sk, int how)
3142{
3143 struct sctp_endpoint *ep;
3144 struct sctp_association *asoc;
3145
3146 if (!sctp_style(sk, TCP))
3147 return;
3148
3149 if (how & SEND_SHUTDOWN) {
3150 ep = sctp_sk(sk)->ep;
3151 if (!list_empty(&ep->asocs)) {
3152 asoc = list_entry(ep->asocs.next,
3153 struct sctp_association, asocs);
3154 sctp_primitive_SHUTDOWN(asoc, NULL);
3155 }
3156 }
3157}
3158
3159/* 7.2.1 Association Status (SCTP_STATUS)
3160
3161 * Applications can retrieve current status information about an
3162 * association, including association state, peer receiver window size,
3163 * number of unacked data chunks, and number of data chunks pending
3164 * receipt. This information is read-only.
3165 */
3166static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
3167 char __user *optval,
3168 int __user *optlen)
3169{
3170 struct sctp_status status;
3171 struct sctp_association *asoc = NULL;
3172 struct sctp_transport *transport;
3173 sctp_assoc_t associd;
3174 int retval = 0;
3175
3176 if (len != sizeof(status)) {
3177 retval = -EINVAL;
3178 goto out;
3179 }
3180
3181 if (copy_from_user(&status, optval, sizeof(status))) {
3182 retval = -EFAULT;
3183 goto out;
3184 }
3185
3186 associd = status.sstat_assoc_id;
3187 asoc = sctp_id2assoc(sk, associd);
3188 if (!asoc) {
3189 retval = -EINVAL;
3190 goto out;
3191 }
3192
3193 transport = asoc->peer.primary_path;
3194
3195 status.sstat_assoc_id = sctp_assoc2id(asoc);
3196 status.sstat_state = asoc->state;
3197 status.sstat_rwnd = asoc->peer.rwnd;
3198 status.sstat_unackdata = asoc->unack_data;
3199
3200 status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
3201 status.sstat_instrms = asoc->c.sinit_max_instreams;
3202 status.sstat_outstrms = asoc->c.sinit_num_ostreams;
3203 status.sstat_fragmentation_point = asoc->frag_point;
3204 status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Al Viro30330ee2006-11-20 17:03:18 -08003205 flip_to_n((union sctp_addr *)&status.sstat_primary.spinfo_address,
Al Viro09ef7fe2006-11-20 17:04:10 -08003206 &transport->ipaddr_h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 /* Map ipv4 address into v4-mapped-on-v6 address. */
3208 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk),
3209 (union sctp_addr *)&status.sstat_primary.spinfo_address);
Frank Filz3f7a87d2005-06-20 13:14:57 -07003210 status.sstat_primary.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 status.sstat_primary.spinfo_cwnd = transport->cwnd;
3212 status.sstat_primary.spinfo_srtt = transport->srtt;
3213 status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08003214 status.sstat_primary.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215
Frank Filz3f7a87d2005-06-20 13:14:57 -07003216 if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
3217 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
3218
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 if (put_user(len, optlen)) {
3220 retval = -EFAULT;
3221 goto out;
3222 }
3223
3224 SCTP_DEBUG_PRINTK("sctp_getsockopt_sctp_status(%d): %d %d %d\n",
3225 len, status.sstat_state, status.sstat_rwnd,
3226 status.sstat_assoc_id);
3227
3228 if (copy_to_user(optval, &status, len)) {
3229 retval = -EFAULT;
3230 goto out;
3231 }
3232
3233out:
3234 return (retval);
3235}
3236
3237
3238/* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
3239 *
3240 * Applications can retrieve information about a specific peer address
3241 * of an association, including its reachability state, congestion
3242 * window, and retransmission timer values. This information is
3243 * read-only.
3244 */
3245static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
3246 char __user *optval,
3247 int __user *optlen)
3248{
3249 struct sctp_paddrinfo pinfo;
3250 struct sctp_transport *transport;
3251 int retval = 0;
3252
3253 if (len != sizeof(pinfo)) {
3254 retval = -EINVAL;
3255 goto out;
3256 }
3257
3258 if (copy_from_user(&pinfo, optval, sizeof(pinfo))) {
3259 retval = -EFAULT;
3260 goto out;
3261 }
3262
3263 transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
3264 pinfo.spinfo_assoc_id);
3265 if (!transport)
3266 return -EINVAL;
3267
3268 pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07003269 pinfo.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 pinfo.spinfo_cwnd = transport->cwnd;
3271 pinfo.spinfo_srtt = transport->srtt;
3272 pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08003273 pinfo.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274
Frank Filz3f7a87d2005-06-20 13:14:57 -07003275 if (pinfo.spinfo_state == SCTP_UNKNOWN)
3276 pinfo.spinfo_state = SCTP_ACTIVE;
3277
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 if (put_user(len, optlen)) {
3279 retval = -EFAULT;
3280 goto out;
3281 }
3282
3283 if (copy_to_user(optval, &pinfo, len)) {
3284 retval = -EFAULT;
3285 goto out;
3286 }
3287
3288out:
3289 return (retval);
3290}
3291
3292/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
3293 *
3294 * This option is a on/off flag. If enabled no SCTP message
3295 * fragmentation will be performed. Instead if a message being sent
3296 * exceeds the current PMTU size, the message will NOT be sent and
3297 * instead a error will be indicated to the user.
3298 */
3299static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
3300 char __user *optval, int __user *optlen)
3301{
3302 int val;
3303
3304 if (len < sizeof(int))
3305 return -EINVAL;
3306
3307 len = sizeof(int);
3308 val = (sctp_sk(sk)->disable_fragments == 1);
3309 if (put_user(len, optlen))
3310 return -EFAULT;
3311 if (copy_to_user(optval, &val, len))
3312 return -EFAULT;
3313 return 0;
3314}
3315
3316/* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
3317 *
3318 * This socket option is used to specify various notifications and
3319 * ancillary data the user wishes to receive.
3320 */
3321static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
3322 int __user *optlen)
3323{
3324 if (len != sizeof(struct sctp_event_subscribe))
3325 return -EINVAL;
3326 if (copy_to_user(optval, &sctp_sk(sk)->subscribe, len))
3327 return -EFAULT;
3328 return 0;
3329}
3330
3331/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
3332 *
3333 * This socket option is applicable to the UDP-style socket only. When
3334 * set it will cause associations that are idle for more than the
3335 * specified number of seconds to automatically close. An association
3336 * being idle is defined an association that has NOT sent or received
3337 * user data. The special value of '0' indicates that no automatic
3338 * close of any associations should be performed. The option expects an
3339 * integer defining the number of seconds of idle time before an
3340 * association is closed.
3341 */
3342static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
3343{
3344 /* Applicable to UDP-style socket only */
3345 if (sctp_style(sk, TCP))
3346 return -EOPNOTSUPP;
3347 if (len != sizeof(int))
3348 return -EINVAL;
3349 if (copy_to_user(optval, &sctp_sk(sk)->autoclose, len))
3350 return -EFAULT;
3351 return 0;
3352}
3353
3354/* Helper routine to branch off an association to a new socket. */
3355SCTP_STATIC int sctp_do_peeloff(struct sctp_association *asoc,
3356 struct socket **sockp)
3357{
3358 struct sock *sk = asoc->base.sk;
3359 struct socket *sock;
Vlad Yasevich4f444302006-10-30 18:54:32 -08003360 struct inet_sock *inetsk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 int err = 0;
3362
3363 /* An association cannot be branched off from an already peeled-off
3364 * socket, nor is this supported for tcp style sockets.
3365 */
3366 if (!sctp_style(sk, UDP))
3367 return -EINVAL;
3368
3369 /* Create a new socket. */
3370 err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
3371 if (err < 0)
3372 return err;
3373
3374 /* Populate the fields of the newsk from the oldsk and migrate the
3375 * asoc to the newsk.
3376 */
3377 sctp_sock_migrate(sk, sock->sk, asoc, SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
Vlad Yasevich4f444302006-10-30 18:54:32 -08003378
3379 /* Make peeled-off sockets more like 1-1 accepted sockets.
3380 * Set the daddr and initialize id to something more random
3381 */
3382 inetsk = inet_sk(sock->sk);
3383 inetsk->daddr = asoc->peer.primary_addr.v4.sin_addr.s_addr;
3384 inetsk->id = asoc->next_tsn ^ jiffies;
3385
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 *sockp = sock;
3387
3388 return err;
3389}
3390
3391static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
3392{
3393 sctp_peeloff_arg_t peeloff;
3394 struct socket *newsock;
3395 int retval = 0;
3396 struct sctp_association *asoc;
3397
3398 if (len != sizeof(sctp_peeloff_arg_t))
3399 return -EINVAL;
3400 if (copy_from_user(&peeloff, optval, len))
3401 return -EFAULT;
3402
3403 asoc = sctp_id2assoc(sk, peeloff.associd);
3404 if (!asoc) {
3405 retval = -EINVAL;
3406 goto out;
3407 }
3408
3409 SCTP_DEBUG_PRINTK("%s: sk: %p asoc: %p\n", __FUNCTION__, sk, asoc);
3410
3411 retval = sctp_do_peeloff(asoc, &newsock);
3412 if (retval < 0)
3413 goto out;
3414
3415 /* Map the socket to an unused fd that can be returned to the user. */
3416 retval = sock_map_fd(newsock);
3417 if (retval < 0) {
3418 sock_release(newsock);
3419 goto out;
3420 }
3421
3422 SCTP_DEBUG_PRINTK("%s: sk: %p asoc: %p newsk: %p sd: %d\n",
3423 __FUNCTION__, sk, asoc, newsock->sk, retval);
3424
3425 /* Return the fd mapped to the new socket. */
3426 peeloff.sd = retval;
3427 if (copy_to_user(optval, &peeloff, len))
3428 retval = -EFAULT;
3429
3430out:
3431 return retval;
3432}
3433
3434/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
3435 *
3436 * Applications can enable or disable heartbeats for any peer address of
3437 * an association, modify an address's heartbeat interval, force a
3438 * heartbeat to be sent immediately, and adjust the address's maximum
3439 * number of retransmissions sent before an address is considered
3440 * unreachable. The following structure is used to access and modify an
3441 * address's parameters:
3442 *
3443 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08003444 * sctp_assoc_t spp_assoc_id;
3445 * struct sockaddr_storage spp_address;
3446 * uint32_t spp_hbinterval;
3447 * uint16_t spp_pathmaxrxt;
3448 * uint32_t spp_pathmtu;
3449 * uint32_t spp_sackdelay;
3450 * uint32_t spp_flags;
3451 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08003453 * spp_assoc_id - (one-to-many style socket) This is filled in the
3454 * application, and identifies the association for
3455 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 * spp_address - This specifies which address is of interest.
3457 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08003458 * in milliseconds. If a value of zero
3459 * is present in this field then no changes are to
3460 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461 * spp_pathmaxrxt - This contains the maximum number of
3462 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08003463 * considered unreachable. If a value of zero
3464 * is present in this field then no changes are to
3465 * be made to this parameter.
3466 * spp_pathmtu - When Path MTU discovery is disabled the value
3467 * specified here will be the "fixed" path mtu.
3468 * Note that if the spp_address field is empty
3469 * then all associations on this address will
3470 * have this fixed path mtu set upon them.
3471 *
3472 * spp_sackdelay - When delayed sack is enabled, this value specifies
3473 * the number of milliseconds that sacks will be delayed
3474 * for. This value will apply to all addresses of an
3475 * association if the spp_address field is empty. Note
3476 * also, that if delayed sack is enabled and this
3477 * value is set to 0, no change is made to the last
3478 * recorded delayed sack timer value.
3479 *
3480 * spp_flags - These flags are used to control various features
3481 * on an association. The flag field may contain
3482 * zero or more of the following options.
3483 *
3484 * SPP_HB_ENABLE - Enable heartbeats on the
3485 * specified address. Note that if the address
3486 * field is empty all addresses for the association
3487 * have heartbeats enabled upon them.
3488 *
3489 * SPP_HB_DISABLE - Disable heartbeats on the
3490 * speicifed address. Note that if the address
3491 * field is empty all addresses for the association
3492 * will have their heartbeats disabled. Note also
3493 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
3494 * mutually exclusive, only one of these two should
3495 * be specified. Enabling both fields will have
3496 * undetermined results.
3497 *
3498 * SPP_HB_DEMAND - Request a user initiated heartbeat
3499 * to be made immediately.
3500 *
3501 * SPP_PMTUD_ENABLE - This field will enable PMTU
3502 * discovery upon the specified address. Note that
3503 * if the address feild is empty then all addresses
3504 * on the association are effected.
3505 *
3506 * SPP_PMTUD_DISABLE - This field will disable PMTU
3507 * discovery upon the specified address. Note that
3508 * if the address feild is empty then all addresses
3509 * on the association are effected. Not also that
3510 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
3511 * exclusive. Enabling both will have undetermined
3512 * results.
3513 *
3514 * SPP_SACKDELAY_ENABLE - Setting this flag turns
3515 * on delayed sack. The time specified in spp_sackdelay
3516 * is used to specify the sack delay for this address. Note
3517 * that if spp_address is empty then all addresses will
3518 * enable delayed sack and take on the sack delay
3519 * value specified in spp_sackdelay.
3520 * SPP_SACKDELAY_DISABLE - Setting this flag turns
3521 * off delayed sack. If the spp_address field is blank then
3522 * delayed sack is disabled for the entire association. Note
3523 * also that this field is mutually exclusive to
3524 * SPP_SACKDELAY_ENABLE, setting both will have undefined
3525 * results.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 */
3527static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
Frank Filz52ccb8e2005-12-22 11:36:46 -08003528 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529{
Frank Filz52ccb8e2005-12-22 11:36:46 -08003530 struct sctp_paddrparams params;
3531 struct sctp_transport *trans = NULL;
3532 struct sctp_association *asoc = NULL;
3533 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534
3535 if (len != sizeof(struct sctp_paddrparams))
3536 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08003537
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 if (copy_from_user(&params, optval, len))
3539 return -EFAULT;
3540
Frank Filz52ccb8e2005-12-22 11:36:46 -08003541 /* If an address other than INADDR_ANY is specified, and
3542 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 */
Frank Filz52ccb8e2005-12-22 11:36:46 -08003544 if (!sctp_is_any(( union sctp_addr *)&params.spp_address)) {
3545 trans = sctp_addr_id2transport(sk, &params.spp_address,
3546 params.spp_assoc_id);
3547 if (!trans) {
3548 SCTP_DEBUG_PRINTK("Failed no transport\n");
3549 return -EINVAL;
3550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 }
3552
Frank Filz52ccb8e2005-12-22 11:36:46 -08003553 /* Get association, if assoc_id != 0 and the socket is a one
3554 * to many style socket, and an association was not found, then
3555 * the id was invalid.
3556 */
3557 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
3558 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP)) {
3559 SCTP_DEBUG_PRINTK("Failed no association\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08003561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562
Frank Filz52ccb8e2005-12-22 11:36:46 -08003563 if (trans) {
3564 /* Fetch transport values. */
3565 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
3566 params.spp_pathmtu = trans->pathmtu;
3567 params.spp_pathmaxrxt = trans->pathmaxrxt;
3568 params.spp_sackdelay = jiffies_to_msecs(trans->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569
Frank Filz52ccb8e2005-12-22 11:36:46 -08003570 /*draft-11 doesn't say what to return in spp_flags*/
3571 params.spp_flags = trans->param_flags;
3572 } else if (asoc) {
3573 /* Fetch association values. */
3574 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
3575 params.spp_pathmtu = asoc->pathmtu;
3576 params.spp_pathmaxrxt = asoc->pathmaxrxt;
3577 params.spp_sackdelay = jiffies_to_msecs(asoc->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578
Frank Filz52ccb8e2005-12-22 11:36:46 -08003579 /*draft-11 doesn't say what to return in spp_flags*/
3580 params.spp_flags = asoc->param_flags;
3581 } else {
3582 /* Fetch socket values. */
3583 params.spp_hbinterval = sp->hbinterval;
3584 params.spp_pathmtu = sp->pathmtu;
3585 params.spp_sackdelay = sp->sackdelay;
3586 params.spp_pathmaxrxt = sp->pathmaxrxt;
3587
3588 /*draft-11 doesn't say what to return in spp_flags*/
3589 params.spp_flags = sp->param_flags;
3590 }
3591
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592 if (copy_to_user(optval, &params, len))
3593 return -EFAULT;
3594
3595 if (put_user(len, optlen))
3596 return -EFAULT;
3597
3598 return 0;
3599}
3600
Frank Filz77086102005-12-22 11:37:30 -08003601/* 7.1.24. Delayed Ack Timer (SCTP_DELAYED_ACK_TIME)
3602 *
3603 * This options will get or set the delayed ack timer. The time is set
3604 * in milliseconds. If the assoc_id is 0, then this sets or gets the
3605 * endpoints default delayed ack timer value. If the assoc_id field is
3606 * non-zero, then the set or get effects the specified association.
3607 *
3608 * struct sctp_assoc_value {
3609 * sctp_assoc_t assoc_id;
3610 * uint32_t assoc_value;
3611 * };
3612 *
3613 * assoc_id - This parameter, indicates which association the
3614 * user is preforming an action upon. Note that if
3615 * this field's value is zero then the endpoints
3616 * default value is changed (effecting future
3617 * associations only).
3618 *
3619 * assoc_value - This parameter contains the number of milliseconds
3620 * that the user is requesting the delayed ACK timer
3621 * be set to. Note that this value is defined in
3622 * the standard to be between 200 and 500 milliseconds.
3623 *
3624 * Note: a value of zero will leave the value alone,
3625 * but disable SACK delay. A non-zero value will also
3626 * enable SACK delay.
3627 */
3628static int sctp_getsockopt_delayed_ack_time(struct sock *sk, int len,
3629 char __user *optval,
3630 int __user *optlen)
3631{
3632 struct sctp_assoc_value params;
3633 struct sctp_association *asoc = NULL;
3634 struct sctp_sock *sp = sctp_sk(sk);
3635
3636 if (len != sizeof(struct sctp_assoc_value))
3637 return - EINVAL;
3638
3639 if (copy_from_user(&params, optval, len))
3640 return -EFAULT;
3641
3642 /* Get association, if assoc_id != 0 and the socket is a one
3643 * to many style socket, and an association was not found, then
3644 * the id was invalid.
3645 */
3646 asoc = sctp_id2assoc(sk, params.assoc_id);
3647 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
3648 return -EINVAL;
3649
3650 if (asoc) {
3651 /* Fetch association values. */
3652 if (asoc->param_flags & SPP_SACKDELAY_ENABLE)
3653 params.assoc_value = jiffies_to_msecs(
3654 asoc->sackdelay);
3655 else
3656 params.assoc_value = 0;
3657 } else {
3658 /* Fetch socket values. */
3659 if (sp->param_flags & SPP_SACKDELAY_ENABLE)
3660 params.assoc_value = sp->sackdelay;
3661 else
3662 params.assoc_value = 0;
3663 }
3664
3665 if (copy_to_user(optval, &params, len))
3666 return -EFAULT;
3667
3668 if (put_user(len, optlen))
3669 return -EFAULT;
3670
3671 return 0;
3672}
3673
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
3675 *
3676 * Applications can specify protocol parameters for the default association
3677 * initialization. The option name argument to setsockopt() and getsockopt()
3678 * is SCTP_INITMSG.
3679 *
3680 * Setting initialization parameters is effective only on an unconnected
3681 * socket (for UDP-style sockets only future associations are effected
3682 * by the change). With TCP-style sockets, this option is inherited by
3683 * sockets derived from a listener socket.
3684 */
3685static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
3686{
3687 if (len != sizeof(struct sctp_initmsg))
3688 return -EINVAL;
3689 if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
3690 return -EFAULT;
3691 return 0;
3692}
3693
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003694static int sctp_getsockopt_peer_addrs_num_old(struct sock *sk, int len,
3695 char __user *optval,
3696 int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697{
3698 sctp_assoc_t id;
3699 struct sctp_association *asoc;
3700 struct list_head *pos;
3701 int cnt = 0;
3702
3703 if (len != sizeof(sctp_assoc_t))
3704 return -EINVAL;
3705
3706 if (copy_from_user(&id, optval, sizeof(sctp_assoc_t)))
3707 return -EFAULT;
3708
3709 /* For UDP-style sockets, id specifies the association to query. */
3710 asoc = sctp_id2assoc(sk, id);
3711 if (!asoc)
3712 return -EINVAL;
3713
3714 list_for_each(pos, &asoc->peer.transport_addr_list) {
3715 cnt ++;
3716 }
3717
3718 return cnt;
3719}
3720
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003721/*
3722 * Old API for getting list of peer addresses. Does not work for 32-bit
3723 * programs running on a 64-bit kernel
3724 */
3725static int sctp_getsockopt_peer_addrs_old(struct sock *sk, int len,
3726 char __user *optval,
3727 int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728{
3729 struct sctp_association *asoc;
3730 struct list_head *pos;
3731 int cnt = 0;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003732 struct sctp_getaddrs_old getaddrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733 struct sctp_transport *from;
3734 void __user *to;
3735 union sctp_addr temp;
3736 struct sctp_sock *sp = sctp_sk(sk);
3737 int addrlen;
3738
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003739 if (len != sizeof(struct sctp_getaddrs_old))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740 return -EINVAL;
3741
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003742 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs_old)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 return -EFAULT;
3744
3745 if (getaddrs.addr_num <= 0) return -EINVAL;
3746
3747 /* For UDP-style sockets, id specifies the association to query. */
3748 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
3749 if (!asoc)
3750 return -EINVAL;
3751
3752 to = (void __user *)getaddrs.addrs;
3753 list_for_each(pos, &asoc->peer.transport_addr_list) {
3754 from = list_entry(pos, struct sctp_transport, transports);
Al Virob3f5b3b2006-11-20 17:22:43 -08003755 memcpy(&temp, &from->ipaddr, sizeof(temp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp, &temp);
3757 addrlen = sctp_get_af_specific(sk->sk_family)->sockaddr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758 if (copy_to_user(to, &temp, addrlen))
3759 return -EFAULT;
3760 to += addrlen ;
3761 cnt ++;
3762 if (cnt >= getaddrs.addr_num) break;
3763 }
3764 getaddrs.addr_num = cnt;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003765 if (copy_to_user(optval, &getaddrs, sizeof(struct sctp_getaddrs_old)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 return -EFAULT;
3767
3768 return 0;
3769}
3770
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003771static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
3772 char __user *optval, int __user *optlen)
3773{
3774 struct sctp_association *asoc;
3775 struct list_head *pos;
3776 int cnt = 0;
3777 struct sctp_getaddrs getaddrs;
3778 struct sctp_transport *from;
3779 void __user *to;
3780 union sctp_addr temp;
3781 struct sctp_sock *sp = sctp_sk(sk);
3782 int addrlen;
3783 size_t space_left;
3784 int bytes_copied;
3785
3786 if (len < sizeof(struct sctp_getaddrs))
3787 return -EINVAL;
3788
3789 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
3790 return -EFAULT;
3791
3792 /* For UDP-style sockets, id specifies the association to query. */
3793 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
3794 if (!asoc)
3795 return -EINVAL;
3796
3797 to = optval + offsetof(struct sctp_getaddrs,addrs);
3798 space_left = len - sizeof(struct sctp_getaddrs) -
3799 offsetof(struct sctp_getaddrs,addrs);
3800
3801 list_for_each(pos, &asoc->peer.transport_addr_list) {
3802 from = list_entry(pos, struct sctp_transport, transports);
Al Virob3f5b3b2006-11-20 17:22:43 -08003803 memcpy(&temp, &from->ipaddr, sizeof(temp));
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003804 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp, &temp);
3805 addrlen = sctp_get_af_specific(sk->sk_family)->sockaddr_len;
3806 if(space_left < addrlen)
3807 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003808 if (copy_to_user(to, &temp, addrlen))
3809 return -EFAULT;
3810 to += addrlen;
3811 cnt++;
3812 space_left -= addrlen;
3813 }
3814
3815 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
3816 return -EFAULT;
3817 bytes_copied = ((char __user *)to) - optval;
3818 if (put_user(bytes_copied, optlen))
3819 return -EFAULT;
3820
3821 return 0;
3822}
3823
3824static int sctp_getsockopt_local_addrs_num_old(struct sock *sk, int len,
3825 char __user *optval,
3826 int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827{
3828 sctp_assoc_t id;
3829 struct sctp_bind_addr *bp;
3830 struct sctp_association *asoc;
3831 struct list_head *pos;
3832 struct sctp_sockaddr_entry *addr;
3833 rwlock_t *addr_lock;
3834 unsigned long flags;
3835 int cnt = 0;
3836
3837 if (len != sizeof(sctp_assoc_t))
3838 return -EINVAL;
3839
3840 if (copy_from_user(&id, optval, sizeof(sctp_assoc_t)))
3841 return -EFAULT;
3842
3843 /*
3844 * For UDP-style sockets, id specifies the association to query.
3845 * If the id field is set to the value '0' then the locally bound
3846 * addresses are returned without regard to any particular
3847 * association.
3848 */
3849 if (0 == id) {
3850 bp = &sctp_sk(sk)->ep->base.bind_addr;
3851 addr_lock = &sctp_sk(sk)->ep->base.addr_lock;
3852 } else {
3853 asoc = sctp_id2assoc(sk, id);
3854 if (!asoc)
3855 return -EINVAL;
3856 bp = &asoc->base.bind_addr;
3857 addr_lock = &asoc->base.addr_lock;
3858 }
3859
3860 sctp_read_lock(addr_lock);
3861
3862 /* If the endpoint is bound to 0.0.0.0 or ::0, count the valid
3863 * addresses from the global local address list.
3864 */
3865 if (sctp_list_single_entry(&bp->address_list)) {
3866 addr = list_entry(bp->address_list.next,
3867 struct sctp_sockaddr_entry, list);
Al Viro6244be42006-11-20 17:21:44 -08003868 if (sctp_is_any(&addr->a)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 sctp_spin_lock_irqsave(&sctp_local_addr_lock, flags);
3870 list_for_each(pos, &sctp_local_addr_list) {
3871 addr = list_entry(pos,
3872 struct sctp_sockaddr_entry,
3873 list);
3874 if ((PF_INET == sk->sk_family) &&
Al Viro6244be42006-11-20 17:21:44 -08003875 (AF_INET6 == addr->a.sa.sa_family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 continue;
3877 cnt++;
3878 }
3879 sctp_spin_unlock_irqrestore(&sctp_local_addr_lock,
3880 flags);
3881 } else {
3882 cnt = 1;
3883 }
3884 goto done;
3885 }
3886
3887 list_for_each(pos, &bp->address_list) {
3888 cnt ++;
3889 }
3890
3891done:
3892 sctp_read_unlock(addr_lock);
3893 return cnt;
3894}
3895
3896/* Helper function that copies local addresses to user and returns the number
3897 * of addresses copied.
3898 */
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003899static int sctp_copy_laddrs_to_user_old(struct sock *sk, __u16 port, int max_addrs,
3900 void __user *to)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901{
3902 struct list_head *pos;
3903 struct sctp_sockaddr_entry *addr;
3904 unsigned long flags;
3905 union sctp_addr temp;
3906 int cnt = 0;
3907 int addrlen;
3908
3909 sctp_spin_lock_irqsave(&sctp_local_addr_lock, flags);
3910 list_for_each(pos, &sctp_local_addr_list) {
3911 addr = list_entry(pos, struct sctp_sockaddr_entry, list);
3912 if ((PF_INET == sk->sk_family) &&
Al Viro6244be42006-11-20 17:21:44 -08003913 (AF_INET6 == addr->a.sa.sa_family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 continue;
Al Viro6244be42006-11-20 17:21:44 -08003915 memcpy(&temp, &addr->a, sizeof(temp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk),
3917 &temp);
3918 addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 if (copy_to_user(to, &temp, addrlen)) {
3920 sctp_spin_unlock_irqrestore(&sctp_local_addr_lock,
3921 flags);
3922 return -EFAULT;
3923 }
3924 to += addrlen;
3925 cnt ++;
3926 if (cnt >= max_addrs) break;
3927 }
3928 sctp_spin_unlock_irqrestore(&sctp_local_addr_lock, flags);
3929
3930 return cnt;
3931}
3932
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003933static int sctp_copy_laddrs_to_user(struct sock *sk, __u16 port,
Al Virod3a880e2005-12-15 09:18:30 +00003934 void __user **to, size_t space_left)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003935{
3936 struct list_head *pos;
3937 struct sctp_sockaddr_entry *addr;
3938 unsigned long flags;
3939 union sctp_addr temp;
3940 int cnt = 0;
3941 int addrlen;
3942
3943 sctp_spin_lock_irqsave(&sctp_local_addr_lock, flags);
3944 list_for_each(pos, &sctp_local_addr_list) {
3945 addr = list_entry(pos, struct sctp_sockaddr_entry, list);
3946 if ((PF_INET == sk->sk_family) &&
Al Viro6244be42006-11-20 17:21:44 -08003947 (AF_INET6 == addr->a.sa.sa_family))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003948 continue;
Al Viro6244be42006-11-20 17:21:44 -08003949 memcpy(&temp, &addr->a, sizeof(temp));
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003950 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk),
3951 &temp);
3952 addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len;
3953 if(space_left<addrlen)
3954 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003955 if (copy_to_user(*to, &temp, addrlen)) {
3956 sctp_spin_unlock_irqrestore(&sctp_local_addr_lock,
3957 flags);
3958 return -EFAULT;
3959 }
3960 *to += addrlen;
3961 cnt ++;
3962 space_left -= addrlen;
3963 }
3964 sctp_spin_unlock_irqrestore(&sctp_local_addr_lock, flags);
3965
3966 return cnt;
3967}
3968
3969/* Old API for getting list of local addresses. Does not work for 32-bit
3970 * programs running on a 64-bit kernel
3971 */
3972static int sctp_getsockopt_local_addrs_old(struct sock *sk, int len,
3973 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974{
3975 struct sctp_bind_addr *bp;
3976 struct sctp_association *asoc;
3977 struct list_head *pos;
3978 int cnt = 0;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003979 struct sctp_getaddrs_old getaddrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 struct sctp_sockaddr_entry *addr;
3981 void __user *to;
3982 union sctp_addr temp;
3983 struct sctp_sock *sp = sctp_sk(sk);
3984 int addrlen;
3985 rwlock_t *addr_lock;
3986 int err = 0;
3987
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003988 if (len != sizeof(struct sctp_getaddrs_old))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 return -EINVAL;
3990
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07003991 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs_old)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 return -EFAULT;
3993
3994 if (getaddrs.addr_num <= 0) return -EINVAL;
3995 /*
3996 * For UDP-style sockets, id specifies the association to query.
3997 * If the id field is set to the value '0' then the locally bound
3998 * addresses are returned without regard to any particular
3999 * association.
4000 */
4001 if (0 == getaddrs.assoc_id) {
4002 bp = &sctp_sk(sk)->ep->base.bind_addr;
4003 addr_lock = &sctp_sk(sk)->ep->base.addr_lock;
4004 } else {
4005 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
4006 if (!asoc)
4007 return -EINVAL;
4008 bp = &asoc->base.bind_addr;
4009 addr_lock = &asoc->base.addr_lock;
4010 }
4011
4012 to = getaddrs.addrs;
4013
4014 sctp_read_lock(addr_lock);
4015
4016 /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
4017 * addresses from the global local address list.
4018 */
4019 if (sctp_list_single_entry(&bp->address_list)) {
4020 addr = list_entry(bp->address_list.next,
4021 struct sctp_sockaddr_entry, list);
Al Viro6244be42006-11-20 17:21:44 -08004022 if (sctp_is_any(&addr->a)) {
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004023 cnt = sctp_copy_laddrs_to_user_old(sk, bp->port,
4024 getaddrs.addr_num,
4025 to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026 if (cnt < 0) {
4027 err = cnt;
4028 goto unlock;
4029 }
4030 goto copy_getaddrs;
4031 }
4032 }
4033
4034 list_for_each(pos, &bp->address_list) {
4035 addr = list_entry(pos, struct sctp_sockaddr_entry, list);
Al Viro6244be42006-11-20 17:21:44 -08004036 memcpy(&temp, &addr->a, sizeof(temp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp, &temp);
4038 addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039 if (copy_to_user(to, &temp, addrlen)) {
4040 err = -EFAULT;
4041 goto unlock;
4042 }
4043 to += addrlen;
4044 cnt ++;
4045 if (cnt >= getaddrs.addr_num) break;
4046 }
4047
4048copy_getaddrs:
4049 getaddrs.addr_num = cnt;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004050 if (copy_to_user(optval, &getaddrs, sizeof(struct sctp_getaddrs_old)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 err = -EFAULT;
4052
4053unlock:
4054 sctp_read_unlock(addr_lock);
4055 return err;
4056}
4057
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004058static int sctp_getsockopt_local_addrs(struct sock *sk, int len,
4059 char __user *optval, int __user *optlen)
4060{
4061 struct sctp_bind_addr *bp;
4062 struct sctp_association *asoc;
4063 struct list_head *pos;
4064 int cnt = 0;
4065 struct sctp_getaddrs getaddrs;
4066 struct sctp_sockaddr_entry *addr;
4067 void __user *to;
4068 union sctp_addr temp;
4069 struct sctp_sock *sp = sctp_sk(sk);
4070 int addrlen;
4071 rwlock_t *addr_lock;
4072 int err = 0;
4073 size_t space_left;
4074 int bytes_copied;
4075
4076 if (len <= sizeof(struct sctp_getaddrs))
4077 return -EINVAL;
4078
4079 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
4080 return -EFAULT;
4081
4082 /*
4083 * For UDP-style sockets, id specifies the association to query.
4084 * If the id field is set to the value '0' then the locally bound
4085 * addresses are returned without regard to any particular
4086 * association.
4087 */
4088 if (0 == getaddrs.assoc_id) {
4089 bp = &sctp_sk(sk)->ep->base.bind_addr;
4090 addr_lock = &sctp_sk(sk)->ep->base.addr_lock;
4091 } else {
4092 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
4093 if (!asoc)
4094 return -EINVAL;
4095 bp = &asoc->base.bind_addr;
4096 addr_lock = &asoc->base.addr_lock;
4097 }
4098
4099 to = optval + offsetof(struct sctp_getaddrs,addrs);
4100 space_left = len - sizeof(struct sctp_getaddrs) -
4101 offsetof(struct sctp_getaddrs,addrs);
4102
4103 sctp_read_lock(addr_lock);
4104
4105 /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
4106 * addresses from the global local address list.
4107 */
4108 if (sctp_list_single_entry(&bp->address_list)) {
4109 addr = list_entry(bp->address_list.next,
4110 struct sctp_sockaddr_entry, list);
Al Viro6244be42006-11-20 17:21:44 -08004111 if (sctp_is_any(&addr->a)) {
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004112 cnt = sctp_copy_laddrs_to_user(sk, bp->port,
4113 &to, space_left);
4114 if (cnt < 0) {
4115 err = cnt;
4116 goto unlock;
4117 }
4118 goto copy_getaddrs;
4119 }
4120 }
4121
4122 list_for_each(pos, &bp->address_list) {
4123 addr = list_entry(pos, struct sctp_sockaddr_entry, list);
Al Viro6244be42006-11-20 17:21:44 -08004124 memcpy(&temp, &addr->a, sizeof(temp));
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004125 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp, &temp);
4126 addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len;
4127 if(space_left < addrlen)
4128 return -ENOMEM; /*fixme: right error?*/
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004129 if (copy_to_user(to, &temp, addrlen)) {
4130 err = -EFAULT;
4131 goto unlock;
4132 }
4133 to += addrlen;
4134 cnt ++;
4135 space_left -= addrlen;
4136 }
4137
4138copy_getaddrs:
4139 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
4140 return -EFAULT;
4141 bytes_copied = ((char __user *)to) - optval;
4142 if (put_user(bytes_copied, optlen))
4143 return -EFAULT;
4144
4145unlock:
4146 sctp_read_unlock(addr_lock);
4147 return err;
4148}
4149
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
4151 *
4152 * Requests that the local SCTP stack use the enclosed peer address as
4153 * the association primary. The enclosed address must be one of the
4154 * association peer's addresses.
4155 */
4156static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
4157 char __user *optval, int __user *optlen)
4158{
4159 struct sctp_prim prim;
4160 struct sctp_association *asoc;
4161 struct sctp_sock *sp = sctp_sk(sk);
4162
4163 if (len != sizeof(struct sctp_prim))
4164 return -EINVAL;
4165
4166 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
4167 return -EFAULT;
4168
4169 asoc = sctp_id2assoc(sk, prim.ssp_assoc_id);
4170 if (!asoc)
4171 return -EINVAL;
4172
4173 if (!asoc->peer.primary_path)
4174 return -ENOTCONN;
4175
Al Viro04afd8b2006-11-20 17:02:01 -08004176 flip_to_n((union sctp_addr *)&prim.ssp_addr,
Al Viro09ef7fe2006-11-20 17:04:10 -08004177 &asoc->peer.primary_path->ipaddr_h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178
4179 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp,
4180 (union sctp_addr *)&prim.ssp_addr);
4181
4182 if (copy_to_user(optval, &prim, sizeof(struct sctp_prim)))
4183 return -EFAULT;
4184
4185 return 0;
4186}
4187
4188/*
4189 * 7.1.11 Set Adaption Layer Indicator (SCTP_ADAPTION_LAYER)
4190 *
4191 * Requests that the local endpoint set the specified Adaption Layer
4192 * Indication parameter for all future INIT and INIT-ACK exchanges.
4193 */
4194static int sctp_getsockopt_adaption_layer(struct sock *sk, int len,
4195 char __user *optval, int __user *optlen)
4196{
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07004197 struct sctp_setadaption adaption;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07004199 if (len != sizeof(struct sctp_setadaption))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200 return -EINVAL;
4201
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07004202 adaption.ssb_adaption_ind = sctp_sk(sk)->adaption_ind;
4203 if (copy_to_user(optval, &adaption, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 return -EFAULT;
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07004205
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206 return 0;
4207}
4208
4209/*
4210 *
4211 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
4212 *
4213 * Applications that wish to use the sendto() system call may wish to
4214 * specify a default set of parameters that would normally be supplied
4215 * through the inclusion of ancillary data. This socket option allows
4216 * such an application to set the default sctp_sndrcvinfo structure.
4217
4218
4219 * The application that wishes to use this socket option simply passes
4220 * in to this call the sctp_sndrcvinfo structure defined in Section
4221 * 5.2.2) The input parameters accepted by this call include
4222 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
4223 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
4224 * to this call if the caller is using the UDP model.
4225 *
4226 * For getsockopt, it get the default sctp_sndrcvinfo structure.
4227 */
4228static int sctp_getsockopt_default_send_param(struct sock *sk,
4229 int len, char __user *optval,
4230 int __user *optlen)
4231{
4232 struct sctp_sndrcvinfo info;
4233 struct sctp_association *asoc;
4234 struct sctp_sock *sp = sctp_sk(sk);
4235
4236 if (len != sizeof(struct sctp_sndrcvinfo))
4237 return -EINVAL;
4238 if (copy_from_user(&info, optval, sizeof(struct sctp_sndrcvinfo)))
4239 return -EFAULT;
4240
4241 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
4242 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
4243 return -EINVAL;
4244
4245 if (asoc) {
4246 info.sinfo_stream = asoc->default_stream;
4247 info.sinfo_flags = asoc->default_flags;
4248 info.sinfo_ppid = asoc->default_ppid;
4249 info.sinfo_context = asoc->default_context;
4250 info.sinfo_timetolive = asoc->default_timetolive;
4251 } else {
4252 info.sinfo_stream = sp->default_stream;
4253 info.sinfo_flags = sp->default_flags;
4254 info.sinfo_ppid = sp->default_ppid;
4255 info.sinfo_context = sp->default_context;
4256 info.sinfo_timetolive = sp->default_timetolive;
4257 }
4258
4259 if (copy_to_user(optval, &info, sizeof(struct sctp_sndrcvinfo)))
4260 return -EFAULT;
4261
4262 return 0;
4263}
4264
4265/*
4266 *
4267 * 7.1.5 SCTP_NODELAY
4268 *
4269 * Turn on/off any Nagle-like algorithm. This means that packets are
4270 * generally sent as soon as possible and no unnecessary delays are
4271 * introduced, at the cost of more packets in the network. Expects an
4272 * integer boolean flag.
4273 */
4274
4275static int sctp_getsockopt_nodelay(struct sock *sk, int len,
4276 char __user *optval, int __user *optlen)
4277{
4278 int val;
4279
4280 if (len < sizeof(int))
4281 return -EINVAL;
4282
4283 len = sizeof(int);
4284 val = (sctp_sk(sk)->nodelay == 1);
4285 if (put_user(len, optlen))
4286 return -EFAULT;
4287 if (copy_to_user(optval, &val, len))
4288 return -EFAULT;
4289 return 0;
4290}
4291
4292/*
4293 *
4294 * 7.1.1 SCTP_RTOINFO
4295 *
4296 * The protocol parameters used to initialize and bound retransmission
4297 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
4298 * and modify these parameters.
4299 * All parameters are time values, in milliseconds. A value of 0, when
4300 * modifying the parameters, indicates that the current value should not
4301 * be changed.
4302 *
4303 */
4304static int sctp_getsockopt_rtoinfo(struct sock *sk, int len,
4305 char __user *optval,
4306 int __user *optlen) {
4307 struct sctp_rtoinfo rtoinfo;
4308 struct sctp_association *asoc;
4309
4310 if (len != sizeof (struct sctp_rtoinfo))
4311 return -EINVAL;
4312
4313 if (copy_from_user(&rtoinfo, optval, sizeof (struct sctp_rtoinfo)))
4314 return -EFAULT;
4315
4316 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
4317
4318 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
4319 return -EINVAL;
4320
4321 /* Values corresponding to the specific association. */
4322 if (asoc) {
4323 rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial);
4324 rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max);
4325 rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min);
4326 } else {
4327 /* Values corresponding to the endpoint. */
4328 struct sctp_sock *sp = sctp_sk(sk);
4329
4330 rtoinfo.srto_initial = sp->rtoinfo.srto_initial;
4331 rtoinfo.srto_max = sp->rtoinfo.srto_max;
4332 rtoinfo.srto_min = sp->rtoinfo.srto_min;
4333 }
4334
4335 if (put_user(len, optlen))
4336 return -EFAULT;
4337
4338 if (copy_to_user(optval, &rtoinfo, len))
4339 return -EFAULT;
4340
4341 return 0;
4342}
4343
4344/*
4345 *
4346 * 7.1.2 SCTP_ASSOCINFO
4347 *
4348 * This option is used to tune the the maximum retransmission attempts
4349 * of the association.
4350 * Returns an error if the new association retransmission value is
4351 * greater than the sum of the retransmission value of the peer.
4352 * See [SCTP] for more information.
4353 *
4354 */
4355static int sctp_getsockopt_associnfo(struct sock *sk, int len,
4356 char __user *optval,
4357 int __user *optlen)
4358{
4359
4360 struct sctp_assocparams assocparams;
4361 struct sctp_association *asoc;
4362 struct list_head *pos;
4363 int cnt = 0;
4364
4365 if (len != sizeof (struct sctp_assocparams))
4366 return -EINVAL;
4367
4368 if (copy_from_user(&assocparams, optval,
4369 sizeof (struct sctp_assocparams)))
4370 return -EFAULT;
4371
4372 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
4373
4374 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
4375 return -EINVAL;
4376
4377 /* Values correspoinding to the specific association */
Vladislav Yasevich17337212005-04-28 11:57:54 -07004378 if (asoc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379 assocparams.sasoc_asocmaxrxt = asoc->max_retrans;
4380 assocparams.sasoc_peer_rwnd = asoc->peer.rwnd;
4381 assocparams.sasoc_local_rwnd = asoc->a_rwnd;
4382 assocparams.sasoc_cookie_life = (asoc->cookie_life.tv_sec
4383 * 1000) +
4384 (asoc->cookie_life.tv_usec
4385 / 1000);
4386
4387 list_for_each(pos, &asoc->peer.transport_addr_list) {
4388 cnt ++;
4389 }
4390
4391 assocparams.sasoc_number_peer_destinations = cnt;
4392 } else {
4393 /* Values corresponding to the endpoint */
4394 struct sctp_sock *sp = sctp_sk(sk);
4395
4396 assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt;
4397 assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd;
4398 assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd;
4399 assocparams.sasoc_cookie_life =
4400 sp->assocparams.sasoc_cookie_life;
4401 assocparams.sasoc_number_peer_destinations =
4402 sp->assocparams.
4403 sasoc_number_peer_destinations;
4404 }
4405
4406 if (put_user(len, optlen))
4407 return -EFAULT;
4408
4409 if (copy_to_user(optval, &assocparams, len))
4410 return -EFAULT;
4411
4412 return 0;
4413}
4414
4415/*
4416 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
4417 *
4418 * This socket option is a boolean flag which turns on or off mapped V4
4419 * addresses. If this option is turned on and the socket is type
4420 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
4421 * If this option is turned off, then no mapping will be done of V4
4422 * addresses and a user will receive both PF_INET6 and PF_INET type
4423 * addresses on the socket.
4424 */
4425static int sctp_getsockopt_mappedv4(struct sock *sk, int len,
4426 char __user *optval, int __user *optlen)
4427{
4428 int val;
4429 struct sctp_sock *sp = sctp_sk(sk);
4430
4431 if (len < sizeof(int))
4432 return -EINVAL;
4433
4434 len = sizeof(int);
4435 val = sp->v4mapped;
4436 if (put_user(len, optlen))
4437 return -EFAULT;
4438 if (copy_to_user(optval, &val, len))
4439 return -EFAULT;
4440
4441 return 0;
4442}
4443
4444/*
4445 * 7.1.17 Set the maximum fragrmentation size (SCTP_MAXSEG)
4446 *
4447 * This socket option specifies the maximum size to put in any outgoing
4448 * SCTP chunk. If a message is larger than this size it will be
4449 * fragmented by SCTP into the specified size. Note that the underlying
4450 * SCTP implementation may fragment into smaller sized chunks when the
4451 * PMTU of the underlying association is smaller than the value set by
4452 * the user.
4453 */
4454static int sctp_getsockopt_maxseg(struct sock *sk, int len,
4455 char __user *optval, int __user *optlen)
4456{
4457 int val;
4458
4459 if (len < sizeof(int))
4460 return -EINVAL;
4461
4462 len = sizeof(int);
4463
4464 val = sctp_sk(sk)->user_frag;
4465 if (put_user(len, optlen))
4466 return -EFAULT;
4467 if (copy_to_user(optval, &val, len))
4468 return -EFAULT;
4469
4470 return 0;
4471}
4472
4473SCTP_STATIC int sctp_getsockopt(struct sock *sk, int level, int optname,
4474 char __user *optval, int __user *optlen)
4475{
4476 int retval = 0;
4477 int len;
4478
Frank Filz3f7a87d2005-06-20 13:14:57 -07004479 SCTP_DEBUG_PRINTK("sctp_getsockopt(sk: %p... optname: %d)\n",
4480 sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481
4482 /* I can hardly begin to describe how wrong this is. This is
4483 * so broken as to be worse than useless. The API draft
4484 * REALLY is NOT helpful here... I am not convinced that the
4485 * semantics of getsockopt() with a level OTHER THAN SOL_SCTP
4486 * are at all well-founded.
4487 */
4488 if (level != SOL_SCTP) {
4489 struct sctp_af *af = sctp_sk(sk)->pf->af;
4490
4491 retval = af->getsockopt(sk, level, optname, optval, optlen);
4492 return retval;
4493 }
4494
4495 if (get_user(len, optlen))
4496 return -EFAULT;
4497
4498 sctp_lock_sock(sk);
4499
4500 switch (optname) {
4501 case SCTP_STATUS:
4502 retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen);
4503 break;
4504 case SCTP_DISABLE_FRAGMENTS:
4505 retval = sctp_getsockopt_disable_fragments(sk, len, optval,
4506 optlen);
4507 break;
4508 case SCTP_EVENTS:
4509 retval = sctp_getsockopt_events(sk, len, optval, optlen);
4510 break;
4511 case SCTP_AUTOCLOSE:
4512 retval = sctp_getsockopt_autoclose(sk, len, optval, optlen);
4513 break;
4514 case SCTP_SOCKOPT_PEELOFF:
4515 retval = sctp_getsockopt_peeloff(sk, len, optval, optlen);
4516 break;
4517 case SCTP_PEER_ADDR_PARAMS:
4518 retval = sctp_getsockopt_peer_addr_params(sk, len, optval,
4519 optlen);
4520 break;
Frank Filz77086102005-12-22 11:37:30 -08004521 case SCTP_DELAYED_ACK_TIME:
4522 retval = sctp_getsockopt_delayed_ack_time(sk, len, optval,
4523 optlen);
4524 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525 case SCTP_INITMSG:
4526 retval = sctp_getsockopt_initmsg(sk, len, optval, optlen);
4527 break;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004528 case SCTP_GET_PEER_ADDRS_NUM_OLD:
4529 retval = sctp_getsockopt_peer_addrs_num_old(sk, len, optval,
4530 optlen);
4531 break;
4532 case SCTP_GET_LOCAL_ADDRS_NUM_OLD:
4533 retval = sctp_getsockopt_local_addrs_num_old(sk, len, optval,
4534 optlen);
4535 break;
4536 case SCTP_GET_PEER_ADDRS_OLD:
4537 retval = sctp_getsockopt_peer_addrs_old(sk, len, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 optlen);
4539 break;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004540 case SCTP_GET_LOCAL_ADDRS_OLD:
4541 retval = sctp_getsockopt_local_addrs_old(sk, len, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542 optlen);
4543 break;
4544 case SCTP_GET_PEER_ADDRS:
4545 retval = sctp_getsockopt_peer_addrs(sk, len, optval,
4546 optlen);
4547 break;
4548 case SCTP_GET_LOCAL_ADDRS:
4549 retval = sctp_getsockopt_local_addrs(sk, len, optval,
4550 optlen);
4551 break;
4552 case SCTP_DEFAULT_SEND_PARAM:
4553 retval = sctp_getsockopt_default_send_param(sk, len,
4554 optval, optlen);
4555 break;
4556 case SCTP_PRIMARY_ADDR:
4557 retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen);
4558 break;
4559 case SCTP_NODELAY:
4560 retval = sctp_getsockopt_nodelay(sk, len, optval, optlen);
4561 break;
4562 case SCTP_RTOINFO:
4563 retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen);
4564 break;
4565 case SCTP_ASSOCINFO:
4566 retval = sctp_getsockopt_associnfo(sk, len, optval, optlen);
4567 break;
4568 case SCTP_I_WANT_MAPPED_V4_ADDR:
4569 retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen);
4570 break;
4571 case SCTP_MAXSEG:
4572 retval = sctp_getsockopt_maxseg(sk, len, optval, optlen);
4573 break;
4574 case SCTP_GET_PEER_ADDR_INFO:
4575 retval = sctp_getsockopt_peer_addr_info(sk, len, optval,
4576 optlen);
4577 break;
4578 case SCTP_ADAPTION_LAYER:
4579 retval = sctp_getsockopt_adaption_layer(sk, len, optval,
4580 optlen);
4581 break;
4582 default:
4583 retval = -ENOPROTOOPT;
4584 break;
4585 };
4586
4587 sctp_release_sock(sk);
4588 return retval;
4589}
4590
4591static void sctp_hash(struct sock *sk)
4592{
4593 /* STUB */
4594}
4595
4596static void sctp_unhash(struct sock *sk)
4597{
4598 /* STUB */
4599}
4600
4601/* Check if port is acceptable. Possibly find first available port.
4602 *
4603 * The port hash table (contained in the 'global' SCTP protocol storage
4604 * returned by struct sctp_protocol *sctp_get_protocol()). The hash
4605 * table is an array of 4096 lists (sctp_bind_hashbucket). Each
4606 * list (the list number is the port number hashed out, so as you
4607 * would expect from a hash function, all the ports in a given list have
4608 * such a number that hashes out to the same list number; you were
4609 * expecting that, right?); so each list has a set of ports, with a
4610 * link to the socket (struct sock) that uses it, the port number and
4611 * a fastreuse flag (FIXME: NPI ipg).
4612 */
4613static struct sctp_bind_bucket *sctp_bucket_create(
4614 struct sctp_bind_hashbucket *head, unsigned short snum);
4615
4616static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
4617{
4618 struct sctp_bind_hashbucket *head; /* hash list */
4619 struct sctp_bind_bucket *pp; /* hash list port iterator */
4620 unsigned short snum;
4621 int ret;
4622
Al Viro04afd8b2006-11-20 17:02:01 -08004623 snum = ntohs(addr->v4.sin_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624
4625 SCTP_DEBUG_PRINTK("sctp_get_port() begins, snum=%d\n", snum);
4626 sctp_local_bh_disable();
4627
4628 if (snum == 0) {
4629 /* Search for an available port.
4630 *
4631 * 'sctp_port_rover' was the last port assigned, so
4632 * we start to search from 'sctp_port_rover +
4633 * 1'. What we do is first check if port 'rover' is
4634 * already in the hash table; if not, we use that; if
4635 * it is, we try next.
4636 */
4637 int low = sysctl_local_port_range[0];
4638 int high = sysctl_local_port_range[1];
4639 int remaining = (high - low) + 1;
4640 int rover;
4641 int index;
4642
4643 sctp_spin_lock(&sctp_port_alloc_lock);
4644 rover = sctp_port_rover;
4645 do {
4646 rover++;
4647 if ((rover < low) || (rover > high))
4648 rover = low;
4649 index = sctp_phashfn(rover);
4650 head = &sctp_port_hashtable[index];
4651 sctp_spin_lock(&head->lock);
4652 for (pp = head->chain; pp; pp = pp->next)
4653 if (pp->port == rover)
4654 goto next;
4655 break;
4656 next:
4657 sctp_spin_unlock(&head->lock);
4658 } while (--remaining > 0);
4659 sctp_port_rover = rover;
4660 sctp_spin_unlock(&sctp_port_alloc_lock);
4661
4662 /* Exhausted local port range during search? */
4663 ret = 1;
4664 if (remaining <= 0)
4665 goto fail;
4666
4667 /* OK, here is the one we will use. HEAD (the port
4668 * hash table list entry) is non-NULL and we hold it's
4669 * mutex.
4670 */
4671 snum = rover;
4672 } else {
4673 /* We are given an specific port number; we verify
4674 * that it is not being used. If it is used, we will
4675 * exahust the search in the hash list corresponding
4676 * to the port number (snum) - we detect that with the
4677 * port iterator, pp being NULL.
4678 */
4679 head = &sctp_port_hashtable[sctp_phashfn(snum)];
4680 sctp_spin_lock(&head->lock);
4681 for (pp = head->chain; pp; pp = pp->next) {
4682 if (pp->port == snum)
4683 goto pp_found;
4684 }
4685 }
4686 pp = NULL;
4687 goto pp_not_found;
4688pp_found:
4689 if (!hlist_empty(&pp->owner)) {
4690 /* We had a port hash table hit - there is an
4691 * available port (pp != NULL) and it is being
4692 * used by other socket (pp->owner not empty); that other
4693 * socket is going to be sk2.
4694 */
4695 int reuse = sk->sk_reuse;
4696 struct sock *sk2;
4697 struct hlist_node *node;
4698
4699 SCTP_DEBUG_PRINTK("sctp_get_port() found a possible match\n");
4700 if (pp->fastreuse && sk->sk_reuse)
4701 goto success;
4702
4703 /* Run through the list of sockets bound to the port
4704 * (pp->port) [via the pointers bind_next and
4705 * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one,
4706 * we get the endpoint they describe and run through
4707 * the endpoint's list of IP (v4 or v6) addresses,
4708 * comparing each of the addresses with the address of
4709 * the socket sk. If we find a match, then that means
4710 * that this port/socket (sk) combination are already
4711 * in an endpoint.
4712 */
4713 sk_for_each_bound(sk2, node, &pp->owner) {
4714 struct sctp_endpoint *ep2;
4715 ep2 = sctp_sk(sk2)->ep;
4716
4717 if (reuse && sk2->sk_reuse)
4718 continue;
4719
Al Viro7e1e4a22006-11-20 17:05:43 -08004720 if (sctp_bind_addr_match(&ep2->base.bind_addr, addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721 sctp_sk(sk))) {
4722 ret = (long)sk2;
4723 goto fail_unlock;
4724 }
4725 }
4726 SCTP_DEBUG_PRINTK("sctp_get_port(): Found a match\n");
4727 }
4728pp_not_found:
4729 /* If there was a hash table miss, create a new port. */
4730 ret = 1;
4731 if (!pp && !(pp = sctp_bucket_create(head, snum)))
4732 goto fail_unlock;
4733
4734 /* In either case (hit or miss), make sure fastreuse is 1 only
4735 * if sk->sk_reuse is too (that is, if the caller requested
4736 * SO_REUSEADDR on this socket -sk-).
4737 */
4738 if (hlist_empty(&pp->owner))
4739 pp->fastreuse = sk->sk_reuse ? 1 : 0;
4740 else if (pp->fastreuse && !sk->sk_reuse)
4741 pp->fastreuse = 0;
4742
4743 /* We are set, so fill up all the data in the hash table
4744 * entry, tie the socket list information with the rest of the
4745 * sockets FIXME: Blurry, NPI (ipg).
4746 */
4747success:
4748 inet_sk(sk)->num = snum;
4749 if (!sctp_sk(sk)->bind_hash) {
4750 sk_add_bind_node(sk, &pp->owner);
4751 sctp_sk(sk)->bind_hash = pp;
4752 }
4753 ret = 0;
4754
4755fail_unlock:
4756 sctp_spin_unlock(&head->lock);
4757
4758fail:
4759 sctp_local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760 return ret;
4761}
4762
4763/* Assign a 'snum' port to the socket. If snum == 0, an ephemeral
4764 * port is requested.
4765 */
4766static int sctp_get_port(struct sock *sk, unsigned short snum)
4767{
4768 long ret;
4769 union sctp_addr addr;
4770 struct sctp_af *af = sctp_sk(sk)->pf->af;
4771
4772 /* Set up a dummy address struct from the sk. */
4773 af->from_sk(&addr, sk);
4774 addr.v4.sin_port = htons(snum);
4775
4776 /* Note: sk->sk_num gets filled in if ephemeral port request. */
4777 ret = sctp_get_port_local(sk, &addr);
4778
4779 return (ret ? 1 : 0);
4780}
4781
4782/*
4783 * 3.1.3 listen() - UDP Style Syntax
4784 *
4785 * By default, new associations are not accepted for UDP style sockets.
4786 * An application uses listen() to mark a socket as being able to
4787 * accept new associations.
4788 */
4789SCTP_STATIC int sctp_seqpacket_listen(struct sock *sk, int backlog)
4790{
4791 struct sctp_sock *sp = sctp_sk(sk);
4792 struct sctp_endpoint *ep = sp->ep;
4793
4794 /* Only UDP style sockets that are not peeled off are allowed to
4795 * listen().
4796 */
4797 if (!sctp_style(sk, UDP))
4798 return -EINVAL;
4799
4800 /* If backlog is zero, disable listening. */
4801 if (!backlog) {
4802 if (sctp_sstate(sk, CLOSED))
4803 return 0;
4804
4805 sctp_unhash_endpoint(ep);
4806 sk->sk_state = SCTP_SS_CLOSED;
4807 }
4808
4809 /* Return if we are already listening. */
4810 if (sctp_sstate(sk, LISTENING))
4811 return 0;
4812
4813 /*
4814 * If a bind() or sctp_bindx() is not called prior to a listen()
4815 * call that allows new associations to be accepted, the system
4816 * picks an ephemeral port and will choose an address set equivalent
4817 * to binding with a wildcard address.
4818 *
4819 * This is not currently spelled out in the SCTP sockets
4820 * extensions draft, but follows the practice as seen in TCP
4821 * sockets.
4822 */
4823 if (!ep->base.bind_addr.port) {
4824 if (sctp_autobind(sk))
4825 return -EAGAIN;
4826 }
4827 sk->sk_state = SCTP_SS_LISTENING;
4828 sctp_hash_endpoint(ep);
4829 return 0;
4830}
4831
4832/*
4833 * 4.1.3 listen() - TCP Style Syntax
4834 *
4835 * Applications uses listen() to ready the SCTP endpoint for accepting
4836 * inbound associations.
4837 */
4838SCTP_STATIC int sctp_stream_listen(struct sock *sk, int backlog)
4839{
4840 struct sctp_sock *sp = sctp_sk(sk);
4841 struct sctp_endpoint *ep = sp->ep;
4842
4843 /* If backlog is zero, disable listening. */
4844 if (!backlog) {
4845 if (sctp_sstate(sk, CLOSED))
4846 return 0;
4847
4848 sctp_unhash_endpoint(ep);
4849 sk->sk_state = SCTP_SS_CLOSED;
4850 }
4851
4852 if (sctp_sstate(sk, LISTENING))
4853 return 0;
4854
4855 /*
4856 * If a bind() or sctp_bindx() is not called prior to a listen()
4857 * call that allows new associations to be accepted, the system
4858 * picks an ephemeral port and will choose an address set equivalent
4859 * to binding with a wildcard address.
4860 *
4861 * This is not currently spelled out in the SCTP sockets
4862 * extensions draft, but follows the practice as seen in TCP
4863 * sockets.
4864 */
4865 if (!ep->base.bind_addr.port) {
4866 if (sctp_autobind(sk))
4867 return -EAGAIN;
4868 }
4869 sk->sk_state = SCTP_SS_LISTENING;
4870 sk->sk_max_ack_backlog = backlog;
4871 sctp_hash_endpoint(ep);
4872 return 0;
4873}
4874
4875/*
4876 * Move a socket to LISTENING state.
4877 */
4878int sctp_inet_listen(struct socket *sock, int backlog)
4879{
4880 struct sock *sk = sock->sk;
Herbert Xu1b489e12006-08-20 15:07:14 +10004881 struct crypto_hash *tfm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 int err = -EINVAL;
4883
4884 if (unlikely(backlog < 0))
4885 goto out;
4886
4887 sctp_lock_sock(sk);
4888
4889 if (sock->state != SS_UNCONNECTED)
4890 goto out;
4891
4892 /* Allocate HMAC for generating cookie. */
4893 if (sctp_hmac_alg) {
Herbert Xu1b489e12006-08-20 15:07:14 +10004894 tfm = crypto_alloc_hash(sctp_hmac_alg, 0, CRYPTO_ALG_ASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895 if (!tfm) {
4896 err = -ENOSYS;
4897 goto out;
4898 }
4899 }
4900
4901 switch (sock->type) {
4902 case SOCK_SEQPACKET:
4903 err = sctp_seqpacket_listen(sk, backlog);
4904 break;
4905 case SOCK_STREAM:
4906 err = sctp_stream_listen(sk, backlog);
4907 break;
4908 default:
4909 break;
4910 };
4911 if (err)
4912 goto cleanup;
4913
4914 /* Store away the transform reference. */
4915 sctp_sk(sk)->hmac = tfm;
4916out:
4917 sctp_release_sock(sk);
4918 return err;
4919cleanup:
Herbert Xu1b489e12006-08-20 15:07:14 +10004920 crypto_free_hash(tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921 goto out;
4922}
4923
4924/*
4925 * This function is done by modeling the current datagram_poll() and the
4926 * tcp_poll(). Note that, based on these implementations, we don't
4927 * lock the socket in this function, even though it seems that,
4928 * ideally, locking or some other mechanisms can be used to ensure
Neil Horman9bffc4a2005-12-19 14:24:40 -08004929 * the integrity of the counters (sndbuf and wmem_alloc) used
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930 * in this place. We assume that we don't need locks either until proven
4931 * otherwise.
4932 *
4933 * Another thing to note is that we include the Async I/O support
4934 * here, again, by modeling the current TCP/UDP code. We don't have
4935 * a good way to test with it yet.
4936 */
4937unsigned int sctp_poll(struct file *file, struct socket *sock, poll_table *wait)
4938{
4939 struct sock *sk = sock->sk;
4940 struct sctp_sock *sp = sctp_sk(sk);
4941 unsigned int mask;
4942
4943 poll_wait(file, sk->sk_sleep, wait);
4944
4945 /* A TCP-style listening socket becomes readable when the accept queue
4946 * is not empty.
4947 */
4948 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
4949 return (!list_empty(&sp->ep->asocs)) ?
4950 (POLLIN | POLLRDNORM) : 0;
4951
4952 mask = 0;
4953
4954 /* Is there any exceptional events? */
4955 if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
4956 mask |= POLLERR;
Davide Libenzif348d702006-03-25 03:07:39 -08004957 if (sk->sk_shutdown & RCV_SHUTDOWN)
4958 mask |= POLLRDHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959 if (sk->sk_shutdown == SHUTDOWN_MASK)
4960 mask |= POLLHUP;
4961
4962 /* Is it readable? Reconsider this code with TCP-style support. */
4963 if (!skb_queue_empty(&sk->sk_receive_queue) ||
4964 (sk->sk_shutdown & RCV_SHUTDOWN))
4965 mask |= POLLIN | POLLRDNORM;
4966
4967 /* The association is either gone or not ready. */
4968 if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED))
4969 return mask;
4970
4971 /* Is it writable? */
4972 if (sctp_writeable(sk)) {
4973 mask |= POLLOUT | POLLWRNORM;
4974 } else {
4975 set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
4976 /*
4977 * Since the socket is not locked, the buffer
4978 * might be made available after the writeable check and
4979 * before the bit is set. This could cause a lost I/O
4980 * signal. tcp_poll() has a race breaker for this race
4981 * condition. Based on their implementation, we put
4982 * in the following code to cover it as well.
4983 */
4984 if (sctp_writeable(sk))
4985 mask |= POLLOUT | POLLWRNORM;
4986 }
4987 return mask;
4988}
4989
4990/********************************************************************
4991 * 2nd Level Abstractions
4992 ********************************************************************/
4993
4994static struct sctp_bind_bucket *sctp_bucket_create(
4995 struct sctp_bind_hashbucket *head, unsigned short snum)
4996{
4997 struct sctp_bind_bucket *pp;
4998
4999 pp = kmem_cache_alloc(sctp_bucket_cachep, SLAB_ATOMIC);
5000 SCTP_DBG_OBJCNT_INC(bind_bucket);
5001 if (pp) {
5002 pp->port = snum;
5003 pp->fastreuse = 0;
5004 INIT_HLIST_HEAD(&pp->owner);
5005 if ((pp->next = head->chain) != NULL)
5006 pp->next->pprev = &pp->next;
5007 head->chain = pp;
5008 pp->pprev = &head->chain;
5009 }
5010 return pp;
5011}
5012
5013/* Caller must hold hashbucket lock for this tb with local BH disabled */
5014static void sctp_bucket_destroy(struct sctp_bind_bucket *pp)
5015{
Sridhar Samudrala37fa6872006-07-21 14:45:47 -07005016 if (pp && hlist_empty(&pp->owner)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017 if (pp->next)
5018 pp->next->pprev = pp->pprev;
5019 *(pp->pprev) = pp->next;
5020 kmem_cache_free(sctp_bucket_cachep, pp);
5021 SCTP_DBG_OBJCNT_DEC(bind_bucket);
5022 }
5023}
5024
5025/* Release this socket's reference to a local port. */
5026static inline void __sctp_put_port(struct sock *sk)
5027{
5028 struct sctp_bind_hashbucket *head =
5029 &sctp_port_hashtable[sctp_phashfn(inet_sk(sk)->num)];
5030 struct sctp_bind_bucket *pp;
5031
5032 sctp_spin_lock(&head->lock);
5033 pp = sctp_sk(sk)->bind_hash;
5034 __sk_del_bind_node(sk);
5035 sctp_sk(sk)->bind_hash = NULL;
5036 inet_sk(sk)->num = 0;
5037 sctp_bucket_destroy(pp);
5038 sctp_spin_unlock(&head->lock);
5039}
5040
5041void sctp_put_port(struct sock *sk)
5042{
5043 sctp_local_bh_disable();
5044 __sctp_put_port(sk);
5045 sctp_local_bh_enable();
5046}
5047
5048/*
5049 * The system picks an ephemeral port and choose an address set equivalent
5050 * to binding with a wildcard address.
5051 * One of those addresses will be the primary address for the association.
5052 * This automatically enables the multihoming capability of SCTP.
5053 */
5054static int sctp_autobind(struct sock *sk)
5055{
5056 union sctp_addr autoaddr;
5057 struct sctp_af *af;
5058 unsigned short port;
5059
5060 /* Initialize a local sockaddr structure to INADDR_ANY. */
5061 af = sctp_sk(sk)->pf->af;
5062
5063 port = htons(inet_sk(sk)->num);
5064 af->inaddr_any(&autoaddr, port);
5065
5066 return sctp_do_bind(sk, &autoaddr, af->sockaddr_len);
5067}
5068
5069/* Parse out IPPROTO_SCTP CMSG headers. Perform only minimal validation.
5070 *
5071 * From RFC 2292
5072 * 4.2 The cmsghdr Structure *
5073 *
5074 * When ancillary data is sent or received, any number of ancillary data
5075 * objects can be specified by the msg_control and msg_controllen members of
5076 * the msghdr structure, because each object is preceded by
5077 * a cmsghdr structure defining the object's length (the cmsg_len member).
5078 * Historically Berkeley-derived implementations have passed only one object
5079 * at a time, but this API allows multiple objects to be
5080 * passed in a single call to sendmsg() or recvmsg(). The following example
5081 * shows two ancillary data objects in a control buffer.
5082 *
5083 * |<--------------------------- msg_controllen -------------------------->|
5084 * | |
5085 *
5086 * |<----- ancillary data object ----->|<----- ancillary data object ----->|
5087 *
5088 * |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->|
5089 * | | |
5090 *
5091 * |<---------- cmsg_len ---------->| |<--------- cmsg_len ----------->| |
5092 *
5093 * |<--------- CMSG_LEN() --------->| |<-------- CMSG_LEN() ---------->| |
5094 * | | | | |
5095 *
5096 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
5097 * |cmsg_|cmsg_|cmsg_|XX| |XX|cmsg_|cmsg_|cmsg_|XX| |XX|
5098 *
5099 * |len |level|type |XX|cmsg_data[]|XX|len |level|type |XX|cmsg_data[]|XX|
5100 *
5101 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
5102 * ^
5103 * |
5104 *
5105 * msg_control
5106 * points here
5107 */
5108SCTP_STATIC int sctp_msghdr_parse(const struct msghdr *msg,
5109 sctp_cmsgs_t *cmsgs)
5110{
5111 struct cmsghdr *cmsg;
5112
5113 for (cmsg = CMSG_FIRSTHDR(msg);
5114 cmsg != NULL;
5115 cmsg = CMSG_NXTHDR((struct msghdr*)msg, cmsg)) {
5116 if (!CMSG_OK(msg, cmsg))
5117 return -EINVAL;
5118
5119 /* Should we parse this header or ignore? */
5120 if (cmsg->cmsg_level != IPPROTO_SCTP)
5121 continue;
5122
5123 /* Strictly check lengths following example in SCM code. */
5124 switch (cmsg->cmsg_type) {
5125 case SCTP_INIT:
5126 /* SCTP Socket API Extension
5127 * 5.2.1 SCTP Initiation Structure (SCTP_INIT)
5128 *
5129 * This cmsghdr structure provides information for
5130 * initializing new SCTP associations with sendmsg().
5131 * The SCTP_INITMSG socket option uses this same data
5132 * structure. This structure is not used for
5133 * recvmsg().
5134 *
5135 * cmsg_level cmsg_type cmsg_data[]
5136 * ------------ ------------ ----------------------
5137 * IPPROTO_SCTP SCTP_INIT struct sctp_initmsg
5138 */
5139 if (cmsg->cmsg_len !=
5140 CMSG_LEN(sizeof(struct sctp_initmsg)))
5141 return -EINVAL;
5142 cmsgs->init = (struct sctp_initmsg *)CMSG_DATA(cmsg);
5143 break;
5144
5145 case SCTP_SNDRCV:
5146 /* SCTP Socket API Extension
5147 * 5.2.2 SCTP Header Information Structure(SCTP_SNDRCV)
5148 *
5149 * This cmsghdr structure specifies SCTP options for
5150 * sendmsg() and describes SCTP header information
5151 * about a received message through recvmsg().
5152 *
5153 * cmsg_level cmsg_type cmsg_data[]
5154 * ------------ ------------ ----------------------
5155 * IPPROTO_SCTP SCTP_SNDRCV struct sctp_sndrcvinfo
5156 */
5157 if (cmsg->cmsg_len !=
5158 CMSG_LEN(sizeof(struct sctp_sndrcvinfo)))
5159 return -EINVAL;
5160
5161 cmsgs->info =
5162 (struct sctp_sndrcvinfo *)CMSG_DATA(cmsg);
5163
5164 /* Minimally, validate the sinfo_flags. */
5165 if (cmsgs->info->sinfo_flags &
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07005166 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
5167 SCTP_ABORT | SCTP_EOF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168 return -EINVAL;
5169 break;
5170
5171 default:
5172 return -EINVAL;
5173 };
5174 }
5175 return 0;
5176}
5177
5178/*
5179 * Wait for a packet..
5180 * Note: This function is the same function as in core/datagram.c
5181 * with a few modifications to make lksctp work.
5182 */
5183static int sctp_wait_for_packet(struct sock * sk, int *err, long *timeo_p)
5184{
5185 int error;
5186 DEFINE_WAIT(wait);
5187
5188 prepare_to_wait_exclusive(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
5189
5190 /* Socket errors? */
5191 error = sock_error(sk);
5192 if (error)
5193 goto out;
5194
5195 if (!skb_queue_empty(&sk->sk_receive_queue))
5196 goto ready;
5197
5198 /* Socket shut down? */
5199 if (sk->sk_shutdown & RCV_SHUTDOWN)
5200 goto out;
5201
5202 /* Sequenced packets can come disconnected. If so we report the
5203 * problem.
5204 */
5205 error = -ENOTCONN;
5206
5207 /* Is there a good reason to think that we may receive some data? */
5208 if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING))
5209 goto out;
5210
5211 /* Handle signals. */
5212 if (signal_pending(current))
5213 goto interrupted;
5214
5215 /* Let another process have a go. Since we are going to sleep
5216 * anyway. Note: This may cause odd behaviors if the message
5217 * does not fit in the user's buffer, but this seems to be the
5218 * only way to honor MSG_DONTWAIT realistically.
5219 */
5220 sctp_release_sock(sk);
5221 *timeo_p = schedule_timeout(*timeo_p);
5222 sctp_lock_sock(sk);
5223
5224ready:
5225 finish_wait(sk->sk_sleep, &wait);
5226 return 0;
5227
5228interrupted:
5229 error = sock_intr_errno(*timeo_p);
5230
5231out:
5232 finish_wait(sk->sk_sleep, &wait);
5233 *err = error;
5234 return error;
5235}
5236
5237/* Receive a datagram.
5238 * Note: This is pretty much the same routine as in core/datagram.c
5239 * with a few changes to make lksctp work.
5240 */
5241static struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags,
5242 int noblock, int *err)
5243{
5244 int error;
5245 struct sk_buff *skb;
5246 long timeo;
5247
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248 timeo = sock_rcvtimeo(sk, noblock);
5249
5250 SCTP_DEBUG_PRINTK("Timeout: timeo: %ld, MAX: %ld.\n",
5251 timeo, MAX_SCHEDULE_TIMEOUT);
5252
5253 do {
5254 /* Again only user level code calls this function,
5255 * so nothing interrupt level
5256 * will suddenly eat the receive_queue.
5257 *
5258 * Look at current nfs client by the way...
5259 * However, this function was corrent in any case. 8)
5260 */
5261 if (flags & MSG_PEEK) {
Herbert Xu1e061ab2005-06-18 22:56:42 -07005262 spin_lock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263 skb = skb_peek(&sk->sk_receive_queue);
5264 if (skb)
5265 atomic_inc(&skb->users);
Herbert Xu1e061ab2005-06-18 22:56:42 -07005266 spin_unlock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267 } else {
5268 skb = skb_dequeue(&sk->sk_receive_queue);
5269 }
5270
5271 if (skb)
5272 return skb;
5273
Neil Horman6736dc32005-12-02 20:30:06 -08005274 /* Caller is allowed not to check sk->sk_err before calling. */
5275 error = sock_error(sk);
5276 if (error)
5277 goto no_packet;
5278
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279 if (sk->sk_shutdown & RCV_SHUTDOWN)
5280 break;
5281
5282 /* User doesn't want to wait. */
5283 error = -EAGAIN;
5284 if (!timeo)
5285 goto no_packet;
5286 } while (sctp_wait_for_packet(sk, err, &timeo) == 0);
5287
5288 return NULL;
5289
5290no_packet:
5291 *err = error;
5292 return NULL;
5293}
5294
5295/* If sndbuf has changed, wake up per association sndbuf waiters. */
5296static void __sctp_write_space(struct sctp_association *asoc)
5297{
5298 struct sock *sk = asoc->base.sk;
5299 struct socket *sock = sk->sk_socket;
5300
5301 if ((sctp_wspace(asoc) > 0) && sock) {
5302 if (waitqueue_active(&asoc->wait))
5303 wake_up_interruptible(&asoc->wait);
5304
5305 if (sctp_writeable(sk)) {
5306 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
5307 wake_up_interruptible(sk->sk_sleep);
5308
5309 /* Note that we try to include the Async I/O support
5310 * here by modeling from the current TCP/UDP code.
5311 * We have not tested with it yet.
5312 */
5313 if (sock->fasync_list &&
5314 !(sk->sk_shutdown & SEND_SHUTDOWN))
5315 sock_wake_async(sock, 2, POLL_OUT);
5316 }
5317 }
5318}
5319
5320/* Do accounting for the sndbuf space.
5321 * Decrement the used sndbuf space of the corresponding association by the
5322 * data size which was just transmitted(freed).
5323 */
5324static void sctp_wfree(struct sk_buff *skb)
5325{
5326 struct sctp_association *asoc;
5327 struct sctp_chunk *chunk;
5328 struct sock *sk;
5329
5330 /* Get the saved chunk pointer. */
5331 chunk = *((struct sctp_chunk **)(skb->cb));
5332 asoc = chunk->asoc;
5333 sk = asoc->base.sk;
Neil Horman4eb701d2005-04-28 12:02:04 -07005334 asoc->sndbuf_used -= SCTP_DATA_SNDSIZE(chunk) +
5335 sizeof(struct sk_buff) +
5336 sizeof(struct sctp_chunk);
5337
Neil Horman4eb701d2005-04-28 12:02:04 -07005338 atomic_sub(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
5339
5340 sock_wfree(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341 __sctp_write_space(asoc);
5342
5343 sctp_association_put(asoc);
5344}
5345
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07005346/* Do accounting for the receive space on the socket.
5347 * Accounting for the association is done in ulpevent.c
5348 * We set this as a destructor for the cloned data skbs so that
5349 * accounting is done at the correct time.
5350 */
5351void sctp_sock_rfree(struct sk_buff *skb)
5352{
5353 struct sock *sk = skb->sk;
5354 struct sctp_ulpevent *event = sctp_skb2event(skb);
5355
5356 atomic_sub(event->rmem_len, &sk->sk_rmem_alloc);
5357}
5358
5359
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360/* Helper function to wait for space in the sndbuf. */
5361static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
5362 size_t msg_len)
5363{
5364 struct sock *sk = asoc->base.sk;
5365 int err = 0;
5366 long current_timeo = *timeo_p;
5367 DEFINE_WAIT(wait);
5368
5369 SCTP_DEBUG_PRINTK("wait_for_sndbuf: asoc=%p, timeo=%ld, msg_len=%zu\n",
5370 asoc, (long)(*timeo_p), msg_len);
5371
5372 /* Increment the association's refcnt. */
5373 sctp_association_hold(asoc);
5374
5375 /* Wait on the association specific sndbuf space. */
5376 for (;;) {
5377 prepare_to_wait_exclusive(&asoc->wait, &wait,
5378 TASK_INTERRUPTIBLE);
5379 if (!*timeo_p)
5380 goto do_nonblock;
5381 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
5382 asoc->base.dead)
5383 goto do_error;
5384 if (signal_pending(current))
5385 goto do_interrupted;
5386 if (msg_len <= sctp_wspace(asoc))
5387 break;
5388
5389 /* Let another process have a go. Since we are going
5390 * to sleep anyway.
5391 */
5392 sctp_release_sock(sk);
5393 current_timeo = schedule_timeout(current_timeo);
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07005394 BUG_ON(sk != asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395 sctp_lock_sock(sk);
5396
5397 *timeo_p = current_timeo;
5398 }
5399
5400out:
5401 finish_wait(&asoc->wait, &wait);
5402
5403 /* Release the association's refcnt. */
5404 sctp_association_put(asoc);
5405
5406 return err;
5407
5408do_error:
5409 err = -EPIPE;
5410 goto out;
5411
5412do_interrupted:
5413 err = sock_intr_errno(*timeo_p);
5414 goto out;
5415
5416do_nonblock:
5417 err = -EAGAIN;
5418 goto out;
5419}
5420
5421/* If socket sndbuf has changed, wake up all per association waiters. */
5422void sctp_write_space(struct sock *sk)
5423{
5424 struct sctp_association *asoc;
5425 struct list_head *pos;
5426
5427 /* Wake up the tasks in each wait queue. */
5428 list_for_each(pos, &((sctp_sk(sk))->ep->asocs)) {
5429 asoc = list_entry(pos, struct sctp_association, asocs);
5430 __sctp_write_space(asoc);
5431 }
5432}
5433
5434/* Is there any sndbuf space available on the socket?
5435 *
Neil Horman9bffc4a2005-12-19 14:24:40 -08005436 * Note that sk_wmem_alloc is the sum of the send buffers on all of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005437 * associations on the same socket. For a UDP-style socket with
5438 * multiple associations, it is possible for it to be "unwriteable"
5439 * prematurely. I assume that this is acceptable because
5440 * a premature "unwriteable" is better than an accidental "writeable" which
5441 * would cause an unwanted block under certain circumstances. For the 1-1
5442 * UDP-style sockets or TCP-style sockets, this code should work.
5443 * - Daisy
5444 */
5445static int sctp_writeable(struct sock *sk)
5446{
5447 int amt = 0;
5448
Neil Horman9bffc4a2005-12-19 14:24:40 -08005449 amt = sk->sk_sndbuf - atomic_read(&sk->sk_wmem_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450 if (amt < 0)
5451 amt = 0;
5452 return amt;
5453}
5454
5455/* Wait for an association to go into ESTABLISHED state. If timeout is 0,
5456 * returns immediately with EINPROGRESS.
5457 */
5458static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p)
5459{
5460 struct sock *sk = asoc->base.sk;
5461 int err = 0;
5462 long current_timeo = *timeo_p;
5463 DEFINE_WAIT(wait);
5464
5465 SCTP_DEBUG_PRINTK("%s: asoc=%p, timeo=%ld\n", __FUNCTION__, asoc,
5466 (long)(*timeo_p));
5467
5468 /* Increment the association's refcnt. */
5469 sctp_association_hold(asoc);
5470
5471 for (;;) {
5472 prepare_to_wait_exclusive(&asoc->wait, &wait,
5473 TASK_INTERRUPTIBLE);
5474 if (!*timeo_p)
5475 goto do_nonblock;
5476 if (sk->sk_shutdown & RCV_SHUTDOWN)
5477 break;
5478 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
5479 asoc->base.dead)
5480 goto do_error;
5481 if (signal_pending(current))
5482 goto do_interrupted;
5483
5484 if (sctp_state(asoc, ESTABLISHED))
5485 break;
5486
5487 /* Let another process have a go. Since we are going
5488 * to sleep anyway.
5489 */
5490 sctp_release_sock(sk);
5491 current_timeo = schedule_timeout(current_timeo);
5492 sctp_lock_sock(sk);
5493
5494 *timeo_p = current_timeo;
5495 }
5496
5497out:
5498 finish_wait(&asoc->wait, &wait);
5499
5500 /* Release the association's refcnt. */
5501 sctp_association_put(asoc);
5502
5503 return err;
5504
5505do_error:
Vlad Yasevich81845c22006-01-30 15:59:54 -08005506 if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005507 err = -ETIMEDOUT;
5508 else
5509 err = -ECONNREFUSED;
5510 goto out;
5511
5512do_interrupted:
5513 err = sock_intr_errno(*timeo_p);
5514 goto out;
5515
5516do_nonblock:
5517 err = -EINPROGRESS;
5518 goto out;
5519}
5520
5521static int sctp_wait_for_accept(struct sock *sk, long timeo)
5522{
5523 struct sctp_endpoint *ep;
5524 int err = 0;
5525 DEFINE_WAIT(wait);
5526
5527 ep = sctp_sk(sk)->ep;
5528
5529
5530 for (;;) {
5531 prepare_to_wait_exclusive(sk->sk_sleep, &wait,
5532 TASK_INTERRUPTIBLE);
5533
5534 if (list_empty(&ep->asocs)) {
5535 sctp_release_sock(sk);
5536 timeo = schedule_timeout(timeo);
5537 sctp_lock_sock(sk);
5538 }
5539
5540 err = -EINVAL;
5541 if (!sctp_sstate(sk, LISTENING))
5542 break;
5543
5544 err = 0;
5545 if (!list_empty(&ep->asocs))
5546 break;
5547
5548 err = sock_intr_errno(timeo);
5549 if (signal_pending(current))
5550 break;
5551
5552 err = -EAGAIN;
5553 if (!timeo)
5554 break;
5555 }
5556
5557 finish_wait(sk->sk_sleep, &wait);
5558
5559 return err;
5560}
5561
5562void sctp_wait_for_close(struct sock *sk, long timeout)
5563{
5564 DEFINE_WAIT(wait);
5565
5566 do {
5567 prepare_to_wait(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
5568 if (list_empty(&sctp_sk(sk)->ep->asocs))
5569 break;
5570 sctp_release_sock(sk);
5571 timeout = schedule_timeout(timeout);
5572 sctp_lock_sock(sk);
5573 } while (!signal_pending(current) && timeout);
5574
5575 finish_wait(sk->sk_sleep, &wait);
5576}
5577
5578/* Populate the fields of the newsk from the oldsk and migrate the assoc
5579 * and its messages to the newsk.
5580 */
5581static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
5582 struct sctp_association *assoc,
5583 sctp_socket_type_t type)
5584{
5585 struct sctp_sock *oldsp = sctp_sk(oldsk);
5586 struct sctp_sock *newsp = sctp_sk(newsk);
5587 struct sctp_bind_bucket *pp; /* hash list port iterator */
5588 struct sctp_endpoint *newep = newsp->ep;
5589 struct sk_buff *skb, *tmp;
5590 struct sctp_ulpevent *event;
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07005591 int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592
5593 /* Migrate socket buffer sizes and all the socket level options to the
5594 * new socket.
5595 */
5596 newsk->sk_sndbuf = oldsk->sk_sndbuf;
5597 newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
5598 /* Brute force copy old sctp opt. */
5599 inet_sk_copy_descendant(newsk, oldsk);
5600
5601 /* Restore the ep value that was overwritten with the above structure
5602 * copy.
5603 */
5604 newsp->ep = newep;
5605 newsp->hmac = NULL;
5606
5607 /* Hook this new socket in to the bind_hash list. */
5608 pp = sctp_sk(oldsk)->bind_hash;
5609 sk_add_bind_node(newsk, &pp->owner);
5610 sctp_sk(newsk)->bind_hash = pp;
5611 inet_sk(newsk)->num = inet_sk(oldsk)->num;
5612
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07005613 /* Copy the bind_addr list from the original endpoint to the new
5614 * endpoint so that we can handle restarts properly
5615 */
Vladislav Yasevicheb5fa392006-08-22 00:23:13 -07005616 if (PF_INET6 == assoc->base.sk->sk_family)
5617 flags = SCTP_ADDR6_ALLOWED;
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07005618 if (assoc->peer.ipv4_address)
5619 flags |= SCTP_ADDR4_PEERSUPP;
5620 if (assoc->peer.ipv6_address)
5621 flags |= SCTP_ADDR6_PEERSUPP;
5622 sctp_bind_addr_copy(&newsp->ep->base.bind_addr,
5623 &oldsp->ep->base.bind_addr,
5624 SCTP_SCOPE_GLOBAL, GFP_KERNEL, flags);
5625
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626 /* Move any messages in the old socket's receive queue that are for the
5627 * peeled off association to the new socket's receive queue.
5628 */
5629 sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) {
5630 event = sctp_skb2event(skb);
5631 if (event->asoc == assoc) {
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07005632 sctp_sock_rfree(skb);
David S. Miller8728b832005-08-09 19:25:21 -07005633 __skb_unlink(skb, &oldsk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634 __skb_queue_tail(&newsk->sk_receive_queue, skb);
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07005635 sctp_skb_set_owner_r(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005636 }
5637 }
5638
5639 /* Clean up any messages pending delivery due to partial
5640 * delivery. Three cases:
5641 * 1) No partial deliver; no work.
5642 * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby.
5643 * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue.
5644 */
5645 skb_queue_head_init(&newsp->pd_lobby);
5646 sctp_sk(newsk)->pd_mode = assoc->ulpq.pd_mode;
5647
5648 if (sctp_sk(oldsk)->pd_mode) {
5649 struct sk_buff_head *queue;
5650
5651 /* Decide which queue to move pd_lobby skbs to. */
5652 if (assoc->ulpq.pd_mode) {
5653 queue = &newsp->pd_lobby;
5654 } else
5655 queue = &newsk->sk_receive_queue;
5656
5657 /* Walk through the pd_lobby, looking for skbs that
5658 * need moved to the new socket.
5659 */
5660 sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) {
5661 event = sctp_skb2event(skb);
5662 if (event->asoc == assoc) {
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07005663 sctp_sock_rfree(skb);
David S. Miller8728b832005-08-09 19:25:21 -07005664 __skb_unlink(skb, &oldsp->pd_lobby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665 __skb_queue_tail(queue, skb);
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07005666 sctp_skb_set_owner_r(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667 }
5668 }
5669
5670 /* Clear up any skbs waiting for the partial
5671 * delivery to finish.
5672 */
5673 if (assoc->ulpq.pd_mode)
5674 sctp_clear_pd(oldsk);
5675
5676 }
5677
5678 /* Set the type of socket to indicate that it is peeled off from the
5679 * original UDP-style socket or created with the accept() call on a
5680 * TCP-style socket..
5681 */
5682 newsp->type = type;
5683
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07005684 /* Mark the new socket "in-use" by the user so that any packets
5685 * that may arrive on the association after we've moved it are
5686 * queued to the backlog. This prevents a potential race between
5687 * backlog processing on the old socket and new-packet processing
5688 * on the new socket.
5689 */
5690 sctp_lock_sock(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005691 sctp_assoc_migrate(assoc, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692
5693 /* If the association on the newsk is already closed before accept()
5694 * is called, set RCV_SHUTDOWN flag.
5695 */
5696 if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP))
5697 newsk->sk_shutdown |= RCV_SHUTDOWN;
5698
5699 newsk->sk_state = SCTP_SS_ESTABLISHED;
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07005700 sctp_release_sock(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005701}
5702
5703/* This proto struct describes the ULP interface for SCTP. */
5704struct proto sctp_prot = {
5705 .name = "SCTP",
5706 .owner = THIS_MODULE,
5707 .close = sctp_close,
5708 .connect = sctp_connect,
5709 .disconnect = sctp_disconnect,
5710 .accept = sctp_accept,
5711 .ioctl = sctp_ioctl,
5712 .init = sctp_init_sock,
5713 .destroy = sctp_destroy_sock,
5714 .shutdown = sctp_shutdown,
5715 .setsockopt = sctp_setsockopt,
5716 .getsockopt = sctp_getsockopt,
5717 .sendmsg = sctp_sendmsg,
5718 .recvmsg = sctp_recvmsg,
5719 .bind = sctp_bind,
5720 .backlog_rcv = sctp_backlog_rcv,
5721 .hash = sctp_hash,
5722 .unhash = sctp_unhash,
5723 .get_port = sctp_get_port,
5724 .obj_size = sizeof(struct sctp_sock),
5725};
5726
5727#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
5728struct proto sctpv6_prot = {
5729 .name = "SCTPv6",
5730 .owner = THIS_MODULE,
5731 .close = sctp_close,
5732 .connect = sctp_connect,
5733 .disconnect = sctp_disconnect,
5734 .accept = sctp_accept,
5735 .ioctl = sctp_ioctl,
5736 .init = sctp_init_sock,
5737 .destroy = sctp_destroy_sock,
5738 .shutdown = sctp_shutdown,
5739 .setsockopt = sctp_setsockopt,
5740 .getsockopt = sctp_getsockopt,
5741 .sendmsg = sctp_sendmsg,
5742 .recvmsg = sctp_recvmsg,
5743 .bind = sctp_bind,
5744 .backlog_rcv = sctp_backlog_rcv,
5745 .hash = sctp_hash,
5746 .unhash = sctp_unhash,
5747 .get_port = sctp_get_port,
5748 .obj_size = sizeof(struct sctp6_sock),
5749};
5750#endif /* defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) */