blob: e9e50cadd52f695a97a9bb3cba312077abdc88f7 [file] [log] [blame]
Vlad Yasevich60c778b2008-01-11 09:57:09 -05001/* SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (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 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05009 * This file is part of the SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
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 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050018 * This SCTP implementation is free software;
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * 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 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050024 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * 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
Joe Perches145ce502010-08-24 13:21:08 +000060#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/types.h>
63#include <linux/kernel.h>
64#include <linux/wait.h>
65#include <linux/time.h>
66#include <linux/ip.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080067#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/fcntl.h>
69#include <linux/poll.h>
70#include <linux/init.h>
71#include <linux/crypto.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090072#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74#include <net/ip.h>
75#include <net/icmp.h>
76#include <net/route.h>
77#include <net/ipv6.h>
78#include <net/inet_common.h>
79
80#include <linux/socket.h> /* for sa_family_t */
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040081#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#include <net/sock.h>
83#include <net/sctp/sctp.h>
84#include <net/sctp/sm.h>
85
86/* WARNING: Please do not remove the SCTP_STATIC attribute to
87 * any of the functions below as they are used to export functions
88 * used by a project regression testsuite.
89 */
90
91/* Forward declarations for internal helper functions. */
92static int sctp_writeable(struct sock *sk);
93static void sctp_wfree(struct sk_buff *skb);
94static int sctp_wait_for_sndbuf(struct sctp_association *, long *timeo_p,
95 size_t msg_len);
96static int sctp_wait_for_packet(struct sock * sk, int *err, long *timeo_p);
97static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
98static int sctp_wait_for_accept(struct sock *sk, long timeo);
99static void sctp_wait_for_close(struct sock *sk, long timeo);
100static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
101 union sctp_addr *addr, int len);
102static int sctp_bindx_add(struct sock *, struct sockaddr *, int);
103static int sctp_bindx_rem(struct sock *, struct sockaddr *, int);
104static int sctp_send_asconf_add_ip(struct sock *, struct sockaddr *, int);
105static int sctp_send_asconf_del_ip(struct sock *, struct sockaddr *, int);
106static int sctp_send_asconf(struct sctp_association *asoc,
107 struct sctp_chunk *chunk);
108static int sctp_do_bind(struct sock *, union sctp_addr *, int);
109static int sctp_autobind(struct sock *sk);
110static void sctp_sock_migrate(struct sock *, struct sock *,
111 struct sctp_association *, sctp_socket_type_t);
112static char *sctp_hmac_alg = SCTP_COOKIE_HMAC_ALG;
113
Neil Horman4d93df02007-08-15 16:07:44 -0700114extern struct kmem_cache *sctp_bucket_cachep;
Eric Dumazet8d987e52010-11-09 23:24:26 +0000115extern long sysctl_sctp_mem[3];
Neil Horman4d93df02007-08-15 16:07:44 -0700116extern int sysctl_sctp_rmem[3];
117extern int sysctl_sctp_wmem[3];
118
Adrian Bunkb6fa1a42007-09-12 15:18:00 +0200119static int sctp_memory_pressure;
Eric Dumazet8d987e52010-11-09 23:24:26 +0000120static atomic_long_t sctp_memory_allocated;
Eric Dumazet17483762008-11-25 21:16:35 -0800121struct percpu_counter sctp_sockets_allocated;
Neil Horman4d93df02007-08-15 16:07:44 -0700122
Pavel Emelyanov5c52ba12008-07-16 20:28:10 -0700123static void sctp_enter_memory_pressure(struct sock *sk)
Neil Horman4d93df02007-08-15 16:07:44 -0700124{
125 sctp_memory_pressure = 1;
126}
127
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129/* Get the sndbuf space available at the time on the association. */
130static inline int sctp_wspace(struct sctp_association *asoc)
131{
Neil Horman4d93df02007-08-15 16:07:44 -0700132 int amt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Neil Horman4d93df02007-08-15 16:07:44 -0700134 if (asoc->ep->sndbuf_policy)
135 amt = asoc->sndbuf_used;
136 else
Eric Dumazet31e6d362009-06-17 19:05:41 -0700137 amt = sk_wmem_alloc_get(asoc->base.sk);
Neil Horman4d93df02007-08-15 16:07:44 -0700138
139 if (amt >= asoc->base.sk->sk_sndbuf) {
140 if (asoc->base.sk->sk_userlocks & SOCK_SNDBUF_LOCK)
141 amt = 0;
142 else {
143 amt = sk_stream_wspace(asoc->base.sk);
144 if (amt < 0)
145 amt = 0;
146 }
Neil Horman4eb701d2005-04-28 12:02:04 -0700147 } else {
Neil Horman4d93df02007-08-15 16:07:44 -0700148 amt = asoc->base.sk->sk_sndbuf - amt;
Neil Horman4eb701d2005-04-28 12:02:04 -0700149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return amt;
151}
152
153/* Increment the used sndbuf space count of the corresponding association by
154 * the size of the outgoing data chunk.
155 * Also, set the skb destructor for sndbuf accounting later.
156 *
157 * Since it is always 1-1 between chunk and skb, and also a new skb is always
158 * allocated for chunk bundling in sctp_packet_transmit(), we can use the
159 * destructor in the data chunk skb for the purpose of the sndbuf space
160 * tracking.
161 */
162static inline void sctp_set_owner_w(struct sctp_chunk *chunk)
163{
164 struct sctp_association *asoc = chunk->asoc;
165 struct sock *sk = asoc->base.sk;
166
167 /* The sndbuf space is tracked per association. */
168 sctp_association_hold(asoc);
169
Neil Horman4eb701d2005-04-28 12:02:04 -0700170 skb_set_owner_w(chunk->skb, sk);
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 chunk->skb->destructor = sctp_wfree;
173 /* Save the chunk pointer in skb for sctp_wfree to use later. */
174 *((struct sctp_chunk **)(chunk->skb->cb)) = chunk;
175
Neil Horman4eb701d2005-04-28 12:02:04 -0700176 asoc->sndbuf_used += SCTP_DATA_SNDSIZE(chunk) +
177 sizeof(struct sk_buff) +
178 sizeof(struct sctp_chunk);
179
Neil Horman4eb701d2005-04-28 12:02:04 -0700180 atomic_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800181 sk->sk_wmem_queued += chunk->skb->truesize;
182 sk_mem_charge(sk, chunk->skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
185/* Verify that this is a valid address. */
186static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr,
187 int len)
188{
189 struct sctp_af *af;
190
191 /* Verify basic sockaddr. */
192 af = sctp_sockaddr_af(sctp_sk(sk), addr, len);
193 if (!af)
194 return -EINVAL;
195
196 /* Is this a valid SCTP address? */
Vlad Yasevich5636bef2006-06-17 22:55:35 -0700197 if (!af->addr_valid(addr, sctp_sk(sk), NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return -EINVAL;
199
200 if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr)))
201 return -EINVAL;
202
203 return 0;
204}
205
206/* Look up the association by its id. If this is not a UDP-style
207 * socket, the ID field is always ignored.
208 */
209struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
210{
211 struct sctp_association *asoc = NULL;
212
213 /* If this is not a UDP-style socket, assoc id should be ignored. */
214 if (!sctp_style(sk, UDP)) {
215 /* Return NULL if the socket state is not ESTABLISHED. It
216 * could be a TCP-style listening socket or a socket which
217 * hasn't yet called connect() to establish an association.
218 */
219 if (!sctp_sstate(sk, ESTABLISHED))
220 return NULL;
221
222 /* Get the first and the only association from the list. */
223 if (!list_empty(&sctp_sk(sk)->ep->asocs))
224 asoc = list_entry(sctp_sk(sk)->ep->asocs.next,
225 struct sctp_association, asocs);
226 return asoc;
227 }
228
229 /* Otherwise this is a UDP-style socket. */
230 if (!id || (id == (sctp_assoc_t)-1))
231 return NULL;
232
233 spin_lock_bh(&sctp_assocs_id_lock);
234 asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id);
235 spin_unlock_bh(&sctp_assocs_id_lock);
236
237 if (!asoc || (asoc->base.sk != sk) || asoc->base.dead)
238 return NULL;
239
240 return asoc;
241}
242
243/* Look up the transport from an address and an assoc id. If both address and
244 * id are specified, the associations matching the address and the id should be
245 * the same.
246 */
247static struct sctp_transport *sctp_addr_id2transport(struct sock *sk,
248 struct sockaddr_storage *addr,
249 sctp_assoc_t id)
250{
251 struct sctp_association *addr_asoc = NULL, *id_asoc = NULL;
252 struct sctp_transport *transport;
253 union sctp_addr *laddr = (union sctp_addr *)addr;
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
Al Virocd4ff032006-11-20 17:11:33 -0800256 laddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 &transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 if (!addr_asoc)
260 return NULL;
261
262 id_asoc = sctp_id2assoc(sk, id);
263 if (id_asoc && (id_asoc != addr_asoc))
264 return NULL;
265
266 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk),
267 (union sctp_addr *)addr);
268
269 return transport;
270}
271
272/* API 3.1.2 bind() - UDP Style Syntax
273 * The syntax of bind() is,
274 *
275 * ret = bind(int sd, struct sockaddr *addr, int addrlen);
276 *
277 * sd - the socket descriptor returned by socket().
278 * addr - the address structure (struct sockaddr_in or struct
279 * sockaddr_in6 [RFC 2553]),
280 * addr_len - the size of the address structure.
281 */
Frank Filz3f7a87d2005-06-20 13:14:57 -0700282SCTP_STATIC int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 int retval = 0;
285
286 sctp_lock_sock(sk);
287
Frank Filz3f7a87d2005-06-20 13:14:57 -0700288 SCTP_DEBUG_PRINTK("sctp_bind(sk: %p, addr: %p, addr_len: %d)\n",
289 sk, addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 /* Disallow binding twice. */
292 if (!sctp_sk(sk)->ep->base.bind_addr.port)
Frank Filz3f7a87d2005-06-20 13:14:57 -0700293 retval = sctp_do_bind(sk, (union sctp_addr *)addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 addr_len);
295 else
296 retval = -EINVAL;
297
298 sctp_release_sock(sk);
299
300 return retval;
301}
302
303static long sctp_get_port_local(struct sock *, union sctp_addr *);
304
305/* Verify this is a valid sockaddr. */
306static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
307 union sctp_addr *addr, int len)
308{
309 struct sctp_af *af;
310
311 /* Check minimum size. */
312 if (len < sizeof (struct sockaddr))
313 return NULL;
314
Vlad Yasevich7dab83d2008-07-18 23:05:40 -0700315 /* V4 mapped address are really of AF_INET family */
316 if (addr->sa.sa_family == AF_INET6 &&
317 ipv6_addr_v4mapped(&addr->v6.sin6_addr)) {
318 if (!opt->pf->af_supported(AF_INET, opt))
319 return NULL;
320 } else {
321 /* Does this PF support this AF? */
322 if (!opt->pf->af_supported(addr->sa.sa_family, opt))
323 return NULL;
324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 /* If we get this far, af is valid. */
327 af = sctp_get_af_specific(addr->sa.sa_family);
328
329 if (len < af->sockaddr_len)
330 return NULL;
331
332 return af;
333}
334
335/* Bind a local address either to an endpoint or to an association. */
336SCTP_STATIC int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
337{
338 struct sctp_sock *sp = sctp_sk(sk);
339 struct sctp_endpoint *ep = sp->ep;
340 struct sctp_bind_addr *bp = &ep->base.bind_addr;
341 struct sctp_af *af;
342 unsigned short snum;
343 int ret = 0;
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 /* Common sockaddr verification. */
346 af = sctp_sockaddr_af(sp, addr, len);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700347 if (!af) {
348 SCTP_DEBUG_PRINTK("sctp_do_bind(sk: %p, newaddr: %p, len: %d) EINVAL\n",
349 sk, addr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return -EINVAL;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700351 }
352
353 snum = ntohs(addr->v4.sin_port);
354
355 SCTP_DEBUG_PRINTK_IPADDR("sctp_do_bind(sk: %p, new addr: ",
356 ", port: %d, new port: %d, len: %d)\n",
357 sk,
358 addr,
359 bp->port, snum,
360 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 /* PF specific bind() address verification. */
363 if (!sp->pf->bind_verify(sp, addr))
364 return -EADDRNOTAVAIL;
365
Vlad Yasevich8b358052007-05-15 17:14:58 -0400366 /* We must either be unbound, or bind to the same port.
367 * It's OK to allow 0 ports if we are already bound.
368 * We'll just inhert an already bound port in this case
369 */
370 if (bp->port) {
371 if (!snum)
372 snum = bp->port;
373 else if (snum != bp->port) {
374 SCTP_DEBUG_PRINTK("sctp_do_bind:"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 " New port %d does not match existing port "
376 "%d.\n", snum, bp->port);
Vlad Yasevich8b358052007-05-15 17:14:58 -0400377 return -EINVAL;
378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
380
381 if (snum && snum < PROT_SOCK && !capable(CAP_NET_BIND_SERVICE))
382 return -EACCES;
383
Vlad Yasevich4e540642008-07-18 23:06:32 -0700384 /* See if the address matches any of the addresses we may have
385 * already bound before checking against other endpoints.
386 */
387 if (sctp_bind_addr_match(bp, addr, sp))
388 return -EINVAL;
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 /* Make sure we are allowed to bind here.
391 * The function sctp_get_port_local() does duplicate address
392 * detection.
393 */
Vlad Yasevich2772b492007-08-21 14:24:30 +0900394 addr->v4.sin_port = htons(snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if ((ret = sctp_get_port_local(sk, addr))) {
Vlad Yasevich4e540642008-07-18 23:06:32 -0700396 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 }
398
399 /* Refresh ephemeral port. */
400 if (!bp->port)
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000401 bp->port = inet_sk(sk)->inet_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Vlad Yasevich559cf712007-09-16 16:03:28 -0700403 /* Add the address to the bind address list.
404 * Use GFP_ATOMIC since BHs will be disabled.
405 */
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800406 ret = sctp_add_bind_addr(bp, addr, SCTP_ADDR_SRC, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 /* Copy back into socket for getsockname() use. */
409 if (!ret) {
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000410 inet_sk(sk)->inet_sport = htons(inet_sk(sk)->inet_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 af->to_sk_saddr(addr, sk);
412 }
413
414 return ret;
415}
416
417 /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
418 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900419 * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 * at any one time. If a sender, after sending an ASCONF chunk, decides
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900421 * it needs to transfer another ASCONF Chunk, it MUST wait until the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900423 * subsequent ASCONF. Note this restriction binds each side, so at any
424 * time two ASCONF may be in-transit on any given association (one sent
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 * from each endpoint).
426 */
427static int sctp_send_asconf(struct sctp_association *asoc,
428 struct sctp_chunk *chunk)
429{
430 int retval = 0;
431
432 /* If there is an outstanding ASCONF chunk, queue it for later
433 * transmission.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900434 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (asoc->addip_last_asconf) {
David S. Miller79af02c2005-07-08 21:47:49 -0700436 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900437 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
439
440 /* Hold the chunk until an ASCONF_ACK is received. */
441 sctp_chunk_hold(chunk);
442 retval = sctp_primitive_ASCONF(asoc, chunk);
443 if (retval)
444 sctp_chunk_free(chunk);
445 else
446 asoc->addip_last_asconf = chunk;
447
448out:
449 return retval;
450}
451
452/* Add a list of addresses as bind addresses to local endpoint or
453 * association.
454 *
455 * Basically run through each address specified in the addrs/addrcnt
456 * array/length pair, determine if it is IPv6 or IPv4 and call
457 * sctp_do_bind() on it.
458 *
459 * If any of them fails, then the operation will be reversed and the
460 * ones that were added will be removed.
461 *
462 * Only sctp_setsockopt_bindx() is supposed to call this function.
463 */
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +0200464static int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
466 int cnt;
467 int retval = 0;
468 void *addr_buf;
469 struct sockaddr *sa_addr;
470 struct sctp_af *af;
471
472 SCTP_DEBUG_PRINTK("sctp_bindx_add (sk: %p, addrs: %p, addrcnt: %d)\n",
473 sk, addrs, addrcnt);
474
475 addr_buf = addrs;
476 for (cnt = 0; cnt < addrcnt; cnt++) {
477 /* The list may contain either IPv4 or IPv6 address;
478 * determine the address length for walking thru the list.
479 */
Joe Perchesea110732011-06-13 16:21:26 +0000480 sa_addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 af = sctp_get_af_specific(sa_addr->sa_family);
482 if (!af) {
483 retval = -EINVAL;
484 goto err_bindx_add;
485 }
486
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900487 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 af->sockaddr_len);
489
490 addr_buf += af->sockaddr_len;
491
492err_bindx_add:
493 if (retval < 0) {
494 /* Failed. Cleanup the ones that have been added */
495 if (cnt > 0)
496 sctp_bindx_rem(sk, addrs, cnt);
497 return retval;
498 }
499 }
500
501 return retval;
502}
503
504/* Send an ASCONF chunk with Add IP address parameters to all the peers of the
505 * associations that are part of the endpoint indicating that a list of local
506 * addresses are added to the endpoint.
507 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900508 * If any of the addresses is already in the bind address list of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 * association, we do not send the chunk for that association. But it will not
510 * affect other associations.
511 *
512 * Only sctp_setsockopt_bindx() is supposed to call this function.
513 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900514static int sctp_send_asconf_add_ip(struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 struct sockaddr *addrs,
516 int addrcnt)
517{
518 struct sctp_sock *sp;
519 struct sctp_endpoint *ep;
520 struct sctp_association *asoc;
521 struct sctp_bind_addr *bp;
522 struct sctp_chunk *chunk;
523 struct sctp_sockaddr_entry *laddr;
524 union sctp_addr *addr;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700525 union sctp_addr saveaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 void *addr_buf;
527 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 struct list_head *p;
529 int i;
530 int retval = 0;
531
532 if (!sctp_addip_enable)
533 return retval;
534
535 sp = sctp_sk(sk);
536 ep = sp->ep;
537
538 SCTP_DEBUG_PRINTK("%s: (sk: %p, addrs: %p, addrcnt: %d)\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800539 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700541 list_for_each_entry(asoc, &ep->asocs, asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 if (!asoc->peer.asconf_capable)
544 continue;
545
546 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_ADD_IP)
547 continue;
548
549 if (!sctp_state(asoc, ESTABLISHED))
550 continue;
551
552 /* Check if any address in the packed array of addresses is
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900553 * in the bind address list of the association. If so,
554 * do not send the asconf chunk to its peer, but continue with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 * other associations.
556 */
557 addr_buf = addrs;
558 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000559 addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 af = sctp_get_af_specific(addr->v4.sin_family);
561 if (!af) {
562 retval = -EINVAL;
563 goto out;
564 }
565
566 if (sctp_assoc_lookup_laddr(asoc, addr))
567 break;
568
569 addr_buf += af->sockaddr_len;
570 }
571 if (i < addrcnt)
572 continue;
573
Vlad Yasevich559cf712007-09-16 16:03:28 -0700574 /* Use the first valid address in bind addr list of
575 * association as Address Parameter of ASCONF CHUNK.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 bp = &asoc->base.bind_addr;
578 p = bp->address_list.next;
579 laddr = list_entry(p, struct sctp_sockaddr_entry, list);
Al Viro5ae955c2006-11-20 17:22:08 -0800580 chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 addrcnt, SCTP_PARAM_ADD_IP);
582 if (!chunk) {
583 retval = -ENOMEM;
584 goto out;
585 }
586
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700587 /* Add the new addresses to the bind address list with
588 * use_as_src set to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700590 addr_buf = addrs;
591 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000592 addr = addr_buf;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700593 af = sctp_get_af_specific(addr->v4.sin_family);
594 memcpy(&saveaddr, addr, af->sockaddr_len);
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800595 retval = sctp_add_bind_addr(bp, &saveaddr,
596 SCTP_ADDR_NEW, GFP_ATOMIC);
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700597 addr_buf += af->sockaddr_len;
598 }
Michio Honda8a07eb02011-04-26 20:19:36 +0900599 if (asoc->src_out_of_asoc_ok) {
600 struct sctp_transport *trans;
601
602 list_for_each_entry(trans,
603 &asoc->peer.transport_addr_list, transports) {
604 /* Clear the source and route cache */
605 dst_release(trans->dst);
606 trans->cwnd = min(4*asoc->pathmtu, max_t(__u32,
607 2*asoc->pathmtu, 4380));
608 trans->ssthresh = asoc->peer.i.a_rwnd;
609 trans->rto = asoc->rto_initial;
610 trans->rtt = trans->srtt = trans->rttvar = 0;
611 sctp_transport_route(trans, NULL,
612 sctp_sk(asoc->base.sk));
613 }
614 }
615 retval = sctp_send_asconf(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617
618out:
619 return retval;
620}
621
622/* Remove a list of addresses from bind addresses list. Do not remove the
623 * last address.
624 *
625 * Basically run through each address specified in the addrs/addrcnt
626 * array/length pair, determine if it is IPv6 or IPv4 and call
627 * sctp_del_bind() on it.
628 *
629 * If any of them fails, then the operation will be reversed and the
630 * ones that were removed will be added back.
631 *
632 * At least one address has to be left; if only one address is
633 * available, the operation will return -EBUSY.
634 *
635 * Only sctp_setsockopt_bindx() is supposed to call this function.
636 */
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +0200637static int sctp_bindx_rem(struct sock *sk, struct sockaddr *addrs, int addrcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
639 struct sctp_sock *sp = sctp_sk(sk);
640 struct sctp_endpoint *ep = sp->ep;
641 int cnt;
642 struct sctp_bind_addr *bp = &ep->base.bind_addr;
643 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 void *addr_buf;
Al Viroc9a08502006-11-20 17:07:48 -0800645 union sctp_addr *sa_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 struct sctp_af *af;
647
648 SCTP_DEBUG_PRINTK("sctp_bindx_rem (sk: %p, addrs: %p, addrcnt: %d)\n",
649 sk, addrs, addrcnt);
650
651 addr_buf = addrs;
652 for (cnt = 0; cnt < addrcnt; cnt++) {
653 /* If the bind address list is empty or if there is only one
654 * bind address, there is nothing more to be removed (we need
655 * at least one address here).
656 */
657 if (list_empty(&bp->address_list) ||
658 (sctp_list_single_entry(&bp->address_list))) {
659 retval = -EBUSY;
660 goto err_bindx_rem;
661 }
662
Joe Perchesea110732011-06-13 16:21:26 +0000663 sa_addr = addr_buf;
Al Viroc9a08502006-11-20 17:07:48 -0800664 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 if (!af) {
666 retval = -EINVAL;
667 goto err_bindx_rem;
668 }
Paolo Galtieri0304ff8a2007-04-17 12:52:36 -0700669
670 if (!af->addr_valid(sa_addr, sp, NULL)) {
671 retval = -EADDRNOTAVAIL;
672 goto err_bindx_rem;
673 }
674
Vlad Yasevichee9cbac2011-04-18 19:14:47 +0000675 if (sa_addr->v4.sin_port &&
676 sa_addr->v4.sin_port != htons(bp->port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 retval = -EINVAL;
678 goto err_bindx_rem;
679 }
680
Vlad Yasevichee9cbac2011-04-18 19:14:47 +0000681 if (!sa_addr->v4.sin_port)
682 sa_addr->v4.sin_port = htons(bp->port);
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 /* FIXME - There is probably a need to check if sk->sk_saddr and
685 * sk->sk_rcv_addr are currently set to one of the addresses to
686 * be removed. This is something which needs to be looked into
687 * when we are fixing the outstanding issues with multi-homing
688 * socket routing and failover schemes. Refer to comments in
689 * sctp_do_bind(). -daisy
690 */
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -0400691 retval = sctp_del_bind_addr(bp, sa_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 addr_buf += af->sockaddr_len;
694err_bindx_rem:
695 if (retval < 0) {
696 /* Failed. Add the ones that has been removed back */
697 if (cnt > 0)
698 sctp_bindx_add(sk, addrs, cnt);
699 return retval;
700 }
701 }
702
703 return retval;
704}
705
706/* Send an ASCONF chunk with Delete IP address parameters to all the peers of
707 * the associations that are part of the endpoint indicating that a list of
708 * local addresses are removed from the endpoint.
709 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900710 * If any of the addresses is already in the bind address list of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 * association, we do not send the chunk for that association. But it will not
712 * affect other associations.
713 *
714 * Only sctp_setsockopt_bindx() is supposed to call this function.
715 */
716static int sctp_send_asconf_del_ip(struct sock *sk,
717 struct sockaddr *addrs,
718 int addrcnt)
719{
720 struct sctp_sock *sp;
721 struct sctp_endpoint *ep;
722 struct sctp_association *asoc;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700723 struct sctp_transport *transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 struct sctp_bind_addr *bp;
725 struct sctp_chunk *chunk;
726 union sctp_addr *laddr;
727 void *addr_buf;
728 struct sctp_af *af;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700729 struct sctp_sockaddr_entry *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 int i;
731 int retval = 0;
Michio Honda8a07eb02011-04-26 20:19:36 +0900732 int stored = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Michio Honda8a07eb02011-04-26 20:19:36 +0900734 chunk = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 if (!sctp_addip_enable)
736 return retval;
737
738 sp = sctp_sk(sk);
739 ep = sp->ep;
740
741 SCTP_DEBUG_PRINTK("%s: (sk: %p, addrs: %p, addrcnt: %d)\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800742 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700744 list_for_each_entry(asoc, &ep->asocs, asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 if (!asoc->peer.asconf_capable)
747 continue;
748
749 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_DEL_IP)
750 continue;
751
752 if (!sctp_state(asoc, ESTABLISHED))
753 continue;
754
755 /* Check if any address in the packed array of addresses is
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900756 * not present in the bind address list of the association.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 * If so, do not send the asconf chunk to its peer, but
758 * continue with other associations.
759 */
760 addr_buf = addrs;
761 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000762 laddr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 af = sctp_get_af_specific(laddr->v4.sin_family);
764 if (!af) {
765 retval = -EINVAL;
766 goto out;
767 }
768
769 if (!sctp_assoc_lookup_laddr(asoc, laddr))
770 break;
771
772 addr_buf += af->sockaddr_len;
773 }
774 if (i < addrcnt)
775 continue;
776
777 /* Find one address in the association's bind address list
778 * that is not in the packed array of addresses. This is to
779 * make sure that we do not delete all the addresses in the
780 * association.
781 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 bp = &asoc->base.bind_addr;
783 laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs,
784 addrcnt, sp);
Michio Honda8a07eb02011-04-26 20:19:36 +0900785 if ((laddr == NULL) && (addrcnt == 1)) {
786 if (asoc->asconf_addr_del_pending)
787 continue;
788 asoc->asconf_addr_del_pending =
789 kzalloc(sizeof(union sctp_addr), GFP_ATOMIC);
Michio Honda6d65e5e2011-06-10 16:42:14 +0900790 if (asoc->asconf_addr_del_pending == NULL) {
791 retval = -ENOMEM;
792 goto out;
793 }
Michio Honda8a07eb02011-04-26 20:19:36 +0900794 asoc->asconf_addr_del_pending->sa.sa_family =
795 addrs->sa_family;
796 asoc->asconf_addr_del_pending->v4.sin_port =
797 htons(bp->port);
798 if (addrs->sa_family == AF_INET) {
799 struct sockaddr_in *sin;
800
801 sin = (struct sockaddr_in *)addrs;
802 asoc->asconf_addr_del_pending->v4.sin_addr.s_addr = sin->sin_addr.s_addr;
803 } else if (addrs->sa_family == AF_INET6) {
804 struct sockaddr_in6 *sin6;
805
806 sin6 = (struct sockaddr_in6 *)addrs;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000807 asoc->asconf_addr_del_pending->v6.sin6_addr = sin6->sin6_addr;
Michio Honda8a07eb02011-04-26 20:19:36 +0900808 }
809 SCTP_DEBUG_PRINTK_IPADDR("send_asconf_del_ip: keep the last address asoc: %p ",
810 " at %p\n", asoc, asoc->asconf_addr_del_pending,
811 asoc->asconf_addr_del_pending);
812 asoc->src_out_of_asoc_ok = 1;
813 stored = 1;
814 goto skip_mkasconf;
815 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Daniel Borkmann835e0aa2013-09-07 20:51:21 +0200817 if (laddr == NULL)
818 return -EINVAL;
819
Vlad Yasevich559cf712007-09-16 16:03:28 -0700820 /* We do not need RCU protection throughout this loop
821 * because this is done under a socket lock from the
822 * setsockopt call.
823 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 chunk = sctp_make_asconf_update_ip(asoc, laddr, addrs, addrcnt,
825 SCTP_PARAM_DEL_IP);
826 if (!chunk) {
827 retval = -ENOMEM;
828 goto out;
829 }
830
Michio Honda8a07eb02011-04-26 20:19:36 +0900831skip_mkasconf:
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700832 /* Reset use_as_src flag for the addresses in the bind address
833 * list that are to be deleted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700835 addr_buf = addrs;
836 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000837 laddr = addr_buf;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700838 af = sctp_get_af_specific(laddr->v4.sin_family);
Vlad Yasevich559cf712007-09-16 16:03:28 -0700839 list_for_each_entry(saddr, &bp->address_list, list) {
Al Viro5f242a12006-11-20 17:05:23 -0800840 if (sctp_cmp_addr_exact(&saddr->a, laddr))
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800841 saddr->state = SCTP_ADDR_DEL;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700842 }
843 addr_buf += af->sockaddr_len;
844 }
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700845
846 /* Update the route and saddr entries for all the transports
847 * as some of the addresses in the bind address list are
848 * about to be deleted and cannot be used as source addresses.
849 */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700850 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
851 transports) {
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700852 dst_release(transport->dst);
853 sctp_transport_route(transport, NULL,
854 sctp_sk(asoc->base.sk));
855 }
856
Michio Honda8a07eb02011-04-26 20:19:36 +0900857 if (stored)
858 /* We don't need to transmit ASCONF */
859 continue;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700860 retval = sctp_send_asconf(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
862out:
863 return retval;
864}
865
Michio Honda9f7d6532011-04-26 19:32:51 +0900866/* set addr events to assocs in the endpoint. ep and addr_wq must be locked */
867int sctp_asconf_mgmt(struct sctp_sock *sp, struct sctp_sockaddr_entry *addrw)
868{
869 struct sock *sk = sctp_opt2sk(sp);
870 union sctp_addr *addr;
871 struct sctp_af *af;
872
873 /* It is safe to write port space in caller. */
874 addr = &addrw->a;
875 addr->v4.sin_port = htons(sp->ep->base.bind_addr.port);
876 af = sctp_get_af_specific(addr->sa.sa_family);
877 if (!af)
878 return -EINVAL;
879 if (sctp_verify_addr(sk, addr, af->sockaddr_len))
880 return -EINVAL;
881
882 if (addrw->state == SCTP_ADDR_NEW)
883 return sctp_send_asconf_add_ip(sk, (struct sockaddr *)addr, 1);
884 else
885 return sctp_send_asconf_del_ip(sk, (struct sockaddr *)addr, 1);
886}
887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888/* Helper for tunneling sctp_bindx() requests through sctp_setsockopt()
889 *
890 * API 8.1
891 * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt,
892 * int flags);
893 *
894 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
895 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
896 * or IPv6 addresses.
897 *
898 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
899 * Section 3.1.2 for this usage.
900 *
901 * addrs is a pointer to an array of one or more socket addresses. Each
902 * address is contained in its appropriate structure (i.e. struct
903 * sockaddr_in or struct sockaddr_in6) the family of the address type
Ville Nuorvala23c435f2006-10-16 22:08:28 -0700904 * must be used to distinguish the address length (note that this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 * representation is termed a "packed array" of addresses). The caller
906 * specifies the number of addresses in the array with addrcnt.
907 *
908 * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns
909 * -1, and sets errno to the appropriate error code.
910 *
911 * For SCTP, the port given in each socket address must be the same, or
912 * sctp_bindx() will fail, setting errno to EINVAL.
913 *
914 * The flags parameter is formed from the bitwise OR of zero or more of
915 * the following currently defined flags:
916 *
917 * SCTP_BINDX_ADD_ADDR
918 *
919 * SCTP_BINDX_REM_ADDR
920 *
921 * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the
922 * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given
923 * addresses from the association. The two flags are mutually exclusive;
924 * if both are given, sctp_bindx() will fail with EINVAL. A caller may
925 * not remove all addresses from an association; sctp_bindx() will
926 * reject such an attempt with EINVAL.
927 *
928 * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate
929 * additional addresses with an endpoint after calling bind(). Or use
930 * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening
931 * socket is associated with so that no new association accepted will be
932 * associated with those addresses. If the endpoint supports dynamic
933 * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a
934 * endpoint to send the appropriate message to the peer to change the
935 * peers address lists.
936 *
937 * Adding and removing addresses from a connected association is
938 * optional functionality. Implementations that do not support this
939 * functionality should return EOPNOTSUPP.
940 *
941 * Basically do nothing but copying the addresses from user to kernel
942 * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk.
Frank Filz3f7a87d2005-06-20 13:14:57 -0700943 * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
944 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 *
946 * We don't use copy_from_user() for optimization: we first do the
947 * sanity checks (buffer size -fast- and access check-healthy
948 * pointer); if all of those succeed, then we can alloc the memory
949 * (expensive operation) needed to copy the data to kernel. Then we do
950 * the copying without checking the user space area
951 * (__copy_from_user()).
952 *
953 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
954 * it.
955 *
956 * sk The sk of the socket
957 * addrs The pointer to the addresses in user land
958 * addrssize Size of the addrs buffer
959 * op Operation to perform (add or remove, see the flags of
960 * sctp_bindx)
961 *
962 * Returns 0 if ok, <0 errno code on error.
963 */
964SCTP_STATIC int sctp_setsockopt_bindx(struct sock* sk,
965 struct sockaddr __user *addrs,
966 int addrs_size, int op)
967{
968 struct sockaddr *kaddrs;
969 int err;
970 int addrcnt = 0;
971 int walk_size = 0;
972 struct sockaddr *sa_addr;
973 void *addr_buf;
974 struct sctp_af *af;
975
976 SCTP_DEBUG_PRINTK("sctp_setsocktopt_bindx: sk %p addrs %p"
977 " addrs_size %d opt %d\n", sk, addrs, addrs_size, op);
978
979 if (unlikely(addrs_size <= 0))
980 return -EINVAL;
981
982 /* Check the user passed a healthy pointer. */
983 if (unlikely(!access_ok(VERIFY_READ, addrs, addrs_size)))
984 return -EFAULT;
985
986 /* Alloc space for the address array in kernel memory. */
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800987 kaddrs = kmalloc(addrs_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 if (unlikely(!kaddrs))
989 return -ENOMEM;
990
991 if (__copy_from_user(kaddrs, addrs, addrs_size)) {
992 kfree(kaddrs);
993 return -EFAULT;
994 }
995
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900996 /* Walk through the addrs buffer and count the number of addresses. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 addr_buf = kaddrs;
998 while (walk_size < addrs_size) {
Dan Rosenbergd7e0d192010-10-01 11:16:58 +0000999 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1000 kfree(kaddrs);
1001 return -EINVAL;
1002 }
1003
Joe Perchesea110732011-06-13 16:21:26 +00001004 sa_addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 af = sctp_get_af_specific(sa_addr->sa_family);
1006
1007 /* If the address family is not supported or if this address
1008 * causes the address buffer to overflow return EINVAL.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001009 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1011 kfree(kaddrs);
1012 return -EINVAL;
1013 }
1014 addrcnt++;
1015 addr_buf += af->sockaddr_len;
1016 walk_size += af->sockaddr_len;
1017 }
1018
1019 /* Do the work. */
1020 switch (op) {
1021 case SCTP_BINDX_ADD_ADDR:
1022 err = sctp_bindx_add(sk, kaddrs, addrcnt);
1023 if (err)
1024 goto out;
1025 err = sctp_send_asconf_add_ip(sk, kaddrs, addrcnt);
1026 break;
1027
1028 case SCTP_BINDX_REM_ADDR:
1029 err = sctp_bindx_rem(sk, kaddrs, addrcnt);
1030 if (err)
1031 goto out;
1032 err = sctp_send_asconf_del_ip(sk, kaddrs, addrcnt);
1033 break;
1034
1035 default:
1036 err = -EINVAL;
1037 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
1040out:
1041 kfree(kaddrs);
1042
1043 return err;
1044}
1045
Frank Filz3f7a87d2005-06-20 13:14:57 -07001046/* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size)
1047 *
1048 * Common routine for handling connect() and sctp_connectx().
1049 * Connect will come in with just a single address.
1050 */
1051static int __sctp_connect(struct sock* sk,
1052 struct sockaddr *kaddrs,
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001053 int addrs_size,
1054 sctp_assoc_t *assoc_id)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001055{
1056 struct sctp_sock *sp;
1057 struct sctp_endpoint *ep;
1058 struct sctp_association *asoc = NULL;
1059 struct sctp_association *asoc2;
1060 struct sctp_transport *transport;
1061 union sctp_addr to;
1062 struct sctp_af *af;
1063 sctp_scope_t scope;
1064 long timeo;
1065 int err = 0;
1066 int addrcnt = 0;
1067 int walk_size = 0;
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001068 union sctp_addr *sa_addr = NULL;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001069 void *addr_buf;
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001070 unsigned short port;
Vlad Yasevichf50f95c2007-07-03 12:47:40 -04001071 unsigned int f_flags = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001072
1073 sp = sctp_sk(sk);
1074 ep = sp->ep;
1075
1076 /* connect() cannot be done on a socket that is already in ESTABLISHED
1077 * state - UDP-style peeled off socket or a TCP-style socket that
1078 * is already connected.
1079 * It cannot be done even on a TCP-style listening socket.
1080 */
1081 if (sctp_sstate(sk, ESTABLISHED) ||
1082 (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))) {
1083 err = -EISCONN;
1084 goto out_free;
1085 }
1086
1087 /* Walk through the addrs buffer and count the number of addresses. */
1088 addr_buf = kaddrs;
1089 while (walk_size < addrs_size) {
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001090 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1091 err = -EINVAL;
1092 goto out_free;
1093 }
1094
Joe Perchesea110732011-06-13 16:21:26 +00001095 sa_addr = addr_buf;
Al Viro4bdf4b52006-11-20 17:10:20 -08001096 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001097
1098 /* If the address family is not supported or if this address
1099 * causes the address buffer to overflow return EINVAL.
1100 */
1101 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1102 err = -EINVAL;
1103 goto out_free;
1104 }
1105
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001106 port = ntohs(sa_addr->v4.sin_port);
1107
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001108 /* Save current address so we can work with it */
1109 memcpy(&to, sa_addr, af->sockaddr_len);
1110
1111 err = sctp_verify_addr(sk, &to, af->sockaddr_len);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001112 if (err)
1113 goto out_free;
1114
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001115 /* Make sure the destination port is correctly set
1116 * in all addresses.
1117 */
1118 if (asoc && asoc->peer.port && asoc->peer.port != port)
1119 goto out_free;
1120
Frank Filz3f7a87d2005-06-20 13:14:57 -07001121
1122 /* Check if there already is a matching association on the
1123 * endpoint (other than the one created here).
1124 */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001125 asoc2 = sctp_endpoint_lookup_assoc(ep, &to, &transport);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001126 if (asoc2 && asoc2 != asoc) {
1127 if (asoc2->state >= SCTP_STATE_ESTABLISHED)
1128 err = -EISCONN;
1129 else
1130 err = -EALREADY;
1131 goto out_free;
1132 }
1133
1134 /* If we could not find a matching association on the endpoint,
1135 * make sure that there is no peeled-off association matching
1136 * the peer address even on another socket.
1137 */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001138 if (sctp_endpoint_is_peeled_off(ep, &to)) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07001139 err = -EADDRNOTAVAIL;
1140 goto out_free;
1141 }
1142
1143 if (!asoc) {
1144 /* If a bind() or sctp_bindx() is not called prior to
1145 * an sctp_connectx() call, the system picks an
1146 * ephemeral port and will choose an address set
1147 * equivalent to binding with a wildcard address.
1148 */
1149 if (!ep->base.bind_addr.port) {
1150 if (sctp_autobind(sk)) {
1151 err = -EAGAIN;
1152 goto out_free;
1153 }
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001154 } else {
1155 /*
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001156 * If an unprivileged user inherits a 1-many
1157 * style socket with open associations on a
1158 * privileged port, it MAY be permitted to
1159 * accept new associations, but it SHOULD NOT
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001160 * be permitted to open new associations.
1161 */
1162 if (ep->base.bind_addr.port < PROT_SOCK &&
1163 !capable(CAP_NET_BIND_SERVICE)) {
1164 err = -EACCES;
1165 goto out_free;
1166 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001167 }
1168
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001169 scope = sctp_scope(&to);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001170 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1171 if (!asoc) {
1172 err = -ENOMEM;
1173 goto out_free;
1174 }
Vlad Yasevich409b95a2009-11-10 08:57:34 +00001175
1176 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope,
1177 GFP_KERNEL);
1178 if (err < 0) {
1179 goto out_free;
1180 }
1181
Frank Filz3f7a87d2005-06-20 13:14:57 -07001182 }
1183
1184 /* Prime the peer's transport structures. */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001185 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001186 SCTP_UNKNOWN);
1187 if (!transport) {
1188 err = -ENOMEM;
1189 goto out_free;
1190 }
1191
1192 addrcnt++;
1193 addr_buf += af->sockaddr_len;
1194 walk_size += af->sockaddr_len;
1195 }
1196
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001197 /* In case the user of sctp_connectx() wants an association
1198 * id back, assign one now.
1199 */
1200 if (assoc_id) {
1201 err = sctp_assoc_set_id(asoc, GFP_KERNEL);
1202 if (err < 0)
1203 goto out_free;
1204 }
1205
Frank Filz3f7a87d2005-06-20 13:14:57 -07001206 err = sctp_primitive_ASSOCIATE(asoc, NULL);
1207 if (err < 0) {
1208 goto out_free;
1209 }
1210
1211 /* Initialize sk's dport and daddr for getpeername() */
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001212 inet_sk(sk)->inet_dport = htons(asoc->peer.port);
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001213 af = sctp_get_af_specific(sa_addr->sa.sa_family);
1214 af->to_sk_daddr(sa_addr, sk);
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07001215 sk->sk_err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001216
Vlad Yasevichf50f95c2007-07-03 12:47:40 -04001217 /* in-kernel sockets don't generally have a file allocated to them
1218 * if all they do is call sock_create_kern().
1219 */
1220 if (sk->sk_socket->file)
1221 f_flags = sk->sk_socket->file->f_flags;
1222
1223 timeo = sock_sndtimeo(sk, f_flags & O_NONBLOCK);
1224
Frank Filz3f7a87d2005-06-20 13:14:57 -07001225 err = sctp_wait_for_connect(asoc, &timeo);
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001226 if ((err == 0 || err == -EINPROGRESS) && assoc_id)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001227 *assoc_id = asoc->assoc_id;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001228
1229 /* Don't free association on exit. */
1230 asoc = NULL;
1231
1232out_free:
1233
1234 SCTP_DEBUG_PRINTK("About to exit __sctp_connect() free asoc: %p"
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001235 " kaddrs: %p err: %d\n",
1236 asoc, kaddrs, err);
Neil Horman2936d352012-07-16 09:13:51 +00001237 if (asoc) {
1238 /* sctp_primitive_ASSOCIATE may have added this association
1239 * To the hash table, try to unhash it, just in case, its a noop
1240 * if it wasn't hashed so we're safe
1241 */
1242 sctp_unhash_established(asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001243 sctp_association_free(asoc);
Neil Horman2936d352012-07-16 09:13:51 +00001244 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001245 return err;
1246}
1247
1248/* Helper for tunneling sctp_connectx() requests through sctp_setsockopt()
1249 *
1250 * API 8.9
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001251 * int sctp_connectx(int sd, struct sockaddr *addrs, int addrcnt,
1252 * sctp_assoc_t *asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001253 *
1254 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
1255 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
1256 * or IPv6 addresses.
1257 *
1258 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
1259 * Section 3.1.2 for this usage.
1260 *
1261 * addrs is a pointer to an array of one or more socket addresses. Each
1262 * address is contained in its appropriate structure (i.e. struct
1263 * sockaddr_in or struct sockaddr_in6) the family of the address type
1264 * must be used to distengish the address length (note that this
1265 * representation is termed a "packed array" of addresses). The caller
1266 * specifies the number of addresses in the array with addrcnt.
1267 *
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001268 * On success, sctp_connectx() returns 0. It also sets the assoc_id to
1269 * the association id of the new association. On failure, sctp_connectx()
1270 * returns -1, and sets errno to the appropriate error code. The assoc_id
1271 * is not touched by the kernel.
Frank Filz3f7a87d2005-06-20 13:14:57 -07001272 *
1273 * For SCTP, the port given in each socket address must be the same, or
1274 * sctp_connectx() will fail, setting errno to EINVAL.
1275 *
1276 * An application can use sctp_connectx to initiate an association with
1277 * an endpoint that is multi-homed. Much like sctp_bindx() this call
1278 * allows a caller to specify multiple addresses at which a peer can be
1279 * reached. The way the SCTP stack uses the list of addresses to set up
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001280 * the association is implementation dependent. This function only
Frank Filz3f7a87d2005-06-20 13:14:57 -07001281 * specifies that the stack will try to make use of all the addresses in
1282 * the list when needed.
1283 *
1284 * Note that the list of addresses passed in is only used for setting up
1285 * the association. It does not necessarily equal the set of addresses
1286 * the peer uses for the resulting association. If the caller wants to
1287 * find out the set of peer addresses, it must use sctp_getpaddrs() to
1288 * retrieve them after the association has been set up.
1289 *
1290 * Basically do nothing but copying the addresses from user to kernel
1291 * land and invoking either sctp_connectx(). This is used for tunneling
1292 * the sctp_connectx() request through sctp_setsockopt() from userspace.
1293 *
1294 * We don't use copy_from_user() for optimization: we first do the
1295 * sanity checks (buffer size -fast- and access check-healthy
1296 * pointer); if all of those succeed, then we can alloc the memory
1297 * (expensive operation) needed to copy the data to kernel. Then we do
1298 * the copying without checking the user space area
1299 * (__copy_from_user()).
1300 *
1301 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
1302 * it.
1303 *
1304 * sk The sk of the socket
1305 * addrs The pointer to the addresses in user land
1306 * addrssize Size of the addrs buffer
1307 *
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001308 * Returns >=0 if ok, <0 errno code on error.
Frank Filz3f7a87d2005-06-20 13:14:57 -07001309 */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001310SCTP_STATIC int __sctp_setsockopt_connectx(struct sock* sk,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001311 struct sockaddr __user *addrs,
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001312 int addrs_size,
1313 sctp_assoc_t *assoc_id)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001314{
1315 int err = 0;
1316 struct sockaddr *kaddrs;
1317
1318 SCTP_DEBUG_PRINTK("%s - sk %p addrs %p addrs_size %d\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001319 __func__, sk, addrs, addrs_size);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001320
1321 if (unlikely(addrs_size <= 0))
1322 return -EINVAL;
1323
1324 /* Check the user passed a healthy pointer. */
1325 if (unlikely(!access_ok(VERIFY_READ, addrs, addrs_size)))
1326 return -EFAULT;
1327
1328 /* Alloc space for the address array in kernel memory. */
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08001329 kaddrs = kmalloc(addrs_size, GFP_KERNEL);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001330 if (unlikely(!kaddrs))
1331 return -ENOMEM;
1332
1333 if (__copy_from_user(kaddrs, addrs, addrs_size)) {
1334 err = -EFAULT;
1335 } else {
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001336 err = __sctp_connect(sk, kaddrs, addrs_size, assoc_id);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001337 }
1338
1339 kfree(kaddrs);
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001340
Frank Filz3f7a87d2005-06-20 13:14:57 -07001341 return err;
1342}
1343
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001344/*
1345 * This is an older interface. It's kept for backward compatibility
1346 * to the option that doesn't provide association id.
1347 */
1348SCTP_STATIC int sctp_setsockopt_connectx_old(struct sock* sk,
1349 struct sockaddr __user *addrs,
1350 int addrs_size)
1351{
1352 return __sctp_setsockopt_connectx(sk, addrs, addrs_size, NULL);
1353}
1354
1355/*
1356 * New interface for the API. The since the API is done with a socket
1357 * option, to make it simple we feed back the association id is as a return
1358 * indication to the call. Error is always negative and association id is
1359 * always positive.
1360 */
1361SCTP_STATIC int sctp_setsockopt_connectx(struct sock* sk,
1362 struct sockaddr __user *addrs,
1363 int addrs_size)
1364{
1365 sctp_assoc_t assoc_id = 0;
1366 int err = 0;
1367
1368 err = __sctp_setsockopt_connectx(sk, addrs, addrs_size, &assoc_id);
1369
1370 if (err)
1371 return err;
1372 else
1373 return assoc_id;
1374}
1375
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001376/*
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001377 * New (hopefully final) interface for the API.
1378 * We use the sctp_getaddrs_old structure so that use-space library
1379 * can avoid any unnecessary allocations. The only defferent part
1380 * is that we store the actual length of the address buffer into the
1381 * addrs_num structure member. That way we can re-use the existing
1382 * code.
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001383 */
1384SCTP_STATIC int sctp_getsockopt_connectx3(struct sock* sk, int len,
1385 char __user *optval,
1386 int __user *optlen)
1387{
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001388 struct sctp_getaddrs_old param;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001389 sctp_assoc_t assoc_id = 0;
1390 int err = 0;
1391
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001392 if (len < sizeof(param))
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001393 return -EINVAL;
1394
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001395 if (copy_from_user(&param, optval, sizeof(param)))
1396 return -EFAULT;
1397
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001398 err = __sctp_setsockopt_connectx(sk,
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001399 (struct sockaddr __user *)param.addrs,
1400 param.addr_num, &assoc_id);
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001401
1402 if (err == 0 || err == -EINPROGRESS) {
1403 if (copy_to_user(optval, &assoc_id, sizeof(assoc_id)))
1404 return -EFAULT;
1405 if (put_user(sizeof(assoc_id), optlen))
1406 return -EFAULT;
1407 }
1408
1409 return err;
1410}
1411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412/* API 3.1.4 close() - UDP Style Syntax
1413 * Applications use close() to perform graceful shutdown (as described in
1414 * Section 10.1 of [SCTP]) on ALL the associations currently represented
1415 * by a UDP-style socket.
1416 *
1417 * The syntax is
1418 *
1419 * ret = close(int sd);
1420 *
1421 * sd - the socket descriptor of the associations to be closed.
1422 *
1423 * To gracefully shutdown a specific association represented by the
1424 * UDP-style socket, an application should use the sendmsg() call,
1425 * passing no user data, but including the appropriate flag in the
1426 * ancillary data (see Section xxxx).
1427 *
1428 * If sd in the close() call is a branched-off socket representing only
1429 * one association, the shutdown is performed on that association only.
1430 *
1431 * 4.1.6 close() - TCP Style Syntax
1432 *
1433 * Applications use close() to gracefully close down an association.
1434 *
1435 * The syntax is:
1436 *
1437 * int close(int sd);
1438 *
1439 * sd - the socket descriptor of the association to be closed.
1440 *
1441 * After an application calls close() on a socket descriptor, no further
1442 * socket operations will succeed on that descriptor.
1443 *
1444 * API 7.1.4 SO_LINGER
1445 *
1446 * An application using the TCP-style socket can use this option to
1447 * perform the SCTP ABORT primitive. The linger option structure is:
1448 *
1449 * struct linger {
1450 * int l_onoff; // option on/off
1451 * int l_linger; // linger time
1452 * };
1453 *
1454 * To enable the option, set l_onoff to 1. If the l_linger value is set
1455 * to 0, calling close() is the same as the ABORT primitive. If the
1456 * value is set to a negative value, the setsockopt() call will return
1457 * an error. If the value is set to a positive value linger_time, the
1458 * close() can be blocked for at most linger_time ms. If the graceful
1459 * shutdown phase does not finish during this period, close() will
1460 * return but the graceful shutdown phase continues in the system.
1461 */
1462SCTP_STATIC void sctp_close(struct sock *sk, long timeout)
1463{
1464 struct sctp_endpoint *ep;
1465 struct sctp_association *asoc;
1466 struct list_head *pos, *temp;
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001467 unsigned int data_was_unread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
1469 SCTP_DEBUG_PRINTK("sctp_close(sk: 0x%p, timeout:%ld)\n", sk, timeout);
1470
1471 sctp_lock_sock(sk);
1472 sk->sk_shutdown = SHUTDOWN_MASK;
Vlad Yasevichbec96402009-07-30 18:08:28 -04001473 sk->sk_state = SCTP_SS_CLOSING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
1475 ep = sctp_sk(sk)->ep;
1476
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001477 /* Clean up any skbs sitting on the receive queue. */
1478 data_was_unread = sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1479 data_was_unread += sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1480
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07001481 /* Walk all associations on an endpoint. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 list_for_each_safe(pos, temp, &ep->asocs) {
1483 asoc = list_entry(pos, struct sctp_association, asocs);
1484
1485 if (sctp_style(sk, TCP)) {
1486 /* A closed association can still be in the list if
1487 * it belongs to a TCP-style listening socket that is
1488 * not yet accepted. If so, free it. If not, send an
1489 * ABORT or SHUTDOWN based on the linger options.
1490 */
1491 if (sctp_state(asoc, CLOSED)) {
1492 sctp_unhash_established(asoc);
1493 sctp_association_free(asoc);
Vladislav Yasevichb89498a2006-05-19 14:32:06 -07001494 continue;
1495 }
1496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001498 if (data_was_unread || !skb_queue_empty(&asoc->ulpq.lobby) ||
1499 !skb_queue_empty(&asoc->ulpq.reasm) ||
1500 (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) {
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001501 struct sctp_chunk *chunk;
1502
1503 chunk = sctp_make_abort_user(asoc, NULL, 0);
1504 if (chunk)
1505 sctp_primitive_ABORT(asoc, chunk);
1506 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 sctp_primitive_SHUTDOWN(asoc, NULL);
1508 }
1509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 /* On a TCP-style socket, block for at most linger_time if set. */
1511 if (sctp_style(sk, TCP) && timeout)
1512 sctp_wait_for_close(sk, timeout);
1513
1514 /* This will run the backlog queue. */
1515 sctp_release_sock(sk);
1516
1517 /* Supposedly, no process has access to the socket, but
1518 * the net layers still may.
1519 */
1520 sctp_local_bh_disable();
1521 sctp_bh_lock_sock(sk);
1522
1523 /* Hold the sock, since sk_common_release() will put sock_put()
1524 * and we have just a little more cleanup.
1525 */
1526 sock_hold(sk);
1527 sk_common_release(sk);
1528
1529 sctp_bh_unlock_sock(sk);
1530 sctp_local_bh_enable();
1531
1532 sock_put(sk);
1533
1534 SCTP_DBG_OBJCNT_DEC(sock);
1535}
1536
1537/* Handle EPIPE error. */
1538static int sctp_error(struct sock *sk, int flags, int err)
1539{
1540 if (err == -EPIPE)
1541 err = sock_error(sk) ? : -EPIPE;
1542 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1543 send_sig(SIGPIPE, current, 0);
1544 return err;
1545}
1546
1547/* API 3.1.3 sendmsg() - UDP Style Syntax
1548 *
1549 * An application uses sendmsg() and recvmsg() calls to transmit data to
1550 * and receive data from its peer.
1551 *
1552 * ssize_t sendmsg(int socket, const struct msghdr *message,
1553 * int flags);
1554 *
1555 * socket - the socket descriptor of the endpoint.
1556 * message - pointer to the msghdr structure which contains a single
1557 * user message and possibly some ancillary data.
1558 *
1559 * See Section 5 for complete description of the data
1560 * structures.
1561 *
1562 * flags - flags sent or received with the user message, see Section
1563 * 5 for complete description of the flags.
1564 *
1565 * Note: This function could use a rewrite especially when explicit
1566 * connect support comes in.
1567 */
1568/* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */
1569
1570SCTP_STATIC int sctp_msghdr_parse(const struct msghdr *, sctp_cmsgs_t *);
1571
1572SCTP_STATIC int sctp_sendmsg(struct kiocb *iocb, struct sock *sk,
1573 struct msghdr *msg, size_t msg_len)
1574{
1575 struct sctp_sock *sp;
1576 struct sctp_endpoint *ep;
1577 struct sctp_association *new_asoc=NULL, *asoc=NULL;
1578 struct sctp_transport *transport, *chunk_tp;
1579 struct sctp_chunk *chunk;
Al Virodce116a2006-11-20 17:25:15 -08001580 union sctp_addr to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 struct sockaddr *msg_name = NULL;
Joe Perches517aa0b2011-05-12 11:27:20 +00001582 struct sctp_sndrcvinfo default_sinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 struct sctp_sndrcvinfo *sinfo;
1584 struct sctp_initmsg *sinit;
1585 sctp_assoc_t associd = 0;
1586 sctp_cmsgs_t cmsgs = { NULL };
1587 int err;
1588 sctp_scope_t scope;
1589 long timeo;
1590 __u16 sinfo_flags = 0;
1591 struct sctp_datamsg *datamsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 int msg_flags = msg->msg_flags;
1593
1594 SCTP_DEBUG_PRINTK("sctp_sendmsg(sk: %p, msg: %p, msg_len: %zu)\n",
1595 sk, msg, msg_len);
1596
1597 err = 0;
1598 sp = sctp_sk(sk);
1599 ep = sp->ep;
1600
Frank Filz3f7a87d2005-06-20 13:14:57 -07001601 SCTP_DEBUG_PRINTK("Using endpoint: %p.\n", ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
1603 /* We cannot send a message over a TCP-style listening socket. */
1604 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING)) {
1605 err = -EPIPE;
1606 goto out_nounlock;
1607 }
1608
1609 /* Parse out the SCTP CMSGs. */
1610 err = sctp_msghdr_parse(msg, &cmsgs);
1611
1612 if (err) {
1613 SCTP_DEBUG_PRINTK("msghdr parse err = %x\n", err);
1614 goto out_nounlock;
1615 }
1616
1617 /* Fetch the destination address for this packet. This
1618 * address only selects the association--it is not necessarily
1619 * the address we will send to.
1620 * For a peeled-off socket, msg_name is ignored.
1621 */
1622 if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
1623 int msg_namelen = msg->msg_namelen;
1624
1625 err = sctp_verify_addr(sk, (union sctp_addr *)msg->msg_name,
1626 msg_namelen);
1627 if (err)
1628 return err;
1629
1630 if (msg_namelen > sizeof(to))
1631 msg_namelen = sizeof(to);
1632 memcpy(&to, msg->msg_name, msg_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 msg_name = msg->msg_name;
1634 }
1635
1636 sinfo = cmsgs.info;
1637 sinit = cmsgs.init;
1638
1639 /* Did the user specify SNDRCVINFO? */
1640 if (sinfo) {
1641 sinfo_flags = sinfo->sinfo_flags;
1642 associd = sinfo->sinfo_assoc_id;
1643 }
1644
1645 SCTP_DEBUG_PRINTK("msg_len: %zu, sinfo_flags: 0x%x\n",
1646 msg_len, sinfo_flags);
1647
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001648 /* SCTP_EOF or SCTP_ABORT cannot be set on a TCP-style socket. */
1649 if (sctp_style(sk, TCP) && (sinfo_flags & (SCTP_EOF | SCTP_ABORT))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 err = -EINVAL;
1651 goto out_nounlock;
1652 }
1653
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001654 /* If SCTP_EOF is set, no data can be sent. Disallow sending zero
1655 * length messages when SCTP_EOF|SCTP_ABORT is not set.
1656 * If SCTP_ABORT is set, the message length could be non zero with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 * the msg_iov set to the user abort reason.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001658 */
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001659 if (((sinfo_flags & SCTP_EOF) && (msg_len > 0)) ||
1660 (!(sinfo_flags & (SCTP_EOF|SCTP_ABORT)) && (msg_len == 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 err = -EINVAL;
1662 goto out_nounlock;
1663 }
1664
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001665 /* If SCTP_ADDR_OVER is set, there must be an address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 * specified in msg_name.
1667 */
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001668 if ((sinfo_flags & SCTP_ADDR_OVER) && (!msg->msg_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 err = -EINVAL;
1670 goto out_nounlock;
1671 }
1672
1673 transport = NULL;
1674
1675 SCTP_DEBUG_PRINTK("About to look up association.\n");
1676
1677 sctp_lock_sock(sk);
1678
1679 /* If a msg_name has been specified, assume this is to be used. */
1680 if (msg_name) {
1681 /* Look for a matching association on the endpoint. */
Al Virodce116a2006-11-20 17:25:15 -08001682 asoc = sctp_endpoint_lookup_assoc(ep, &to, &transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (!asoc) {
1684 /* If we could not find a matching association on the
1685 * endpoint, make sure that it is not a TCP-style
1686 * socket that already has an association or there is
1687 * no peeled-off association on another socket.
1688 */
1689 if ((sctp_style(sk, TCP) &&
1690 sctp_sstate(sk, ESTABLISHED)) ||
Al Virodce116a2006-11-20 17:25:15 -08001691 sctp_endpoint_is_peeled_off(ep, &to)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 err = -EADDRNOTAVAIL;
1693 goto out_unlock;
1694 }
1695 }
1696 } else {
1697 asoc = sctp_id2assoc(sk, associd);
1698 if (!asoc) {
1699 err = -EPIPE;
1700 goto out_unlock;
1701 }
1702 }
1703
1704 if (asoc) {
1705 SCTP_DEBUG_PRINTK("Just looked up association: %p.\n", asoc);
1706
1707 /* We cannot send a message on a TCP-style SCTP_SS_ESTABLISHED
1708 * socket that has an association in CLOSED state. This can
1709 * happen when an accepted socket has an association that is
1710 * already CLOSED.
1711 */
1712 if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP)) {
1713 err = -EPIPE;
1714 goto out_unlock;
1715 }
1716
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001717 if (sinfo_flags & SCTP_EOF) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 SCTP_DEBUG_PRINTK("Shutting down association: %p\n",
1719 asoc);
1720 sctp_primitive_SHUTDOWN(asoc, NULL);
1721 err = 0;
1722 goto out_unlock;
1723 }
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001724 if (sinfo_flags & SCTP_ABORT) {
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001725
1726 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1727 if (!chunk) {
1728 err = -ENOMEM;
1729 goto out_unlock;
1730 }
1731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 SCTP_DEBUG_PRINTK("Aborting association: %p\n", asoc);
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001733 sctp_primitive_ABORT(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 err = 0;
1735 goto out_unlock;
1736 }
1737 }
1738
1739 /* Do we need to create the association? */
1740 if (!asoc) {
1741 SCTP_DEBUG_PRINTK("There is no association yet.\n");
1742
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001743 if (sinfo_flags & (SCTP_EOF | SCTP_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 err = -EINVAL;
1745 goto out_unlock;
1746 }
1747
1748 /* Check for invalid stream against the stream counts,
1749 * either the default or the user specified stream counts.
1750 */
1751 if (sinfo) {
1752 if (!sinit || (sinit && !sinit->sinit_num_ostreams)) {
1753 /* Check against the defaults. */
1754 if (sinfo->sinfo_stream >=
1755 sp->initmsg.sinit_num_ostreams) {
1756 err = -EINVAL;
1757 goto out_unlock;
1758 }
1759 } else {
1760 /* Check against the requested. */
1761 if (sinfo->sinfo_stream >=
1762 sinit->sinit_num_ostreams) {
1763 err = -EINVAL;
1764 goto out_unlock;
1765 }
1766 }
1767 }
1768
1769 /*
1770 * API 3.1.2 bind() - UDP Style Syntax
1771 * If a bind() or sctp_bindx() is not called prior to a
1772 * sendmsg() call that initiates a new association, the
1773 * system picks an ephemeral port and will choose an address
1774 * set equivalent to binding with a wildcard address.
1775 */
1776 if (!ep->base.bind_addr.port) {
1777 if (sctp_autobind(sk)) {
1778 err = -EAGAIN;
1779 goto out_unlock;
1780 }
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001781 } else {
1782 /*
1783 * If an unprivileged user inherits a one-to-many
1784 * style socket with open associations on a privileged
1785 * port, it MAY be permitted to accept new associations,
1786 * but it SHOULD NOT be permitted to open new
1787 * associations.
1788 */
1789 if (ep->base.bind_addr.port < PROT_SOCK &&
1790 !capable(CAP_NET_BIND_SERVICE)) {
1791 err = -EACCES;
1792 goto out_unlock;
1793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 }
1795
1796 scope = sctp_scope(&to);
1797 new_asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1798 if (!new_asoc) {
1799 err = -ENOMEM;
1800 goto out_unlock;
1801 }
1802 asoc = new_asoc;
Vlad Yasevich409b95a2009-11-10 08:57:34 +00001803 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope, GFP_KERNEL);
1804 if (err < 0) {
1805 err = -ENOMEM;
1806 goto out_free;
1807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
1809 /* If the SCTP_INIT ancillary data is specified, set all
1810 * the association init values accordingly.
1811 */
1812 if (sinit) {
1813 if (sinit->sinit_num_ostreams) {
1814 asoc->c.sinit_num_ostreams =
1815 sinit->sinit_num_ostreams;
1816 }
1817 if (sinit->sinit_max_instreams) {
1818 asoc->c.sinit_max_instreams =
1819 sinit->sinit_max_instreams;
1820 }
1821 if (sinit->sinit_max_attempts) {
1822 asoc->max_init_attempts
1823 = sinit->sinit_max_attempts;
1824 }
1825 if (sinit->sinit_max_init_timeo) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001826 asoc->max_init_timeo =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 msecs_to_jiffies(sinit->sinit_max_init_timeo);
1828 }
1829 }
1830
1831 /* Prime the peer's transport structures. */
Al Virodce116a2006-11-20 17:25:15 -08001832 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL, SCTP_UNKNOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 if (!transport) {
1834 err = -ENOMEM;
1835 goto out_free;
1836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 }
1838
1839 /* ASSERT: we have a valid association at this point. */
1840 SCTP_DEBUG_PRINTK("We have a valid association.\n");
1841
1842 if (!sinfo) {
1843 /* If the user didn't specify SNDRCVINFO, make up one with
1844 * some defaults.
1845 */
Joe Perches517aa0b2011-05-12 11:27:20 +00001846 memset(&default_sinfo, 0, sizeof(default_sinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 default_sinfo.sinfo_stream = asoc->default_stream;
1848 default_sinfo.sinfo_flags = asoc->default_flags;
1849 default_sinfo.sinfo_ppid = asoc->default_ppid;
1850 default_sinfo.sinfo_context = asoc->default_context;
1851 default_sinfo.sinfo_timetolive = asoc->default_timetolive;
1852 default_sinfo.sinfo_assoc_id = sctp_assoc2id(asoc);
1853 sinfo = &default_sinfo;
1854 }
1855
1856 /* API 7.1.7, the sndbuf size per association bounds the
1857 * maximum size of data that can be sent in a single send call.
1858 */
1859 if (msg_len > sk->sk_sndbuf) {
1860 err = -EMSGSIZE;
1861 goto out_free;
1862 }
1863
Vlad Yasevich8a479492007-06-07 14:21:05 -04001864 if (asoc->pmtu_pending)
1865 sctp_assoc_pending_pmtu(asoc);
1866
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 /* If fragmentation is disabled and the message length exceeds the
1868 * association fragmentation point, return EMSGSIZE. The I-D
1869 * does not specify what this error is, but this looks like
1870 * a great fit.
1871 */
1872 if (sctp_sk(sk)->disable_fragments && (msg_len > asoc->frag_point)) {
1873 err = -EMSGSIZE;
1874 goto out_free;
1875 }
1876
Joe Perchesafd76142011-05-12 09:19:10 +00001877 /* Check for invalid stream. */
1878 if (sinfo->sinfo_stream >= asoc->c.sinit_num_ostreams) {
1879 err = -EINVAL;
1880 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 }
1882
1883 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1884 if (!sctp_wspace(asoc)) {
1885 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1886 if (err)
1887 goto out_free;
1888 }
1889
1890 /* If an address is passed with the sendto/sendmsg call, it is used
1891 * to override the primary destination address in the TCP model, or
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001892 * when SCTP_ADDR_OVER flag is set in the UDP model.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 */
1894 if ((sctp_style(sk, TCP) && msg_name) ||
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001895 (sinfo_flags & SCTP_ADDR_OVER)) {
Al Virodce116a2006-11-20 17:25:15 -08001896 chunk_tp = sctp_assoc_lookup_paddr(asoc, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 if (!chunk_tp) {
1898 err = -EINVAL;
1899 goto out_free;
1900 }
1901 } else
1902 chunk_tp = NULL;
1903
1904 /* Auto-connect, if we aren't connected already. */
1905 if (sctp_state(asoc, CLOSED)) {
1906 err = sctp_primitive_ASSOCIATE(asoc, NULL);
1907 if (err < 0)
1908 goto out_free;
1909 SCTP_DEBUG_PRINTK("We associated primitively.\n");
1910 }
1911
1912 /* Break the message into multiple chunks of maximum size. */
1913 datamsg = sctp_datamsg_from_user(asoc, sinfo, msg, msg_len);
Tommi Rantaladff343c2012-11-22 03:23:16 +00001914 if (IS_ERR(datamsg)) {
1915 err = PTR_ERR(datamsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 goto out_free;
1917 }
1918
1919 /* Now send the (possibly) fragmented message. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001920 list_for_each_entry(chunk, &datamsg->chunks, frag_list) {
Florian Westphal80445cf2008-03-23 22:47:08 -07001921 sctp_chunk_hold(chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923 /* Do accounting for the write space. */
1924 sctp_set_owner_w(chunk);
1925
1926 chunk->transport = chunk_tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 }
1928
Vlad Yasevich9c5c62b2009-08-10 13:51:03 -04001929 /* Send it to the lower layers. Note: all chunks
1930 * must either fail or succeed. The lower layer
1931 * works that way today. Keep it that way or this
1932 * breaks.
1933 */
1934 err = sctp_primitive_SEND(asoc, datamsg);
1935 /* Did the lower layer accept the chunk? */
1936 if (err)
1937 sctp_datamsg_free(datamsg);
1938 else
1939 sctp_datamsg_put(datamsg);
1940
1941 SCTP_DEBUG_PRINTK("We sent primitively.\n");
1942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 if (err)
1944 goto out_free;
1945 else
1946 err = msg_len;
1947
1948 /* If we are already past ASSOCIATE, the lower
1949 * layers are responsible for association cleanup.
1950 */
1951 goto out_unlock;
1952
1953out_free:
Neil Horman2936d352012-07-16 09:13:51 +00001954 if (new_asoc) {
1955 sctp_unhash_established(asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 sctp_association_free(asoc);
Neil Horman2936d352012-07-16 09:13:51 +00001957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958out_unlock:
1959 sctp_release_sock(sk);
1960
1961out_nounlock:
1962 return sctp_error(sk, msg_flags, err);
1963
1964#if 0
1965do_sock_err:
1966 if (msg_len)
1967 err = msg_len;
1968 else
1969 err = sock_error(sk);
1970 goto out;
1971
1972do_interrupted:
1973 if (msg_len)
1974 err = msg_len;
1975 goto out;
1976#endif /* 0 */
1977}
1978
1979/* This is an extended version of skb_pull() that removes the data from the
1980 * start of a skb even when data is spread across the list of skb's in the
1981 * frag_list. len specifies the total amount of data that needs to be removed.
1982 * when 'len' bytes could be removed from the skb, it returns 0.
1983 * If 'len' exceeds the total skb length, it returns the no. of bytes that
1984 * could not be removed.
1985 */
1986static int sctp_skb_pull(struct sk_buff *skb, int len)
1987{
1988 struct sk_buff *list;
1989 int skb_len = skb_headlen(skb);
1990 int rlen;
1991
1992 if (len <= skb_len) {
1993 __skb_pull(skb, len);
1994 return 0;
1995 }
1996 len -= skb_len;
1997 __skb_pull(skb, skb_len);
1998
David S. Miller1b003be2009-06-09 00:22:35 -07001999 skb_walk_frags(skb, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 rlen = sctp_skb_pull(list, len);
2001 skb->len -= (len-rlen);
2002 skb->data_len -= (len-rlen);
2003
2004 if (!rlen)
2005 return 0;
2006
2007 len = rlen;
2008 }
2009
2010 return len;
2011}
2012
2013/* API 3.1.3 recvmsg() - UDP Style Syntax
2014 *
2015 * ssize_t recvmsg(int socket, struct msghdr *message,
2016 * int flags);
2017 *
2018 * socket - the socket descriptor of the endpoint.
2019 * message - pointer to the msghdr structure which contains a single
2020 * user message and possibly some ancillary data.
2021 *
2022 * See Section 5 for complete description of the data
2023 * structures.
2024 *
2025 * flags - flags sent or received with the user message, see Section
2026 * 5 for complete description of the flags.
2027 */
2028static struct sk_buff *sctp_skb_recv_datagram(struct sock *, int, int, int *);
2029
2030SCTP_STATIC int sctp_recvmsg(struct kiocb *iocb, struct sock *sk,
2031 struct msghdr *msg, size_t len, int noblock,
2032 int flags, int *addr_len)
2033{
2034 struct sctp_ulpevent *event = NULL;
2035 struct sctp_sock *sp = sctp_sk(sk);
2036 struct sk_buff *skb;
2037 int copied;
2038 int err = 0;
2039 int skb_len;
2040
2041 SCTP_DEBUG_PRINTK("sctp_recvmsg(%s: %p, %s: %p, %s: %zd, %s: %d, %s: "
2042 "0x%x, %s: %p)\n", "sk", sk, "msghdr", msg,
2043 "len", len, "knoblauch", noblock,
2044 "flags", flags, "addr_len", addr_len);
2045
2046 sctp_lock_sock(sk);
2047
2048 if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED)) {
2049 err = -ENOTCONN;
2050 goto out;
2051 }
2052
2053 skb = sctp_skb_recv_datagram(sk, flags, noblock, &err);
2054 if (!skb)
2055 goto out;
2056
2057 /* Get the total length of the skb including any skb's in the
2058 * frag_list.
2059 */
2060 skb_len = skb->len;
2061
2062 copied = skb_len;
2063 if (copied > len)
2064 copied = len;
2065
2066 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
2067
2068 event = sctp_skb2event(skb);
2069
2070 if (err)
2071 goto out_free;
2072
Neil Horman3b885782009-10-12 13:26:31 -07002073 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 if (sctp_ulpevent_is_notification(event)) {
2075 msg->msg_flags |= MSG_NOTIFICATION;
2076 sp->pf->event_msgname(event, msg->msg_name, addr_len);
2077 } else {
2078 sp->pf->skb_msgname(skb, msg->msg_name, addr_len);
2079 }
2080
2081 /* Check if we allow SCTP_SNDRCVINFO. */
2082 if (sp->subscribe.sctp_data_io_event)
2083 sctp_ulpevent_read_sndrcvinfo(event, msg);
2084#if 0
2085 /* FIXME: we should be calling IP/IPv6 layers. */
2086 if (sk->sk_protinfo.af_inet.cmsg_flags)
2087 ip_cmsg_recv(msg, skb);
2088#endif
2089
2090 err = copied;
2091
2092 /* If skb's length exceeds the user's buffer, update the skb and
2093 * push it back to the receive_queue so that the next call to
2094 * recvmsg() will return the remaining data. Don't set MSG_EOR.
2095 */
2096 if (skb_len > copied) {
2097 msg->msg_flags &= ~MSG_EOR;
2098 if (flags & MSG_PEEK)
2099 goto out_free;
2100 sctp_skb_pull(skb, copied);
2101 skb_queue_head(&sk->sk_receive_queue, skb);
2102
2103 /* When only partial message is copied to the user, increase
2104 * rwnd by that amount. If all the data in the skb is read,
2105 * rwnd is updated when the event is freed.
2106 */
Vlad Yasevich0eca8fe2008-01-11 10:12:56 -05002107 if (!sctp_ulpevent_is_notification(event))
2108 sctp_assoc_rwnd_increase(event->asoc, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 goto out;
2110 } else if ((event->msg_flags & MSG_NOTIFICATION) ||
2111 (event->msg_flags & MSG_EOR))
2112 msg->msg_flags |= MSG_EOR;
2113 else
2114 msg->msg_flags &= ~MSG_EOR;
2115
2116out_free:
2117 if (flags & MSG_PEEK) {
2118 /* Release the skb reference acquired after peeking the skb in
2119 * sctp_skb_recv_datagram().
2120 */
2121 kfree_skb(skb);
2122 } else {
2123 /* Free the event which includes releasing the reference to
2124 * the owner of the skb, freeing the skb and updating the
2125 * rwnd.
2126 */
2127 sctp_ulpevent_free(event);
2128 }
2129out:
2130 sctp_release_sock(sk);
2131 return err;
2132}
2133
2134/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
2135 *
2136 * This option is a on/off flag. If enabled no SCTP message
2137 * fragmentation will be performed. Instead if a message being sent
2138 * exceeds the current PMTU size, the message will NOT be sent and
2139 * instead a error will be indicated to the user.
2140 */
2141static int sctp_setsockopt_disable_fragments(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002142 char __user *optval,
2143 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144{
2145 int val;
2146
2147 if (optlen < sizeof(int))
2148 return -EINVAL;
2149
2150 if (get_user(val, (int __user *)optval))
2151 return -EFAULT;
2152
2153 sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1;
2154
2155 return 0;
2156}
2157
2158static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002159 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160{
Wei Yongjun94912302011-07-02 09:28:04 +00002161 struct sctp_association *asoc;
2162 struct sctp_ulpevent *event;
2163
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05002164 if (optlen > sizeof(struct sctp_event_subscribe))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 return -EINVAL;
2166 if (copy_from_user(&sctp_sk(sk)->subscribe, optval, optlen))
2167 return -EFAULT;
Wei Yongjun94912302011-07-02 09:28:04 +00002168
2169 /*
2170 * At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT,
2171 * if there is no data to be sent or retransmit, the stack will
2172 * immediately send up this notification.
2173 */
2174 if (sctp_ulpevent_type_enabled(SCTP_SENDER_DRY_EVENT,
2175 &sctp_sk(sk)->subscribe)) {
2176 asoc = sctp_id2assoc(sk, 0);
2177
2178 if (asoc && sctp_outq_is_empty(&asoc->outqueue)) {
2179 event = sctp_ulpevent_make_sender_dry_event(asoc,
2180 GFP_ATOMIC);
2181 if (!event)
2182 return -ENOMEM;
2183
2184 sctp_ulpq_tail_event(&asoc->ulpq, event);
2185 }
2186 }
2187
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 return 0;
2189}
2190
2191/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
2192 *
2193 * This socket option is applicable to the UDP-style socket only. When
2194 * set it will cause associations that are idle for more than the
2195 * specified number of seconds to automatically close. An association
2196 * being idle is defined an association that has NOT sent or received
2197 * user data. The special value of '0' indicates that no automatic
2198 * close of any associations should be performed. The option expects an
2199 * integer defining the number of seconds of idle time before an
2200 * association is closed.
2201 */
2202static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002203 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204{
2205 struct sctp_sock *sp = sctp_sk(sk);
2206
2207 /* Applicable to UDP-style socket only */
2208 if (sctp_style(sk, TCP))
2209 return -EOPNOTSUPP;
2210 if (optlen != sizeof(int))
2211 return -EINVAL;
2212 if (copy_from_user(&sp->autoclose, optval, optlen))
2213 return -EFAULT;
2214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 return 0;
2216}
2217
2218/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
2219 *
2220 * Applications can enable or disable heartbeats for any peer address of
2221 * an association, modify an address's heartbeat interval, force a
2222 * heartbeat to be sent immediately, and adjust the address's maximum
2223 * number of retransmissions sent before an address is considered
2224 * unreachable. The following structure is used to access and modify an
2225 * address's parameters:
2226 *
2227 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002228 * sctp_assoc_t spp_assoc_id;
2229 * struct sockaddr_storage spp_address;
2230 * uint32_t spp_hbinterval;
2231 * uint16_t spp_pathmaxrxt;
2232 * uint32_t spp_pathmtu;
2233 * uint32_t spp_sackdelay;
2234 * uint32_t spp_flags;
2235 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002237 * spp_assoc_id - (one-to-many style socket) This is filled in the
2238 * application, and identifies the association for
2239 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 * spp_address - This specifies which address is of interest.
2241 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08002242 * in milliseconds. If a value of zero
2243 * is present in this field then no changes are to
2244 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 * spp_pathmaxrxt - This contains the maximum number of
2246 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08002247 * considered unreachable. If a value of zero
2248 * is present in this field then no changes are to
2249 * be made to this parameter.
2250 * spp_pathmtu - When Path MTU discovery is disabled the value
2251 * specified here will be the "fixed" path mtu.
2252 * Note that if the spp_address field is empty
2253 * then all associations on this address will
2254 * have this fixed path mtu set upon them.
2255 *
2256 * spp_sackdelay - When delayed sack is enabled, this value specifies
2257 * the number of milliseconds that sacks will be delayed
2258 * for. This value will apply to all addresses of an
2259 * association if the spp_address field is empty. Note
2260 * also, that if delayed sack is enabled and this
2261 * value is set to 0, no change is made to the last
2262 * recorded delayed sack timer value.
2263 *
2264 * spp_flags - These flags are used to control various features
2265 * on an association. The flag field may contain
2266 * zero or more of the following options.
2267 *
2268 * SPP_HB_ENABLE - Enable heartbeats on the
2269 * specified address. Note that if the address
2270 * field is empty all addresses for the association
2271 * have heartbeats enabled upon them.
2272 *
2273 * SPP_HB_DISABLE - Disable heartbeats on the
2274 * speicifed address. Note that if the address
2275 * field is empty all addresses for the association
2276 * will have their heartbeats disabled. Note also
2277 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
2278 * mutually exclusive, only one of these two should
2279 * be specified. Enabling both fields will have
2280 * undetermined results.
2281 *
2282 * SPP_HB_DEMAND - Request a user initiated heartbeat
2283 * to be made immediately.
2284 *
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002285 * SPP_HB_TIME_IS_ZERO - Specify's that the time for
2286 * heartbeat delayis to be set to the value of 0
2287 * milliseconds.
2288 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002289 * SPP_PMTUD_ENABLE - This field will enable PMTU
2290 * discovery upon the specified address. Note that
2291 * if the address feild is empty then all addresses
2292 * on the association are effected.
2293 *
2294 * SPP_PMTUD_DISABLE - This field will disable PMTU
2295 * discovery upon the specified address. Note that
2296 * if the address feild is empty then all addresses
2297 * on the association are effected. Not also that
2298 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2299 * exclusive. Enabling both will have undetermined
2300 * results.
2301 *
2302 * SPP_SACKDELAY_ENABLE - Setting this flag turns
2303 * on delayed sack. The time specified in spp_sackdelay
2304 * is used to specify the sack delay for this address. Note
2305 * that if spp_address is empty then all addresses will
2306 * enable delayed sack and take on the sack delay
2307 * value specified in spp_sackdelay.
2308 * SPP_SACKDELAY_DISABLE - Setting this flag turns
2309 * off delayed sack. If the spp_address field is blank then
2310 * delayed sack is disabled for the entire association. Note
2311 * also that this field is mutually exclusive to
2312 * SPP_SACKDELAY_ENABLE, setting both will have undefined
2313 * results.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 */
Adrian Bunk16164362006-09-18 00:40:38 -07002315static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2316 struct sctp_transport *trans,
2317 struct sctp_association *asoc,
2318 struct sctp_sock *sp,
2319 int hb_change,
2320 int pmtud_change,
2321 int sackdelay_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 int error;
2324
Frank Filz52ccb8e2005-12-22 11:36:46 -08002325 if (params->spp_flags & SPP_HB_DEMAND && trans) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 error = sctp_primitive_REQUESTHEARTBEAT (trans->asoc, trans);
2327 if (error)
2328 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 }
2330
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002331 /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2332 * this field is ignored. Note also that a value of zero indicates
2333 * the current setting should be left unchanged.
2334 */
2335 if (params->spp_flags & SPP_HB_ENABLE) {
2336
2337 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2338 * set. This lets us use 0 value when this flag
2339 * is set.
2340 */
2341 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2342 params->spp_hbinterval = 0;
2343
2344 if (params->spp_hbinterval ||
2345 (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2346 if (trans) {
2347 trans->hbinterval =
2348 msecs_to_jiffies(params->spp_hbinterval);
2349 } else if (asoc) {
2350 asoc->hbinterval =
2351 msecs_to_jiffies(params->spp_hbinterval);
2352 } else {
2353 sp->hbinterval = params->spp_hbinterval;
2354 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08002355 }
2356 }
2357
2358 if (hb_change) {
2359 if (trans) {
2360 trans->param_flags =
2361 (trans->param_flags & ~SPP_HB) | hb_change;
2362 } else if (asoc) {
2363 asoc->param_flags =
2364 (asoc->param_flags & ~SPP_HB) | hb_change;
2365 } else {
2366 sp->param_flags =
2367 (sp->param_flags & ~SPP_HB) | hb_change;
2368 }
2369 }
2370
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002371 /* When Path MTU discovery is disabled the value specified here will
2372 * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2373 * include the flag SPP_PMTUD_DISABLE for this field to have any
2374 * effect).
2375 */
2376 if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002377 if (trans) {
2378 trans->pathmtu = params->spp_pathmtu;
2379 sctp_assoc_sync_pmtu(asoc);
2380 } else if (asoc) {
2381 asoc->pathmtu = params->spp_pathmtu;
Vlad Yasevichf68b2e02009-09-04 18:21:00 -04002382 sctp_frag_point(asoc, params->spp_pathmtu);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002383 } else {
2384 sp->pathmtu = params->spp_pathmtu;
2385 }
2386 }
2387
2388 if (pmtud_change) {
2389 if (trans) {
2390 int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2391 (params->spp_flags & SPP_PMTUD_ENABLE);
2392 trans->param_flags =
2393 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2394 if (update) {
Vlad Yasevich9914ae32011-04-26 21:51:31 +00002395 sctp_transport_pmtu(trans, sctp_opt2sk(sp));
Frank Filz52ccb8e2005-12-22 11:36:46 -08002396 sctp_assoc_sync_pmtu(asoc);
2397 }
2398 } else if (asoc) {
2399 asoc->param_flags =
2400 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2401 } else {
2402 sp->param_flags =
2403 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2404 }
2405 }
2406
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002407 /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2408 * value of this field is ignored. Note also that a value of zero
2409 * indicates the current setting should be left unchanged.
2410 */
2411 if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002412 if (trans) {
2413 trans->sackdelay =
2414 msecs_to_jiffies(params->spp_sackdelay);
2415 } else if (asoc) {
2416 asoc->sackdelay =
2417 msecs_to_jiffies(params->spp_sackdelay);
2418 } else {
2419 sp->sackdelay = params->spp_sackdelay;
2420 }
2421 }
2422
2423 if (sackdelay_change) {
2424 if (trans) {
2425 trans->param_flags =
2426 (trans->param_flags & ~SPP_SACKDELAY) |
2427 sackdelay_change;
2428 } else if (asoc) {
2429 asoc->param_flags =
2430 (asoc->param_flags & ~SPP_SACKDELAY) |
2431 sackdelay_change;
2432 } else {
2433 sp->param_flags =
2434 (sp->param_flags & ~SPP_SACKDELAY) |
2435 sackdelay_change;
2436 }
2437 }
2438
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002439 /* Note that a value of zero indicates the current setting should be
2440 left unchanged.
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002441 */
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002442 if (params->spp_pathmaxrxt) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002443 if (trans) {
2444 trans->pathmaxrxt = params->spp_pathmaxrxt;
2445 } else if (asoc) {
2446 asoc->pathmaxrxt = params->spp_pathmaxrxt;
2447 } else {
2448 sp->pathmaxrxt = params->spp_pathmaxrxt;
2449 }
2450 }
2451
2452 return 0;
2453}
2454
2455static int sctp_setsockopt_peer_addr_params(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002456 char __user *optval,
2457 unsigned int optlen)
Frank Filz52ccb8e2005-12-22 11:36:46 -08002458{
2459 struct sctp_paddrparams params;
2460 struct sctp_transport *trans = NULL;
2461 struct sctp_association *asoc = NULL;
2462 struct sctp_sock *sp = sctp_sk(sk);
2463 int error;
2464 int hb_change, pmtud_change, sackdelay_change;
2465
2466 if (optlen != sizeof(struct sctp_paddrparams))
2467 return - EINVAL;
2468
2469 if (copy_from_user(&params, optval, optlen))
2470 return -EFAULT;
2471
2472 /* Validate flags and value parameters. */
2473 hb_change = params.spp_flags & SPP_HB;
2474 pmtud_change = params.spp_flags & SPP_PMTUD;
2475 sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2476
2477 if (hb_change == SPP_HB ||
2478 pmtud_change == SPP_PMTUD ||
2479 sackdelay_change == SPP_SACKDELAY ||
2480 params.spp_sackdelay > 500 ||
Joe Perchesf64f9e72009-11-29 16:55:45 -08002481 (params.spp_pathmtu &&
2482 params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
Frank Filz52ccb8e2005-12-22 11:36:46 -08002483 return -EINVAL;
2484
2485 /* If an address other than INADDR_ANY is specified, and
2486 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 */
Vlad Yasevich52cae8f2008-08-18 10:34:34 -04002488 if (!sctp_is_any(sk, ( union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002489 trans = sctp_addr_id2transport(sk, &params.spp_address,
2490 params.spp_assoc_id);
2491 if (!trans)
2492 return -EINVAL;
2493 }
2494
2495 /* Get association, if assoc_id != 0 and the socket is a one
2496 * to many style socket, and an association was not found, then
2497 * the id was invalid.
2498 */
2499 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
2500 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP))
2501 return -EINVAL;
2502
2503 /* Heartbeat demand can only be sent on a transport or
2504 * association, but not a socket.
2505 */
2506 if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2507 return -EINVAL;
2508
2509 /* Process parameters. */
2510 error = sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2511 hb_change, pmtud_change,
2512 sackdelay_change);
2513
2514 if (error)
2515 return error;
2516
2517 /* If changes are for association, also apply parameters to each
2518 * transport.
2519 */
2520 if (!trans && asoc) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002521 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2522 transports) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002523 sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2524 hb_change, pmtud_change,
2525 sackdelay_change);
2526 }
2527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
2529 return 0;
2530}
2531
Wei Yongjund364d922008-05-09 15:13:26 -07002532/*
2533 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08002534 *
Wei Yongjund364d922008-05-09 15:13:26 -07002535 * This option will effect the way delayed acks are performed. This
2536 * option allows you to get or set the delayed ack time, in
2537 * milliseconds. It also allows changing the delayed ack frequency.
2538 * Changing the frequency to 1 disables the delayed sack algorithm. If
2539 * the assoc_id is 0, then this sets or gets the endpoints default
2540 * values. If the assoc_id field is non-zero, then the set or get
2541 * effects the specified association for the one to many model (the
2542 * assoc_id field is ignored by the one to one model). Note that if
2543 * sack_delay or sack_freq are 0 when setting this option, then the
2544 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08002545 *
Wei Yongjund364d922008-05-09 15:13:26 -07002546 * struct sctp_sack_info {
2547 * sctp_assoc_t sack_assoc_id;
2548 * uint32_t sack_delay;
2549 * uint32_t sack_freq;
2550 * };
Frank Filz77086102005-12-22 11:37:30 -08002551 *
Wei Yongjund364d922008-05-09 15:13:26 -07002552 * sack_assoc_id - This parameter, indicates which association the user
2553 * is performing an action upon. Note that if this field's value is
2554 * zero then the endpoints default value is changed (effecting future
2555 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08002556 *
Wei Yongjund364d922008-05-09 15:13:26 -07002557 * sack_delay - This parameter contains the number of milliseconds that
2558 * the user is requesting the delayed ACK timer be set to. Note that
2559 * this value is defined in the standard to be between 200 and 500
2560 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08002561 *
Wei Yongjund364d922008-05-09 15:13:26 -07002562 * sack_freq - This parameter contains the number of packets that must
2563 * be received before a sack is sent without waiting for the delay
2564 * timer to expire. The default value for this is 2, setting this
2565 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08002566 */
2567
Wei Yongjund364d922008-05-09 15:13:26 -07002568static int sctp_setsockopt_delayed_ack(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002569 char __user *optval, unsigned int optlen)
Frank Filz77086102005-12-22 11:37:30 -08002570{
Wei Yongjund364d922008-05-09 15:13:26 -07002571 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08002572 struct sctp_transport *trans = NULL;
2573 struct sctp_association *asoc = NULL;
2574 struct sctp_sock *sp = sctp_sk(sk);
2575
Wei Yongjund364d922008-05-09 15:13:26 -07002576 if (optlen == sizeof(struct sctp_sack_info)) {
2577 if (copy_from_user(&params, optval, optlen))
2578 return -EFAULT;
2579
2580 if (params.sack_delay == 0 && params.sack_freq == 0)
2581 return 0;
2582 } else if (optlen == sizeof(struct sctp_assoc_value)) {
Joe Perches145ce502010-08-24 13:21:08 +00002583 pr_warn("Use of struct sctp_assoc_value in delayed_ack socket option deprecated\n");
2584 pr_warn("Use struct sctp_sack_info instead\n");
Wei Yongjund364d922008-05-09 15:13:26 -07002585 if (copy_from_user(&params, optval, optlen))
2586 return -EFAULT;
2587
2588 if (params.sack_delay == 0)
2589 params.sack_freq = 1;
2590 else
2591 params.sack_freq = 0;
2592 } else
Frank Filz77086102005-12-22 11:37:30 -08002593 return - EINVAL;
2594
Frank Filz77086102005-12-22 11:37:30 -08002595 /* Validate value parameter. */
Wei Yongjund364d922008-05-09 15:13:26 -07002596 if (params.sack_delay > 500)
Frank Filz77086102005-12-22 11:37:30 -08002597 return -EINVAL;
2598
Wei Yongjund364d922008-05-09 15:13:26 -07002599 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08002600 * to many style socket, and an association was not found, then
2601 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002602 */
Wei Yongjund364d922008-05-09 15:13:26 -07002603 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
2604 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08002605 return -EINVAL;
2606
Wei Yongjund364d922008-05-09 15:13:26 -07002607 if (params.sack_delay) {
Frank Filz77086102005-12-22 11:37:30 -08002608 if (asoc) {
2609 asoc->sackdelay =
Wei Yongjund364d922008-05-09 15:13:26 -07002610 msecs_to_jiffies(params.sack_delay);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002611 asoc->param_flags =
Frank Filz77086102005-12-22 11:37:30 -08002612 (asoc->param_flags & ~SPP_SACKDELAY) |
2613 SPP_SACKDELAY_ENABLE;
2614 } else {
Wei Yongjund364d922008-05-09 15:13:26 -07002615 sp->sackdelay = params.sack_delay;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002616 sp->param_flags =
Frank Filz77086102005-12-22 11:37:30 -08002617 (sp->param_flags & ~SPP_SACKDELAY) |
2618 SPP_SACKDELAY_ENABLE;
2619 }
Wei Yongjund364d922008-05-09 15:13:26 -07002620 }
2621
2622 if (params.sack_freq == 1) {
Frank Filz77086102005-12-22 11:37:30 -08002623 if (asoc) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002624 asoc->param_flags =
Frank Filz77086102005-12-22 11:37:30 -08002625 (asoc->param_flags & ~SPP_SACKDELAY) |
2626 SPP_SACKDELAY_DISABLE;
2627 } else {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002628 sp->param_flags =
Frank Filz77086102005-12-22 11:37:30 -08002629 (sp->param_flags & ~SPP_SACKDELAY) |
2630 SPP_SACKDELAY_DISABLE;
2631 }
Wei Yongjund364d922008-05-09 15:13:26 -07002632 } else if (params.sack_freq > 1) {
2633 if (asoc) {
2634 asoc->sackfreq = params.sack_freq;
2635 asoc->param_flags =
2636 (asoc->param_flags & ~SPP_SACKDELAY) |
2637 SPP_SACKDELAY_ENABLE;
2638 } else {
2639 sp->sackfreq = params.sack_freq;
2640 sp->param_flags =
2641 (sp->param_flags & ~SPP_SACKDELAY) |
2642 SPP_SACKDELAY_ENABLE;
2643 }
Frank Filz77086102005-12-22 11:37:30 -08002644 }
2645
2646 /* If change is for association, also apply to each transport. */
2647 if (asoc) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002648 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2649 transports) {
Wei Yongjund364d922008-05-09 15:13:26 -07002650 if (params.sack_delay) {
Frank Filz77086102005-12-22 11:37:30 -08002651 trans->sackdelay =
Wei Yongjund364d922008-05-09 15:13:26 -07002652 msecs_to_jiffies(params.sack_delay);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002653 trans->param_flags =
Frank Filz77086102005-12-22 11:37:30 -08002654 (trans->param_flags & ~SPP_SACKDELAY) |
2655 SPP_SACKDELAY_ENABLE;
Wei Yongjund364d922008-05-09 15:13:26 -07002656 }
Vlad Yasevich7bfe8bd2008-06-09 15:45:05 -07002657 if (params.sack_freq == 1) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002658 trans->param_flags =
Frank Filz77086102005-12-22 11:37:30 -08002659 (trans->param_flags & ~SPP_SACKDELAY) |
2660 SPP_SACKDELAY_DISABLE;
Wei Yongjund364d922008-05-09 15:13:26 -07002661 } else if (params.sack_freq > 1) {
2662 trans->sackfreq = params.sack_freq;
2663 trans->param_flags =
2664 (trans->param_flags & ~SPP_SACKDELAY) |
2665 SPP_SACKDELAY_ENABLE;
Frank Filz77086102005-12-22 11:37:30 -08002666 }
2667 }
2668 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002669
Frank Filz77086102005-12-22 11:37:30 -08002670 return 0;
2671}
2672
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2674 *
2675 * Applications can specify protocol parameters for the default association
2676 * initialization. The option name argument to setsockopt() and getsockopt()
2677 * is SCTP_INITMSG.
2678 *
2679 * Setting initialization parameters is effective only on an unconnected
2680 * socket (for UDP-style sockets only future associations are effected
2681 * by the change). With TCP-style sockets, this option is inherited by
2682 * sockets derived from a listener socket.
2683 */
David S. Millerb7058842009-09-30 16:12:20 -07002684static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685{
2686 struct sctp_initmsg sinit;
2687 struct sctp_sock *sp = sctp_sk(sk);
2688
2689 if (optlen != sizeof(struct sctp_initmsg))
2690 return -EINVAL;
2691 if (copy_from_user(&sinit, optval, optlen))
2692 return -EFAULT;
2693
2694 if (sinit.sinit_num_ostreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002695 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 if (sinit.sinit_max_instreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002697 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 if (sinit.sinit_max_attempts)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002699 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 if (sinit.sinit_max_init_timeo)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002701 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702
2703 return 0;
2704}
2705
2706/*
2707 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2708 *
2709 * Applications that wish to use the sendto() system call may wish to
2710 * specify a default set of parameters that would normally be supplied
2711 * through the inclusion of ancillary data. This socket option allows
2712 * such an application to set the default sctp_sndrcvinfo structure.
2713 * The application that wishes to use this socket option simply passes
2714 * in to this call the sctp_sndrcvinfo structure defined in Section
2715 * 5.2.2) The input parameters accepted by this call include
2716 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2717 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
2718 * to this call if the caller is using the UDP model.
2719 */
2720static int sctp_setsockopt_default_send_param(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002721 char __user *optval,
2722 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723{
2724 struct sctp_sndrcvinfo info;
2725 struct sctp_association *asoc;
2726 struct sctp_sock *sp = sctp_sk(sk);
2727
2728 if (optlen != sizeof(struct sctp_sndrcvinfo))
2729 return -EINVAL;
2730 if (copy_from_user(&info, optval, optlen))
2731 return -EFAULT;
2732
2733 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
2734 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
2735 return -EINVAL;
2736
2737 if (asoc) {
2738 asoc->default_stream = info.sinfo_stream;
2739 asoc->default_flags = info.sinfo_flags;
2740 asoc->default_ppid = info.sinfo_ppid;
2741 asoc->default_context = info.sinfo_context;
2742 asoc->default_timetolive = info.sinfo_timetolive;
2743 } else {
2744 sp->default_stream = info.sinfo_stream;
2745 sp->default_flags = info.sinfo_flags;
2746 sp->default_ppid = info.sinfo_ppid;
2747 sp->default_context = info.sinfo_context;
2748 sp->default_timetolive = info.sinfo_timetolive;
2749 }
2750
2751 return 0;
2752}
2753
2754/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
2755 *
2756 * Requests that the local SCTP stack use the enclosed peer address as
2757 * the association primary. The enclosed address must be one of the
2758 * association peer's addresses.
2759 */
2760static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002761 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762{
2763 struct sctp_prim prim;
2764 struct sctp_transport *trans;
2765
2766 if (optlen != sizeof(struct sctp_prim))
2767 return -EINVAL;
2768
2769 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
2770 return -EFAULT;
2771
2772 trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
2773 if (!trans)
2774 return -EINVAL;
2775
2776 sctp_assoc_set_primary(trans->asoc, trans);
2777
2778 return 0;
2779}
2780
2781/*
2782 * 7.1.5 SCTP_NODELAY
2783 *
2784 * Turn on/off any Nagle-like algorithm. This means that packets are
2785 * generally sent as soon as possible and no unnecessary delays are
2786 * introduced, at the cost of more packets in the network. Expects an
2787 * integer boolean flag.
2788 */
2789static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002790 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791{
2792 int val;
2793
2794 if (optlen < sizeof(int))
2795 return -EINVAL;
2796 if (get_user(val, (int __user *)optval))
2797 return -EFAULT;
2798
2799 sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
2800 return 0;
2801}
2802
2803/*
2804 *
2805 * 7.1.1 SCTP_RTOINFO
2806 *
2807 * The protocol parameters used to initialize and bound retransmission
2808 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
2809 * and modify these parameters.
2810 * All parameters are time values, in milliseconds. A value of 0, when
2811 * modifying the parameters, indicates that the current value should not
2812 * be changed.
2813 *
2814 */
David S. Millerb7058842009-09-30 16:12:20 -07002815static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, unsigned int optlen)
2816{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 struct sctp_rtoinfo rtoinfo;
2818 struct sctp_association *asoc;
2819
2820 if (optlen != sizeof (struct sctp_rtoinfo))
2821 return -EINVAL;
2822
2823 if (copy_from_user(&rtoinfo, optval, optlen))
2824 return -EFAULT;
2825
2826 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
2827
2828 /* Set the values to the specific association */
2829 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
2830 return -EINVAL;
2831
2832 if (asoc) {
2833 if (rtoinfo.srto_initial != 0)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002834 asoc->rto_initial =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 msecs_to_jiffies(rtoinfo.srto_initial);
2836 if (rtoinfo.srto_max != 0)
2837 asoc->rto_max = msecs_to_jiffies(rtoinfo.srto_max);
2838 if (rtoinfo.srto_min != 0)
2839 asoc->rto_min = msecs_to_jiffies(rtoinfo.srto_min);
2840 } else {
2841 /* If there is no association or the association-id = 0
2842 * set the values to the endpoint.
2843 */
2844 struct sctp_sock *sp = sctp_sk(sk);
2845
2846 if (rtoinfo.srto_initial != 0)
2847 sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
2848 if (rtoinfo.srto_max != 0)
2849 sp->rtoinfo.srto_max = rtoinfo.srto_max;
2850 if (rtoinfo.srto_min != 0)
2851 sp->rtoinfo.srto_min = rtoinfo.srto_min;
2852 }
2853
2854 return 0;
2855}
2856
2857/*
2858 *
2859 * 7.1.2 SCTP_ASSOCINFO
2860 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02002861 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 * of the association.
2863 * Returns an error if the new association retransmission value is
2864 * greater than the sum of the retransmission value of the peer.
2865 * See [SCTP] for more information.
2866 *
2867 */
David S. Millerb7058842009-09-30 16:12:20 -07002868static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869{
2870
2871 struct sctp_assocparams assocparams;
2872 struct sctp_association *asoc;
2873
2874 if (optlen != sizeof(struct sctp_assocparams))
2875 return -EINVAL;
2876 if (copy_from_user(&assocparams, optval, optlen))
2877 return -EFAULT;
2878
2879 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
2880
2881 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
2882 return -EINVAL;
2883
2884 /* Set the values to the specific association */
2885 if (asoc) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07002886 if (assocparams.sasoc_asocmaxrxt != 0) {
2887 __u32 path_sum = 0;
2888 int paths = 0;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07002889 struct sctp_transport *peer_addr;
2890
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002891 list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
2892 transports) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07002893 path_sum += peer_addr->pathmaxrxt;
2894 paths++;
2895 }
2896
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02002897 /* Only validate asocmaxrxt if we have more than
Vlad Yasevich402d68c2006-06-17 22:54:51 -07002898 * one path/transport. We do this because path
2899 * retransmissions are only counted when we have more
2900 * then one path.
2901 */
2902 if (paths > 1 &&
2903 assocparams.sasoc_asocmaxrxt > path_sum)
2904 return -EINVAL;
2905
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07002907 }
2908
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 if (assocparams.sasoc_cookie_life != 0) {
2910 asoc->cookie_life.tv_sec =
2911 assocparams.sasoc_cookie_life / 1000;
2912 asoc->cookie_life.tv_usec =
2913 (assocparams.sasoc_cookie_life % 1000)
2914 * 1000;
2915 }
2916 } else {
2917 /* Set the values to the endpoint */
2918 struct sctp_sock *sp = sctp_sk(sk);
2919
2920 if (assocparams.sasoc_asocmaxrxt != 0)
2921 sp->assocparams.sasoc_asocmaxrxt =
2922 assocparams.sasoc_asocmaxrxt;
2923 if (assocparams.sasoc_cookie_life != 0)
2924 sp->assocparams.sasoc_cookie_life =
2925 assocparams.sasoc_cookie_life;
2926 }
2927 return 0;
2928}
2929
2930/*
2931 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
2932 *
2933 * This socket option is a boolean flag which turns on or off mapped V4
2934 * addresses. If this option is turned on and the socket is type
2935 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
2936 * If this option is turned off, then no mapping will be done of V4
2937 * addresses and a user will receive both PF_INET6 and PF_INET type
2938 * addresses on the socket.
2939 */
David S. Millerb7058842009-09-30 16:12:20 -07002940static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941{
2942 int val;
2943 struct sctp_sock *sp = sctp_sk(sk);
2944
2945 if (optlen < sizeof(int))
2946 return -EINVAL;
2947 if (get_user(val, (int __user *)optval))
2948 return -EFAULT;
2949 if (val)
2950 sp->v4mapped = 1;
2951 else
2952 sp->v4mapped = 0;
2953
2954 return 0;
2955}
2956
2957/*
Wei Yongjune89c2092008-12-25 16:54:58 -08002958 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
2959 * This option will get or set the maximum size to put in any outgoing
2960 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 * fragmented by SCTP into the specified size. Note that the underlying
2962 * SCTP implementation may fragment into smaller sized chunks when the
2963 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08002964 * the user. The default value for this option is '0' which indicates
2965 * the user is NOT limiting fragmentation and only the PMTU will effect
2966 * SCTP's choice of DATA chunk size. Note also that values set larger
2967 * than the maximum size of an IP datagram will effectively let SCTP
2968 * control fragmentation (i.e. the same as setting this option to 0).
2969 *
2970 * The following structure is used to access and modify this parameter:
2971 *
2972 * struct sctp_assoc_value {
2973 * sctp_assoc_t assoc_id;
2974 * uint32_t assoc_value;
2975 * };
2976 *
2977 * assoc_id: This parameter is ignored for one-to-one style sockets.
2978 * For one-to-many style sockets this parameter indicates which
2979 * association the user is performing an action upon. Note that if
2980 * this field's value is zero then the endpoints default value is
2981 * changed (effecting future associations only).
2982 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 */
David S. Millerb7058842009-09-30 16:12:20 -07002984static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985{
Wei Yongjune89c2092008-12-25 16:54:58 -08002986 struct sctp_assoc_value params;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 struct sctp_sock *sp = sctp_sk(sk);
2989 int val;
2990
Wei Yongjune89c2092008-12-25 16:54:58 -08002991 if (optlen == sizeof(int)) {
Joe Perches145ce502010-08-24 13:21:08 +00002992 pr_warn("Use of int in maxseg socket option deprecated\n");
2993 pr_warn("Use struct sctp_assoc_value instead\n");
Wei Yongjune89c2092008-12-25 16:54:58 -08002994 if (copy_from_user(&val, optval, optlen))
2995 return -EFAULT;
2996 params.assoc_id = 0;
2997 } else if (optlen == sizeof(struct sctp_assoc_value)) {
2998 if (copy_from_user(&params, optval, optlen))
2999 return -EFAULT;
3000 val = params.assoc_value;
3001 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 return -EINVAL;
Wei Yongjune89c2092008-12-25 16:54:58 -08003003
Ivan Skytte Jorgensen96a33992005-10-28 15:36:12 -07003004 if ((val != 0) && ((val < 8) || (val > SCTP_MAX_CHUNK_LEN)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006
Wei Yongjune89c2092008-12-25 16:54:58 -08003007 asoc = sctp_id2assoc(sk, params.assoc_id);
3008 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
3009 return -EINVAL;
3010
3011 if (asoc) {
3012 if (val == 0) {
3013 val = asoc->pathmtu;
3014 val -= sp->pf->af->net_header_len;
3015 val -= sizeof(struct sctphdr) +
3016 sizeof(struct sctp_data_chunk);
3017 }
Vlad Yasevichf68b2e02009-09-04 18:21:00 -04003018 asoc->user_frag = val;
3019 asoc->frag_point = sctp_frag_point(asoc, asoc->pathmtu);
Wei Yongjune89c2092008-12-25 16:54:58 -08003020 } else {
3021 sp->user_frag = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 }
3023
3024 return 0;
3025}
3026
3027
3028/*
3029 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3030 *
3031 * Requests that the peer mark the enclosed address as the association
3032 * primary. The enclosed address must be one of the association's
3033 * locally bound addresses. The following structure is used to make a
3034 * set primary request:
3035 */
3036static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003037 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038{
3039 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 struct sctp_association *asoc = NULL;
3041 struct sctp_setpeerprim prim;
3042 struct sctp_chunk *chunk;
Wei Yongjun40a01032010-12-07 17:11:09 +00003043 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 int err;
3045
3046 sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
3048 if (!sctp_addip_enable)
3049 return -EPERM;
3050
3051 if (optlen != sizeof(struct sctp_setpeerprim))
3052 return -EINVAL;
3053
3054 if (copy_from_user(&prim, optval, optlen))
3055 return -EFAULT;
3056
3057 asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003058 if (!asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 return -EINVAL;
3060
3061 if (!asoc->peer.asconf_capable)
3062 return -EPERM;
3063
3064 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
3065 return -EPERM;
3066
3067 if (!sctp_state(asoc, ESTABLISHED))
3068 return -ENOTCONN;
3069
Wei Yongjun40a01032010-12-07 17:11:09 +00003070 af = sctp_get_af_specific(prim.sspp_addr.ss_family);
3071 if (!af)
3072 return -EINVAL;
3073
3074 if (!af->addr_valid((union sctp_addr *)&prim.sspp_addr, sp, NULL))
3075 return -EADDRNOTAVAIL;
3076
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
3078 return -EADDRNOTAVAIL;
3079
3080 /* Create an ASCONF chunk with SET_PRIMARY parameter */
3081 chunk = sctp_make_asconf_set_prim(asoc,
3082 (union sctp_addr *)&prim.sspp_addr);
3083 if (!chunk)
3084 return -ENOMEM;
3085
3086 err = sctp_send_asconf(asoc, chunk);
3087
3088 SCTP_DEBUG_PRINTK("We set peer primary addr primitively.\n");
3089
3090 return err;
3091}
3092
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003093static int sctp_setsockopt_adaptation_layer(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003094 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003096 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003098 if (optlen != sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 return -EINVAL;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003100 if (copy_from_user(&adaptation, optval, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 return -EFAULT;
3102
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003103 sctp_sk(sk)->adaptation_ind = adaptation.ssb_adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104
3105 return 0;
3106}
3107
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003108/*
3109 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
3110 *
3111 * The context field in the sctp_sndrcvinfo structure is normally only
3112 * used when a failed message is retrieved holding the value that was
3113 * sent down on the actual send call. This option allows the setting of
3114 * a default context on an association basis that will be received on
3115 * reading messages from the peer. This is especially helpful in the
3116 * one-2-many model for an application to keep some reference to an
3117 * internal state machine that is processing messages on the
3118 * association. Note that the setting of this value only effects
3119 * received messages from the peer and does not effect the value that is
3120 * saved with outbound messages.
3121 */
3122static int sctp_setsockopt_context(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003123 unsigned int optlen)
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003124{
3125 struct sctp_assoc_value params;
3126 struct sctp_sock *sp;
3127 struct sctp_association *asoc;
3128
3129 if (optlen != sizeof(struct sctp_assoc_value))
3130 return -EINVAL;
3131 if (copy_from_user(&params, optval, optlen))
3132 return -EFAULT;
3133
3134 sp = sctp_sk(sk);
3135
3136 if (params.assoc_id != 0) {
3137 asoc = sctp_id2assoc(sk, params.assoc_id);
3138 if (!asoc)
3139 return -EINVAL;
3140 asoc->default_rcv_context = params.assoc_value;
3141 } else {
3142 sp->default_rcv_context = params.assoc_value;
3143 }
3144
3145 return 0;
3146}
3147
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003148/*
3149 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
3150 *
3151 * This options will at a minimum specify if the implementation is doing
3152 * fragmented interleave. Fragmented interleave, for a one to many
3153 * socket, is when subsequent calls to receive a message may return
3154 * parts of messages from different associations. Some implementations
3155 * may allow you to turn this value on or off. If so, when turned off,
3156 * no fragment interleave will occur (which will cause a head of line
3157 * blocking amongst multiple associations sharing the same one to many
3158 * socket). When this option is turned on, then each receive call may
3159 * come from a different association (thus the user must receive data
3160 * with the extended calls (e.g. sctp_recvmsg) to keep track of which
3161 * association each receive belongs to.
3162 *
3163 * This option takes a boolean value. A non-zero value indicates that
3164 * fragmented interleave is on. A value of zero indicates that
3165 * fragmented interleave is off.
3166 *
3167 * Note that it is important that an implementation that allows this
3168 * option to be turned on, have it off by default. Otherwise an unaware
3169 * application using the one to many model may become confused and act
3170 * incorrectly.
3171 */
3172static int sctp_setsockopt_fragment_interleave(struct sock *sk,
3173 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003174 unsigned int optlen)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003175{
3176 int val;
3177
3178 if (optlen != sizeof(int))
3179 return -EINVAL;
3180 if (get_user(val, (int __user *)optval))
3181 return -EFAULT;
3182
3183 sctp_sk(sk)->frag_interleave = (val == 0) ? 0 : 1;
3184
3185 return 0;
3186}
3187
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003188/*
Wei Yongjun8510b932008-12-25 16:59:03 -08003189 * 8.1.21. Set or Get the SCTP Partial Delivery Point
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003190 * (SCTP_PARTIAL_DELIVERY_POINT)
Wei Yongjun8510b932008-12-25 16:59:03 -08003191 *
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003192 * This option will set or get the SCTP partial delivery point. This
3193 * point is the size of a message where the partial delivery API will be
3194 * invoked to help free up rwnd space for the peer. Setting this to a
Wei Yongjun8510b932008-12-25 16:59:03 -08003195 * lower value will cause partial deliveries to happen more often. The
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003196 * calls argument is an integer that sets or gets the partial delivery
Wei Yongjun8510b932008-12-25 16:59:03 -08003197 * point. Note also that the call will fail if the user attempts to set
3198 * this value larger than the socket receive buffer size.
3199 *
3200 * Note that any single message having a length smaller than or equal to
3201 * the SCTP partial delivery point will be delivered in one single read
3202 * call as long as the user provided buffer is large enough to hold the
3203 * message.
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003204 */
3205static int sctp_setsockopt_partial_delivery_point(struct sock *sk,
3206 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003207 unsigned int optlen)
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003208{
3209 u32 val;
3210
3211 if (optlen != sizeof(u32))
3212 return -EINVAL;
3213 if (get_user(val, (int __user *)optval))
3214 return -EFAULT;
3215
Wei Yongjun8510b932008-12-25 16:59:03 -08003216 /* Note: We double the receive buffer from what the user sets
3217 * it to be, also initial rwnd is based on rcvbuf/2.
3218 */
3219 if (val > (sk->sk_rcvbuf >> 1))
3220 return -EINVAL;
3221
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003222 sctp_sk(sk)->pd_point = val;
3223
3224 return 0; /* is this the right error code? */
3225}
3226
Vlad Yasevich70331572007-03-23 11:34:36 -07003227/*
3228 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
3229 *
3230 * This option will allow a user to change the maximum burst of packets
3231 * that can be emitted by this association. Note that the default value
3232 * is 4, and some implementations may restrict this setting so that it
3233 * can only be lowered.
3234 *
3235 * NOTE: This text doesn't seem right. Do this on a socket basis with
3236 * future associations inheriting the socket value.
3237 */
3238static int sctp_setsockopt_maxburst(struct sock *sk,
3239 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003240 unsigned int optlen)
Vlad Yasevich70331572007-03-23 11:34:36 -07003241{
Neil Horman219b99a2008-03-05 13:44:46 -08003242 struct sctp_assoc_value params;
3243 struct sctp_sock *sp;
3244 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07003245 int val;
Neil Horman219b99a2008-03-05 13:44:46 -08003246 int assoc_id = 0;
Vlad Yasevich70331572007-03-23 11:34:36 -07003247
Neil Horman219b99a2008-03-05 13:44:46 -08003248 if (optlen == sizeof(int)) {
Joe Perches145ce502010-08-24 13:21:08 +00003249 pr_warn("Use of int in max_burst socket option deprecated\n");
3250 pr_warn("Use struct sctp_assoc_value instead\n");
Neil Horman219b99a2008-03-05 13:44:46 -08003251 if (copy_from_user(&val, optval, optlen))
3252 return -EFAULT;
3253 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3254 if (copy_from_user(&params, optval, optlen))
3255 return -EFAULT;
3256 val = params.assoc_value;
3257 assoc_id = params.assoc_id;
3258 } else
3259 return -EINVAL;
3260
3261 sp = sctp_sk(sk);
3262
3263 if (assoc_id != 0) {
3264 asoc = sctp_id2assoc(sk, assoc_id);
3265 if (!asoc)
3266 return -EINVAL;
3267 asoc->max_burst = val;
3268 } else
3269 sp->max_burst = val;
Vlad Yasevich70331572007-03-23 11:34:36 -07003270
3271 return 0;
3272}
3273
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003274/*
3275 * 7.1.18. Add a chunk that must be authenticated (SCTP_AUTH_CHUNK)
3276 *
3277 * This set option adds a chunk type that the user is requesting to be
3278 * received only in an authenticated way. Changes to the list of chunks
3279 * will only effect future associations on the socket.
3280 */
3281static int sctp_setsockopt_auth_chunk(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003282 char __user *optval,
3283 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003284{
3285 struct sctp_authchunk val;
3286
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003287 if (!sctp_auth_enable)
3288 return -EACCES;
3289
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003290 if (optlen != sizeof(struct sctp_authchunk))
3291 return -EINVAL;
3292 if (copy_from_user(&val, optval, optlen))
3293 return -EFAULT;
3294
3295 switch (val.sauth_chunk) {
Joe Perches7fd71b12011-07-01 09:43:11 +00003296 case SCTP_CID_INIT:
3297 case SCTP_CID_INIT_ACK:
3298 case SCTP_CID_SHUTDOWN_COMPLETE:
3299 case SCTP_CID_AUTH:
3300 return -EINVAL;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003301 }
3302
3303 /* add this chunk id to the endpoint */
3304 return sctp_auth_ep_add_chunkid(sctp_sk(sk)->ep, val.sauth_chunk);
3305}
3306
3307/*
3308 * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
3309 *
3310 * This option gets or sets the list of HMAC algorithms that the local
3311 * endpoint requires the peer to use.
3312 */
3313static int sctp_setsockopt_hmac_ident(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003314 char __user *optval,
3315 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003316{
3317 struct sctp_hmacalgo *hmacs;
Vlad Yasevichd9724052008-08-27 16:09:49 -07003318 u32 idents;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003319 int err;
3320
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003321 if (!sctp_auth_enable)
3322 return -EACCES;
3323
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003324 if (optlen < sizeof(struct sctp_hmacalgo))
3325 return -EINVAL;
3326
Shan Wei934253a2011-04-18 19:13:18 +00003327 hmacs= memdup_user(optval, optlen);
3328 if (IS_ERR(hmacs))
3329 return PTR_ERR(hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003330
Vlad Yasevichd9724052008-08-27 16:09:49 -07003331 idents = hmacs->shmac_num_idents;
3332 if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS ||
3333 (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo))) {
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003334 err = -EINVAL;
3335 goto out;
3336 }
3337
3338 err = sctp_auth_ep_set_hmacs(sctp_sk(sk)->ep, hmacs);
3339out:
3340 kfree(hmacs);
3341 return err;
3342}
3343
3344/*
3345 * 7.1.20. Set a shared key (SCTP_AUTH_KEY)
3346 *
3347 * This option will set a shared secret key which is used to build an
3348 * association shared key.
3349 */
3350static int sctp_setsockopt_auth_key(struct sock *sk,
3351 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003352 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003353{
3354 struct sctp_authkey *authkey;
3355 struct sctp_association *asoc;
3356 int ret;
3357
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003358 if (!sctp_auth_enable)
3359 return -EACCES;
3360
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003361 if (optlen <= sizeof(struct sctp_authkey))
3362 return -EINVAL;
3363
Shan Wei934253a2011-04-18 19:13:18 +00003364 authkey= memdup_user(optval, optlen);
3365 if (IS_ERR(authkey))
3366 return PTR_ERR(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003367
Vlad Yasevich328fc472008-08-27 16:08:54 -07003368 if (authkey->sca_keylength > optlen - sizeof(struct sctp_authkey)) {
Vlad Yasevich30c22352008-08-25 15:16:19 -07003369 ret = -EINVAL;
3370 goto out;
3371 }
3372
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003373 asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
3374 if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) {
3375 ret = -EINVAL;
3376 goto out;
3377 }
3378
3379 ret = sctp_auth_set_key(sctp_sk(sk)->ep, asoc, authkey);
3380out:
Daniel Borkmann8a501d82013-02-08 03:04:34 +00003381 kzfree(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003382 return ret;
3383}
3384
3385/*
3386 * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
3387 *
3388 * This option will get or set the active shared key to be used to build
3389 * the association shared key.
3390 */
3391static int sctp_setsockopt_active_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003392 char __user *optval,
3393 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003394{
3395 struct sctp_authkeyid val;
3396 struct sctp_association *asoc;
3397
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003398 if (!sctp_auth_enable)
3399 return -EACCES;
3400
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003401 if (optlen != sizeof(struct sctp_authkeyid))
3402 return -EINVAL;
3403 if (copy_from_user(&val, optval, optlen))
3404 return -EFAULT;
3405
3406 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3407 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3408 return -EINVAL;
3409
3410 return sctp_auth_set_active_key(sctp_sk(sk)->ep, asoc,
3411 val.scact_keynumber);
3412}
3413
3414/*
3415 * 7.1.22. Delete a shared key (SCTP_AUTH_DELETE_KEY)
3416 *
3417 * This set option will delete a shared secret key from use.
3418 */
3419static int sctp_setsockopt_del_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003420 char __user *optval,
3421 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003422{
3423 struct sctp_authkeyid val;
3424 struct sctp_association *asoc;
3425
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003426 if (!sctp_auth_enable)
3427 return -EACCES;
3428
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003429 if (optlen != sizeof(struct sctp_authkeyid))
3430 return -EINVAL;
3431 if (copy_from_user(&val, optval, optlen))
3432 return -EFAULT;
3433
3434 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3435 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3436 return -EINVAL;
3437
3438 return sctp_auth_del_key_id(sctp_sk(sk)->ep, asoc,
3439 val.scact_keynumber);
3440
3441}
3442
Michio Honda7dc04d72011-04-26 20:16:31 +09003443/*
3444 * 8.1.23 SCTP_AUTO_ASCONF
3445 *
3446 * This option will enable or disable the use of the automatic generation of
3447 * ASCONF chunks to add and delete addresses to an existing association. Note
3448 * that this option has two caveats namely: a) it only affects sockets that
3449 * are bound to all addresses available to the SCTP stack, and b) the system
3450 * administrator may have an overriding control that turns the ASCONF feature
3451 * off no matter what setting the socket option may have.
3452 * This option expects an integer boolean flag, where a non-zero value turns on
3453 * the option, and a zero value turns off the option.
3454 * Note. In this implementation, socket operation overrides default parameter
3455 * being set by sysctl as well as FreeBSD implementation
3456 */
3457static int sctp_setsockopt_auto_asconf(struct sock *sk, char __user *optval,
3458 unsigned int optlen)
3459{
3460 int val;
3461 struct sctp_sock *sp = sctp_sk(sk);
3462
3463 if (optlen < sizeof(int))
3464 return -EINVAL;
3465 if (get_user(val, (int __user *)optval))
3466 return -EFAULT;
3467 if (!sctp_is_ep_boundall(sk) && val)
3468 return -EINVAL;
3469 if ((val && sp->do_auto_asconf) || (!val && !sp->do_auto_asconf))
3470 return 0;
3471
3472 if (val == 0 && sp->do_auto_asconf) {
3473 list_del(&sp->auto_asconf_list);
3474 sp->do_auto_asconf = 0;
3475 } else if (val && !sp->do_auto_asconf) {
3476 list_add_tail(&sp->auto_asconf_list,
3477 &sctp_auto_asconf_splist);
3478 sp->do_auto_asconf = 1;
3479 }
3480 return 0;
3481}
3482
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003483
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484/* API 6.2 setsockopt(), getsockopt()
3485 *
3486 * Applications use setsockopt() and getsockopt() to set or retrieve
3487 * socket options. Socket options are used to change the default
3488 * behavior of sockets calls. They are described in Section 7.
3489 *
3490 * The syntax is:
3491 *
3492 * ret = getsockopt(int sd, int level, int optname, void __user *optval,
3493 * int __user *optlen);
3494 * ret = setsockopt(int sd, int level, int optname, const void __user *optval,
3495 * int optlen);
3496 *
3497 * sd - the socket descript.
3498 * level - set to IPPROTO_SCTP for all SCTP options.
3499 * optname - the option name.
3500 * optval - the buffer to store the value of the option.
3501 * optlen - the size of the buffer.
3502 */
3503SCTP_STATIC int sctp_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07003504 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505{
3506 int retval = 0;
3507
3508 SCTP_DEBUG_PRINTK("sctp_setsockopt(sk: %p... optname: %d)\n",
3509 sk, optname);
3510
3511 /* I can hardly begin to describe how wrong this is. This is
3512 * so broken as to be worse than useless. The API draft
3513 * REALLY is NOT helpful here... I am not convinced that the
3514 * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
3515 * are at all well-founded.
3516 */
3517 if (level != SOL_SCTP) {
3518 struct sctp_af *af = sctp_sk(sk)->pf->af;
3519 retval = af->setsockopt(sk, level, optname, optval, optlen);
3520 goto out_nounlock;
3521 }
3522
3523 sctp_lock_sock(sk);
3524
3525 switch (optname) {
3526 case SCTP_SOCKOPT_BINDX_ADD:
3527 /* 'optlen' is the size of the addresses buffer. */
3528 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
3529 optlen, SCTP_BINDX_ADD_ADDR);
3530 break;
3531
3532 case SCTP_SOCKOPT_BINDX_REM:
3533 /* 'optlen' is the size of the addresses buffer. */
3534 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
3535 optlen, SCTP_BINDX_REM_ADDR);
3536 break;
3537
Vlad Yasevich88a0a942008-05-09 15:14:11 -07003538 case SCTP_SOCKOPT_CONNECTX_OLD:
3539 /* 'optlen' is the size of the addresses buffer. */
3540 retval = sctp_setsockopt_connectx_old(sk,
3541 (struct sockaddr __user *)optval,
3542 optlen);
3543 break;
3544
Frank Filz3f7a87d2005-06-20 13:14:57 -07003545 case SCTP_SOCKOPT_CONNECTX:
3546 /* 'optlen' is the size of the addresses buffer. */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07003547 retval = sctp_setsockopt_connectx(sk,
3548 (struct sockaddr __user *)optval,
3549 optlen);
Frank Filz3f7a87d2005-06-20 13:14:57 -07003550 break;
3551
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 case SCTP_DISABLE_FRAGMENTS:
3553 retval = sctp_setsockopt_disable_fragments(sk, optval, optlen);
3554 break;
3555
3556 case SCTP_EVENTS:
3557 retval = sctp_setsockopt_events(sk, optval, optlen);
3558 break;
3559
3560 case SCTP_AUTOCLOSE:
3561 retval = sctp_setsockopt_autoclose(sk, optval, optlen);
3562 break;
3563
3564 case SCTP_PEER_ADDR_PARAMS:
3565 retval = sctp_setsockopt_peer_addr_params(sk, optval, optlen);
3566 break;
3567
Shan Wei4580ccc2011-01-18 22:39:00 +00003568 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07003569 retval = sctp_setsockopt_delayed_ack(sk, optval, optlen);
Frank Filz77086102005-12-22 11:37:30 -08003570 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003571 case SCTP_PARTIAL_DELIVERY_POINT:
3572 retval = sctp_setsockopt_partial_delivery_point(sk, optval, optlen);
3573 break;
Frank Filz77086102005-12-22 11:37:30 -08003574
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575 case SCTP_INITMSG:
3576 retval = sctp_setsockopt_initmsg(sk, optval, optlen);
3577 break;
3578 case SCTP_DEFAULT_SEND_PARAM:
3579 retval = sctp_setsockopt_default_send_param(sk, optval,
3580 optlen);
3581 break;
3582 case SCTP_PRIMARY_ADDR:
3583 retval = sctp_setsockopt_primary_addr(sk, optval, optlen);
3584 break;
3585 case SCTP_SET_PEER_PRIMARY_ADDR:
3586 retval = sctp_setsockopt_peer_primary_addr(sk, optval, optlen);
3587 break;
3588 case SCTP_NODELAY:
3589 retval = sctp_setsockopt_nodelay(sk, optval, optlen);
3590 break;
3591 case SCTP_RTOINFO:
3592 retval = sctp_setsockopt_rtoinfo(sk, optval, optlen);
3593 break;
3594 case SCTP_ASSOCINFO:
3595 retval = sctp_setsockopt_associnfo(sk, optval, optlen);
3596 break;
3597 case SCTP_I_WANT_MAPPED_V4_ADDR:
3598 retval = sctp_setsockopt_mappedv4(sk, optval, optlen);
3599 break;
3600 case SCTP_MAXSEG:
3601 retval = sctp_setsockopt_maxseg(sk, optval, optlen);
3602 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003603 case SCTP_ADAPTATION_LAYER:
3604 retval = sctp_setsockopt_adaptation_layer(sk, optval, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003606 case SCTP_CONTEXT:
3607 retval = sctp_setsockopt_context(sk, optval, optlen);
3608 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003609 case SCTP_FRAGMENT_INTERLEAVE:
3610 retval = sctp_setsockopt_fragment_interleave(sk, optval, optlen);
3611 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07003612 case SCTP_MAX_BURST:
3613 retval = sctp_setsockopt_maxburst(sk, optval, optlen);
3614 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003615 case SCTP_AUTH_CHUNK:
3616 retval = sctp_setsockopt_auth_chunk(sk, optval, optlen);
3617 break;
3618 case SCTP_HMAC_IDENT:
3619 retval = sctp_setsockopt_hmac_ident(sk, optval, optlen);
3620 break;
3621 case SCTP_AUTH_KEY:
3622 retval = sctp_setsockopt_auth_key(sk, optval, optlen);
3623 break;
3624 case SCTP_AUTH_ACTIVE_KEY:
3625 retval = sctp_setsockopt_active_key(sk, optval, optlen);
3626 break;
3627 case SCTP_AUTH_DELETE_KEY:
3628 retval = sctp_setsockopt_del_key(sk, optval, optlen);
3629 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09003630 case SCTP_AUTO_ASCONF:
3631 retval = sctp_setsockopt_auto_asconf(sk, optval, optlen);
3632 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633 default:
3634 retval = -ENOPROTOOPT;
3635 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07003636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637
3638 sctp_release_sock(sk);
3639
3640out_nounlock:
3641 return retval;
3642}
3643
3644/* API 3.1.6 connect() - UDP Style Syntax
3645 *
3646 * An application may use the connect() call in the UDP model to initiate an
3647 * association without sending data.
3648 *
3649 * The syntax is:
3650 *
3651 * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
3652 *
3653 * sd: the socket descriptor to have a new association added to.
3654 *
3655 * nam: the address structure (either struct sockaddr_in or struct
3656 * sockaddr_in6 defined in RFC2553 [7]).
3657 *
3658 * len: the size of the address.
3659 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07003660SCTP_STATIC int sctp_connect(struct sock *sk, struct sockaddr *addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 int addr_len)
3662{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 int err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07003664 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665
3666 sctp_lock_sock(sk);
3667
Frank Filz3f7a87d2005-06-20 13:14:57 -07003668 SCTP_DEBUG_PRINTK("%s - sk: %p, sockaddr: %p, addr_len: %d\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08003669 __func__, sk, addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670
Frank Filz3f7a87d2005-06-20 13:14:57 -07003671 /* Validate addr_len before calling common connect/connectx routine. */
3672 af = sctp_get_af_specific(addr->sa_family);
3673 if (!af || addr_len < af->sockaddr_len) {
3674 err = -EINVAL;
3675 } else {
3676 /* Pass correct addr len to common routine (so it knows there
3677 * is only one address being passed.
3678 */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07003679 err = __sctp_connect(sk, addr, af->sockaddr_len, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 }
3681
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682 sctp_release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683 return err;
3684}
3685
3686/* FIXME: Write comments. */
3687SCTP_STATIC int sctp_disconnect(struct sock *sk, int flags)
3688{
3689 return -EOPNOTSUPP; /* STUB */
3690}
3691
3692/* 4.1.4 accept() - TCP Style Syntax
3693 *
3694 * Applications use accept() call to remove an established SCTP
3695 * association from the accept queue of the endpoint. A new socket
3696 * descriptor will be returned from accept() to represent the newly
3697 * formed association.
3698 */
3699SCTP_STATIC struct sock *sctp_accept(struct sock *sk, int flags, int *err)
3700{
3701 struct sctp_sock *sp;
3702 struct sctp_endpoint *ep;
3703 struct sock *newsk = NULL;
3704 struct sctp_association *asoc;
3705 long timeo;
3706 int error = 0;
3707
3708 sctp_lock_sock(sk);
3709
3710 sp = sctp_sk(sk);
3711 ep = sp->ep;
3712
3713 if (!sctp_style(sk, TCP)) {
3714 error = -EOPNOTSUPP;
3715 goto out;
3716 }
3717
3718 if (!sctp_sstate(sk, LISTENING)) {
3719 error = -EINVAL;
3720 goto out;
3721 }
3722
Sridhar Samudrala8abfedd2006-08-22 00:24:09 -07003723 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724
3725 error = sctp_wait_for_accept(sk, timeo);
3726 if (error)
3727 goto out;
3728
3729 /* We treat the list of associations on the endpoint as the accept
3730 * queue and pick the first association on the list.
3731 */
3732 asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
3733
3734 newsk = sp->pf->create_accept_sk(sk, asoc);
3735 if (!newsk) {
3736 error = -ENOMEM;
3737 goto out;
3738 }
3739
3740 /* Populate the fields of the newsk from the oldsk and migrate the
3741 * asoc to the newsk.
3742 */
3743 sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
3744
3745out:
3746 sctp_release_sock(sk);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003747 *err = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 return newsk;
3749}
3750
3751/* The SCTP ioctl handler. */
3752SCTP_STATIC int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
3753{
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00003754 int rc = -ENOTCONN;
3755
3756 sctp_lock_sock(sk);
3757
3758 /*
3759 * SEQPACKET-style sockets in LISTENING state are valid, for
3760 * SCTP, so only discard TCP-style sockets in LISTENING state.
3761 */
3762 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
3763 goto out;
3764
3765 switch (cmd) {
3766 case SIOCINQ: {
3767 struct sk_buff *skb;
3768 unsigned int amount = 0;
3769
3770 skb = skb_peek(&sk->sk_receive_queue);
3771 if (skb != NULL) {
3772 /*
3773 * We will only return the amount of this packet since
3774 * that is all that will be read.
3775 */
3776 amount = skb->len;
3777 }
3778 rc = put_user(amount, (int __user *)arg);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00003779 break;
David S. Miller9a7241c2010-10-03 22:14:37 -07003780 }
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00003781 default:
3782 rc = -ENOIOCTLCMD;
3783 break;
3784 }
3785out:
3786 sctp_release_sock(sk);
3787 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788}
3789
3790/* This is the function which gets called during socket creation to
3791 * initialized the SCTP-specific portion of the sock.
3792 * The sock structure should already be zero-filled memory.
3793 */
3794SCTP_STATIC int sctp_init_sock(struct sock *sk)
3795{
3796 struct sctp_endpoint *ep;
3797 struct sctp_sock *sp;
3798
3799 SCTP_DEBUG_PRINTK("sctp_init_sock(sk: %p)\n", sk);
3800
3801 sp = sctp_sk(sk);
3802
3803 /* Initialize the SCTP per socket area. */
3804 switch (sk->sk_type) {
3805 case SOCK_SEQPACKET:
3806 sp->type = SCTP_SOCKET_UDP;
3807 break;
3808 case SOCK_STREAM:
3809 sp->type = SCTP_SOCKET_TCP;
3810 break;
3811 default:
3812 return -ESOCKTNOSUPPORT;
3813 }
3814
3815 /* Initialize default send parameters. These parameters can be
3816 * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
3817 */
3818 sp->default_stream = 0;
3819 sp->default_ppid = 0;
3820 sp->default_flags = 0;
3821 sp->default_context = 0;
3822 sp->default_timetolive = 0;
3823
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003824 sp->default_rcv_context = 0;
Vlad Yasevich70331572007-03-23 11:34:36 -07003825 sp->max_burst = sctp_max_burst;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003826
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 /* Initialize default setup parameters. These parameters
3828 * can be modified with the SCTP_INITMSG socket option or
3829 * overridden by the SCTP_INIT CMSG.
3830 */
3831 sp->initmsg.sinit_num_ostreams = sctp_max_outstreams;
3832 sp->initmsg.sinit_max_instreams = sctp_max_instreams;
3833 sp->initmsg.sinit_max_attempts = sctp_max_retrans_init;
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -07003834 sp->initmsg.sinit_max_init_timeo = sctp_rto_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835
3836 /* Initialize default RTO related parameters. These parameters can
3837 * be modified for with the SCTP_RTOINFO socket option.
3838 */
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -07003839 sp->rtoinfo.srto_initial = sctp_rto_initial;
3840 sp->rtoinfo.srto_max = sctp_rto_max;
3841 sp->rtoinfo.srto_min = sctp_rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842
3843 /* Initialize default association related parameters. These parameters
3844 * can be modified with the SCTP_ASSOCINFO socket option.
3845 */
3846 sp->assocparams.sasoc_asocmaxrxt = sctp_max_retrans_association;
3847 sp->assocparams.sasoc_number_peer_destinations = 0;
3848 sp->assocparams.sasoc_peer_rwnd = 0;
3849 sp->assocparams.sasoc_local_rwnd = 0;
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -07003850 sp->assocparams.sasoc_cookie_life = sctp_valid_cookie_life;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851
3852 /* Initialize default event subscriptions. By default, all the
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003853 * options are off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 */
3855 memset(&sp->subscribe, 0, sizeof(struct sctp_event_subscribe));
3856
3857 /* Default Peer Address Parameters. These defaults can
3858 * be modified via SCTP_PEER_ADDR_PARAMS
3859 */
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -07003860 sp->hbinterval = sctp_hb_interval;
Frank Filz52ccb8e2005-12-22 11:36:46 -08003861 sp->pathmaxrxt = sctp_max_retrans_path;
3862 sp->pathmtu = 0; // allow default discovery
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -07003863 sp->sackdelay = sctp_sack_timeout;
Vlad Yasevich7bfe8bd2008-06-09 15:45:05 -07003864 sp->sackfreq = 2;
Frank Filz52ccb8e2005-12-22 11:36:46 -08003865 sp->param_flags = SPP_HB_ENABLE |
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003866 SPP_PMTUD_ENABLE |
3867 SPP_SACKDELAY_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868
3869 /* If enabled no SCTP message fragmentation will be performed.
3870 * Configure through SCTP_DISABLE_FRAGMENTS socket option.
3871 */
3872 sp->disable_fragments = 0;
3873
Sridhar Samudrala208edef2006-09-29 17:08:01 -07003874 /* Enable Nagle algorithm by default. */
3875 sp->nodelay = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876
3877 /* Enable by default. */
3878 sp->v4mapped = 1;
3879
3880 /* Auto-close idle associations after the configured
3881 * number of seconds. A value of 0 disables this
3882 * feature. Configure through the SCTP_AUTOCLOSE socket option,
3883 * for UDP-style sockets only.
3884 */
3885 sp->autoclose = 0;
3886
3887 /* User specified fragmentation limit. */
3888 sp->user_frag = 0;
3889
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003890 sp->adaptation_ind = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891
3892 sp->pf = sctp_get_pf_specific(sk->sk_family);
3893
3894 /* Control variables for partial data delivery. */
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003895 atomic_set(&sp->pd_mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896 skb_queue_head_init(&sp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003897 sp->frag_interleave = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
3899 /* Create a per socket endpoint structure. Even if we
3900 * change the data structure relationships, this may still
3901 * be useful for storing pre-connect address information.
3902 */
3903 ep = sctp_endpoint_new(sk, GFP_KERNEL);
3904 if (!ep)
3905 return -ENOMEM;
3906
3907 sp->ep = ep;
3908 sp->hmac = NULL;
3909
3910 SCTP_DBG_OBJCNT_INC(sock);
David S. Miller6f756a82008-11-23 17:34:03 -08003911
3912 local_bh_disable();
Vlad Yasevich81419d82010-04-28 08:47:20 +00003913 percpu_counter_inc(&sctp_sockets_allocated);
Eric Dumazet9a57f7f2008-11-17 02:41:00 -08003914 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
Michio Honda9f7d6532011-04-26 19:32:51 +09003915 if (sctp_default_auto_asconf) {
3916 list_add_tail(&sp->auto_asconf_list,
3917 &sctp_auto_asconf_splist);
3918 sp->do_auto_asconf = 1;
3919 } else
3920 sp->do_auto_asconf = 0;
David S. Miller6f756a82008-11-23 17:34:03 -08003921 local_bh_enable();
3922
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 return 0;
3924}
3925
3926/* Cleanup any SCTP per socket resources. */
Brian Haley7d06b2e2008-06-14 17:04:49 -07003927SCTP_STATIC void sctp_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928{
Michio Honda9f7d6532011-04-26 19:32:51 +09003929 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930
3931 SCTP_DEBUG_PRINTK("sctp_destroy_sock(sk: %p)\n", sk);
3932
3933 /* Release our hold on the endpoint. */
Michio Honda9f7d6532011-04-26 19:32:51 +09003934 sp = sctp_sk(sk);
Daniel Borkmann93f75342013-06-06 15:53:47 +02003935 /* This could happen during socket init, thus we bail out
3936 * early, since the rest of the below is not setup either.
3937 */
3938 if (sp->ep == NULL)
3939 return;
3940
Michio Honda9f7d6532011-04-26 19:32:51 +09003941 if (sp->do_auto_asconf) {
3942 sp->do_auto_asconf = 0;
3943 list_del(&sp->auto_asconf_list);
3944 }
3945 sctp_endpoint_free(sp->ep);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08003946 local_bh_disable();
Vlad Yasevich81419d82010-04-28 08:47:20 +00003947 percpu_counter_dec(&sctp_sockets_allocated);
Eric Dumazet9a57f7f2008-11-17 02:41:00 -08003948 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08003949 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950}
3951
3952/* API 4.1.7 shutdown() - TCP Style Syntax
3953 * int shutdown(int socket, int how);
3954 *
3955 * sd - the socket descriptor of the association to be closed.
3956 * how - Specifies the type of shutdown. The values are
3957 * as follows:
3958 * SHUT_RD
3959 * Disables further receive operations. No SCTP
3960 * protocol action is taken.
3961 * SHUT_WR
3962 * Disables further send operations, and initiates
3963 * the SCTP shutdown sequence.
3964 * SHUT_RDWR
3965 * Disables further send and receive operations
3966 * and initiates the SCTP shutdown sequence.
3967 */
3968SCTP_STATIC void sctp_shutdown(struct sock *sk, int how)
3969{
3970 struct sctp_endpoint *ep;
3971 struct sctp_association *asoc;
3972
3973 if (!sctp_style(sk, TCP))
3974 return;
3975
3976 if (how & SEND_SHUTDOWN) {
3977 ep = sctp_sk(sk)->ep;
3978 if (!list_empty(&ep->asocs)) {
3979 asoc = list_entry(ep->asocs.next,
3980 struct sctp_association, asocs);
3981 sctp_primitive_SHUTDOWN(asoc, NULL);
3982 }
3983 }
3984}
3985
3986/* 7.2.1 Association Status (SCTP_STATUS)
3987
3988 * Applications can retrieve current status information about an
3989 * association, including association state, peer receiver window size,
3990 * number of unacked data chunks, and number of data chunks pending
3991 * receipt. This information is read-only.
3992 */
3993static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
3994 char __user *optval,
3995 int __user *optlen)
3996{
3997 struct sctp_status status;
3998 struct sctp_association *asoc = NULL;
3999 struct sctp_transport *transport;
4000 sctp_assoc_t associd;
4001 int retval = 0;
4002
Neil Horman408f22e2007-06-16 14:03:45 -04004003 if (len < sizeof(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 retval = -EINVAL;
4005 goto out;
4006 }
4007
Neil Horman408f22e2007-06-16 14:03:45 -04004008 len = sizeof(status);
4009 if (copy_from_user(&status, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 retval = -EFAULT;
4011 goto out;
4012 }
4013
4014 associd = status.sstat_assoc_id;
4015 asoc = sctp_id2assoc(sk, associd);
4016 if (!asoc) {
4017 retval = -EINVAL;
4018 goto out;
4019 }
4020
4021 transport = asoc->peer.primary_path;
4022
4023 status.sstat_assoc_id = sctp_assoc2id(asoc);
4024 status.sstat_state = asoc->state;
4025 status.sstat_rwnd = asoc->peer.rwnd;
4026 status.sstat_unackdata = asoc->unack_data;
4027
4028 status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
4029 status.sstat_instrms = asoc->c.sinit_max_instreams;
4030 status.sstat_outstrms = asoc->c.sinit_num_ostreams;
4031 status.sstat_fragmentation_point = asoc->frag_point;
4032 status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Al Viro8cec6b82006-11-20 17:23:01 -08004033 memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
4034 transport->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 /* Map ipv4 address into v4-mapped-on-v6 address. */
4036 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk),
4037 (union sctp_addr *)&status.sstat_primary.spinfo_address);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004038 status.sstat_primary.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039 status.sstat_primary.spinfo_cwnd = transport->cwnd;
4040 status.sstat_primary.spinfo_srtt = transport->srtt;
4041 status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08004042 status.sstat_primary.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043
Frank Filz3f7a87d2005-06-20 13:14:57 -07004044 if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
4045 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
4046
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 if (put_user(len, optlen)) {
4048 retval = -EFAULT;
4049 goto out;
4050 }
4051
4052 SCTP_DEBUG_PRINTK("sctp_getsockopt_sctp_status(%d): %d %d %d\n",
4053 len, status.sstat_state, status.sstat_rwnd,
4054 status.sstat_assoc_id);
4055
4056 if (copy_to_user(optval, &status, len)) {
4057 retval = -EFAULT;
4058 goto out;
4059 }
4060
4061out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00004062 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063}
4064
4065
4066/* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
4067 *
4068 * Applications can retrieve information about a specific peer address
4069 * of an association, including its reachability state, congestion
4070 * window, and retransmission timer values. This information is
4071 * read-only.
4072 */
4073static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
4074 char __user *optval,
4075 int __user *optlen)
4076{
4077 struct sctp_paddrinfo pinfo;
4078 struct sctp_transport *transport;
4079 int retval = 0;
4080
Neil Horman408f22e2007-06-16 14:03:45 -04004081 if (len < sizeof(pinfo)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 retval = -EINVAL;
4083 goto out;
4084 }
4085
Neil Horman408f22e2007-06-16 14:03:45 -04004086 len = sizeof(pinfo);
4087 if (copy_from_user(&pinfo, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088 retval = -EFAULT;
4089 goto out;
4090 }
4091
4092 transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
4093 pinfo.spinfo_assoc_id);
4094 if (!transport)
4095 return -EINVAL;
4096
4097 pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004098 pinfo.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 pinfo.spinfo_cwnd = transport->cwnd;
4100 pinfo.spinfo_srtt = transport->srtt;
4101 pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08004102 pinfo.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103
Frank Filz3f7a87d2005-06-20 13:14:57 -07004104 if (pinfo.spinfo_state == SCTP_UNKNOWN)
4105 pinfo.spinfo_state = SCTP_ACTIVE;
4106
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107 if (put_user(len, optlen)) {
4108 retval = -EFAULT;
4109 goto out;
4110 }
4111
4112 if (copy_to_user(optval, &pinfo, len)) {
4113 retval = -EFAULT;
4114 goto out;
4115 }
4116
4117out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00004118 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119}
4120
4121/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
4122 *
4123 * This option is a on/off flag. If enabled no SCTP message
4124 * fragmentation will be performed. Instead if a message being sent
4125 * exceeds the current PMTU size, the message will NOT be sent and
4126 * instead a error will be indicated to the user.
4127 */
4128static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
4129 char __user *optval, int __user *optlen)
4130{
4131 int val;
4132
4133 if (len < sizeof(int))
4134 return -EINVAL;
4135
4136 len = sizeof(int);
4137 val = (sctp_sk(sk)->disable_fragments == 1);
4138 if (put_user(len, optlen))
4139 return -EFAULT;
4140 if (copy_to_user(optval, &val, len))
4141 return -EFAULT;
4142 return 0;
4143}
4144
4145/* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
4146 *
4147 * This socket option is used to specify various notifications and
4148 * ancillary data the user wishes to receive.
4149 */
4150static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
4151 int __user *optlen)
4152{
Thomas Grafacdd5982012-04-03 22:17:53 +00004153 if (len <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154 return -EINVAL;
Thomas Grafacdd5982012-04-03 22:17:53 +00004155 if (len > sizeof(struct sctp_event_subscribe))
4156 len = sizeof(struct sctp_event_subscribe);
Neil Horman408f22e2007-06-16 14:03:45 -04004157 if (put_user(len, optlen))
4158 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159 if (copy_to_user(optval, &sctp_sk(sk)->subscribe, len))
4160 return -EFAULT;
4161 return 0;
4162}
4163
4164/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
4165 *
4166 * This socket option is applicable to the UDP-style socket only. When
4167 * set it will cause associations that are idle for more than the
4168 * specified number of seconds to automatically close. An association
4169 * being idle is defined an association that has NOT sent or received
4170 * user data. The special value of '0' indicates that no automatic
4171 * close of any associations should be performed. The option expects an
4172 * integer defining the number of seconds of idle time before an
4173 * association is closed.
4174 */
4175static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
4176{
4177 /* Applicable to UDP-style socket only */
4178 if (sctp_style(sk, TCP))
4179 return -EOPNOTSUPP;
Neil Horman408f22e2007-06-16 14:03:45 -04004180 if (len < sizeof(int))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004182 len = sizeof(int);
4183 if (put_user(len, optlen))
4184 return -EFAULT;
4185 if (copy_to_user(optval, &sctp_sk(sk)->autoclose, sizeof(int)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186 return -EFAULT;
4187 return 0;
4188}
4189
4190/* Helper routine to branch off an association to a new socket. */
Benjamin Poirier0343c552012-03-08 05:55:58 +00004191int sctp_do_peeloff(struct sock *sk, sctp_assoc_t id, struct socket **sockp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192{
Benjamin Poirier0343c552012-03-08 05:55:58 +00004193 struct sctp_association *asoc = sctp_id2assoc(sk, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194 struct socket *sock;
Vlad Yasevichd570ee42007-05-15 16:32:39 -04004195 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196 int err = 0;
4197
Benjamin Poirier0343c552012-03-08 05:55:58 +00004198 if (!asoc)
4199 return -EINVAL;
4200
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 /* An association cannot be branched off from an already peeled-off
4202 * socket, nor is this supported for tcp style sockets.
4203 */
4204 if (!sctp_style(sk, UDP))
4205 return -EINVAL;
4206
4207 /* Create a new socket. */
4208 err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
4209 if (err < 0)
4210 return err;
4211
Vlad Yasevich914e1c82009-02-13 08:33:44 +00004212 sctp_copy_sock(sock->sk, sk, asoc);
Vlad Yasevich4f444302006-10-30 18:54:32 -08004213
4214 /* Make peeled-off sockets more like 1-1 accepted sockets.
4215 * Set the daddr and initialize id to something more random
4216 */
Vlad Yasevichd570ee42007-05-15 16:32:39 -04004217 af = sctp_get_af_specific(asoc->peer.primary_addr.sa.sa_family);
4218 af->to_sk_daddr(&asoc->peer.primary_addr, sk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00004219
4220 /* Populate the fields of the newsk from the oldsk and migrate the
4221 * asoc to the newsk.
4222 */
4223 sctp_sock_migrate(sk, sock->sk, asoc, SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
Vlad Yasevich4f444302006-10-30 18:54:32 -08004224
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 *sockp = sock;
4226
4227 return err;
4228}
Benjamin Poirier0343c552012-03-08 05:55:58 +00004229EXPORT_SYMBOL(sctp_do_peeloff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230
4231static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
4232{
4233 sctp_peeloff_arg_t peeloff;
4234 struct socket *newsock;
4235 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236
Neil Horman408f22e2007-06-16 14:03:45 -04004237 if (len < sizeof(sctp_peeloff_arg_t))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004239 len = sizeof(sctp_peeloff_arg_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 if (copy_from_user(&peeloff, optval, len))
4241 return -EFAULT;
4242
Benjamin Poirier0343c552012-03-08 05:55:58 +00004243 retval = sctp_do_peeloff(sk, peeloff.associd, &newsock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 if (retval < 0)
4245 goto out;
4246
4247 /* Map the socket to an unused fd that can be returned to the user. */
Ulrich Dreppera677a032008-07-23 21:29:17 -07004248 retval = sock_map_fd(newsock, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 if (retval < 0) {
4250 sock_release(newsock);
4251 goto out;
4252 }
4253
Benjamin Poirier0343c552012-03-08 05:55:58 +00004254 SCTP_DEBUG_PRINTK("%s: sk: %p newsk: %p sd: %d\n",
4255 __func__, sk, newsock->sk, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256
4257 /* Return the fd mapped to the new socket. */
4258 peeloff.sd = retval;
Neil Horman408f22e2007-06-16 14:03:45 -04004259 if (put_user(len, optlen))
4260 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 if (copy_to_user(optval, &peeloff, len))
4262 retval = -EFAULT;
4263
4264out:
4265 return retval;
4266}
4267
4268/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
4269 *
4270 * Applications can enable or disable heartbeats for any peer address of
4271 * an association, modify an address's heartbeat interval, force a
4272 * heartbeat to be sent immediately, and adjust the address's maximum
4273 * number of retransmissions sent before an address is considered
4274 * unreachable. The following structure is used to access and modify an
4275 * address's parameters:
4276 *
4277 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08004278 * sctp_assoc_t spp_assoc_id;
4279 * struct sockaddr_storage spp_address;
4280 * uint32_t spp_hbinterval;
4281 * uint16_t spp_pathmaxrxt;
4282 * uint32_t spp_pathmtu;
4283 * uint32_t spp_sackdelay;
4284 * uint32_t spp_flags;
4285 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08004287 * spp_assoc_id - (one-to-many style socket) This is filled in the
4288 * application, and identifies the association for
4289 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290 * spp_address - This specifies which address is of interest.
4291 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08004292 * in milliseconds. If a value of zero
4293 * is present in this field then no changes are to
4294 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 * spp_pathmaxrxt - This contains the maximum number of
4296 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08004297 * considered unreachable. If a value of zero
4298 * is present in this field then no changes are to
4299 * be made to this parameter.
4300 * spp_pathmtu - When Path MTU discovery is disabled the value
4301 * specified here will be the "fixed" path mtu.
4302 * Note that if the spp_address field is empty
4303 * then all associations on this address will
4304 * have this fixed path mtu set upon them.
4305 *
4306 * spp_sackdelay - When delayed sack is enabled, this value specifies
4307 * the number of milliseconds that sacks will be delayed
4308 * for. This value will apply to all addresses of an
4309 * association if the spp_address field is empty. Note
4310 * also, that if delayed sack is enabled and this
4311 * value is set to 0, no change is made to the last
4312 * recorded delayed sack timer value.
4313 *
4314 * spp_flags - These flags are used to control various features
4315 * on an association. The flag field may contain
4316 * zero or more of the following options.
4317 *
4318 * SPP_HB_ENABLE - Enable heartbeats on the
4319 * specified address. Note that if the address
4320 * field is empty all addresses for the association
4321 * have heartbeats enabled upon them.
4322 *
4323 * SPP_HB_DISABLE - Disable heartbeats on the
4324 * speicifed address. Note that if the address
4325 * field is empty all addresses for the association
4326 * will have their heartbeats disabled. Note also
4327 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
4328 * mutually exclusive, only one of these two should
4329 * be specified. Enabling both fields will have
4330 * undetermined results.
4331 *
4332 * SPP_HB_DEMAND - Request a user initiated heartbeat
4333 * to be made immediately.
4334 *
4335 * SPP_PMTUD_ENABLE - This field will enable PMTU
4336 * discovery upon the specified address. Note that
4337 * if the address feild is empty then all addresses
4338 * on the association are effected.
4339 *
4340 * SPP_PMTUD_DISABLE - This field will disable PMTU
4341 * discovery upon the specified address. Note that
4342 * if the address feild is empty then all addresses
4343 * on the association are effected. Not also that
4344 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
4345 * exclusive. Enabling both will have undetermined
4346 * results.
4347 *
4348 * SPP_SACKDELAY_ENABLE - Setting this flag turns
4349 * on delayed sack. The time specified in spp_sackdelay
4350 * is used to specify the sack delay for this address. Note
4351 * that if spp_address is empty then all addresses will
4352 * enable delayed sack and take on the sack delay
4353 * value specified in spp_sackdelay.
4354 * SPP_SACKDELAY_DISABLE - Setting this flag turns
4355 * off delayed sack. If the spp_address field is blank then
4356 * delayed sack is disabled for the entire association. Note
4357 * also that this field is mutually exclusive to
4358 * SPP_SACKDELAY_ENABLE, setting both will have undefined
4359 * results.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360 */
4361static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
Frank Filz52ccb8e2005-12-22 11:36:46 -08004362 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363{
Frank Filz52ccb8e2005-12-22 11:36:46 -08004364 struct sctp_paddrparams params;
4365 struct sctp_transport *trans = NULL;
4366 struct sctp_association *asoc = NULL;
4367 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368
Neil Horman408f22e2007-06-16 14:03:45 -04004369 if (len < sizeof(struct sctp_paddrparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004371 len = sizeof(struct sctp_paddrparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372 if (copy_from_user(&params, optval, len))
4373 return -EFAULT;
4374
Frank Filz52ccb8e2005-12-22 11:36:46 -08004375 /* If an address other than INADDR_ANY is specified, and
4376 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377 */
Vlad Yasevich52cae8f2008-08-18 10:34:34 -04004378 if (!sctp_is_any(sk, ( union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08004379 trans = sctp_addr_id2transport(sk, &params.spp_address,
4380 params.spp_assoc_id);
4381 if (!trans) {
4382 SCTP_DEBUG_PRINTK("Failed no transport\n");
4383 return -EINVAL;
4384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385 }
4386
Frank Filz52ccb8e2005-12-22 11:36:46 -08004387 /* Get association, if assoc_id != 0 and the socket is a one
4388 * to many style socket, and an association was not found, then
4389 * the id was invalid.
4390 */
4391 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
4392 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP)) {
4393 SCTP_DEBUG_PRINTK("Failed no association\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08004395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396
Frank Filz52ccb8e2005-12-22 11:36:46 -08004397 if (trans) {
4398 /* Fetch transport values. */
4399 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
4400 params.spp_pathmtu = trans->pathmtu;
4401 params.spp_pathmaxrxt = trans->pathmaxrxt;
4402 params.spp_sackdelay = jiffies_to_msecs(trans->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403
Frank Filz52ccb8e2005-12-22 11:36:46 -08004404 /*draft-11 doesn't say what to return in spp_flags*/
4405 params.spp_flags = trans->param_flags;
4406 } else if (asoc) {
4407 /* Fetch association values. */
4408 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
4409 params.spp_pathmtu = asoc->pathmtu;
4410 params.spp_pathmaxrxt = asoc->pathmaxrxt;
4411 params.spp_sackdelay = jiffies_to_msecs(asoc->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412
Frank Filz52ccb8e2005-12-22 11:36:46 -08004413 /*draft-11 doesn't say what to return in spp_flags*/
4414 params.spp_flags = asoc->param_flags;
4415 } else {
4416 /* Fetch socket values. */
4417 params.spp_hbinterval = sp->hbinterval;
4418 params.spp_pathmtu = sp->pathmtu;
4419 params.spp_sackdelay = sp->sackdelay;
4420 params.spp_pathmaxrxt = sp->pathmaxrxt;
4421
4422 /*draft-11 doesn't say what to return in spp_flags*/
4423 params.spp_flags = sp->param_flags;
4424 }
4425
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426 if (copy_to_user(optval, &params, len))
4427 return -EFAULT;
4428
4429 if (put_user(len, optlen))
4430 return -EFAULT;
4431
4432 return 0;
4433}
4434
Wei Yongjund364d922008-05-09 15:13:26 -07004435/*
4436 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08004437 *
Wei Yongjund364d922008-05-09 15:13:26 -07004438 * This option will effect the way delayed acks are performed. This
4439 * option allows you to get or set the delayed ack time, in
4440 * milliseconds. It also allows changing the delayed ack frequency.
4441 * Changing the frequency to 1 disables the delayed sack algorithm. If
4442 * the assoc_id is 0, then this sets or gets the endpoints default
4443 * values. If the assoc_id field is non-zero, then the set or get
4444 * effects the specified association for the one to many model (the
4445 * assoc_id field is ignored by the one to one model). Note that if
4446 * sack_delay or sack_freq are 0 when setting this option, then the
4447 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08004448 *
Wei Yongjund364d922008-05-09 15:13:26 -07004449 * struct sctp_sack_info {
4450 * sctp_assoc_t sack_assoc_id;
4451 * uint32_t sack_delay;
4452 * uint32_t sack_freq;
4453 * };
Frank Filz77086102005-12-22 11:37:30 -08004454 *
Wei Yongjund364d922008-05-09 15:13:26 -07004455 * sack_assoc_id - This parameter, indicates which association the user
4456 * is performing an action upon. Note that if this field's value is
4457 * zero then the endpoints default value is changed (effecting future
4458 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08004459 *
Wei Yongjund364d922008-05-09 15:13:26 -07004460 * sack_delay - This parameter contains the number of milliseconds that
4461 * the user is requesting the delayed ACK timer be set to. Note that
4462 * this value is defined in the standard to be between 200 and 500
4463 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08004464 *
Wei Yongjund364d922008-05-09 15:13:26 -07004465 * sack_freq - This parameter contains the number of packets that must
4466 * be received before a sack is sent without waiting for the delay
4467 * timer to expire. The default value for this is 2, setting this
4468 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08004469 */
Wei Yongjund364d922008-05-09 15:13:26 -07004470static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
Frank Filz77086102005-12-22 11:37:30 -08004471 char __user *optval,
4472 int __user *optlen)
4473{
Wei Yongjund364d922008-05-09 15:13:26 -07004474 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08004475 struct sctp_association *asoc = NULL;
4476 struct sctp_sock *sp = sctp_sk(sk);
4477
Wei Yongjund364d922008-05-09 15:13:26 -07004478 if (len >= sizeof(struct sctp_sack_info)) {
4479 len = sizeof(struct sctp_sack_info);
4480
4481 if (copy_from_user(&params, optval, len))
4482 return -EFAULT;
4483 } else if (len == sizeof(struct sctp_assoc_value)) {
Joe Perches145ce502010-08-24 13:21:08 +00004484 pr_warn("Use of struct sctp_assoc_value in delayed_ack socket option deprecated\n");
4485 pr_warn("Use struct sctp_sack_info instead\n");
Wei Yongjund364d922008-05-09 15:13:26 -07004486 if (copy_from_user(&params, optval, len))
4487 return -EFAULT;
4488 } else
Frank Filz77086102005-12-22 11:37:30 -08004489 return - EINVAL;
4490
Wei Yongjund364d922008-05-09 15:13:26 -07004491 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08004492 * to many style socket, and an association was not found, then
4493 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004494 */
Wei Yongjund364d922008-05-09 15:13:26 -07004495 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
4496 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08004497 return -EINVAL;
4498
4499 if (asoc) {
4500 /* Fetch association values. */
Wei Yongjund364d922008-05-09 15:13:26 -07004501 if (asoc->param_flags & SPP_SACKDELAY_ENABLE) {
4502 params.sack_delay = jiffies_to_msecs(
Frank Filz77086102005-12-22 11:37:30 -08004503 asoc->sackdelay);
Wei Yongjund364d922008-05-09 15:13:26 -07004504 params.sack_freq = asoc->sackfreq;
4505
4506 } else {
4507 params.sack_delay = 0;
4508 params.sack_freq = 1;
4509 }
Frank Filz77086102005-12-22 11:37:30 -08004510 } else {
4511 /* Fetch socket values. */
Wei Yongjund364d922008-05-09 15:13:26 -07004512 if (sp->param_flags & SPP_SACKDELAY_ENABLE) {
4513 params.sack_delay = sp->sackdelay;
4514 params.sack_freq = sp->sackfreq;
4515 } else {
4516 params.sack_delay = 0;
4517 params.sack_freq = 1;
4518 }
Frank Filz77086102005-12-22 11:37:30 -08004519 }
4520
4521 if (copy_to_user(optval, &params, len))
4522 return -EFAULT;
4523
4524 if (put_user(len, optlen))
4525 return -EFAULT;
4526
4527 return 0;
4528}
4529
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
4531 *
4532 * Applications can specify protocol parameters for the default association
4533 * initialization. The option name argument to setsockopt() and getsockopt()
4534 * is SCTP_INITMSG.
4535 *
4536 * Setting initialization parameters is effective only on an unconnected
4537 * socket (for UDP-style sockets only future associations are effected
4538 * by the change). With TCP-style sockets, this option is inherited by
4539 * sockets derived from a listener socket.
4540 */
4541static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
4542{
Neil Horman408f22e2007-06-16 14:03:45 -04004543 if (len < sizeof(struct sctp_initmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004545 len = sizeof(struct sctp_initmsg);
4546 if (put_user(len, optlen))
4547 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
4549 return -EFAULT;
4550 return 0;
4551}
4552
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004554static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
4555 char __user *optval, int __user *optlen)
4556{
4557 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004558 int cnt = 0;
4559 struct sctp_getaddrs getaddrs;
4560 struct sctp_transport *from;
4561 void __user *to;
4562 union sctp_addr temp;
4563 struct sctp_sock *sp = sctp_sk(sk);
4564 int addrlen;
4565 size_t space_left;
4566 int bytes_copied;
4567
4568 if (len < sizeof(struct sctp_getaddrs))
4569 return -EINVAL;
4570
4571 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
4572 return -EFAULT;
4573
4574 /* For UDP-style sockets, id specifies the association to query. */
4575 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
4576 if (!asoc)
4577 return -EINVAL;
4578
4579 to = optval + offsetof(struct sctp_getaddrs,addrs);
Neil Horman186e2342007-06-18 19:59:16 -04004580 space_left = len - offsetof(struct sctp_getaddrs,addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004581
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07004582 list_for_each_entry(from, &asoc->peer.transport_addr_list,
4583 transports) {
Al Virob3f5b3b2006-11-20 17:22:43 -08004584 memcpy(&temp, &from->ipaddr, sizeof(temp));
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004585 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp, &temp);
Vlad Yasevicha5f4cea2010-04-30 21:42:42 -04004586 addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004587 if (space_left < addrlen)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004588 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004589 if (copy_to_user(to, &temp, addrlen))
4590 return -EFAULT;
4591 to += addrlen;
4592 cnt++;
4593 space_left -= addrlen;
4594 }
4595
4596 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
4597 return -EFAULT;
4598 bytes_copied = ((char __user *)to) - optval;
4599 if (put_user(bytes_copied, optlen))
4600 return -EFAULT;
4601
4602 return 0;
4603}
4604
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004605static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to,
4606 size_t space_left, int *bytes_copied)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004607{
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004608 struct sctp_sockaddr_entry *addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004609 union sctp_addr temp;
4610 int cnt = 0;
4611 int addrlen;
4612
Vlad Yasevich29303542007-09-16 16:02:12 -07004613 rcu_read_lock();
4614 list_for_each_entry_rcu(addr, &sctp_local_addr_list, list) {
4615 if (!addr->valid)
4616 continue;
4617
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004618 if ((PF_INET == sk->sk_family) &&
Al Viro6244be42006-11-20 17:21:44 -08004619 (AF_INET6 == addr->a.sa.sa_family))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004620 continue;
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07004621 if ((PF_INET6 == sk->sk_family) &&
4622 inet_v6_ipv6only(sk) &&
4623 (AF_INET == addr->a.sa.sa_family))
4624 continue;
Al Viro6244be42006-11-20 17:21:44 -08004625 memcpy(&temp, &addr->a, sizeof(temp));
Vlad Yasevichb46ae362008-01-28 14:25:36 -05004626 if (!temp.v4.sin_port)
4627 temp.v4.sin_port = htons(port);
4628
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004629 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk),
4630 &temp);
4631 addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len;
Vlad Yasevich29303542007-09-16 16:02:12 -07004632 if (space_left < addrlen) {
4633 cnt = -ENOMEM;
4634 break;
4635 }
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004636 memcpy(to, &temp, addrlen);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08004637
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004638 to += addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004639 cnt ++;
4640 space_left -= addrlen;
Vlad Yasevich3663c302007-07-03 12:43:12 -04004641 *bytes_copied += addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004642 }
Vlad Yasevich29303542007-09-16 16:02:12 -07004643 rcu_read_unlock();
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004644
4645 return cnt;
4646}
4647
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004649static int sctp_getsockopt_local_addrs(struct sock *sk, int len,
4650 char __user *optval, int __user *optlen)
4651{
4652 struct sctp_bind_addr *bp;
4653 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004654 int cnt = 0;
4655 struct sctp_getaddrs getaddrs;
4656 struct sctp_sockaddr_entry *addr;
4657 void __user *to;
4658 union sctp_addr temp;
4659 struct sctp_sock *sp = sctp_sk(sk);
4660 int addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004661 int err = 0;
4662 size_t space_left;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004663 int bytes_copied = 0;
4664 void *addrs;
Vlad Yasevich70b57b82007-05-09 13:51:31 -07004665 void *buf;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004666
Neil Horman408f22e2007-06-16 14:03:45 -04004667 if (len < sizeof(struct sctp_getaddrs))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004668 return -EINVAL;
4669
4670 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
4671 return -EFAULT;
4672
4673 /*
4674 * For UDP-style sockets, id specifies the association to query.
4675 * If the id field is set to the value '0' then the locally bound
4676 * addresses are returned without regard to any particular
4677 * association.
4678 */
4679 if (0 == getaddrs.assoc_id) {
4680 bp = &sctp_sk(sk)->ep->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004681 } else {
4682 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
4683 if (!asoc)
4684 return -EINVAL;
4685 bp = &asoc->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004686 }
4687
4688 to = optval + offsetof(struct sctp_getaddrs,addrs);
Neil Horman186e2342007-06-18 19:59:16 -04004689 space_left = len - offsetof(struct sctp_getaddrs,addrs);
4690
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004691 addrs = kmalloc(space_left, GFP_KERNEL);
4692 if (!addrs)
4693 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004694
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004695 /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
4696 * addresses from the global local address list.
4697 */
4698 if (sctp_list_single_entry(&bp->address_list)) {
4699 addr = list_entry(bp->address_list.next,
4700 struct sctp_sockaddr_entry, list);
Vlad Yasevich52cae8f2008-08-18 10:34:34 -04004701 if (sctp_is_any(sk, &addr->a)) {
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004702 cnt = sctp_copy_laddrs(sk, bp->port, addrs,
4703 space_left, &bytes_copied);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004704 if (cnt < 0) {
4705 err = cnt;
Vlad Yasevich559cf712007-09-16 16:03:28 -07004706 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004707 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004708 goto copy_getaddrs;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004709 }
4710 }
4711
Vlad Yasevich70b57b82007-05-09 13:51:31 -07004712 buf = addrs;
Vlad Yasevich559cf712007-09-16 16:03:28 -07004713 /* Protection on the bound address list is not needed since
4714 * in the socket option context we hold a socket lock and
4715 * thus the bound address list can't change.
4716 */
4717 list_for_each_entry(addr, &bp->address_list, list) {
Al Viro6244be42006-11-20 17:21:44 -08004718 memcpy(&temp, &addr->a, sizeof(temp));
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004719 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp, &temp);
4720 addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004721 if (space_left < addrlen) {
4722 err = -ENOMEM; /*fixme: right error?*/
Vlad Yasevich559cf712007-09-16 16:03:28 -07004723 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004724 }
Vlad Yasevich70b57b82007-05-09 13:51:31 -07004725 memcpy(buf, &temp, addrlen);
4726 buf += addrlen;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004727 bytes_copied += addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004728 cnt ++;
4729 space_left -= addrlen;
4730 }
4731
4732copy_getaddrs:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004733 if (copy_to_user(to, addrs, bytes_copied)) {
4734 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02004735 goto out;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004736 }
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04004737 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num)) {
4738 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02004739 goto out;
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04004740 }
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004741 if (put_user(bytes_copied, optlen))
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04004742 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02004743out:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004744 kfree(addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004745 return err;
4746}
4747
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
4749 *
4750 * Requests that the local SCTP stack use the enclosed peer address as
4751 * the association primary. The enclosed address must be one of the
4752 * association peer's addresses.
4753 */
4754static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
4755 char __user *optval, int __user *optlen)
4756{
4757 struct sctp_prim prim;
4758 struct sctp_association *asoc;
4759 struct sctp_sock *sp = sctp_sk(sk);
4760
Neil Horman408f22e2007-06-16 14:03:45 -04004761 if (len < sizeof(struct sctp_prim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762 return -EINVAL;
4763
Neil Horman408f22e2007-06-16 14:03:45 -04004764 len = sizeof(struct sctp_prim);
4765
4766 if (copy_from_user(&prim, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767 return -EFAULT;
4768
4769 asoc = sctp_id2assoc(sk, prim.ssp_assoc_id);
4770 if (!asoc)
4771 return -EINVAL;
4772
4773 if (!asoc->peer.primary_path)
4774 return -ENOTCONN;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004775
Al Viro8cec6b82006-11-20 17:23:01 -08004776 memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr,
4777 asoc->peer.primary_path->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778
4779 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp,
4780 (union sctp_addr *)&prim.ssp_addr);
4781
Neil Horman408f22e2007-06-16 14:03:45 -04004782 if (put_user(len, optlen))
4783 return -EFAULT;
4784 if (copy_to_user(optval, &prim, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785 return -EFAULT;
4786
4787 return 0;
4788}
4789
4790/*
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004791 * 7.1.11 Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792 *
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004793 * Requests that the local endpoint set the specified Adaptation Layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 * Indication parameter for all future INIT and INIT-ACK exchanges.
4795 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004796static int sctp_getsockopt_adaptation_layer(struct sock *sk, int len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797 char __user *optval, int __user *optlen)
4798{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004799 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800
Neil Horman408f22e2007-06-16 14:03:45 -04004801 if (len < sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802 return -EINVAL;
4803
Neil Horman408f22e2007-06-16 14:03:45 -04004804 len = sizeof(struct sctp_setadaptation);
4805
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004806 adaptation.ssb_adaptation_ind = sctp_sk(sk)->adaptation_ind;
Neil Horman408f22e2007-06-16 14:03:45 -04004807
4808 if (put_user(len, optlen))
4809 return -EFAULT;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004810 if (copy_to_user(optval, &adaptation, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811 return -EFAULT;
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07004812
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813 return 0;
4814}
4815
4816/*
4817 *
4818 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
4819 *
4820 * Applications that wish to use the sendto() system call may wish to
4821 * specify a default set of parameters that would normally be supplied
4822 * through the inclusion of ancillary data. This socket option allows
4823 * such an application to set the default sctp_sndrcvinfo structure.
4824
4825
4826 * The application that wishes to use this socket option simply passes
4827 * in to this call the sctp_sndrcvinfo structure defined in Section
4828 * 5.2.2) The input parameters accepted by this call include
4829 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
4830 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
4831 * to this call if the caller is using the UDP model.
4832 *
4833 * For getsockopt, it get the default sctp_sndrcvinfo structure.
4834 */
4835static int sctp_getsockopt_default_send_param(struct sock *sk,
4836 int len, char __user *optval,
4837 int __user *optlen)
4838{
4839 struct sctp_sndrcvinfo info;
4840 struct sctp_association *asoc;
4841 struct sctp_sock *sp = sctp_sk(sk);
4842
Neil Horman408f22e2007-06-16 14:03:45 -04004843 if (len < sizeof(struct sctp_sndrcvinfo))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004845
4846 len = sizeof(struct sctp_sndrcvinfo);
4847
4848 if (copy_from_user(&info, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849 return -EFAULT;
4850
4851 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
4852 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
4853 return -EINVAL;
4854
4855 if (asoc) {
4856 info.sinfo_stream = asoc->default_stream;
4857 info.sinfo_flags = asoc->default_flags;
4858 info.sinfo_ppid = asoc->default_ppid;
4859 info.sinfo_context = asoc->default_context;
4860 info.sinfo_timetolive = asoc->default_timetolive;
4861 } else {
4862 info.sinfo_stream = sp->default_stream;
4863 info.sinfo_flags = sp->default_flags;
4864 info.sinfo_ppid = sp->default_ppid;
4865 info.sinfo_context = sp->default_context;
4866 info.sinfo_timetolive = sp->default_timetolive;
4867 }
4868
Neil Horman408f22e2007-06-16 14:03:45 -04004869 if (put_user(len, optlen))
4870 return -EFAULT;
4871 if (copy_to_user(optval, &info, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872 return -EFAULT;
4873
4874 return 0;
4875}
4876
4877/*
4878 *
4879 * 7.1.5 SCTP_NODELAY
4880 *
4881 * Turn on/off any Nagle-like algorithm. This means that packets are
4882 * generally sent as soon as possible and no unnecessary delays are
4883 * introduced, at the cost of more packets in the network. Expects an
4884 * integer boolean flag.
4885 */
4886
4887static int sctp_getsockopt_nodelay(struct sock *sk, int len,
4888 char __user *optval, int __user *optlen)
4889{
4890 int val;
4891
4892 if (len < sizeof(int))
4893 return -EINVAL;
4894
4895 len = sizeof(int);
4896 val = (sctp_sk(sk)->nodelay == 1);
4897 if (put_user(len, optlen))
4898 return -EFAULT;
4899 if (copy_to_user(optval, &val, len))
4900 return -EFAULT;
4901 return 0;
4902}
4903
4904/*
4905 *
4906 * 7.1.1 SCTP_RTOINFO
4907 *
4908 * The protocol parameters used to initialize and bound retransmission
4909 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
4910 * and modify these parameters.
4911 * All parameters are time values, in milliseconds. A value of 0, when
4912 * modifying the parameters, indicates that the current value should not
4913 * be changed.
4914 *
4915 */
4916static int sctp_getsockopt_rtoinfo(struct sock *sk, int len,
4917 char __user *optval,
4918 int __user *optlen) {
4919 struct sctp_rtoinfo rtoinfo;
4920 struct sctp_association *asoc;
4921
Neil Horman408f22e2007-06-16 14:03:45 -04004922 if (len < sizeof (struct sctp_rtoinfo))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923 return -EINVAL;
4924
Neil Horman408f22e2007-06-16 14:03:45 -04004925 len = sizeof(struct sctp_rtoinfo);
4926
4927 if (copy_from_user(&rtoinfo, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928 return -EFAULT;
4929
4930 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
4931
4932 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
4933 return -EINVAL;
4934
4935 /* Values corresponding to the specific association. */
4936 if (asoc) {
4937 rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial);
4938 rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max);
4939 rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min);
4940 } else {
4941 /* Values corresponding to the endpoint. */
4942 struct sctp_sock *sp = sctp_sk(sk);
4943
4944 rtoinfo.srto_initial = sp->rtoinfo.srto_initial;
4945 rtoinfo.srto_max = sp->rtoinfo.srto_max;
4946 rtoinfo.srto_min = sp->rtoinfo.srto_min;
4947 }
4948
4949 if (put_user(len, optlen))
4950 return -EFAULT;
4951
4952 if (copy_to_user(optval, &rtoinfo, len))
4953 return -EFAULT;
4954
4955 return 0;
4956}
4957
4958/*
4959 *
4960 * 7.1.2 SCTP_ASSOCINFO
4961 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02004962 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963 * of the association.
4964 * Returns an error if the new association retransmission value is
4965 * greater than the sum of the retransmission value of the peer.
4966 * See [SCTP] for more information.
4967 *
4968 */
4969static int sctp_getsockopt_associnfo(struct sock *sk, int len,
4970 char __user *optval,
4971 int __user *optlen)
4972{
4973
4974 struct sctp_assocparams assocparams;
4975 struct sctp_association *asoc;
4976 struct list_head *pos;
4977 int cnt = 0;
4978
Neil Horman408f22e2007-06-16 14:03:45 -04004979 if (len < sizeof (struct sctp_assocparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980 return -EINVAL;
4981
Neil Horman408f22e2007-06-16 14:03:45 -04004982 len = sizeof(struct sctp_assocparams);
4983
4984 if (copy_from_user(&assocparams, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985 return -EFAULT;
4986
4987 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
4988
4989 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
4990 return -EINVAL;
4991
4992 /* Values correspoinding to the specific association */
Vladislav Yasevich17337212005-04-28 11:57:54 -07004993 if (asoc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994 assocparams.sasoc_asocmaxrxt = asoc->max_retrans;
4995 assocparams.sasoc_peer_rwnd = asoc->peer.rwnd;
4996 assocparams.sasoc_local_rwnd = asoc->a_rwnd;
4997 assocparams.sasoc_cookie_life = (asoc->cookie_life.tv_sec
4998 * 1000) +
4999 (asoc->cookie_life.tv_usec
5000 / 1000);
5001
5002 list_for_each(pos, &asoc->peer.transport_addr_list) {
5003 cnt ++;
5004 }
5005
5006 assocparams.sasoc_number_peer_destinations = cnt;
5007 } else {
5008 /* Values corresponding to the endpoint */
5009 struct sctp_sock *sp = sctp_sk(sk);
5010
5011 assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt;
5012 assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd;
5013 assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd;
5014 assocparams.sasoc_cookie_life =
5015 sp->assocparams.sasoc_cookie_life;
5016 assocparams.sasoc_number_peer_destinations =
5017 sp->assocparams.
5018 sasoc_number_peer_destinations;
5019 }
5020
5021 if (put_user(len, optlen))
5022 return -EFAULT;
5023
5024 if (copy_to_user(optval, &assocparams, len))
5025 return -EFAULT;
5026
5027 return 0;
5028}
5029
5030/*
5031 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
5032 *
5033 * This socket option is a boolean flag which turns on or off mapped V4
5034 * addresses. If this option is turned on and the socket is type
5035 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
5036 * If this option is turned off, then no mapping will be done of V4
5037 * addresses and a user will receive both PF_INET6 and PF_INET type
5038 * addresses on the socket.
5039 */
5040static int sctp_getsockopt_mappedv4(struct sock *sk, int len,
5041 char __user *optval, int __user *optlen)
5042{
5043 int val;
5044 struct sctp_sock *sp = sctp_sk(sk);
5045
5046 if (len < sizeof(int))
5047 return -EINVAL;
5048
5049 len = sizeof(int);
5050 val = sp->v4mapped;
5051 if (put_user(len, optlen))
5052 return -EFAULT;
5053 if (copy_to_user(optval, &val, len))
5054 return -EFAULT;
5055
5056 return 0;
5057}
5058
5059/*
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005060 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
5061 * (chapter and verse is quoted at sctp_setsockopt_context())
5062 */
5063static int sctp_getsockopt_context(struct sock *sk, int len,
5064 char __user *optval, int __user *optlen)
5065{
5066 struct sctp_assoc_value params;
5067 struct sctp_sock *sp;
5068 struct sctp_association *asoc;
5069
Neil Horman408f22e2007-06-16 14:03:45 -04005070 if (len < sizeof(struct sctp_assoc_value))
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005071 return -EINVAL;
5072
Neil Horman408f22e2007-06-16 14:03:45 -04005073 len = sizeof(struct sctp_assoc_value);
5074
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005075 if (copy_from_user(&params, optval, len))
5076 return -EFAULT;
5077
5078 sp = sctp_sk(sk);
5079
5080 if (params.assoc_id != 0) {
5081 asoc = sctp_id2assoc(sk, params.assoc_id);
5082 if (!asoc)
5083 return -EINVAL;
5084 params.assoc_value = asoc->default_rcv_context;
5085 } else {
5086 params.assoc_value = sp->default_rcv_context;
5087 }
5088
5089 if (put_user(len, optlen))
5090 return -EFAULT;
5091 if (copy_to_user(optval, &params, len))
5092 return -EFAULT;
5093
5094 return 0;
5095}
5096
5097/*
Wei Yongjune89c2092008-12-25 16:54:58 -08005098 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
5099 * This option will get or set the maximum size to put in any outgoing
5100 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101 * fragmented by SCTP into the specified size. Note that the underlying
5102 * SCTP implementation may fragment into smaller sized chunks when the
5103 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08005104 * the user. The default value for this option is '0' which indicates
5105 * the user is NOT limiting fragmentation and only the PMTU will effect
5106 * SCTP's choice of DATA chunk size. Note also that values set larger
5107 * than the maximum size of an IP datagram will effectively let SCTP
5108 * control fragmentation (i.e. the same as setting this option to 0).
5109 *
5110 * The following structure is used to access and modify this parameter:
5111 *
5112 * struct sctp_assoc_value {
5113 * sctp_assoc_t assoc_id;
5114 * uint32_t assoc_value;
5115 * };
5116 *
5117 * assoc_id: This parameter is ignored for one-to-one style sockets.
5118 * For one-to-many style sockets this parameter indicates which
5119 * association the user is performing an action upon. Note that if
5120 * this field's value is zero then the endpoints default value is
5121 * changed (effecting future associations only).
5122 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123 */
5124static int sctp_getsockopt_maxseg(struct sock *sk, int len,
5125 char __user *optval, int __user *optlen)
5126{
Wei Yongjune89c2092008-12-25 16:54:58 -08005127 struct sctp_assoc_value params;
5128 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129
Wei Yongjune89c2092008-12-25 16:54:58 -08005130 if (len == sizeof(int)) {
Joe Perches145ce502010-08-24 13:21:08 +00005131 pr_warn("Use of int in maxseg socket option deprecated\n");
5132 pr_warn("Use struct sctp_assoc_value instead\n");
Wei Yongjune89c2092008-12-25 16:54:58 -08005133 params.assoc_id = 0;
5134 } else if (len >= sizeof(struct sctp_assoc_value)) {
5135 len = sizeof(struct sctp_assoc_value);
5136 if (copy_from_user(&params, optval, sizeof(params)))
5137 return -EFAULT;
5138 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 return -EINVAL;
5140
Wei Yongjune89c2092008-12-25 16:54:58 -08005141 asoc = sctp_id2assoc(sk, params.assoc_id);
5142 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
5143 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144
Wei Yongjune89c2092008-12-25 16:54:58 -08005145 if (asoc)
5146 params.assoc_value = asoc->frag_point;
5147 else
5148 params.assoc_value = sctp_sk(sk)->user_frag;
5149
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 if (put_user(len, optlen))
5151 return -EFAULT;
Wei Yongjune89c2092008-12-25 16:54:58 -08005152 if (len == sizeof(int)) {
5153 if (copy_to_user(optval, &params.assoc_value, len))
5154 return -EFAULT;
5155 } else {
5156 if (copy_to_user(optval, &params, len))
5157 return -EFAULT;
5158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159
5160 return 0;
5161}
5162
Vlad Yasevichb6e13312007-04-20 12:23:15 -07005163/*
5164 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
5165 * (chapter and verse is quoted at sctp_setsockopt_fragment_interleave())
5166 */
5167static int sctp_getsockopt_fragment_interleave(struct sock *sk, int len,
5168 char __user *optval, int __user *optlen)
5169{
5170 int val;
5171
5172 if (len < sizeof(int))
5173 return -EINVAL;
5174
5175 len = sizeof(int);
5176
5177 val = sctp_sk(sk)->frag_interleave;
5178 if (put_user(len, optlen))
5179 return -EFAULT;
5180 if (copy_to_user(optval, &val, len))
5181 return -EFAULT;
5182
5183 return 0;
5184}
5185
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07005186/*
5187 * 7.1.25. Set or Get the sctp partial delivery point
5188 * (chapter and verse is quoted at sctp_setsockopt_partial_delivery_point())
5189 */
5190static int sctp_getsockopt_partial_delivery_point(struct sock *sk, int len,
5191 char __user *optval,
5192 int __user *optlen)
5193{
YOSHIFUJI Hideaki9cbcbf42007-07-19 10:44:50 +09005194 u32 val;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07005195
5196 if (len < sizeof(u32))
5197 return -EINVAL;
5198
5199 len = sizeof(u32);
5200
5201 val = sctp_sk(sk)->pd_point;
5202 if (put_user(len, optlen))
5203 return -EFAULT;
5204 if (copy_to_user(optval, &val, len))
5205 return -EFAULT;
5206
Wei Yongjun7d743b72010-12-14 16:10:41 +00005207 return 0;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07005208}
5209
Vlad Yasevich70331572007-03-23 11:34:36 -07005210/*
5211 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
5212 * (chapter and verse is quoted at sctp_setsockopt_maxburst())
5213 */
5214static int sctp_getsockopt_maxburst(struct sock *sk, int len,
5215 char __user *optval,
5216 int __user *optlen)
5217{
Neil Horman219b99a2008-03-05 13:44:46 -08005218 struct sctp_assoc_value params;
5219 struct sctp_sock *sp;
5220 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07005221
Neil Horman219b99a2008-03-05 13:44:46 -08005222 if (len == sizeof(int)) {
Joe Perches145ce502010-08-24 13:21:08 +00005223 pr_warn("Use of int in max_burst socket option deprecated\n");
5224 pr_warn("Use struct sctp_assoc_value instead\n");
Neil Horman219b99a2008-03-05 13:44:46 -08005225 params.assoc_id = 0;
Wei Yongjunc6db93a2009-03-02 09:46:12 +00005226 } else if (len >= sizeof(struct sctp_assoc_value)) {
5227 len = sizeof(struct sctp_assoc_value);
Neil Horman219b99a2008-03-05 13:44:46 -08005228 if (copy_from_user(&params, optval, len))
5229 return -EFAULT;
5230 } else
5231 return -EINVAL;
Vlad Yasevich70331572007-03-23 11:34:36 -07005232
Neil Horman219b99a2008-03-05 13:44:46 -08005233 sp = sctp_sk(sk);
Vlad Yasevich70331572007-03-23 11:34:36 -07005234
Neil Horman219b99a2008-03-05 13:44:46 -08005235 if (params.assoc_id != 0) {
5236 asoc = sctp_id2assoc(sk, params.assoc_id);
5237 if (!asoc)
5238 return -EINVAL;
5239 params.assoc_value = asoc->max_burst;
5240 } else
5241 params.assoc_value = sp->max_burst;
5242
5243 if (len == sizeof(int)) {
5244 if (copy_to_user(optval, &params.assoc_value, len))
5245 return -EFAULT;
5246 } else {
5247 if (copy_to_user(optval, &params, len))
5248 return -EFAULT;
5249 }
5250
5251 return 0;
5252
Vlad Yasevich70331572007-03-23 11:34:36 -07005253}
5254
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005255static int sctp_getsockopt_hmac_ident(struct sock *sk, int len,
5256 char __user *optval, int __user *optlen)
5257{
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005258 struct sctp_hmacalgo __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005259 struct sctp_hmac_algo_param *hmacs;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005260 __u16 data_len = 0;
5261 u32 num_idents;
5262
5263 if (!sctp_auth_enable)
5264 return -EACCES;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005265
5266 hmacs = sctp_sk(sk)->ep->auth_hmacs_list;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005267 data_len = ntohs(hmacs->param_hdr.length) - sizeof(sctp_paramhdr_t);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005268
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005269 if (len < sizeof(struct sctp_hmacalgo) + data_len)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005270 return -EINVAL;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005271
5272 len = sizeof(struct sctp_hmacalgo) + data_len;
5273 num_idents = data_len / sizeof(u16);
5274
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005275 if (put_user(len, optlen))
5276 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005277 if (put_user(num_idents, &p->shmac_num_idents))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005278 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005279 if (copy_to_user(p->shmac_idents, hmacs->hmac_ids, data_len))
5280 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005281 return 0;
5282}
5283
5284static int sctp_getsockopt_active_key(struct sock *sk, int len,
5285 char __user *optval, int __user *optlen)
5286{
5287 struct sctp_authkeyid val;
5288 struct sctp_association *asoc;
5289
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005290 if (!sctp_auth_enable)
5291 return -EACCES;
5292
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005293 if (len < sizeof(struct sctp_authkeyid))
5294 return -EINVAL;
5295 if (copy_from_user(&val, optval, sizeof(struct sctp_authkeyid)))
5296 return -EFAULT;
5297
5298 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
5299 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
5300 return -EINVAL;
5301
5302 if (asoc)
5303 val.scact_keynumber = asoc->active_key_id;
5304 else
5305 val.scact_keynumber = sctp_sk(sk)->ep->active_key_id;
5306
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005307 len = sizeof(struct sctp_authkeyid);
5308 if (put_user(len, optlen))
5309 return -EFAULT;
5310 if (copy_to_user(optval, &val, len))
5311 return -EFAULT;
5312
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005313 return 0;
5314}
5315
5316static int sctp_getsockopt_peer_auth_chunks(struct sock *sk, int len,
5317 char __user *optval, int __user *optlen)
5318{
Al Viro411223c2007-10-14 19:21:20 +01005319 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005320 struct sctp_authchunks val;
5321 struct sctp_association *asoc;
5322 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005323 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005324 char __user *to;
5325
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005326 if (!sctp_auth_enable)
5327 return -EACCES;
5328
5329 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005330 return -EINVAL;
5331
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005332 if (copy_from_user(&val, optval, sizeof(struct sctp_authchunks)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005333 return -EFAULT;
5334
Al Viro411223c2007-10-14 19:21:20 +01005335 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005336 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
5337 if (!asoc)
5338 return -EINVAL;
5339
5340 ch = asoc->peer.peer_chunks;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005341 if (!ch)
5342 goto num;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005343
5344 /* See if the user provided enough room for all the data */
Vlad Yasevichb40db682008-02-27 14:40:37 -05005345 num_chunks = ntohs(ch->param_hdr.length) - sizeof(sctp_paramhdr_t);
5346 if (len < num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005347 return -EINVAL;
5348
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005349 if (copy_to_user(to, ch->chunks, num_chunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005350 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005351num:
5352 len = sizeof(struct sctp_authchunks) + num_chunks;
5353 if (put_user(len, optlen)) return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05005354 if (put_user(num_chunks, &p->gauth_number_of_chunks))
5355 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005356 return 0;
5357}
5358
5359static int sctp_getsockopt_local_auth_chunks(struct sock *sk, int len,
5360 char __user *optval, int __user *optlen)
5361{
Al Viro411223c2007-10-14 19:21:20 +01005362 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005363 struct sctp_authchunks val;
5364 struct sctp_association *asoc;
5365 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005366 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005367 char __user *to;
5368
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005369 if (!sctp_auth_enable)
5370 return -EACCES;
5371
5372 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005373 return -EINVAL;
5374
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005375 if (copy_from_user(&val, optval, sizeof(struct sctp_authchunks)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005376 return -EFAULT;
5377
Al Viro411223c2007-10-14 19:21:20 +01005378 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005379 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
5380 if (!asoc && val.gauth_assoc_id && sctp_style(sk, UDP))
5381 return -EINVAL;
5382
5383 if (asoc)
5384 ch = (struct sctp_chunks_param*)asoc->c.auth_chunks;
5385 else
5386 ch = sctp_sk(sk)->ep->auth_chunk_list;
5387
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005388 if (!ch)
5389 goto num;
5390
Vlad Yasevichb40db682008-02-27 14:40:37 -05005391 num_chunks = ntohs(ch->param_hdr.length) - sizeof(sctp_paramhdr_t);
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005392 if (len < sizeof(struct sctp_authchunks) + num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005393 return -EINVAL;
5394
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005395 if (copy_to_user(to, ch->chunks, num_chunks))
5396 return -EFAULT;
5397num:
5398 len = sizeof(struct sctp_authchunks) + num_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005399 if (put_user(len, optlen))
5400 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05005401 if (put_user(num_chunks, &p->gauth_number_of_chunks))
5402 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005403
5404 return 0;
5405}
5406
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08005407/*
5408 * 8.2.5. Get the Current Number of Associations (SCTP_GET_ASSOC_NUMBER)
5409 * This option gets the current number of associations that are attached
5410 * to a one-to-many style socket. The option value is an uint32_t.
5411 */
5412static int sctp_getsockopt_assoc_number(struct sock *sk, int len,
5413 char __user *optval, int __user *optlen)
5414{
5415 struct sctp_sock *sp = sctp_sk(sk);
5416 struct sctp_association *asoc;
5417 u32 val = 0;
5418
5419 if (sctp_style(sk, TCP))
5420 return -EOPNOTSUPP;
5421
5422 if (len < sizeof(u32))
5423 return -EINVAL;
5424
5425 len = sizeof(u32);
5426
5427 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
5428 val++;
5429 }
5430
5431 if (put_user(len, optlen))
5432 return -EFAULT;
5433 if (copy_to_user(optval, &val, len))
5434 return -EFAULT;
5435
5436 return 0;
5437}
5438
Wei Yongjun209ba422011-04-17 17:27:08 +00005439/*
Michio Honda7dc04d72011-04-26 20:16:31 +09005440 * 8.1.23 SCTP_AUTO_ASCONF
5441 * See the corresponding setsockopt entry as description
5442 */
5443static int sctp_getsockopt_auto_asconf(struct sock *sk, int len,
5444 char __user *optval, int __user *optlen)
5445{
5446 int val = 0;
5447
5448 if (len < sizeof(int))
5449 return -EINVAL;
5450
5451 len = sizeof(int);
5452 if (sctp_sk(sk)->do_auto_asconf && sctp_is_ep_boundall(sk))
5453 val = 1;
5454 if (put_user(len, optlen))
5455 return -EFAULT;
5456 if (copy_to_user(optval, &val, len))
5457 return -EFAULT;
5458 return 0;
5459}
5460
5461/*
Wei Yongjun209ba422011-04-17 17:27:08 +00005462 * 8.2.6. Get the Current Identifiers of Associations
5463 * (SCTP_GET_ASSOC_ID_LIST)
5464 *
5465 * This option gets the current list of SCTP association identifiers of
5466 * the SCTP associations handled by a one-to-many style socket.
5467 */
5468static int sctp_getsockopt_assoc_ids(struct sock *sk, int len,
5469 char __user *optval, int __user *optlen)
5470{
5471 struct sctp_sock *sp = sctp_sk(sk);
5472 struct sctp_association *asoc;
5473 struct sctp_assoc_ids *ids;
5474 u32 num = 0;
5475
5476 if (sctp_style(sk, TCP))
5477 return -EOPNOTSUPP;
5478
5479 if (len < sizeof(struct sctp_assoc_ids))
5480 return -EINVAL;
5481
5482 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
5483 num++;
5484 }
5485
5486 if (len < sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num)
5487 return -EINVAL;
5488
5489 len = sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num;
5490
5491 ids = kmalloc(len, GFP_KERNEL);
5492 if (unlikely(!ids))
5493 return -ENOMEM;
5494
5495 ids->gaids_number_of_ids = num;
5496 num = 0;
5497 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
5498 ids->gaids_assoc_id[num++] = asoc->assoc_id;
5499 }
5500
5501 if (put_user(len, optlen) || copy_to_user(optval, ids, len)) {
5502 kfree(ids);
5503 return -EFAULT;
5504 }
5505
5506 kfree(ids);
5507 return 0;
5508}
5509
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510SCTP_STATIC int sctp_getsockopt(struct sock *sk, int level, int optname,
5511 char __user *optval, int __user *optlen)
5512{
5513 int retval = 0;
5514 int len;
5515
Frank Filz3f7a87d2005-06-20 13:14:57 -07005516 SCTP_DEBUG_PRINTK("sctp_getsockopt(sk: %p... optname: %d)\n",
5517 sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005518
5519 /* I can hardly begin to describe how wrong this is. This is
5520 * so broken as to be worse than useless. The API draft
5521 * REALLY is NOT helpful here... I am not convinced that the
5522 * semantics of getsockopt() with a level OTHER THAN SOL_SCTP
5523 * are at all well-founded.
5524 */
5525 if (level != SOL_SCTP) {
5526 struct sctp_af *af = sctp_sk(sk)->pf->af;
5527
5528 retval = af->getsockopt(sk, level, optname, optval, optlen);
5529 return retval;
5530 }
5531
5532 if (get_user(len, optlen))
5533 return -EFAULT;
5534
5535 sctp_lock_sock(sk);
5536
5537 switch (optname) {
5538 case SCTP_STATUS:
5539 retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen);
5540 break;
5541 case SCTP_DISABLE_FRAGMENTS:
5542 retval = sctp_getsockopt_disable_fragments(sk, len, optval,
5543 optlen);
5544 break;
5545 case SCTP_EVENTS:
5546 retval = sctp_getsockopt_events(sk, len, optval, optlen);
5547 break;
5548 case SCTP_AUTOCLOSE:
5549 retval = sctp_getsockopt_autoclose(sk, len, optval, optlen);
5550 break;
5551 case SCTP_SOCKOPT_PEELOFF:
5552 retval = sctp_getsockopt_peeloff(sk, len, optval, optlen);
5553 break;
5554 case SCTP_PEER_ADDR_PARAMS:
5555 retval = sctp_getsockopt_peer_addr_params(sk, len, optval,
5556 optlen);
5557 break;
Shan Wei4580ccc2011-01-18 22:39:00 +00005558 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07005559 retval = sctp_getsockopt_delayed_ack(sk, len, optval,
Frank Filz77086102005-12-22 11:37:30 -08005560 optlen);
5561 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005562 case SCTP_INITMSG:
5563 retval = sctp_getsockopt_initmsg(sk, len, optval, optlen);
5564 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005565 case SCTP_GET_PEER_ADDRS:
5566 retval = sctp_getsockopt_peer_addrs(sk, len, optval,
5567 optlen);
5568 break;
5569 case SCTP_GET_LOCAL_ADDRS:
5570 retval = sctp_getsockopt_local_addrs(sk, len, optval,
5571 optlen);
5572 break;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04005573 case SCTP_SOCKOPT_CONNECTX3:
5574 retval = sctp_getsockopt_connectx3(sk, len, optval, optlen);
5575 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005576 case SCTP_DEFAULT_SEND_PARAM:
5577 retval = sctp_getsockopt_default_send_param(sk, len,
5578 optval, optlen);
5579 break;
5580 case SCTP_PRIMARY_ADDR:
5581 retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen);
5582 break;
5583 case SCTP_NODELAY:
5584 retval = sctp_getsockopt_nodelay(sk, len, optval, optlen);
5585 break;
5586 case SCTP_RTOINFO:
5587 retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen);
5588 break;
5589 case SCTP_ASSOCINFO:
5590 retval = sctp_getsockopt_associnfo(sk, len, optval, optlen);
5591 break;
5592 case SCTP_I_WANT_MAPPED_V4_ADDR:
5593 retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen);
5594 break;
5595 case SCTP_MAXSEG:
5596 retval = sctp_getsockopt_maxseg(sk, len, optval, optlen);
5597 break;
5598 case SCTP_GET_PEER_ADDR_INFO:
5599 retval = sctp_getsockopt_peer_addr_info(sk, len, optval,
5600 optlen);
5601 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005602 case SCTP_ADAPTATION_LAYER:
5603 retval = sctp_getsockopt_adaptation_layer(sk, len, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604 optlen);
5605 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005606 case SCTP_CONTEXT:
5607 retval = sctp_getsockopt_context(sk, len, optval, optlen);
5608 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07005609 case SCTP_FRAGMENT_INTERLEAVE:
5610 retval = sctp_getsockopt_fragment_interleave(sk, len, optval,
5611 optlen);
5612 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07005613 case SCTP_PARTIAL_DELIVERY_POINT:
5614 retval = sctp_getsockopt_partial_delivery_point(sk, len, optval,
5615 optlen);
5616 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07005617 case SCTP_MAX_BURST:
5618 retval = sctp_getsockopt_maxburst(sk, len, optval, optlen);
5619 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005620 case SCTP_AUTH_KEY:
5621 case SCTP_AUTH_CHUNK:
5622 case SCTP_AUTH_DELETE_KEY:
5623 retval = -EOPNOTSUPP;
5624 break;
5625 case SCTP_HMAC_IDENT:
5626 retval = sctp_getsockopt_hmac_ident(sk, len, optval, optlen);
5627 break;
5628 case SCTP_AUTH_ACTIVE_KEY:
5629 retval = sctp_getsockopt_active_key(sk, len, optval, optlen);
5630 break;
5631 case SCTP_PEER_AUTH_CHUNKS:
5632 retval = sctp_getsockopt_peer_auth_chunks(sk, len, optval,
5633 optlen);
5634 break;
5635 case SCTP_LOCAL_AUTH_CHUNKS:
5636 retval = sctp_getsockopt_local_auth_chunks(sk, len, optval,
5637 optlen);
5638 break;
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08005639 case SCTP_GET_ASSOC_NUMBER:
5640 retval = sctp_getsockopt_assoc_number(sk, len, optval, optlen);
5641 break;
Wei Yongjun209ba422011-04-17 17:27:08 +00005642 case SCTP_GET_ASSOC_ID_LIST:
5643 retval = sctp_getsockopt_assoc_ids(sk, len, optval, optlen);
5644 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09005645 case SCTP_AUTO_ASCONF:
5646 retval = sctp_getsockopt_auto_asconf(sk, len, optval, optlen);
5647 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648 default:
5649 retval = -ENOPROTOOPT;
5650 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07005651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652
5653 sctp_release_sock(sk);
5654 return retval;
5655}
5656
5657static void sctp_hash(struct sock *sk)
5658{
5659 /* STUB */
5660}
5661
5662static void sctp_unhash(struct sock *sk)
5663{
5664 /* STUB */
5665}
5666
5667/* Check if port is acceptable. Possibly find first available port.
5668 *
5669 * The port hash table (contained in the 'global' SCTP protocol storage
5670 * returned by struct sctp_protocol *sctp_get_protocol()). The hash
5671 * table is an array of 4096 lists (sctp_bind_hashbucket). Each
5672 * list (the list number is the port number hashed out, so as you
5673 * would expect from a hash function, all the ports in a given list have
5674 * such a number that hashes out to the same list number; you were
5675 * expecting that, right?); so each list has a set of ports, with a
5676 * link to the socket (struct sock) that uses it, the port number and
5677 * a fastreuse flag (FIXME: NPI ipg).
5678 */
5679static struct sctp_bind_bucket *sctp_bucket_create(
5680 struct sctp_bind_hashbucket *head, unsigned short snum);
5681
5682static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
5683{
5684 struct sctp_bind_hashbucket *head; /* hash list */
5685 struct sctp_bind_bucket *pp; /* hash list port iterator */
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05005686 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687 unsigned short snum;
5688 int ret;
5689
Al Viro04afd8b2006-11-20 17:02:01 -08005690 snum = ntohs(addr->v4.sin_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005691
5692 SCTP_DEBUG_PRINTK("sctp_get_port() begins, snum=%d\n", snum);
5693 sctp_local_bh_disable();
5694
5695 if (snum == 0) {
Stephen Hemminger06393002007-10-10 17:30:18 -07005696 /* Search for an available port. */
Stephen Hemminger227b60f2007-10-10 17:30:46 -07005697 int low, high, remaining, index;
5698 unsigned int rover;
5699
5700 inet_get_local_port_range(&low, &high);
5701 remaining = (high - low) + 1;
5702 rover = net_random() % remaining + low;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704 do {
5705 rover++;
5706 if ((rover < low) || (rover > high))
5707 rover = low;
Amerigo Wange3826f12010-05-05 00:27:06 +00005708 if (inet_is_reserved_local_port(rover))
5709 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005710 index = sctp_phashfn(rover);
5711 head = &sctp_port_hashtable[index];
5712 sctp_spin_lock(&head->lock);
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05005713 sctp_for_each_hentry(pp, node, &head->chain)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005714 if (pp->port == rover)
5715 goto next;
5716 break;
5717 next:
5718 sctp_spin_unlock(&head->lock);
5719 } while (--remaining > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005720
5721 /* Exhausted local port range during search? */
5722 ret = 1;
5723 if (remaining <= 0)
5724 goto fail;
5725
5726 /* OK, here is the one we will use. HEAD (the port
5727 * hash table list entry) is non-NULL and we hold it's
5728 * mutex.
5729 */
5730 snum = rover;
5731 } else {
5732 /* We are given an specific port number; we verify
5733 * that it is not being used. If it is used, we will
5734 * exahust the search in the hash list corresponding
5735 * to the port number (snum) - we detect that with the
5736 * port iterator, pp being NULL.
5737 */
5738 head = &sctp_port_hashtable[sctp_phashfn(snum)];
5739 sctp_spin_lock(&head->lock);
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05005740 sctp_for_each_hentry(pp, node, &head->chain) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005741 if (pp->port == snum)
5742 goto pp_found;
5743 }
5744 }
5745 pp = NULL;
5746 goto pp_not_found;
5747pp_found:
5748 if (!hlist_empty(&pp->owner)) {
5749 /* We had a port hash table hit - there is an
5750 * available port (pp != NULL) and it is being
5751 * used by other socket (pp->owner not empty); that other
5752 * socket is going to be sk2.
5753 */
5754 int reuse = sk->sk_reuse;
5755 struct sock *sk2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756
5757 SCTP_DEBUG_PRINTK("sctp_get_port() found a possible match\n");
Vlad Yasevichce5325c2007-05-04 13:34:49 -07005758 if (pp->fastreuse && sk->sk_reuse &&
5759 sk->sk_state != SCTP_SS_LISTENING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760 goto success;
5761
5762 /* Run through the list of sockets bound to the port
5763 * (pp->port) [via the pointers bind_next and
5764 * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one,
5765 * we get the endpoint they describe and run through
5766 * the endpoint's list of IP (v4 or v6) addresses,
5767 * comparing each of the addresses with the address of
5768 * the socket sk. If we find a match, then that means
5769 * that this port/socket (sk) combination are already
5770 * in an endpoint.
5771 */
5772 sk_for_each_bound(sk2, node, &pp->owner) {
5773 struct sctp_endpoint *ep2;
5774 ep2 = sctp_sk(sk2)->ep;
5775
Vlad Yasevich4e540642008-07-18 23:06:32 -07005776 if (sk == sk2 ||
5777 (reuse && sk2->sk_reuse &&
5778 sk2->sk_state != SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779 continue;
5780
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07005781 if (sctp_bind_addr_conflict(&ep2->base.bind_addr, addr,
5782 sctp_sk(sk2), sctp_sk(sk))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783 ret = (long)sk2;
5784 goto fail_unlock;
5785 }
5786 }
5787 SCTP_DEBUG_PRINTK("sctp_get_port(): Found a match\n");
5788 }
5789pp_not_found:
5790 /* If there was a hash table miss, create a new port. */
5791 ret = 1;
5792 if (!pp && !(pp = sctp_bucket_create(head, snum)))
5793 goto fail_unlock;
5794
5795 /* In either case (hit or miss), make sure fastreuse is 1 only
5796 * if sk->sk_reuse is too (that is, if the caller requested
5797 * SO_REUSEADDR on this socket -sk-).
5798 */
Vlad Yasevichce5325c2007-05-04 13:34:49 -07005799 if (hlist_empty(&pp->owner)) {
5800 if (sk->sk_reuse && sk->sk_state != SCTP_SS_LISTENING)
5801 pp->fastreuse = 1;
5802 else
5803 pp->fastreuse = 0;
5804 } else if (pp->fastreuse &&
5805 (!sk->sk_reuse || sk->sk_state == SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005806 pp->fastreuse = 0;
5807
5808 /* We are set, so fill up all the data in the hash table
5809 * entry, tie the socket list information with the rest of the
5810 * sockets FIXME: Blurry, NPI (ipg).
5811 */
5812success:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813 if (!sctp_sk(sk)->bind_hash) {
Eric Dumazetc720c7e2009-10-15 06:30:45 +00005814 inet_sk(sk)->inet_num = snum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815 sk_add_bind_node(sk, &pp->owner);
5816 sctp_sk(sk)->bind_hash = pp;
5817 }
5818 ret = 0;
5819
5820fail_unlock:
5821 sctp_spin_unlock(&head->lock);
5822
5823fail:
5824 sctp_local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825 return ret;
5826}
5827
5828/* Assign a 'snum' port to the socket. If snum == 0, an ephemeral
5829 * port is requested.
5830 */
5831static int sctp_get_port(struct sock *sk, unsigned short snum)
5832{
5833 long ret;
5834 union sctp_addr addr;
5835 struct sctp_af *af = sctp_sk(sk)->pf->af;
5836
5837 /* Set up a dummy address struct from the sk. */
5838 af->from_sk(&addr, sk);
5839 addr.v4.sin_port = htons(snum);
5840
5841 /* Note: sk->sk_num gets filled in if ephemeral port request. */
5842 ret = sctp_get_port_local(sk, &addr);
5843
Eric Dumazeta02cec22010-09-22 20:43:57 +00005844 return ret ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005845}
5846
5847/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848 * Move a socket to LISTENING state.
5849 */
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00005850SCTP_STATIC int sctp_listen_start(struct sock *sk, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005851{
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00005852 struct sctp_sock *sp = sctp_sk(sk);
5853 struct sctp_endpoint *ep = sp->ep;
Herbert Xu1b489e12006-08-20 15:07:14 +10005854 struct crypto_hash *tfm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855
5856 /* Allocate HMAC for generating cookie. */
Vlad Yasevich23b29ed2008-07-18 23:06:07 -07005857 if (!sctp_sk(sk)->hmac && sctp_hmac_alg) {
Herbert Xu1b489e12006-08-20 15:07:14 +10005858 tfm = crypto_alloc_hash(sctp_hmac_alg, 0, CRYPTO_ALG_ASYNC);
Vlad Yasevich8dc49842007-05-09 13:50:20 -07005859 if (IS_ERR(tfm)) {
5860 if (net_ratelimit()) {
Joe Perches145ce502010-08-24 13:21:08 +00005861 pr_info("failed to load transform for %s: %ld\n",
Vlad Yasevich8dc49842007-05-09 13:50:20 -07005862 sctp_hmac_alg, PTR_ERR(tfm));
5863 }
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00005864 return -ENOSYS;
5865 }
5866 sctp_sk(sk)->hmac = tfm;
5867 }
5868
5869 /*
5870 * If a bind() or sctp_bindx() is not called prior to a listen()
5871 * call that allows new associations to be accepted, the system
5872 * picks an ephemeral port and will choose an address set equivalent
5873 * to binding with a wildcard address.
5874 *
5875 * This is not currently spelled out in the SCTP sockets
5876 * extensions draft, but follows the practice as seen in TCP
5877 * sockets.
5878 *
5879 */
5880 sk->sk_state = SCTP_SS_LISTENING;
5881 if (!ep->base.bind_addr.port) {
5882 if (sctp_autobind(sk))
5883 return -EAGAIN;
5884 } else {
Eric Dumazetc720c7e2009-10-15 06:30:45 +00005885 if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00005886 sk->sk_state = SCTP_SS_CLOSED;
5887 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888 }
5889 }
5890
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00005891 sk->sk_max_ack_backlog = backlog;
5892 sctp_hash_endpoint(ep);
5893 return 0;
5894}
5895
5896/*
5897 * 4.1.3 / 5.1.3 listen()
5898 *
5899 * By default, new associations are not accepted for UDP style sockets.
5900 * An application uses listen() to mark a socket as being able to
5901 * accept new associations.
5902 *
5903 * On TCP style sockets, applications use listen() to ready the SCTP
5904 * endpoint for accepting inbound associations.
5905 *
5906 * On both types of endpoints a backlog of '0' disables listening.
5907 *
5908 * Move a socket to LISTENING state.
5909 */
5910int sctp_inet_listen(struct socket *sock, int backlog)
5911{
5912 struct sock *sk = sock->sk;
5913 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
5914 int err = -EINVAL;
5915
5916 if (unlikely(backlog < 0))
5917 return err;
5918
5919 sctp_lock_sock(sk);
5920
5921 /* Peeled-off sockets are not allowed to listen(). */
5922 if (sctp_style(sk, UDP_HIGH_BANDWIDTH))
5923 goto out;
5924
5925 if (sock->state != SS_UNCONNECTED)
5926 goto out;
5927
5928 /* If backlog is zero, disable listening. */
5929 if (!backlog) {
5930 if (sctp_sstate(sk, CLOSED))
5931 goto out;
5932
5933 err = 0;
5934 sctp_unhash_endpoint(ep);
5935 sk->sk_state = SCTP_SS_CLOSED;
5936 if (sk->sk_reuse)
5937 sctp_sk(sk)->bind_hash->fastreuse = 1;
5938 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07005939 }
5940
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00005941 /* If we are already listening, just update the backlog */
5942 if (sctp_sstate(sk, LISTENING))
5943 sk->sk_max_ack_backlog = backlog;
5944 else {
5945 err = sctp_listen_start(sk, backlog);
5946 if (err)
5947 goto out;
5948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005949
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00005950 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005951out:
5952 sctp_release_sock(sk);
5953 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954}
5955
5956/*
5957 * This function is done by modeling the current datagram_poll() and the
5958 * tcp_poll(). Note that, based on these implementations, we don't
5959 * lock the socket in this function, even though it seems that,
5960 * ideally, locking or some other mechanisms can be used to ensure
Neil Horman9bffc4a2005-12-19 14:24:40 -08005961 * the integrity of the counters (sndbuf and wmem_alloc) used
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962 * in this place. We assume that we don't need locks either until proven
5963 * otherwise.
5964 *
5965 * Another thing to note is that we include the Async I/O support
5966 * here, again, by modeling the current TCP/UDP code. We don't have
5967 * a good way to test with it yet.
5968 */
5969unsigned int sctp_poll(struct file *file, struct socket *sock, poll_table *wait)
5970{
5971 struct sock *sk = sock->sk;
5972 struct sctp_sock *sp = sctp_sk(sk);
5973 unsigned int mask;
5974
Eric Dumazetaa395142010-04-20 13:03:51 +00005975 poll_wait(file, sk_sleep(sk), wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976
5977 /* A TCP-style listening socket becomes readable when the accept queue
5978 * is not empty.
5979 */
5980 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
5981 return (!list_empty(&sp->ep->asocs)) ?
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005982 (POLLIN | POLLRDNORM) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005983
5984 mask = 0;
5985
5986 /* Is there any exceptional events? */
5987 if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
5988 mask |= POLLERR;
Davide Libenzif348d702006-03-25 03:07:39 -08005989 if (sk->sk_shutdown & RCV_SHUTDOWN)
Eric Dumazetdb409802010-09-06 11:13:50 +00005990 mask |= POLLRDHUP | POLLIN | POLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991 if (sk->sk_shutdown == SHUTDOWN_MASK)
5992 mask |= POLLHUP;
5993
5994 /* Is it readable? Reconsider this code with TCP-style support. */
Eric Dumazetdb409802010-09-06 11:13:50 +00005995 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996 mask |= POLLIN | POLLRDNORM;
5997
5998 /* The association is either gone or not ready. */
5999 if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED))
6000 return mask;
6001
6002 /* Is it writable? */
6003 if (sctp_writeable(sk)) {
6004 mask |= POLLOUT | POLLWRNORM;
6005 } else {
6006 set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
6007 /*
6008 * Since the socket is not locked, the buffer
6009 * might be made available after the writeable check and
6010 * before the bit is set. This could cause a lost I/O
6011 * signal. tcp_poll() has a race breaker for this race
6012 * condition. Based on their implementation, we put
6013 * in the following code to cover it as well.
6014 */
6015 if (sctp_writeable(sk))
6016 mask |= POLLOUT | POLLWRNORM;
6017 }
6018 return mask;
6019}
6020
6021/********************************************************************
6022 * 2nd Level Abstractions
6023 ********************************************************************/
6024
6025static struct sctp_bind_bucket *sctp_bucket_create(
6026 struct sctp_bind_hashbucket *head, unsigned short snum)
6027{
6028 struct sctp_bind_bucket *pp;
6029
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08006030 pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031 if (pp) {
Li Zefan935a7f62008-04-10 01:58:06 -07006032 SCTP_DBG_OBJCNT_INC(bind_bucket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033 pp->port = snum;
6034 pp->fastreuse = 0;
6035 INIT_HLIST_HEAD(&pp->owner);
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05006036 hlist_add_head(&pp->node, &head->chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037 }
6038 return pp;
6039}
6040
6041/* Caller must hold hashbucket lock for this tb with local BH disabled */
6042static void sctp_bucket_destroy(struct sctp_bind_bucket *pp)
6043{
Sridhar Samudrala37fa6872006-07-21 14:45:47 -07006044 if (pp && hlist_empty(&pp->owner)) {
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05006045 __hlist_del(&pp->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046 kmem_cache_free(sctp_bucket_cachep, pp);
6047 SCTP_DBG_OBJCNT_DEC(bind_bucket);
6048 }
6049}
6050
6051/* Release this socket's reference to a local port. */
6052static inline void __sctp_put_port(struct sock *sk)
6053{
6054 struct sctp_bind_hashbucket *head =
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006055 &sctp_port_hashtable[sctp_phashfn(inet_sk(sk)->inet_num)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056 struct sctp_bind_bucket *pp;
6057
6058 sctp_spin_lock(&head->lock);
6059 pp = sctp_sk(sk)->bind_hash;
6060 __sk_del_bind_node(sk);
6061 sctp_sk(sk)->bind_hash = NULL;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006062 inet_sk(sk)->inet_num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006063 sctp_bucket_destroy(pp);
6064 sctp_spin_unlock(&head->lock);
6065}
6066
6067void sctp_put_port(struct sock *sk)
6068{
6069 sctp_local_bh_disable();
6070 __sctp_put_port(sk);
6071 sctp_local_bh_enable();
6072}
6073
6074/*
6075 * The system picks an ephemeral port and choose an address set equivalent
6076 * to binding with a wildcard address.
6077 * One of those addresses will be the primary address for the association.
6078 * This automatically enables the multihoming capability of SCTP.
6079 */
6080static int sctp_autobind(struct sock *sk)
6081{
6082 union sctp_addr autoaddr;
6083 struct sctp_af *af;
Al Viro6fbfa9f2006-11-20 17:24:53 -08006084 __be16 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006085
6086 /* Initialize a local sockaddr structure to INADDR_ANY. */
6087 af = sctp_sk(sk)->pf->af;
6088
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006089 port = htons(inet_sk(sk)->inet_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090 af->inaddr_any(&autoaddr, port);
6091
6092 return sctp_do_bind(sk, &autoaddr, af->sockaddr_len);
6093}
6094
6095/* Parse out IPPROTO_SCTP CMSG headers. Perform only minimal validation.
6096 *
6097 * From RFC 2292
6098 * 4.2 The cmsghdr Structure *
6099 *
6100 * When ancillary data is sent or received, any number of ancillary data
6101 * objects can be specified by the msg_control and msg_controllen members of
6102 * the msghdr structure, because each object is preceded by
6103 * a cmsghdr structure defining the object's length (the cmsg_len member).
6104 * Historically Berkeley-derived implementations have passed only one object
6105 * at a time, but this API allows multiple objects to be
6106 * passed in a single call to sendmsg() or recvmsg(). The following example
6107 * shows two ancillary data objects in a control buffer.
6108 *
6109 * |<--------------------------- msg_controllen -------------------------->|
6110 * | |
6111 *
6112 * |<----- ancillary data object ----->|<----- ancillary data object ----->|
6113 *
6114 * |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->|
6115 * | | |
6116 *
6117 * |<---------- cmsg_len ---------->| |<--------- cmsg_len ----------->| |
6118 *
6119 * |<--------- CMSG_LEN() --------->| |<-------- CMSG_LEN() ---------->| |
6120 * | | | | |
6121 *
6122 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
6123 * |cmsg_|cmsg_|cmsg_|XX| |XX|cmsg_|cmsg_|cmsg_|XX| |XX|
6124 *
6125 * |len |level|type |XX|cmsg_data[]|XX|len |level|type |XX|cmsg_data[]|XX|
6126 *
6127 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
6128 * ^
6129 * |
6130 *
6131 * msg_control
6132 * points here
6133 */
6134SCTP_STATIC int sctp_msghdr_parse(const struct msghdr *msg,
6135 sctp_cmsgs_t *cmsgs)
6136{
6137 struct cmsghdr *cmsg;
Vlad Yasevichab38fb02008-04-12 18:40:06 -07006138 struct msghdr *my_msg = (struct msghdr *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139
6140 for (cmsg = CMSG_FIRSTHDR(msg);
6141 cmsg != NULL;
Vlad Yasevichab38fb02008-04-12 18:40:06 -07006142 cmsg = CMSG_NXTHDR(my_msg, cmsg)) {
6143 if (!CMSG_OK(my_msg, cmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006144 return -EINVAL;
6145
6146 /* Should we parse this header or ignore? */
6147 if (cmsg->cmsg_level != IPPROTO_SCTP)
6148 continue;
6149
6150 /* Strictly check lengths following example in SCM code. */
6151 switch (cmsg->cmsg_type) {
6152 case SCTP_INIT:
6153 /* SCTP Socket API Extension
6154 * 5.2.1 SCTP Initiation Structure (SCTP_INIT)
6155 *
6156 * This cmsghdr structure provides information for
6157 * initializing new SCTP associations with sendmsg().
6158 * The SCTP_INITMSG socket option uses this same data
6159 * structure. This structure is not used for
6160 * recvmsg().
6161 *
6162 * cmsg_level cmsg_type cmsg_data[]
6163 * ------------ ------------ ----------------------
6164 * IPPROTO_SCTP SCTP_INIT struct sctp_initmsg
6165 */
6166 if (cmsg->cmsg_len !=
6167 CMSG_LEN(sizeof(struct sctp_initmsg)))
6168 return -EINVAL;
6169 cmsgs->init = (struct sctp_initmsg *)CMSG_DATA(cmsg);
6170 break;
6171
6172 case SCTP_SNDRCV:
6173 /* SCTP Socket API Extension
6174 * 5.2.2 SCTP Header Information Structure(SCTP_SNDRCV)
6175 *
6176 * This cmsghdr structure specifies SCTP options for
6177 * sendmsg() and describes SCTP header information
6178 * about a received message through recvmsg().
6179 *
6180 * cmsg_level cmsg_type cmsg_data[]
6181 * ------------ ------------ ----------------------
6182 * IPPROTO_SCTP SCTP_SNDRCV struct sctp_sndrcvinfo
6183 */
6184 if (cmsg->cmsg_len !=
6185 CMSG_LEN(sizeof(struct sctp_sndrcvinfo)))
6186 return -EINVAL;
6187
6188 cmsgs->info =
6189 (struct sctp_sndrcvinfo *)CMSG_DATA(cmsg);
6190
6191 /* Minimally, validate the sinfo_flags. */
6192 if (cmsgs->info->sinfo_flags &
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07006193 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
6194 SCTP_ABORT | SCTP_EOF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195 return -EINVAL;
6196 break;
6197
6198 default:
6199 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07006200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201 }
6202 return 0;
6203}
6204
6205/*
6206 * Wait for a packet..
6207 * Note: This function is the same function as in core/datagram.c
6208 * with a few modifications to make lksctp work.
6209 */
6210static int sctp_wait_for_packet(struct sock * sk, int *err, long *timeo_p)
6211{
6212 int error;
6213 DEFINE_WAIT(wait);
6214
Eric Dumazetaa395142010-04-20 13:03:51 +00006215 prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006216
6217 /* Socket errors? */
6218 error = sock_error(sk);
6219 if (error)
6220 goto out;
6221
6222 if (!skb_queue_empty(&sk->sk_receive_queue))
6223 goto ready;
6224
6225 /* Socket shut down? */
6226 if (sk->sk_shutdown & RCV_SHUTDOWN)
6227 goto out;
6228
6229 /* Sequenced packets can come disconnected. If so we report the
6230 * problem.
6231 */
6232 error = -ENOTCONN;
6233
6234 /* Is there a good reason to think that we may receive some data? */
6235 if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING))
6236 goto out;
6237
6238 /* Handle signals. */
6239 if (signal_pending(current))
6240 goto interrupted;
6241
6242 /* Let another process have a go. Since we are going to sleep
6243 * anyway. Note: This may cause odd behaviors if the message
6244 * does not fit in the user's buffer, but this seems to be the
6245 * only way to honor MSG_DONTWAIT realistically.
6246 */
6247 sctp_release_sock(sk);
6248 *timeo_p = schedule_timeout(*timeo_p);
6249 sctp_lock_sock(sk);
6250
6251ready:
Eric Dumazetaa395142010-04-20 13:03:51 +00006252 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253 return 0;
6254
6255interrupted:
6256 error = sock_intr_errno(*timeo_p);
6257
6258out:
Eric Dumazetaa395142010-04-20 13:03:51 +00006259 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006260 *err = error;
6261 return error;
6262}
6263
6264/* Receive a datagram.
6265 * Note: This is pretty much the same routine as in core/datagram.c
6266 * with a few changes to make lksctp work.
6267 */
6268static struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags,
6269 int noblock, int *err)
6270{
6271 int error;
6272 struct sk_buff *skb;
6273 long timeo;
6274
Linus Torvalds1da177e2005-04-16 15:20:36 -07006275 timeo = sock_rcvtimeo(sk, noblock);
6276
6277 SCTP_DEBUG_PRINTK("Timeout: timeo: %ld, MAX: %ld.\n",
6278 timeo, MAX_SCHEDULE_TIMEOUT);
6279
6280 do {
6281 /* Again only user level code calls this function,
6282 * so nothing interrupt level
6283 * will suddenly eat the receive_queue.
6284 *
6285 * Look at current nfs client by the way...
David Shwatrz8917a3c2010-12-02 09:01:55 +00006286 * However, this function was correct in any case. 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006287 */
6288 if (flags & MSG_PEEK) {
Herbert Xu1e061ab2005-06-18 22:56:42 -07006289 spin_lock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290 skb = skb_peek(&sk->sk_receive_queue);
6291 if (skb)
6292 atomic_inc(&skb->users);
Herbert Xu1e061ab2005-06-18 22:56:42 -07006293 spin_unlock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294 } else {
6295 skb = skb_dequeue(&sk->sk_receive_queue);
6296 }
6297
6298 if (skb)
6299 return skb;
6300
Neil Horman6736dc32005-12-02 20:30:06 -08006301 /* Caller is allowed not to check sk->sk_err before calling. */
6302 error = sock_error(sk);
6303 if (error)
6304 goto no_packet;
6305
Linus Torvalds1da177e2005-04-16 15:20:36 -07006306 if (sk->sk_shutdown & RCV_SHUTDOWN)
6307 break;
6308
6309 /* User doesn't want to wait. */
6310 error = -EAGAIN;
6311 if (!timeo)
6312 goto no_packet;
6313 } while (sctp_wait_for_packet(sk, err, &timeo) == 0);
6314
6315 return NULL;
6316
6317no_packet:
6318 *err = error;
6319 return NULL;
6320}
6321
6322/* If sndbuf has changed, wake up per association sndbuf waiters. */
6323static void __sctp_write_space(struct sctp_association *asoc)
6324{
6325 struct sock *sk = asoc->base.sk;
6326 struct socket *sock = sk->sk_socket;
6327
6328 if ((sctp_wspace(asoc) > 0) && sock) {
6329 if (waitqueue_active(&asoc->wait))
6330 wake_up_interruptible(&asoc->wait);
6331
6332 if (sctp_writeable(sk)) {
Eric Dumazeteaefd112011-02-18 03:26:36 +00006333 wait_queue_head_t *wq = sk_sleep(sk);
6334
6335 if (wq && waitqueue_active(wq))
6336 wake_up_interruptible(wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006337
6338 /* Note that we try to include the Async I/O support
6339 * here by modeling from the current TCP/UDP code.
6340 * We have not tested with it yet.
6341 */
Eric Dumazeteaefd112011-02-18 03:26:36 +00006342 if (!(sk->sk_shutdown & SEND_SHUTDOWN))
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08006343 sock_wake_async(sock,
6344 SOCK_WAKE_SPACE, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345 }
6346 }
6347}
6348
6349/* Do accounting for the sndbuf space.
6350 * Decrement the used sndbuf space of the corresponding association by the
6351 * data size which was just transmitted(freed).
6352 */
6353static void sctp_wfree(struct sk_buff *skb)
6354{
6355 struct sctp_association *asoc;
6356 struct sctp_chunk *chunk;
6357 struct sock *sk;
6358
6359 /* Get the saved chunk pointer. */
6360 chunk = *((struct sctp_chunk **)(skb->cb));
6361 asoc = chunk->asoc;
6362 sk = asoc->base.sk;
Neil Horman4eb701d2005-04-28 12:02:04 -07006363 asoc->sndbuf_used -= SCTP_DATA_SNDSIZE(chunk) +
6364 sizeof(struct sk_buff) +
6365 sizeof(struct sctp_chunk);
6366
Neil Horman4eb701d2005-04-28 12:02:04 -07006367 atomic_sub(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
6368
Neil Horman4d93df02007-08-15 16:07:44 -07006369 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08006370 * This undoes what is done via sctp_set_owner_w and sk_mem_charge
Neil Horman4d93df02007-08-15 16:07:44 -07006371 */
6372 sk->sk_wmem_queued -= skb->truesize;
Hideo Aoki3ab224b2007-12-31 00:11:19 -08006373 sk_mem_uncharge(sk, skb->truesize);
Neil Horman4d93df02007-08-15 16:07:44 -07006374
Neil Horman4eb701d2005-04-28 12:02:04 -07006375 sock_wfree(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006376 __sctp_write_space(asoc);
6377
6378 sctp_association_put(asoc);
6379}
6380
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07006381/* Do accounting for the receive space on the socket.
6382 * Accounting for the association is done in ulpevent.c
6383 * We set this as a destructor for the cloned data skbs so that
6384 * accounting is done at the correct time.
6385 */
6386void sctp_sock_rfree(struct sk_buff *skb)
6387{
6388 struct sock *sk = skb->sk;
6389 struct sctp_ulpevent *event = sctp_skb2event(skb);
6390
6391 atomic_sub(event->rmem_len, &sk->sk_rmem_alloc);
Neil Horman4d93df02007-08-15 16:07:44 -07006392
6393 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08006394 * Mimic the behavior of sock_rfree
Neil Horman4d93df02007-08-15 16:07:44 -07006395 */
Hideo Aoki3ab224b2007-12-31 00:11:19 -08006396 sk_mem_uncharge(sk, event->rmem_len);
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07006397}
6398
6399
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400/* Helper function to wait for space in the sndbuf. */
6401static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
6402 size_t msg_len)
6403{
6404 struct sock *sk = asoc->base.sk;
6405 int err = 0;
6406 long current_timeo = *timeo_p;
6407 DEFINE_WAIT(wait);
6408
6409 SCTP_DEBUG_PRINTK("wait_for_sndbuf: asoc=%p, timeo=%ld, msg_len=%zu\n",
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09006410 asoc, (long)(*timeo_p), msg_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411
6412 /* Increment the association's refcnt. */
6413 sctp_association_hold(asoc);
6414
6415 /* Wait on the association specific sndbuf space. */
6416 for (;;) {
6417 prepare_to_wait_exclusive(&asoc->wait, &wait,
6418 TASK_INTERRUPTIBLE);
6419 if (!*timeo_p)
6420 goto do_nonblock;
6421 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
6422 asoc->base.dead)
6423 goto do_error;
6424 if (signal_pending(current))
6425 goto do_interrupted;
6426 if (msg_len <= sctp_wspace(asoc))
6427 break;
6428
6429 /* Let another process have a go. Since we are going
6430 * to sleep anyway.
6431 */
6432 sctp_release_sock(sk);
6433 current_timeo = schedule_timeout(current_timeo);
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07006434 BUG_ON(sk != asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435 sctp_lock_sock(sk);
6436
6437 *timeo_p = current_timeo;
6438 }
6439
6440out:
6441 finish_wait(&asoc->wait, &wait);
6442
6443 /* Release the association's refcnt. */
6444 sctp_association_put(asoc);
6445
6446 return err;
6447
6448do_error:
6449 err = -EPIPE;
6450 goto out;
6451
6452do_interrupted:
6453 err = sock_intr_errno(*timeo_p);
6454 goto out;
6455
6456do_nonblock:
6457 err = -EAGAIN;
6458 goto out;
6459}
6460
Wei Yongjun561b1732010-04-28 08:47:18 +00006461void sctp_data_ready(struct sock *sk, int len)
6462{
David S. Miller7ef52732010-05-02 21:43:40 -07006463 struct socket_wq *wq;
6464
6465 rcu_read_lock();
6466 wq = rcu_dereference(sk->sk_wq);
6467 if (wq_has_sleeper(wq))
6468 wake_up_interruptible_sync_poll(&wq->wait, POLLIN |
Wei Yongjun561b1732010-04-28 08:47:18 +00006469 POLLRDNORM | POLLRDBAND);
6470 sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
David S. Miller7ef52732010-05-02 21:43:40 -07006471 rcu_read_unlock();
Wei Yongjun561b1732010-04-28 08:47:18 +00006472}
6473
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474/* If socket sndbuf has changed, wake up all per association waiters. */
6475void sctp_write_space(struct sock *sk)
6476{
6477 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006478
6479 /* Wake up the tasks in each wait queue. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07006480 list_for_each_entry(asoc, &((sctp_sk(sk))->ep->asocs), asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006481 __sctp_write_space(asoc);
6482 }
6483}
6484
6485/* Is there any sndbuf space available on the socket?
6486 *
Neil Horman9bffc4a2005-12-19 14:24:40 -08006487 * Note that sk_wmem_alloc is the sum of the send buffers on all of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07006488 * associations on the same socket. For a UDP-style socket with
6489 * multiple associations, it is possible for it to be "unwriteable"
6490 * prematurely. I assume that this is acceptable because
6491 * a premature "unwriteable" is better than an accidental "writeable" which
6492 * would cause an unwanted block under certain circumstances. For the 1-1
6493 * UDP-style sockets or TCP-style sockets, this code should work.
6494 * - Daisy
6495 */
6496static int sctp_writeable(struct sock *sk)
6497{
6498 int amt = 0;
6499
Eric Dumazet31e6d362009-06-17 19:05:41 -07006500 amt = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006501 if (amt < 0)
6502 amt = 0;
6503 return amt;
6504}
6505
6506/* Wait for an association to go into ESTABLISHED state. If timeout is 0,
6507 * returns immediately with EINPROGRESS.
6508 */
6509static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p)
6510{
6511 struct sock *sk = asoc->base.sk;
6512 int err = 0;
6513 long current_timeo = *timeo_p;
6514 DEFINE_WAIT(wait);
6515
Harvey Harrison0dc47872008-03-05 20:47:47 -08006516 SCTP_DEBUG_PRINTK("%s: asoc=%p, timeo=%ld\n", __func__, asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006517 (long)(*timeo_p));
6518
6519 /* Increment the association's refcnt. */
6520 sctp_association_hold(asoc);
6521
6522 for (;;) {
6523 prepare_to_wait_exclusive(&asoc->wait, &wait,
6524 TASK_INTERRUPTIBLE);
6525 if (!*timeo_p)
6526 goto do_nonblock;
6527 if (sk->sk_shutdown & RCV_SHUTDOWN)
6528 break;
6529 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
6530 asoc->base.dead)
6531 goto do_error;
6532 if (signal_pending(current))
6533 goto do_interrupted;
6534
6535 if (sctp_state(asoc, ESTABLISHED))
6536 break;
6537
6538 /* Let another process have a go. Since we are going
6539 * to sleep anyway.
6540 */
6541 sctp_release_sock(sk);
6542 current_timeo = schedule_timeout(current_timeo);
6543 sctp_lock_sock(sk);
6544
6545 *timeo_p = current_timeo;
6546 }
6547
6548out:
6549 finish_wait(&asoc->wait, &wait);
6550
6551 /* Release the association's refcnt. */
6552 sctp_association_put(asoc);
6553
6554 return err;
6555
6556do_error:
Vlad Yasevich81845c22006-01-30 15:59:54 -08006557 if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006558 err = -ETIMEDOUT;
6559 else
6560 err = -ECONNREFUSED;
6561 goto out;
6562
6563do_interrupted:
6564 err = sock_intr_errno(*timeo_p);
6565 goto out;
6566
6567do_nonblock:
6568 err = -EINPROGRESS;
6569 goto out;
6570}
6571
6572static int sctp_wait_for_accept(struct sock *sk, long timeo)
6573{
6574 struct sctp_endpoint *ep;
6575 int err = 0;
6576 DEFINE_WAIT(wait);
6577
6578 ep = sctp_sk(sk)->ep;
6579
6580
6581 for (;;) {
Eric Dumazetaa395142010-04-20 13:03:51 +00006582 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583 TASK_INTERRUPTIBLE);
6584
6585 if (list_empty(&ep->asocs)) {
6586 sctp_release_sock(sk);
6587 timeo = schedule_timeout(timeo);
6588 sctp_lock_sock(sk);
6589 }
6590
6591 err = -EINVAL;
6592 if (!sctp_sstate(sk, LISTENING))
6593 break;
6594
6595 err = 0;
6596 if (!list_empty(&ep->asocs))
6597 break;
6598
6599 err = sock_intr_errno(timeo);
6600 if (signal_pending(current))
6601 break;
6602
6603 err = -EAGAIN;
6604 if (!timeo)
6605 break;
6606 }
6607
Eric Dumazetaa395142010-04-20 13:03:51 +00006608 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006609
6610 return err;
6611}
6612
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +02006613static void sctp_wait_for_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006614{
6615 DEFINE_WAIT(wait);
6616
6617 do {
Eric Dumazetaa395142010-04-20 13:03:51 +00006618 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006619 if (list_empty(&sctp_sk(sk)->ep->asocs))
6620 break;
6621 sctp_release_sock(sk);
6622 timeout = schedule_timeout(timeout);
6623 sctp_lock_sock(sk);
6624 } while (!signal_pending(current) && timeout);
6625
Eric Dumazetaa395142010-04-20 13:03:51 +00006626 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006627}
6628
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006629static void sctp_skb_set_owner_r_frag(struct sk_buff *skb, struct sock *sk)
6630{
6631 struct sk_buff *frag;
6632
6633 if (!skb->data_len)
6634 goto done;
6635
6636 /* Don't forget the fragments. */
David S. Miller1b003be2009-06-09 00:22:35 -07006637 skb_walk_frags(skb, frag)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006638 sctp_skb_set_owner_r_frag(frag, sk);
6639
6640done:
6641 sctp_skb_set_owner_r(skb, sk);
6642}
6643
Vlad Yasevich914e1c82009-02-13 08:33:44 +00006644void sctp_copy_sock(struct sock *newsk, struct sock *sk,
6645 struct sctp_association *asoc)
6646{
6647 struct inet_sock *inet = inet_sk(sk);
Julia Lawall09cb47a2010-01-21 02:43:20 -08006648 struct inet_sock *newinet;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00006649
6650 newsk->sk_type = sk->sk_type;
6651 newsk->sk_bound_dev_if = sk->sk_bound_dev_if;
6652 newsk->sk_flags = sk->sk_flags;
6653 newsk->sk_no_check = sk->sk_no_check;
6654 newsk->sk_reuse = sk->sk_reuse;
6655
6656 newsk->sk_shutdown = sk->sk_shutdown;
6657 newsk->sk_destruct = inet_sock_destruct;
6658 newsk->sk_family = sk->sk_family;
6659 newsk->sk_protocol = IPPROTO_SCTP;
6660 newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
6661 newsk->sk_sndbuf = sk->sk_sndbuf;
6662 newsk->sk_rcvbuf = sk->sk_rcvbuf;
6663 newsk->sk_lingertime = sk->sk_lingertime;
6664 newsk->sk_rcvtimeo = sk->sk_rcvtimeo;
6665 newsk->sk_sndtimeo = sk->sk_sndtimeo;
6666
6667 newinet = inet_sk(newsk);
6668
6669 /* Initialize sk's sport, dport, rcv_saddr and daddr for
6670 * getsockname() and getpeername()
6671 */
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006672 newinet->inet_sport = inet->inet_sport;
6673 newinet->inet_saddr = inet->inet_saddr;
6674 newinet->inet_rcv_saddr = inet->inet_rcv_saddr;
6675 newinet->inet_dport = htons(asoc->peer.port);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00006676 newinet->pmtudisc = inet->pmtudisc;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006677 newinet->inet_id = asoc->next_tsn ^ jiffies;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00006678
6679 newinet->uc_ttl = inet->uc_ttl;
6680 newinet->mc_loop = 1;
6681 newinet->mc_ttl = 1;
6682 newinet->mc_index = 0;
6683 newinet->mc_list = NULL;
6684}
6685
Linus Torvalds1da177e2005-04-16 15:20:36 -07006686/* Populate the fields of the newsk from the oldsk and migrate the assoc
6687 * and its messages to the newsk.
6688 */
6689static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
6690 struct sctp_association *assoc,
6691 sctp_socket_type_t type)
6692{
6693 struct sctp_sock *oldsp = sctp_sk(oldsk);
6694 struct sctp_sock *newsp = sctp_sk(newsk);
6695 struct sctp_bind_bucket *pp; /* hash list port iterator */
6696 struct sctp_endpoint *newep = newsp->ep;
6697 struct sk_buff *skb, *tmp;
6698 struct sctp_ulpevent *event;
Vlad Yasevichf26f7c42007-12-06 22:50:27 -08006699 struct sctp_bind_hashbucket *head;
Michio Honda9f7d6532011-04-26 19:32:51 +09006700 struct list_head tmplist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006701
6702 /* Migrate socket buffer sizes and all the socket level options to the
6703 * new socket.
6704 */
6705 newsk->sk_sndbuf = oldsk->sk_sndbuf;
6706 newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
6707 /* Brute force copy old sctp opt. */
Michio Honda9f7d6532011-04-26 19:32:51 +09006708 if (oldsp->do_auto_asconf) {
6709 memcpy(&tmplist, &newsp->auto_asconf_list, sizeof(tmplist));
6710 inet_sk_copy_descendant(newsk, oldsk);
6711 memcpy(&newsp->auto_asconf_list, &tmplist, sizeof(tmplist));
6712 } else
6713 inet_sk_copy_descendant(newsk, oldsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006714
6715 /* Restore the ep value that was overwritten with the above structure
6716 * copy.
6717 */
6718 newsp->ep = newep;
6719 newsp->hmac = NULL;
6720
6721 /* Hook this new socket in to the bind_hash list. */
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006722 head = &sctp_port_hashtable[sctp_phashfn(inet_sk(oldsk)->inet_num)];
Vlad Yasevichf26f7c42007-12-06 22:50:27 -08006723 sctp_local_bh_disable();
6724 sctp_spin_lock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006725 pp = sctp_sk(oldsk)->bind_hash;
6726 sk_add_bind_node(newsk, &pp->owner);
6727 sctp_sk(newsk)->bind_hash = pp;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006728 inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num;
Vlad Yasevichf26f7c42007-12-06 22:50:27 -08006729 sctp_spin_unlock(&head->lock);
6730 sctp_local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006731
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07006732 /* Copy the bind_addr list from the original endpoint to the new
6733 * endpoint so that we can handle restarts properly
6734 */
Vlad Yasevich8e71a112007-12-06 22:50:54 -08006735 sctp_bind_addr_dup(&newsp->ep->base.bind_addr,
6736 &oldsp->ep->base.bind_addr, GFP_KERNEL);
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07006737
Linus Torvalds1da177e2005-04-16 15:20:36 -07006738 /* Move any messages in the old socket's receive queue that are for the
6739 * peeled off association to the new socket's receive queue.
6740 */
6741 sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) {
6742 event = sctp_skb2event(skb);
6743 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07006744 __skb_unlink(skb, &oldsk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006745 __skb_queue_tail(&newsk->sk_receive_queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006746 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006747 }
6748 }
6749
6750 /* Clean up any messages pending delivery due to partial
6751 * delivery. Three cases:
6752 * 1) No partial deliver; no work.
6753 * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby.
6754 * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue.
6755 */
6756 skb_queue_head_init(&newsp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07006757 atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006758
Vlad Yasevichb6e13312007-04-20 12:23:15 -07006759 if (atomic_read(&sctp_sk(oldsk)->pd_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006760 struct sk_buff_head *queue;
6761
6762 /* Decide which queue to move pd_lobby skbs to. */
6763 if (assoc->ulpq.pd_mode) {
6764 queue = &newsp->pd_lobby;
6765 } else
6766 queue = &newsk->sk_receive_queue;
6767
6768 /* Walk through the pd_lobby, looking for skbs that
6769 * need moved to the new socket.
6770 */
6771 sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) {
6772 event = sctp_skb2event(skb);
6773 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07006774 __skb_unlink(skb, &oldsp->pd_lobby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006775 __skb_queue_tail(queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006776 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006777 }
6778 }
6779
6780 /* Clear up any skbs waiting for the partial
6781 * delivery to finish.
6782 */
6783 if (assoc->ulpq.pd_mode)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07006784 sctp_clear_pd(oldsk, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006785
6786 }
6787
Wei Yongjun1bc4ee42009-07-05 19:45:48 +00006788 sctp_skb_for_each(skb, &assoc->ulpq.reasm, tmp)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006789 sctp_skb_set_owner_r_frag(skb, newsk);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006790
Wei Yongjun1bc4ee42009-07-05 19:45:48 +00006791 sctp_skb_for_each(skb, &assoc->ulpq.lobby, tmp)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006792 sctp_skb_set_owner_r_frag(skb, newsk);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006793
Linus Torvalds1da177e2005-04-16 15:20:36 -07006794 /* Set the type of socket to indicate that it is peeled off from the
6795 * original UDP-style socket or created with the accept() call on a
6796 * TCP-style socket..
6797 */
6798 newsp->type = type;
6799
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07006800 /* Mark the new socket "in-use" by the user so that any packets
6801 * that may arrive on the association after we've moved it are
6802 * queued to the backlog. This prevents a potential race between
6803 * backlog processing on the old socket and new-packet processing
6804 * on the new socket.
Zach Brown5131a182007-06-22 15:14:46 -07006805 *
6806 * The caller has just allocated newsk so we can guarantee that other
6807 * paths won't try to lock it and then oldsk.
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07006808 */
Zach Brown5131a182007-06-22 15:14:46 -07006809 lock_sock_nested(newsk, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006810 sctp_assoc_migrate(assoc, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006811
6812 /* If the association on the newsk is already closed before accept()
6813 * is called, set RCV_SHUTDOWN flag.
6814 */
6815 if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP))
6816 newsk->sk_shutdown |= RCV_SHUTDOWN;
6817
6818 newsk->sk_state = SCTP_SS_ESTABLISHED;
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07006819 sctp_release_sock(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006820}
6821
Neil Horman4d93df02007-08-15 16:07:44 -07006822
Linus Torvalds1da177e2005-04-16 15:20:36 -07006823/* This proto struct describes the ULP interface for SCTP. */
6824struct proto sctp_prot = {
6825 .name = "SCTP",
6826 .owner = THIS_MODULE,
6827 .close = sctp_close,
6828 .connect = sctp_connect,
6829 .disconnect = sctp_disconnect,
6830 .accept = sctp_accept,
6831 .ioctl = sctp_ioctl,
6832 .init = sctp_init_sock,
6833 .destroy = sctp_destroy_sock,
6834 .shutdown = sctp_shutdown,
6835 .setsockopt = sctp_setsockopt,
6836 .getsockopt = sctp_getsockopt,
6837 .sendmsg = sctp_sendmsg,
6838 .recvmsg = sctp_recvmsg,
6839 .bind = sctp_bind,
6840 .backlog_rcv = sctp_backlog_rcv,
6841 .hash = sctp_hash,
6842 .unhash = sctp_unhash,
6843 .get_port = sctp_get_port,
6844 .obj_size = sizeof(struct sctp_sock),
Neil Horman4d93df02007-08-15 16:07:44 -07006845 .sysctl_mem = sysctl_sctp_mem,
6846 .sysctl_rmem = sysctl_sctp_rmem,
6847 .sysctl_wmem = sysctl_sctp_wmem,
6848 .memory_pressure = &sctp_memory_pressure,
6849 .enter_memory_pressure = sctp_enter_memory_pressure,
6850 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08006851 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006852};
6853
Eric Dumazetdfd56b82011-12-10 09:48:31 +00006854#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazet8295b6d2007-11-05 23:40:28 -08006855
Linus Torvalds1da177e2005-04-16 15:20:36 -07006856struct proto sctpv6_prot = {
6857 .name = "SCTPv6",
6858 .owner = THIS_MODULE,
6859 .close = sctp_close,
6860 .connect = sctp_connect,
6861 .disconnect = sctp_disconnect,
6862 .accept = sctp_accept,
6863 .ioctl = sctp_ioctl,
6864 .init = sctp_init_sock,
6865 .destroy = sctp_destroy_sock,
6866 .shutdown = sctp_shutdown,
6867 .setsockopt = sctp_setsockopt,
6868 .getsockopt = sctp_getsockopt,
6869 .sendmsg = sctp_sendmsg,
6870 .recvmsg = sctp_recvmsg,
6871 .bind = sctp_bind,
6872 .backlog_rcv = sctp_backlog_rcv,
6873 .hash = sctp_hash,
6874 .unhash = sctp_unhash,
6875 .get_port = sctp_get_port,
6876 .obj_size = sizeof(struct sctp6_sock),
Neil Horman4d93df02007-08-15 16:07:44 -07006877 .sysctl_mem = sysctl_sctp_mem,
6878 .sysctl_rmem = sysctl_sctp_rmem,
6879 .sysctl_wmem = sysctl_sctp_wmem,
6880 .memory_pressure = &sctp_memory_pressure,
6881 .enter_memory_pressure = sctp_enter_memory_pressure,
6882 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08006883 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006884};
Eric Dumazetdfd56b82011-12-10 09:48:31 +00006885#endif /* IS_ENABLED(CONFIG_IPV6) */