blob: 4c47e5578d711083c954fd29551b35bc547e8294 [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>
Al Viro56b31d12012-08-18 00:25:51 -040073#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75#include <net/ip.h>
76#include <net/icmp.h>
77#include <net/route.h>
78#include <net/ipv6.h>
79#include <net/inet_common.h>
80
81#include <linux/socket.h> /* for sa_family_t */
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040082#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <net/sock.h>
84#include <net/sctp/sctp.h>
85#include <net/sctp/sm.h>
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/* Forward declarations for internal helper functions. */
88static int sctp_writeable(struct sock *sk);
89static void sctp_wfree(struct sk_buff *skb);
90static int sctp_wait_for_sndbuf(struct sctp_association *, long *timeo_p,
91 size_t msg_len);
92static int sctp_wait_for_packet(struct sock * sk, int *err, long *timeo_p);
93static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
94static int sctp_wait_for_accept(struct sock *sk, long timeo);
95static void sctp_wait_for_close(struct sock *sk, long timeo);
96static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
97 union sctp_addr *addr, int len);
98static int sctp_bindx_add(struct sock *, struct sockaddr *, int);
99static int sctp_bindx_rem(struct sock *, struct sockaddr *, int);
100static int sctp_send_asconf_add_ip(struct sock *, struct sockaddr *, int);
101static int sctp_send_asconf_del_ip(struct sock *, struct sockaddr *, int);
102static int sctp_send_asconf(struct sctp_association *asoc,
103 struct sctp_chunk *chunk);
104static int sctp_do_bind(struct sock *, union sctp_addr *, int);
105static int sctp_autobind(struct sock *sk);
106static void sctp_sock_migrate(struct sock *, struct sock *,
107 struct sctp_association *, sctp_socket_type_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Neil Horman4d93df02007-08-15 16:07:44 -0700109extern struct kmem_cache *sctp_bucket_cachep;
Eric Dumazet8d987e52010-11-09 23:24:26 +0000110extern long sysctl_sctp_mem[3];
Neil Horman4d93df02007-08-15 16:07:44 -0700111extern int sysctl_sctp_rmem[3];
112extern int sysctl_sctp_wmem[3];
113
Adrian Bunkb6fa1a42007-09-12 15:18:00 +0200114static int sctp_memory_pressure;
Eric Dumazet8d987e52010-11-09 23:24:26 +0000115static atomic_long_t sctp_memory_allocated;
Eric Dumazet17483762008-11-25 21:16:35 -0800116struct percpu_counter sctp_sockets_allocated;
Neil Horman4d93df02007-08-15 16:07:44 -0700117
Pavel Emelyanov5c52ba12008-07-16 20:28:10 -0700118static void sctp_enter_memory_pressure(struct sock *sk)
Neil Horman4d93df02007-08-15 16:07:44 -0700119{
120 sctp_memory_pressure = 1;
121}
122
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124/* Get the sndbuf space available at the time on the association. */
125static inline int sctp_wspace(struct sctp_association *asoc)
126{
Neil Horman4d93df02007-08-15 16:07:44 -0700127 int amt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Neil Horman4d93df02007-08-15 16:07:44 -0700129 if (asoc->ep->sndbuf_policy)
130 amt = asoc->sndbuf_used;
131 else
Eric Dumazet31e6d362009-06-17 19:05:41 -0700132 amt = sk_wmem_alloc_get(asoc->base.sk);
Neil Horman4d93df02007-08-15 16:07:44 -0700133
134 if (amt >= asoc->base.sk->sk_sndbuf) {
135 if (asoc->base.sk->sk_userlocks & SOCK_SNDBUF_LOCK)
136 amt = 0;
137 else {
138 amt = sk_stream_wspace(asoc->base.sk);
139 if (amt < 0)
140 amt = 0;
141 }
Neil Horman4eb701d2005-04-28 12:02:04 -0700142 } else {
Neil Horman4d93df02007-08-15 16:07:44 -0700143 amt = asoc->base.sk->sk_sndbuf - amt;
Neil Horman4eb701d2005-04-28 12:02:04 -0700144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return amt;
146}
147
148/* Increment the used sndbuf space count of the corresponding association by
149 * the size of the outgoing data chunk.
150 * Also, set the skb destructor for sndbuf accounting later.
151 *
152 * Since it is always 1-1 between chunk and skb, and also a new skb is always
153 * allocated for chunk bundling in sctp_packet_transmit(), we can use the
154 * destructor in the data chunk skb for the purpose of the sndbuf space
155 * tracking.
156 */
157static inline void sctp_set_owner_w(struct sctp_chunk *chunk)
158{
159 struct sctp_association *asoc = chunk->asoc;
160 struct sock *sk = asoc->base.sk;
161
162 /* The sndbuf space is tracked per association. */
163 sctp_association_hold(asoc);
164
Neil Horman4eb701d2005-04-28 12:02:04 -0700165 skb_set_owner_w(chunk->skb, sk);
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 chunk->skb->destructor = sctp_wfree;
168 /* Save the chunk pointer in skb for sctp_wfree to use later. */
169 *((struct sctp_chunk **)(chunk->skb->cb)) = chunk;
170
Neil Horman4eb701d2005-04-28 12:02:04 -0700171 asoc->sndbuf_used += SCTP_DATA_SNDSIZE(chunk) +
172 sizeof(struct sk_buff) +
173 sizeof(struct sctp_chunk);
174
Neil Horman4eb701d2005-04-28 12:02:04 -0700175 atomic_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800176 sk->sk_wmem_queued += chunk->skb->truesize;
177 sk_mem_charge(sk, chunk->skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
180/* Verify that this is a valid address. */
181static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr,
182 int len)
183{
184 struct sctp_af *af;
185
186 /* Verify basic sockaddr. */
187 af = sctp_sockaddr_af(sctp_sk(sk), addr, len);
188 if (!af)
189 return -EINVAL;
190
191 /* Is this a valid SCTP address? */
Vlad Yasevich5636bef2006-06-17 22:55:35 -0700192 if (!af->addr_valid(addr, sctp_sk(sk), NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return -EINVAL;
194
195 if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr)))
196 return -EINVAL;
197
198 return 0;
199}
200
201/* Look up the association by its id. If this is not a UDP-style
202 * socket, the ID field is always ignored.
203 */
204struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
205{
206 struct sctp_association *asoc = NULL;
207
208 /* If this is not a UDP-style socket, assoc id should be ignored. */
209 if (!sctp_style(sk, UDP)) {
210 /* Return NULL if the socket state is not ESTABLISHED. It
211 * could be a TCP-style listening socket or a socket which
212 * hasn't yet called connect() to establish an association.
213 */
214 if (!sctp_sstate(sk, ESTABLISHED))
215 return NULL;
216
217 /* Get the first and the only association from the list. */
218 if (!list_empty(&sctp_sk(sk)->ep->asocs))
219 asoc = list_entry(sctp_sk(sk)->ep->asocs.next,
220 struct sctp_association, asocs);
221 return asoc;
222 }
223
224 /* Otherwise this is a UDP-style socket. */
225 if (!id || (id == (sctp_assoc_t)-1))
226 return NULL;
227
228 spin_lock_bh(&sctp_assocs_id_lock);
229 asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id);
230 spin_unlock_bh(&sctp_assocs_id_lock);
231
232 if (!asoc || (asoc->base.sk != sk) || asoc->base.dead)
233 return NULL;
234
235 return asoc;
236}
237
238/* Look up the transport from an address and an assoc id. If both address and
239 * id are specified, the associations matching the address and the id should be
240 * the same.
241 */
242static struct sctp_transport *sctp_addr_id2transport(struct sock *sk,
243 struct sockaddr_storage *addr,
244 sctp_assoc_t id)
245{
246 struct sctp_association *addr_asoc = NULL, *id_asoc = NULL;
247 struct sctp_transport *transport;
248 union sctp_addr *laddr = (union sctp_addr *)addr;
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
Al Virocd4ff032006-11-20 17:11:33 -0800251 laddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 &transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 if (!addr_asoc)
255 return NULL;
256
257 id_asoc = sctp_id2assoc(sk, id);
258 if (id_asoc && (id_asoc != addr_asoc))
259 return NULL;
260
261 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk),
262 (union sctp_addr *)addr);
263
264 return transport;
265}
266
267/* API 3.1.2 bind() - UDP Style Syntax
268 * The syntax of bind() is,
269 *
270 * ret = bind(int sd, struct sockaddr *addr, int addrlen);
271 *
272 * sd - the socket descriptor returned by socket().
273 * addr - the address structure (struct sockaddr_in or struct
274 * sockaddr_in6 [RFC 2553]),
275 * addr_len - the size of the address structure.
276 */
Daniel Borkmanndda91922013-06-17 11:40:05 +0200277static int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 int retval = 0;
280
281 sctp_lock_sock(sk);
282
Frank Filz3f7a87d2005-06-20 13:14:57 -0700283 SCTP_DEBUG_PRINTK("sctp_bind(sk: %p, addr: %p, addr_len: %d)\n",
284 sk, addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 /* Disallow binding twice. */
287 if (!sctp_sk(sk)->ep->base.bind_addr.port)
Frank Filz3f7a87d2005-06-20 13:14:57 -0700288 retval = sctp_do_bind(sk, (union sctp_addr *)addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 addr_len);
290 else
291 retval = -EINVAL;
292
293 sctp_release_sock(sk);
294
295 return retval;
296}
297
298static long sctp_get_port_local(struct sock *, union sctp_addr *);
299
300/* Verify this is a valid sockaddr. */
301static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
302 union sctp_addr *addr, int len)
303{
304 struct sctp_af *af;
305
306 /* Check minimum size. */
307 if (len < sizeof (struct sockaddr))
308 return NULL;
309
Vlad Yasevich7dab83d2008-07-18 23:05:40 -0700310 /* V4 mapped address are really of AF_INET family */
311 if (addr->sa.sa_family == AF_INET6 &&
312 ipv6_addr_v4mapped(&addr->v6.sin6_addr)) {
313 if (!opt->pf->af_supported(AF_INET, opt))
314 return NULL;
315 } else {
316 /* Does this PF support this AF? */
317 if (!opt->pf->af_supported(addr->sa.sa_family, opt))
318 return NULL;
319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 /* If we get this far, af is valid. */
322 af = sctp_get_af_specific(addr->sa.sa_family);
323
324 if (len < af->sockaddr_len)
325 return NULL;
326
327 return af;
328}
329
330/* Bind a local address either to an endpoint or to an association. */
Daniel Borkmanndda91922013-06-17 11:40:05 +0200331static int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
Eric W. Biederman35946982012-11-16 03:03:12 +0000333 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 struct sctp_sock *sp = sctp_sk(sk);
335 struct sctp_endpoint *ep = sp->ep;
336 struct sctp_bind_addr *bp = &ep->base.bind_addr;
337 struct sctp_af *af;
338 unsigned short snum;
339 int ret = 0;
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 /* Common sockaddr verification. */
342 af = sctp_sockaddr_af(sp, addr, len);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700343 if (!af) {
344 SCTP_DEBUG_PRINTK("sctp_do_bind(sk: %p, newaddr: %p, len: %d) EINVAL\n",
345 sk, addr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return -EINVAL;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700347 }
348
349 snum = ntohs(addr->v4.sin_port);
350
351 SCTP_DEBUG_PRINTK_IPADDR("sctp_do_bind(sk: %p, new addr: ",
352 ", port: %d, new port: %d, len: %d)\n",
353 sk,
354 addr,
355 bp->port, snum,
356 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 /* PF specific bind() address verification. */
359 if (!sp->pf->bind_verify(sp, addr))
360 return -EADDRNOTAVAIL;
361
Vlad Yasevich8b358052007-05-15 17:14:58 -0400362 /* We must either be unbound, or bind to the same port.
363 * It's OK to allow 0 ports if we are already bound.
364 * We'll just inhert an already bound port in this case
365 */
366 if (bp->port) {
367 if (!snum)
368 snum = bp->port;
369 else if (snum != bp->port) {
370 SCTP_DEBUG_PRINTK("sctp_do_bind:"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 " New port %d does not match existing port "
372 "%d.\n", snum, bp->port);
Vlad Yasevich8b358052007-05-15 17:14:58 -0400373 return -EINVAL;
374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376
Eric W. Biederman35946982012-11-16 03:03:12 +0000377 if (snum && snum < PROT_SOCK &&
378 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return -EACCES;
380
Vlad Yasevich4e540642008-07-18 23:06:32 -0700381 /* See if the address matches any of the addresses we may have
382 * already bound before checking against other endpoints.
383 */
384 if (sctp_bind_addr_match(bp, addr, sp))
385 return -EINVAL;
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 /* Make sure we are allowed to bind here.
388 * The function sctp_get_port_local() does duplicate address
389 * detection.
390 */
Vlad Yasevich2772b492007-08-21 14:24:30 +0900391 addr->v4.sin_port = htons(snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if ((ret = sctp_get_port_local(sk, addr))) {
Vlad Yasevich4e540642008-07-18 23:06:32 -0700393 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
395
396 /* Refresh ephemeral port. */
397 if (!bp->port)
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000398 bp->port = inet_sk(sk)->inet_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Vlad Yasevich559cf712007-09-16 16:03:28 -0700400 /* Add the address to the bind address list.
401 * Use GFP_ATOMIC since BHs will be disabled.
402 */
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800403 ret = sctp_add_bind_addr(bp, addr, SCTP_ADDR_SRC, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 /* Copy back into socket for getsockname() use. */
406 if (!ret) {
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000407 inet_sk(sk)->inet_sport = htons(inet_sk(sk)->inet_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 af->to_sk_saddr(addr, sk);
409 }
410
411 return ret;
412}
413
414 /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
415 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900416 * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 * at any one time. If a sender, after sending an ASCONF chunk, decides
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900418 * it needs to transfer another ASCONF Chunk, it MUST wait until the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900420 * subsequent ASCONF. Note this restriction binds each side, so at any
421 * time two ASCONF may be in-transit on any given association (one sent
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 * from each endpoint).
423 */
424static int sctp_send_asconf(struct sctp_association *asoc,
425 struct sctp_chunk *chunk)
426{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +0000427 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 int retval = 0;
429
430 /* If there is an outstanding ASCONF chunk, queue it for later
431 * transmission.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900432 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (asoc->addip_last_asconf) {
David S. Miller79af02c2005-07-08 21:47:49 -0700434 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900435 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
437
438 /* Hold the chunk until an ASCONF_ACK is received. */
439 sctp_chunk_hold(chunk);
Eric W. Biederman55e26eb2012-08-07 07:25:24 +0000440 retval = sctp_primitive_ASCONF(net, asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (retval)
442 sctp_chunk_free(chunk);
443 else
444 asoc->addip_last_asconf = chunk;
445
446out:
447 return retval;
448}
449
450/* Add a list of addresses as bind addresses to local endpoint or
451 * association.
452 *
453 * Basically run through each address specified in the addrs/addrcnt
454 * array/length pair, determine if it is IPv6 or IPv4 and call
455 * sctp_do_bind() on it.
456 *
457 * If any of them fails, then the operation will be reversed and the
458 * ones that were added will be removed.
459 *
460 * Only sctp_setsockopt_bindx() is supposed to call this function.
461 */
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +0200462static int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 int cnt;
465 int retval = 0;
466 void *addr_buf;
467 struct sockaddr *sa_addr;
468 struct sctp_af *af;
469
470 SCTP_DEBUG_PRINTK("sctp_bindx_add (sk: %p, addrs: %p, addrcnt: %d)\n",
471 sk, addrs, addrcnt);
472
473 addr_buf = addrs;
474 for (cnt = 0; cnt < addrcnt; cnt++) {
475 /* The list may contain either IPv4 or IPv6 address;
476 * determine the address length for walking thru the list.
477 */
Joe Perchesea110732011-06-13 16:21:26 +0000478 sa_addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 af = sctp_get_af_specific(sa_addr->sa_family);
480 if (!af) {
481 retval = -EINVAL;
482 goto err_bindx_add;
483 }
484
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900485 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 af->sockaddr_len);
487
488 addr_buf += af->sockaddr_len;
489
490err_bindx_add:
491 if (retval < 0) {
492 /* Failed. Cleanup the ones that have been added */
493 if (cnt > 0)
494 sctp_bindx_rem(sk, addrs, cnt);
495 return retval;
496 }
497 }
498
499 return retval;
500}
501
502/* Send an ASCONF chunk with Add IP address parameters to all the peers of the
503 * associations that are part of the endpoint indicating that a list of local
504 * addresses are added to the endpoint.
505 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900506 * If any of the addresses is already in the bind address list of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 * association, we do not send the chunk for that association. But it will not
508 * affect other associations.
509 *
510 * Only sctp_setsockopt_bindx() is supposed to call this function.
511 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900512static int sctp_send_asconf_add_ip(struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 struct sockaddr *addrs,
514 int addrcnt)
515{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000516 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 struct sctp_sock *sp;
518 struct sctp_endpoint *ep;
519 struct sctp_association *asoc;
520 struct sctp_bind_addr *bp;
521 struct sctp_chunk *chunk;
522 struct sctp_sockaddr_entry *laddr;
523 union sctp_addr *addr;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700524 union sctp_addr saveaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 void *addr_buf;
526 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 struct list_head *p;
528 int i;
529 int retval = 0;
530
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000531 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return retval;
533
534 sp = sctp_sk(sk);
535 ep = sp->ep;
536
537 SCTP_DEBUG_PRINTK("%s: (sk: %p, addrs: %p, addrcnt: %d)\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800538 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700540 list_for_each_entry(asoc, &ep->asocs, asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 if (!asoc->peer.asconf_capable)
543 continue;
544
545 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_ADD_IP)
546 continue;
547
548 if (!sctp_state(asoc, ESTABLISHED))
549 continue;
550
551 /* Check if any address in the packed array of addresses is
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900552 * in the bind address list of the association. If so,
553 * do not send the asconf chunk to its peer, but continue with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 * other associations.
555 */
556 addr_buf = addrs;
557 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000558 addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 af = sctp_get_af_specific(addr->v4.sin_family);
560 if (!af) {
561 retval = -EINVAL;
562 goto out;
563 }
564
565 if (sctp_assoc_lookup_laddr(asoc, addr))
566 break;
567
568 addr_buf += af->sockaddr_len;
569 }
570 if (i < addrcnt)
571 continue;
572
Vlad Yasevich559cf712007-09-16 16:03:28 -0700573 /* Use the first valid address in bind addr list of
574 * association as Address Parameter of ASCONF CHUNK.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 bp = &asoc->base.bind_addr;
577 p = bp->address_list.next;
578 laddr = list_entry(p, struct sctp_sockaddr_entry, list);
Al Viro5ae955c2006-11-20 17:22:08 -0800579 chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 addrcnt, SCTP_PARAM_ADD_IP);
581 if (!chunk) {
582 retval = -ENOMEM;
583 goto out;
584 }
585
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700586 /* Add the new addresses to the bind address list with
587 * use_as_src set to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700589 addr_buf = addrs;
590 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000591 addr = addr_buf;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700592 af = sctp_get_af_specific(addr->v4.sin_family);
593 memcpy(&saveaddr, addr, af->sockaddr_len);
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800594 retval = sctp_add_bind_addr(bp, &saveaddr,
595 SCTP_ADDR_NEW, GFP_ATOMIC);
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700596 addr_buf += af->sockaddr_len;
597 }
Michio Honda8a07eb02011-04-26 20:19:36 +0900598 if (asoc->src_out_of_asoc_ok) {
599 struct sctp_transport *trans;
600
601 list_for_each_entry(trans,
602 &asoc->peer.transport_addr_list, transports) {
603 /* Clear the source and route cache */
604 dst_release(trans->dst);
605 trans->cwnd = min(4*asoc->pathmtu, max_t(__u32,
606 2*asoc->pathmtu, 4380));
607 trans->ssthresh = asoc->peer.i.a_rwnd;
608 trans->rto = asoc->rto_initial;
Michele Baldessari196d6752012-12-01 04:49:42 +0000609 sctp_max_rto(asoc, trans);
Michio Honda8a07eb02011-04-26 20:19:36 +0900610 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{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000720 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 struct sctp_sock *sp;
722 struct sctp_endpoint *ep;
723 struct sctp_association *asoc;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700724 struct sctp_transport *transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 struct sctp_bind_addr *bp;
726 struct sctp_chunk *chunk;
727 union sctp_addr *laddr;
728 void *addr_buf;
729 struct sctp_af *af;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700730 struct sctp_sockaddr_entry *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 int i;
732 int retval = 0;
Michio Honda8a07eb02011-04-26 20:19:36 +0900733 int stored = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Michio Honda8a07eb02011-04-26 20:19:36 +0900735 chunk = NULL;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000736 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return retval;
738
739 sp = sctp_sk(sk);
740 ep = sp->ep;
741
742 SCTP_DEBUG_PRINTK("%s: (sk: %p, addrs: %p, addrcnt: %d)\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800743 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700745 list_for_each_entry(asoc, &ep->asocs, asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 if (!asoc->peer.asconf_capable)
748 continue;
749
750 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_DEL_IP)
751 continue;
752
753 if (!sctp_state(asoc, ESTABLISHED))
754 continue;
755
756 /* Check if any address in the packed array of addresses is
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900757 * not present in the bind address list of the association.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 * If so, do not send the asconf chunk to its peer, but
759 * continue with other associations.
760 */
761 addr_buf = addrs;
762 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000763 laddr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 af = sctp_get_af_specific(laddr->v4.sin_family);
765 if (!af) {
766 retval = -EINVAL;
767 goto out;
768 }
769
770 if (!sctp_assoc_lookup_laddr(asoc, laddr))
771 break;
772
773 addr_buf += af->sockaddr_len;
774 }
775 if (i < addrcnt)
776 continue;
777
778 /* Find one address in the association's bind address list
779 * that is not in the packed array of addresses. This is to
780 * make sure that we do not delete all the addresses in the
781 * association.
782 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 bp = &asoc->base.bind_addr;
784 laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs,
785 addrcnt, sp);
Michio Honda8a07eb02011-04-26 20:19:36 +0900786 if ((laddr == NULL) && (addrcnt == 1)) {
787 if (asoc->asconf_addr_del_pending)
788 continue;
789 asoc->asconf_addr_del_pending =
790 kzalloc(sizeof(union sctp_addr), GFP_ATOMIC);
Michio Honda6d65e5e2011-06-10 16:42:14 +0900791 if (asoc->asconf_addr_del_pending == NULL) {
792 retval = -ENOMEM;
793 goto out;
794 }
Michio Honda8a07eb02011-04-26 20:19:36 +0900795 asoc->asconf_addr_del_pending->sa.sa_family =
796 addrs->sa_family;
797 asoc->asconf_addr_del_pending->v4.sin_port =
798 htons(bp->port);
799 if (addrs->sa_family == AF_INET) {
800 struct sockaddr_in *sin;
801
802 sin = (struct sockaddr_in *)addrs;
803 asoc->asconf_addr_del_pending->v4.sin_addr.s_addr = sin->sin_addr.s_addr;
804 } else if (addrs->sa_family == AF_INET6) {
805 struct sockaddr_in6 *sin6;
806
807 sin6 = (struct sockaddr_in6 *)addrs;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000808 asoc->asconf_addr_del_pending->v6.sin6_addr = sin6->sin6_addr;
Michio Honda8a07eb02011-04-26 20:19:36 +0900809 }
810 SCTP_DEBUG_PRINTK_IPADDR("send_asconf_del_ip: keep the last address asoc: %p ",
811 " at %p\n", asoc, asoc->asconf_addr_del_pending,
812 asoc->asconf_addr_del_pending);
813 asoc->src_out_of_asoc_ok = 1;
814 stored = 1;
815 goto skip_mkasconf;
816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Vlad Yasevich559cf712007-09-16 16:03:28 -0700818 /* We do not need RCU protection throughout this loop
819 * because this is done under a socket lock from the
820 * setsockopt call.
821 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 chunk = sctp_make_asconf_update_ip(asoc, laddr, addrs, addrcnt,
823 SCTP_PARAM_DEL_IP);
824 if (!chunk) {
825 retval = -ENOMEM;
826 goto out;
827 }
828
Michio Honda8a07eb02011-04-26 20:19:36 +0900829skip_mkasconf:
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700830 /* Reset use_as_src flag for the addresses in the bind address
831 * list that are to be deleted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700833 addr_buf = addrs;
834 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000835 laddr = addr_buf;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700836 af = sctp_get_af_specific(laddr->v4.sin_family);
Vlad Yasevich559cf712007-09-16 16:03:28 -0700837 list_for_each_entry(saddr, &bp->address_list, list) {
Al Viro5f242a12006-11-20 17:05:23 -0800838 if (sctp_cmp_addr_exact(&saddr->a, laddr))
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800839 saddr->state = SCTP_ADDR_DEL;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700840 }
841 addr_buf += af->sockaddr_len;
842 }
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700843
844 /* Update the route and saddr entries for all the transports
845 * as some of the addresses in the bind address list are
846 * about to be deleted and cannot be used as source addresses.
847 */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700848 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
849 transports) {
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700850 dst_release(transport->dst);
851 sctp_transport_route(transport, NULL,
852 sctp_sk(asoc->base.sk));
853 }
854
Michio Honda8a07eb02011-04-26 20:19:36 +0900855 if (stored)
856 /* We don't need to transmit ASCONF */
857 continue;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700858 retval = sctp_send_asconf(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
860out:
861 return retval;
862}
863
Michio Honda9f7d6532011-04-26 19:32:51 +0900864/* set addr events to assocs in the endpoint. ep and addr_wq must be locked */
865int sctp_asconf_mgmt(struct sctp_sock *sp, struct sctp_sockaddr_entry *addrw)
866{
867 struct sock *sk = sctp_opt2sk(sp);
868 union sctp_addr *addr;
869 struct sctp_af *af;
870
871 /* It is safe to write port space in caller. */
872 addr = &addrw->a;
873 addr->v4.sin_port = htons(sp->ep->base.bind_addr.port);
874 af = sctp_get_af_specific(addr->sa.sa_family);
875 if (!af)
876 return -EINVAL;
877 if (sctp_verify_addr(sk, addr, af->sockaddr_len))
878 return -EINVAL;
879
880 if (addrw->state == SCTP_ADDR_NEW)
881 return sctp_send_asconf_add_ip(sk, (struct sockaddr *)addr, 1);
882 else
883 return sctp_send_asconf_del_ip(sk, (struct sockaddr *)addr, 1);
884}
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886/* Helper for tunneling sctp_bindx() requests through sctp_setsockopt()
887 *
888 * API 8.1
889 * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt,
890 * int flags);
891 *
892 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
893 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
894 * or IPv6 addresses.
895 *
896 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
897 * Section 3.1.2 for this usage.
898 *
899 * addrs is a pointer to an array of one or more socket addresses. Each
900 * address is contained in its appropriate structure (i.e. struct
901 * sockaddr_in or struct sockaddr_in6) the family of the address type
Ville Nuorvala23c435f2006-10-16 22:08:28 -0700902 * must be used to distinguish the address length (note that this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 * representation is termed a "packed array" of addresses). The caller
904 * specifies the number of addresses in the array with addrcnt.
905 *
906 * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns
907 * -1, and sets errno to the appropriate error code.
908 *
909 * For SCTP, the port given in each socket address must be the same, or
910 * sctp_bindx() will fail, setting errno to EINVAL.
911 *
912 * The flags parameter is formed from the bitwise OR of zero or more of
913 * the following currently defined flags:
914 *
915 * SCTP_BINDX_ADD_ADDR
916 *
917 * SCTP_BINDX_REM_ADDR
918 *
919 * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the
920 * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given
921 * addresses from the association. The two flags are mutually exclusive;
922 * if both are given, sctp_bindx() will fail with EINVAL. A caller may
923 * not remove all addresses from an association; sctp_bindx() will
924 * reject such an attempt with EINVAL.
925 *
926 * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate
927 * additional addresses with an endpoint after calling bind(). Or use
928 * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening
929 * socket is associated with so that no new association accepted will be
930 * associated with those addresses. If the endpoint supports dynamic
931 * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a
932 * endpoint to send the appropriate message to the peer to change the
933 * peers address lists.
934 *
935 * Adding and removing addresses from a connected association is
936 * optional functionality. Implementations that do not support this
937 * functionality should return EOPNOTSUPP.
938 *
939 * Basically do nothing but copying the addresses from user to kernel
940 * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk.
Frank Filz3f7a87d2005-06-20 13:14:57 -0700941 * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
942 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 *
944 * We don't use copy_from_user() for optimization: we first do the
945 * sanity checks (buffer size -fast- and access check-healthy
946 * pointer); if all of those succeed, then we can alloc the memory
947 * (expensive operation) needed to copy the data to kernel. Then we do
948 * the copying without checking the user space area
949 * (__copy_from_user()).
950 *
951 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
952 * it.
953 *
954 * sk The sk of the socket
955 * addrs The pointer to the addresses in user land
956 * addrssize Size of the addrs buffer
957 * op Operation to perform (add or remove, see the flags of
958 * sctp_bindx)
959 *
960 * Returns 0 if ok, <0 errno code on error.
961 */
Daniel Borkmanndda91922013-06-17 11:40:05 +0200962static int sctp_setsockopt_bindx(struct sock* sk,
963 struct sockaddr __user *addrs,
964 int addrs_size, int op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
966 struct sockaddr *kaddrs;
967 int err;
968 int addrcnt = 0;
969 int walk_size = 0;
970 struct sockaddr *sa_addr;
971 void *addr_buf;
972 struct sctp_af *af;
973
Masanari Iidad3e9a1d2012-10-31 05:48:19 +0000974 SCTP_DEBUG_PRINTK("sctp_setsockopt_bindx: sk %p addrs %p"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 " addrs_size %d opt %d\n", sk, addrs, addrs_size, op);
976
977 if (unlikely(addrs_size <= 0))
978 return -EINVAL;
979
980 /* Check the user passed a healthy pointer. */
981 if (unlikely(!access_ok(VERIFY_READ, addrs, addrs_size)))
982 return -EFAULT;
983
984 /* Alloc space for the address array in kernel memory. */
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800985 kaddrs = kmalloc(addrs_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 if (unlikely(!kaddrs))
987 return -ENOMEM;
988
989 if (__copy_from_user(kaddrs, addrs, addrs_size)) {
990 kfree(kaddrs);
991 return -EFAULT;
992 }
993
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900994 /* Walk through the addrs buffer and count the number of addresses. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 addr_buf = kaddrs;
996 while (walk_size < addrs_size) {
Dan Rosenbergd7e0d192010-10-01 11:16:58 +0000997 if (walk_size + sizeof(sa_family_t) > addrs_size) {
998 kfree(kaddrs);
999 return -EINVAL;
1000 }
1001
Joe Perchesea110732011-06-13 16:21:26 +00001002 sa_addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 af = sctp_get_af_specific(sa_addr->sa_family);
1004
1005 /* If the address family is not supported or if this address
1006 * causes the address buffer to overflow return EINVAL.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001007 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1009 kfree(kaddrs);
1010 return -EINVAL;
1011 }
1012 addrcnt++;
1013 addr_buf += af->sockaddr_len;
1014 walk_size += af->sockaddr_len;
1015 }
1016
1017 /* Do the work. */
1018 switch (op) {
1019 case SCTP_BINDX_ADD_ADDR:
1020 err = sctp_bindx_add(sk, kaddrs, addrcnt);
1021 if (err)
1022 goto out;
1023 err = sctp_send_asconf_add_ip(sk, kaddrs, addrcnt);
1024 break;
1025
1026 case SCTP_BINDX_REM_ADDR:
1027 err = sctp_bindx_rem(sk, kaddrs, addrcnt);
1028 if (err)
1029 goto out;
1030 err = sctp_send_asconf_del_ip(sk, kaddrs, addrcnt);
1031 break;
1032
1033 default:
1034 err = -EINVAL;
1035 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038out:
1039 kfree(kaddrs);
1040
1041 return err;
1042}
1043
Frank Filz3f7a87d2005-06-20 13:14:57 -07001044/* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size)
1045 *
1046 * Common routine for handling connect() and sctp_connectx().
1047 * Connect will come in with just a single address.
1048 */
1049static int __sctp_connect(struct sock* sk,
1050 struct sockaddr *kaddrs,
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001051 int addrs_size,
1052 sctp_assoc_t *assoc_id)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001053{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001054 struct net *net = sock_net(sk);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001055 struct sctp_sock *sp;
1056 struct sctp_endpoint *ep;
1057 struct sctp_association *asoc = NULL;
1058 struct sctp_association *asoc2;
1059 struct sctp_transport *transport;
1060 union sctp_addr to;
1061 struct sctp_af *af;
1062 sctp_scope_t scope;
1063 long timeo;
1064 int err = 0;
1065 int addrcnt = 0;
1066 int walk_size = 0;
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001067 union sctp_addr *sa_addr = NULL;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001068 void *addr_buf;
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001069 unsigned short port;
Vlad Yasevichf50f95c2007-07-03 12:47:40 -04001070 unsigned int f_flags = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001071
1072 sp = sctp_sk(sk);
1073 ep = sp->ep;
1074
1075 /* connect() cannot be done on a socket that is already in ESTABLISHED
1076 * state - UDP-style peeled off socket or a TCP-style socket that
1077 * is already connected.
1078 * It cannot be done even on a TCP-style listening socket.
1079 */
1080 if (sctp_sstate(sk, ESTABLISHED) ||
1081 (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))) {
1082 err = -EISCONN;
1083 goto out_free;
1084 }
1085
1086 /* Walk through the addrs buffer and count the number of addresses. */
1087 addr_buf = kaddrs;
1088 while (walk_size < addrs_size) {
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001089 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1090 err = -EINVAL;
1091 goto out_free;
1092 }
1093
Joe Perchesea110732011-06-13 16:21:26 +00001094 sa_addr = addr_buf;
Al Viro4bdf4b52006-11-20 17:10:20 -08001095 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001096
1097 /* If the address family is not supported or if this address
1098 * causes the address buffer to overflow return EINVAL.
1099 */
1100 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1101 err = -EINVAL;
1102 goto out_free;
1103 }
1104
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001105 port = ntohs(sa_addr->v4.sin_port);
1106
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001107 /* Save current address so we can work with it */
1108 memcpy(&to, sa_addr, af->sockaddr_len);
1109
1110 err = sctp_verify_addr(sk, &to, af->sockaddr_len);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001111 if (err)
1112 goto out_free;
1113
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001114 /* Make sure the destination port is correctly set
1115 * in all addresses.
1116 */
Wei Yongjun524fba62013-04-03 03:02:28 +00001117 if (asoc && asoc->peer.port && asoc->peer.port != port) {
1118 err = -EINVAL;
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001119 goto out_free;
Wei Yongjun524fba62013-04-03 03:02:28 +00001120 }
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 &&
Eric W. Biederman35946982012-11-16 03:03:12 +00001163 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE)) {
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001164 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
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001206 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001207 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 Horman2eebc1e2012-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 Horman2eebc1e2012-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 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02001310static 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 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02001348static int sctp_setsockopt_connectx_old(struct sock* sk,
1349 struct sockaddr __user *addrs,
1350 int addrs_size)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001351{
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 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02001361static int sctp_setsockopt_connectx(struct sock* sk,
1362 struct sockaddr __user *addrs,
1363 int addrs_size)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001364{
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 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02001384static int sctp_getsockopt_connectx3(struct sock* sk, int len,
1385 char __user *optval,
1386 int __user *optlen)
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001387{
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 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02001462static void sctp_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001464 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 struct sctp_endpoint *ep;
1466 struct sctp_association *asoc;
1467 struct list_head *pos, *temp;
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001468 unsigned int data_was_unread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
1470 SCTP_DEBUG_PRINTK("sctp_close(sk: 0x%p, timeout:%ld)\n", sk, timeout);
1471
1472 sctp_lock_sock(sk);
1473 sk->sk_shutdown = SHUTDOWN_MASK;
Vlad Yasevichbec96402009-07-30 18:08:28 -04001474 sk->sk_state = SCTP_SS_CLOSING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
1476 ep = sctp_sk(sk)->ep;
1477
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001478 /* Clean up any skbs sitting on the receive queue. */
1479 data_was_unread = sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1480 data_was_unread += sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1481
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07001482 /* Walk all associations on an endpoint. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 list_for_each_safe(pos, temp, &ep->asocs) {
1484 asoc = list_entry(pos, struct sctp_association, asocs);
1485
1486 if (sctp_style(sk, TCP)) {
1487 /* A closed association can still be in the list if
1488 * it belongs to a TCP-style listening socket that is
1489 * not yet accepted. If so, free it. If not, send an
1490 * ABORT or SHUTDOWN based on the linger options.
1491 */
1492 if (sctp_state(asoc, CLOSED)) {
1493 sctp_unhash_established(asoc);
1494 sctp_association_free(asoc);
Vladislav Yasevichb89498a2006-05-19 14:32:06 -07001495 continue;
1496 }
1497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001499 if (data_was_unread || !skb_queue_empty(&asoc->ulpq.lobby) ||
1500 !skb_queue_empty(&asoc->ulpq.reasm) ||
1501 (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) {
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001502 struct sctp_chunk *chunk;
1503
1504 chunk = sctp_make_abort_user(asoc, NULL, 0);
1505 if (chunk)
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001506 sctp_primitive_ABORT(net, asoc, chunk);
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001507 } else
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001508 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 }
1510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 /* On a TCP-style socket, block for at most linger_time if set. */
1512 if (sctp_style(sk, TCP) && timeout)
1513 sctp_wait_for_close(sk, timeout);
1514
1515 /* This will run the backlog queue. */
1516 sctp_release_sock(sk);
1517
1518 /* Supposedly, no process has access to the socket, but
1519 * the net layers still may.
1520 */
1521 sctp_local_bh_disable();
1522 sctp_bh_lock_sock(sk);
1523
1524 /* Hold the sock, since sk_common_release() will put sock_put()
1525 * and we have just a little more cleanup.
1526 */
1527 sock_hold(sk);
1528 sk_common_release(sk);
1529
1530 sctp_bh_unlock_sock(sk);
1531 sctp_local_bh_enable();
1532
1533 sock_put(sk);
1534
1535 SCTP_DBG_OBJCNT_DEC(sock);
1536}
1537
1538/* Handle EPIPE error. */
1539static int sctp_error(struct sock *sk, int flags, int err)
1540{
1541 if (err == -EPIPE)
1542 err = sock_error(sk) ? : -EPIPE;
1543 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1544 send_sig(SIGPIPE, current, 0);
1545 return err;
1546}
1547
1548/* API 3.1.3 sendmsg() - UDP Style Syntax
1549 *
1550 * An application uses sendmsg() and recvmsg() calls to transmit data to
1551 * and receive data from its peer.
1552 *
1553 * ssize_t sendmsg(int socket, const struct msghdr *message,
1554 * int flags);
1555 *
1556 * socket - the socket descriptor of the endpoint.
1557 * message - pointer to the msghdr structure which contains a single
1558 * user message and possibly some ancillary data.
1559 *
1560 * See Section 5 for complete description of the data
1561 * structures.
1562 *
1563 * flags - flags sent or received with the user message, see Section
1564 * 5 for complete description of the flags.
1565 *
1566 * Note: This function could use a rewrite especially when explicit
1567 * connect support comes in.
1568 */
1569/* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */
1570
Daniel Borkmanndda91922013-06-17 11:40:05 +02001571static int sctp_msghdr_parse(const struct msghdr *, sctp_cmsgs_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Daniel Borkmanndda91922013-06-17 11:40:05 +02001573static int sctp_sendmsg(struct kiocb *iocb, struct sock *sk,
1574 struct msghdr *msg, size_t msg_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001576 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 struct sctp_sock *sp;
1578 struct sctp_endpoint *ep;
1579 struct sctp_association *new_asoc=NULL, *asoc=NULL;
1580 struct sctp_transport *transport, *chunk_tp;
1581 struct sctp_chunk *chunk;
Al Virodce116a2006-11-20 17:25:15 -08001582 union sctp_addr to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 struct sockaddr *msg_name = NULL;
Joe Perches517aa0b2011-05-12 11:27:20 +00001584 struct sctp_sndrcvinfo default_sinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 struct sctp_sndrcvinfo *sinfo;
1586 struct sctp_initmsg *sinit;
1587 sctp_assoc_t associd = 0;
1588 sctp_cmsgs_t cmsgs = { NULL };
1589 int err;
1590 sctp_scope_t scope;
1591 long timeo;
1592 __u16 sinfo_flags = 0;
1593 struct sctp_datamsg *datamsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 int msg_flags = msg->msg_flags;
1595
1596 SCTP_DEBUG_PRINTK("sctp_sendmsg(sk: %p, msg: %p, msg_len: %zu)\n",
1597 sk, msg, msg_len);
1598
1599 err = 0;
1600 sp = sctp_sk(sk);
1601 ep = sp->ep;
1602
Frank Filz3f7a87d2005-06-20 13:14:57 -07001603 SCTP_DEBUG_PRINTK("Using endpoint: %p.\n", ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
1605 /* We cannot send a message over a TCP-style listening socket. */
1606 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING)) {
1607 err = -EPIPE;
1608 goto out_nounlock;
1609 }
1610
1611 /* Parse out the SCTP CMSGs. */
1612 err = sctp_msghdr_parse(msg, &cmsgs);
1613
1614 if (err) {
1615 SCTP_DEBUG_PRINTK("msghdr parse err = %x\n", err);
1616 goto out_nounlock;
1617 }
1618
1619 /* Fetch the destination address for this packet. This
1620 * address only selects the association--it is not necessarily
1621 * the address we will send to.
1622 * For a peeled-off socket, msg_name is ignored.
1623 */
1624 if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
1625 int msg_namelen = msg->msg_namelen;
1626
1627 err = sctp_verify_addr(sk, (union sctp_addr *)msg->msg_name,
1628 msg_namelen);
1629 if (err)
1630 return err;
1631
1632 if (msg_namelen > sizeof(to))
1633 msg_namelen = sizeof(to);
1634 memcpy(&to, msg->msg_name, msg_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 msg_name = msg->msg_name;
1636 }
1637
1638 sinfo = cmsgs.info;
1639 sinit = cmsgs.init;
1640
1641 /* Did the user specify SNDRCVINFO? */
1642 if (sinfo) {
1643 sinfo_flags = sinfo->sinfo_flags;
1644 associd = sinfo->sinfo_assoc_id;
1645 }
1646
1647 SCTP_DEBUG_PRINTK("msg_len: %zu, sinfo_flags: 0x%x\n",
1648 msg_len, sinfo_flags);
1649
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001650 /* SCTP_EOF or SCTP_ABORT cannot be set on a TCP-style socket. */
1651 if (sctp_style(sk, TCP) && (sinfo_flags & (SCTP_EOF | SCTP_ABORT))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 err = -EINVAL;
1653 goto out_nounlock;
1654 }
1655
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001656 /* If SCTP_EOF is set, no data can be sent. Disallow sending zero
1657 * length messages when SCTP_EOF|SCTP_ABORT is not set.
1658 * If SCTP_ABORT is set, the message length could be non zero with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 * the msg_iov set to the user abort reason.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001660 */
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001661 if (((sinfo_flags & SCTP_EOF) && (msg_len > 0)) ||
1662 (!(sinfo_flags & (SCTP_EOF|SCTP_ABORT)) && (msg_len == 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 err = -EINVAL;
1664 goto out_nounlock;
1665 }
1666
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001667 /* If SCTP_ADDR_OVER is set, there must be an address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 * specified in msg_name.
1669 */
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001670 if ((sinfo_flags & SCTP_ADDR_OVER) && (!msg->msg_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 err = -EINVAL;
1672 goto out_nounlock;
1673 }
1674
1675 transport = NULL;
1676
1677 SCTP_DEBUG_PRINTK("About to look up association.\n");
1678
1679 sctp_lock_sock(sk);
1680
1681 /* If a msg_name has been specified, assume this is to be used. */
1682 if (msg_name) {
1683 /* Look for a matching association on the endpoint. */
Al Virodce116a2006-11-20 17:25:15 -08001684 asoc = sctp_endpoint_lookup_assoc(ep, &to, &transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 if (!asoc) {
1686 /* If we could not find a matching association on the
1687 * endpoint, make sure that it is not a TCP-style
1688 * socket that already has an association or there is
1689 * no peeled-off association on another socket.
1690 */
1691 if ((sctp_style(sk, TCP) &&
1692 sctp_sstate(sk, ESTABLISHED)) ||
Al Virodce116a2006-11-20 17:25:15 -08001693 sctp_endpoint_is_peeled_off(ep, &to)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 err = -EADDRNOTAVAIL;
1695 goto out_unlock;
1696 }
1697 }
1698 } else {
1699 asoc = sctp_id2assoc(sk, associd);
1700 if (!asoc) {
1701 err = -EPIPE;
1702 goto out_unlock;
1703 }
1704 }
1705
1706 if (asoc) {
1707 SCTP_DEBUG_PRINTK("Just looked up association: %p.\n", asoc);
1708
1709 /* We cannot send a message on a TCP-style SCTP_SS_ESTABLISHED
1710 * socket that has an association in CLOSED state. This can
1711 * happen when an accepted socket has an association that is
1712 * already CLOSED.
1713 */
1714 if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP)) {
1715 err = -EPIPE;
1716 goto out_unlock;
1717 }
1718
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001719 if (sinfo_flags & SCTP_EOF) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 SCTP_DEBUG_PRINTK("Shutting down association: %p\n",
1721 asoc);
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001722 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 err = 0;
1724 goto out_unlock;
1725 }
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001726 if (sinfo_flags & SCTP_ABORT) {
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001727
1728 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1729 if (!chunk) {
1730 err = -ENOMEM;
1731 goto out_unlock;
1732 }
1733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 SCTP_DEBUG_PRINTK("Aborting association: %p\n", asoc);
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001735 sctp_primitive_ABORT(net, asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 err = 0;
1737 goto out_unlock;
1738 }
1739 }
1740
1741 /* Do we need to create the association? */
1742 if (!asoc) {
1743 SCTP_DEBUG_PRINTK("There is no association yet.\n");
1744
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001745 if (sinfo_flags & (SCTP_EOF | SCTP_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 err = -EINVAL;
1747 goto out_unlock;
1748 }
1749
1750 /* Check for invalid stream against the stream counts,
1751 * either the default or the user specified stream counts.
1752 */
1753 if (sinfo) {
1754 if (!sinit || (sinit && !sinit->sinit_num_ostreams)) {
1755 /* Check against the defaults. */
1756 if (sinfo->sinfo_stream >=
1757 sp->initmsg.sinit_num_ostreams) {
1758 err = -EINVAL;
1759 goto out_unlock;
1760 }
1761 } else {
1762 /* Check against the requested. */
1763 if (sinfo->sinfo_stream >=
1764 sinit->sinit_num_ostreams) {
1765 err = -EINVAL;
1766 goto out_unlock;
1767 }
1768 }
1769 }
1770
1771 /*
1772 * API 3.1.2 bind() - UDP Style Syntax
1773 * If a bind() or sctp_bindx() is not called prior to a
1774 * sendmsg() call that initiates a new association, the
1775 * system picks an ephemeral port and will choose an address
1776 * set equivalent to binding with a wildcard address.
1777 */
1778 if (!ep->base.bind_addr.port) {
1779 if (sctp_autobind(sk)) {
1780 err = -EAGAIN;
1781 goto out_unlock;
1782 }
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001783 } else {
1784 /*
1785 * If an unprivileged user inherits a one-to-many
1786 * style socket with open associations on a privileged
1787 * port, it MAY be permitted to accept new associations,
1788 * but it SHOULD NOT be permitted to open new
1789 * associations.
1790 */
1791 if (ep->base.bind_addr.port < PROT_SOCK &&
Eric W. Biederman35946982012-11-16 03:03:12 +00001792 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE)) {
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001793 err = -EACCES;
1794 goto out_unlock;
1795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 }
1797
1798 scope = sctp_scope(&to);
1799 new_asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1800 if (!new_asoc) {
1801 err = -ENOMEM;
1802 goto out_unlock;
1803 }
1804 asoc = new_asoc;
Vlad Yasevich409b95a2009-11-10 08:57:34 +00001805 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope, GFP_KERNEL);
1806 if (err < 0) {
1807 err = -ENOMEM;
1808 goto out_free;
1809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
1811 /* If the SCTP_INIT ancillary data is specified, set all
1812 * the association init values accordingly.
1813 */
1814 if (sinit) {
1815 if (sinit->sinit_num_ostreams) {
1816 asoc->c.sinit_num_ostreams =
1817 sinit->sinit_num_ostreams;
1818 }
1819 if (sinit->sinit_max_instreams) {
1820 asoc->c.sinit_max_instreams =
1821 sinit->sinit_max_instreams;
1822 }
1823 if (sinit->sinit_max_attempts) {
1824 asoc->max_init_attempts
1825 = sinit->sinit_max_attempts;
1826 }
1827 if (sinit->sinit_max_init_timeo) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001828 asoc->max_init_timeo =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 msecs_to_jiffies(sinit->sinit_max_init_timeo);
1830 }
1831 }
1832
1833 /* Prime the peer's transport structures. */
Al Virodce116a2006-11-20 17:25:15 -08001834 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL, SCTP_UNKNOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 if (!transport) {
1836 err = -ENOMEM;
1837 goto out_free;
1838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 }
1840
1841 /* ASSERT: we have a valid association at this point. */
1842 SCTP_DEBUG_PRINTK("We have a valid association.\n");
1843
1844 if (!sinfo) {
1845 /* If the user didn't specify SNDRCVINFO, make up one with
1846 * some defaults.
1847 */
Joe Perches517aa0b2011-05-12 11:27:20 +00001848 memset(&default_sinfo, 0, sizeof(default_sinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 default_sinfo.sinfo_stream = asoc->default_stream;
1850 default_sinfo.sinfo_flags = asoc->default_flags;
1851 default_sinfo.sinfo_ppid = asoc->default_ppid;
1852 default_sinfo.sinfo_context = asoc->default_context;
1853 default_sinfo.sinfo_timetolive = asoc->default_timetolive;
1854 default_sinfo.sinfo_assoc_id = sctp_assoc2id(asoc);
1855 sinfo = &default_sinfo;
1856 }
1857
1858 /* API 7.1.7, the sndbuf size per association bounds the
1859 * maximum size of data that can be sent in a single send call.
1860 */
1861 if (msg_len > sk->sk_sndbuf) {
1862 err = -EMSGSIZE;
1863 goto out_free;
1864 }
1865
Vlad Yasevich8a479492007-06-07 14:21:05 -04001866 if (asoc->pmtu_pending)
David S. Miller02f3d4c2012-07-16 03:57:14 -07001867 sctp_assoc_pending_pmtu(sk, asoc);
Vlad Yasevich8a479492007-06-07 14:21:05 -04001868
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 /* If fragmentation is disabled and the message length exceeds the
1870 * association fragmentation point, return EMSGSIZE. The I-D
1871 * does not specify what this error is, but this looks like
1872 * a great fit.
1873 */
1874 if (sctp_sk(sk)->disable_fragments && (msg_len > asoc->frag_point)) {
1875 err = -EMSGSIZE;
1876 goto out_free;
1877 }
1878
Joe Perchesafd76142011-05-12 09:19:10 +00001879 /* Check for invalid stream. */
1880 if (sinfo->sinfo_stream >= asoc->c.sinit_num_ostreams) {
1881 err = -EINVAL;
1882 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 }
1884
1885 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1886 if (!sctp_wspace(asoc)) {
1887 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1888 if (err)
1889 goto out_free;
1890 }
1891
1892 /* If an address is passed with the sendto/sendmsg call, it is used
1893 * to override the primary destination address in the TCP model, or
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001894 * when SCTP_ADDR_OVER flag is set in the UDP model.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 */
1896 if ((sctp_style(sk, TCP) && msg_name) ||
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001897 (sinfo_flags & SCTP_ADDR_OVER)) {
Al Virodce116a2006-11-20 17:25:15 -08001898 chunk_tp = sctp_assoc_lookup_paddr(asoc, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 if (!chunk_tp) {
1900 err = -EINVAL;
1901 goto out_free;
1902 }
1903 } else
1904 chunk_tp = NULL;
1905
1906 /* Auto-connect, if we aren't connected already. */
1907 if (sctp_state(asoc, CLOSED)) {
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001908 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 if (err < 0)
1910 goto out_free;
1911 SCTP_DEBUG_PRINTK("We associated primitively.\n");
1912 }
1913
1914 /* Break the message into multiple chunks of maximum size. */
1915 datamsg = sctp_datamsg_from_user(asoc, sinfo, msg, msg_len);
Tommi Rantala6e51fe72012-11-22 03:23:16 +00001916 if (IS_ERR(datamsg)) {
1917 err = PTR_ERR(datamsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 goto out_free;
1919 }
1920
1921 /* Now send the (possibly) fragmented message. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001922 list_for_each_entry(chunk, &datamsg->chunks, frag_list) {
Florian Westphal80445cf2008-03-23 22:47:08 -07001923 sctp_chunk_hold(chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
1925 /* Do accounting for the write space. */
1926 sctp_set_owner_w(chunk);
1927
1928 chunk->transport = chunk_tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 }
1930
Vlad Yasevich9c5c62b2009-08-10 13:51:03 -04001931 /* Send it to the lower layers. Note: all chunks
1932 * must either fail or succeed. The lower layer
1933 * works that way today. Keep it that way or this
1934 * breaks.
1935 */
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001936 err = sctp_primitive_SEND(net, asoc, datamsg);
Vlad Yasevich9c5c62b2009-08-10 13:51:03 -04001937 /* Did the lower layer accept the chunk? */
1938 if (err)
1939 sctp_datamsg_free(datamsg);
1940 else
1941 sctp_datamsg_put(datamsg);
1942
1943 SCTP_DEBUG_PRINTK("We sent primitively.\n");
1944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 if (err)
1946 goto out_free;
1947 else
1948 err = msg_len;
1949
1950 /* If we are already past ASSOCIATE, the lower
1951 * layers are responsible for association cleanup.
1952 */
1953 goto out_unlock;
1954
1955out_free:
Neil Horman2eebc1e2012-07-16 09:13:51 +00001956 if (new_asoc) {
1957 sctp_unhash_established(asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 sctp_association_free(asoc);
Neil Horman2eebc1e2012-07-16 09:13:51 +00001959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960out_unlock:
1961 sctp_release_sock(sk);
1962
1963out_nounlock:
1964 return sctp_error(sk, msg_flags, err);
1965
1966#if 0
1967do_sock_err:
1968 if (msg_len)
1969 err = msg_len;
1970 else
1971 err = sock_error(sk);
1972 goto out;
1973
1974do_interrupted:
1975 if (msg_len)
1976 err = msg_len;
1977 goto out;
1978#endif /* 0 */
1979}
1980
1981/* This is an extended version of skb_pull() that removes the data from the
1982 * start of a skb even when data is spread across the list of skb's in the
1983 * frag_list. len specifies the total amount of data that needs to be removed.
1984 * when 'len' bytes could be removed from the skb, it returns 0.
1985 * If 'len' exceeds the total skb length, it returns the no. of bytes that
1986 * could not be removed.
1987 */
1988static int sctp_skb_pull(struct sk_buff *skb, int len)
1989{
1990 struct sk_buff *list;
1991 int skb_len = skb_headlen(skb);
1992 int rlen;
1993
1994 if (len <= skb_len) {
1995 __skb_pull(skb, len);
1996 return 0;
1997 }
1998 len -= skb_len;
1999 __skb_pull(skb, skb_len);
2000
David S. Miller1b003be2009-06-09 00:22:35 -07002001 skb_walk_frags(skb, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 rlen = sctp_skb_pull(list, len);
2003 skb->len -= (len-rlen);
2004 skb->data_len -= (len-rlen);
2005
2006 if (!rlen)
2007 return 0;
2008
2009 len = rlen;
2010 }
2011
2012 return len;
2013}
2014
2015/* API 3.1.3 recvmsg() - UDP Style Syntax
2016 *
2017 * ssize_t recvmsg(int socket, struct msghdr *message,
2018 * int flags);
2019 *
2020 * socket - the socket descriptor of the endpoint.
2021 * message - pointer to the msghdr structure which contains a single
2022 * user message and possibly some ancillary data.
2023 *
2024 * See Section 5 for complete description of the data
2025 * structures.
2026 *
2027 * flags - flags sent or received with the user message, see Section
2028 * 5 for complete description of the flags.
2029 */
2030static struct sk_buff *sctp_skb_recv_datagram(struct sock *, int, int, int *);
2031
Daniel Borkmanndda91922013-06-17 11:40:05 +02002032static int sctp_recvmsg(struct kiocb *iocb, struct sock *sk,
2033 struct msghdr *msg, size_t len, int noblock,
2034 int flags, int *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035{
2036 struct sctp_ulpevent *event = NULL;
2037 struct sctp_sock *sp = sctp_sk(sk);
2038 struct sk_buff *skb;
2039 int copied;
2040 int err = 0;
2041 int skb_len;
2042
2043 SCTP_DEBUG_PRINTK("sctp_recvmsg(%s: %p, %s: %p, %s: %zd, %s: %d, %s: "
2044 "0x%x, %s: %p)\n", "sk", sk, "msghdr", msg,
2045 "len", len, "knoblauch", noblock,
2046 "flags", flags, "addr_len", addr_len);
2047
2048 sctp_lock_sock(sk);
2049
2050 if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED)) {
2051 err = -ENOTCONN;
2052 goto out;
2053 }
2054
2055 skb = sctp_skb_recv_datagram(sk, flags, noblock, &err);
2056 if (!skb)
2057 goto out;
2058
2059 /* Get the total length of the skb including any skb's in the
2060 * frag_list.
2061 */
2062 skb_len = skb->len;
2063
2064 copied = skb_len;
2065 if (copied > len)
2066 copied = len;
2067
2068 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
2069
2070 event = sctp_skb2event(skb);
2071
2072 if (err)
2073 goto out_free;
2074
Neil Horman3b885782009-10-12 13:26:31 -07002075 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 if (sctp_ulpevent_is_notification(event)) {
2077 msg->msg_flags |= MSG_NOTIFICATION;
2078 sp->pf->event_msgname(event, msg->msg_name, addr_len);
2079 } else {
2080 sp->pf->skb_msgname(skb, msg->msg_name, addr_len);
2081 }
2082
2083 /* Check if we allow SCTP_SNDRCVINFO. */
2084 if (sp->subscribe.sctp_data_io_event)
2085 sctp_ulpevent_read_sndrcvinfo(event, msg);
2086#if 0
2087 /* FIXME: we should be calling IP/IPv6 layers. */
2088 if (sk->sk_protinfo.af_inet.cmsg_flags)
2089 ip_cmsg_recv(msg, skb);
2090#endif
2091
2092 err = copied;
2093
2094 /* If skb's length exceeds the user's buffer, update the skb and
2095 * push it back to the receive_queue so that the next call to
2096 * recvmsg() will return the remaining data. Don't set MSG_EOR.
2097 */
2098 if (skb_len > copied) {
2099 msg->msg_flags &= ~MSG_EOR;
2100 if (flags & MSG_PEEK)
2101 goto out_free;
2102 sctp_skb_pull(skb, copied);
2103 skb_queue_head(&sk->sk_receive_queue, skb);
2104
2105 /* When only partial message is copied to the user, increase
2106 * rwnd by that amount. If all the data in the skb is read,
2107 * rwnd is updated when the event is freed.
2108 */
Vlad Yasevich0eca8fe2008-01-11 10:12:56 -05002109 if (!sctp_ulpevent_is_notification(event))
2110 sctp_assoc_rwnd_increase(event->asoc, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 goto out;
2112 } else if ((event->msg_flags & MSG_NOTIFICATION) ||
2113 (event->msg_flags & MSG_EOR))
2114 msg->msg_flags |= MSG_EOR;
2115 else
2116 msg->msg_flags &= ~MSG_EOR;
2117
2118out_free:
2119 if (flags & MSG_PEEK) {
2120 /* Release the skb reference acquired after peeking the skb in
2121 * sctp_skb_recv_datagram().
2122 */
2123 kfree_skb(skb);
2124 } else {
2125 /* Free the event which includes releasing the reference to
2126 * the owner of the skb, freeing the skb and updating the
2127 * rwnd.
2128 */
2129 sctp_ulpevent_free(event);
2130 }
2131out:
2132 sctp_release_sock(sk);
2133 return err;
2134}
2135
2136/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
2137 *
2138 * This option is a on/off flag. If enabled no SCTP message
2139 * fragmentation will be performed. Instead if a message being sent
2140 * exceeds the current PMTU size, the message will NOT be sent and
2141 * instead a error will be indicated to the user.
2142 */
2143static int sctp_setsockopt_disable_fragments(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002144 char __user *optval,
2145 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146{
2147 int val;
2148
2149 if (optlen < sizeof(int))
2150 return -EINVAL;
2151
2152 if (get_user(val, (int __user *)optval))
2153 return -EFAULT;
2154
2155 sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1;
2156
2157 return 0;
2158}
2159
2160static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002161 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162{
Wei Yongjun94912302011-07-02 09:28:04 +00002163 struct sctp_association *asoc;
2164 struct sctp_ulpevent *event;
2165
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05002166 if (optlen > sizeof(struct sctp_event_subscribe))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 return -EINVAL;
2168 if (copy_from_user(&sctp_sk(sk)->subscribe, optval, optlen))
2169 return -EFAULT;
Wei Yongjun94912302011-07-02 09:28:04 +00002170
2171 /*
2172 * At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT,
2173 * if there is no data to be sent or retransmit, the stack will
2174 * immediately send up this notification.
2175 */
2176 if (sctp_ulpevent_type_enabled(SCTP_SENDER_DRY_EVENT,
2177 &sctp_sk(sk)->subscribe)) {
2178 asoc = sctp_id2assoc(sk, 0);
2179
2180 if (asoc && sctp_outq_is_empty(&asoc->outqueue)) {
2181 event = sctp_ulpevent_make_sender_dry_event(asoc,
2182 GFP_ATOMIC);
2183 if (!event)
2184 return -ENOMEM;
2185
2186 sctp_ulpq_tail_event(&asoc->ulpq, event);
2187 }
2188 }
2189
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 return 0;
2191}
2192
2193/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
2194 *
2195 * This socket option is applicable to the UDP-style socket only. When
2196 * set it will cause associations that are idle for more than the
2197 * specified number of seconds to automatically close. An association
2198 * being idle is defined an association that has NOT sent or received
2199 * user data. The special value of '0' indicates that no automatic
2200 * close of any associations should be performed. The option expects an
2201 * integer defining the number of seconds of idle time before an
2202 * association is closed.
2203 */
2204static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002205 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206{
2207 struct sctp_sock *sp = sctp_sk(sk);
2208
2209 /* Applicable to UDP-style socket only */
2210 if (sctp_style(sk, TCP))
2211 return -EOPNOTSUPP;
2212 if (optlen != sizeof(int))
2213 return -EINVAL;
2214 if (copy_from_user(&sp->autoclose, optval, optlen))
2215 return -EFAULT;
2216
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 return 0;
2218}
2219
2220/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
2221 *
2222 * Applications can enable or disable heartbeats for any peer address of
2223 * an association, modify an address's heartbeat interval, force a
2224 * heartbeat to be sent immediately, and adjust the address's maximum
2225 * number of retransmissions sent before an address is considered
2226 * unreachable. The following structure is used to access and modify an
2227 * address's parameters:
2228 *
2229 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002230 * sctp_assoc_t spp_assoc_id;
2231 * struct sockaddr_storage spp_address;
2232 * uint32_t spp_hbinterval;
2233 * uint16_t spp_pathmaxrxt;
2234 * uint32_t spp_pathmtu;
2235 * uint32_t spp_sackdelay;
2236 * uint32_t spp_flags;
2237 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002239 * spp_assoc_id - (one-to-many style socket) This is filled in the
2240 * application, and identifies the association for
2241 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 * spp_address - This specifies which address is of interest.
2243 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08002244 * in milliseconds. If a value of zero
2245 * is present in this field then no changes are to
2246 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 * spp_pathmaxrxt - This contains the maximum number of
2248 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08002249 * considered unreachable. If a value of zero
2250 * is present in this field then no changes are to
2251 * be made to this parameter.
2252 * spp_pathmtu - When Path MTU discovery is disabled the value
2253 * specified here will be the "fixed" path mtu.
2254 * Note that if the spp_address field is empty
2255 * then all associations on this address will
2256 * have this fixed path mtu set upon them.
2257 *
2258 * spp_sackdelay - When delayed sack is enabled, this value specifies
2259 * the number of milliseconds that sacks will be delayed
2260 * for. This value will apply to all addresses of an
2261 * association if the spp_address field is empty. Note
2262 * also, that if delayed sack is enabled and this
2263 * value is set to 0, no change is made to the last
2264 * recorded delayed sack timer value.
2265 *
2266 * spp_flags - These flags are used to control various features
2267 * on an association. The flag field may contain
2268 * zero or more of the following options.
2269 *
2270 * SPP_HB_ENABLE - Enable heartbeats on the
2271 * specified address. Note that if the address
2272 * field is empty all addresses for the association
2273 * have heartbeats enabled upon them.
2274 *
2275 * SPP_HB_DISABLE - Disable heartbeats on the
2276 * speicifed address. Note that if the address
2277 * field is empty all addresses for the association
2278 * will have their heartbeats disabled. Note also
2279 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
2280 * mutually exclusive, only one of these two should
2281 * be specified. Enabling both fields will have
2282 * undetermined results.
2283 *
2284 * SPP_HB_DEMAND - Request a user initiated heartbeat
2285 * to be made immediately.
2286 *
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002287 * SPP_HB_TIME_IS_ZERO - Specify's that the time for
2288 * heartbeat delayis to be set to the value of 0
2289 * milliseconds.
2290 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002291 * SPP_PMTUD_ENABLE - This field will enable PMTU
2292 * discovery upon the specified address. Note that
2293 * if the address feild is empty then all addresses
2294 * on the association are effected.
2295 *
2296 * SPP_PMTUD_DISABLE - This field will disable PMTU
2297 * discovery upon the specified address. Note that
2298 * if the address feild is empty then all addresses
2299 * on the association are effected. Not also that
2300 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2301 * exclusive. Enabling both will have undetermined
2302 * results.
2303 *
2304 * SPP_SACKDELAY_ENABLE - Setting this flag turns
2305 * on delayed sack. The time specified in spp_sackdelay
2306 * is used to specify the sack delay for this address. Note
2307 * that if spp_address is empty then all addresses will
2308 * enable delayed sack and take on the sack delay
2309 * value specified in spp_sackdelay.
2310 * SPP_SACKDELAY_DISABLE - Setting this flag turns
2311 * off delayed sack. If the spp_address field is blank then
2312 * delayed sack is disabled for the entire association. Note
2313 * also that this field is mutually exclusive to
2314 * SPP_SACKDELAY_ENABLE, setting both will have undefined
2315 * results.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 */
Adrian Bunk16164362006-09-18 00:40:38 -07002317static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2318 struct sctp_transport *trans,
2319 struct sctp_association *asoc,
2320 struct sctp_sock *sp,
2321 int hb_change,
2322 int pmtud_change,
2323 int sackdelay_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 int error;
2326
Frank Filz52ccb8e2005-12-22 11:36:46 -08002327 if (params->spp_flags & SPP_HB_DEMAND && trans) {
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00002328 struct net *net = sock_net(trans->asoc->base.sk);
2329
2330 error = sctp_primitive_REQUESTHEARTBEAT(net, trans->asoc, trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 if (error)
2332 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 }
2334
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002335 /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2336 * this field is ignored. Note also that a value of zero indicates
2337 * the current setting should be left unchanged.
2338 */
2339 if (params->spp_flags & SPP_HB_ENABLE) {
2340
2341 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2342 * set. This lets us use 0 value when this flag
2343 * is set.
2344 */
2345 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2346 params->spp_hbinterval = 0;
2347
2348 if (params->spp_hbinterval ||
2349 (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2350 if (trans) {
2351 trans->hbinterval =
2352 msecs_to_jiffies(params->spp_hbinterval);
2353 } else if (asoc) {
2354 asoc->hbinterval =
2355 msecs_to_jiffies(params->spp_hbinterval);
2356 } else {
2357 sp->hbinterval = params->spp_hbinterval;
2358 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08002359 }
2360 }
2361
2362 if (hb_change) {
2363 if (trans) {
2364 trans->param_flags =
2365 (trans->param_flags & ~SPP_HB) | hb_change;
2366 } else if (asoc) {
2367 asoc->param_flags =
2368 (asoc->param_flags & ~SPP_HB) | hb_change;
2369 } else {
2370 sp->param_flags =
2371 (sp->param_flags & ~SPP_HB) | hb_change;
2372 }
2373 }
2374
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002375 /* When Path MTU discovery is disabled the value specified here will
2376 * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2377 * include the flag SPP_PMTUD_DISABLE for this field to have any
2378 * effect).
2379 */
2380 if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002381 if (trans) {
2382 trans->pathmtu = params->spp_pathmtu;
David S. Miller02f3d4c2012-07-16 03:57:14 -07002383 sctp_assoc_sync_pmtu(sctp_opt2sk(sp), asoc);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002384 } else if (asoc) {
2385 asoc->pathmtu = params->spp_pathmtu;
Vlad Yasevichf68b2e02009-09-04 18:21:00 -04002386 sctp_frag_point(asoc, params->spp_pathmtu);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002387 } else {
2388 sp->pathmtu = params->spp_pathmtu;
2389 }
2390 }
2391
2392 if (pmtud_change) {
2393 if (trans) {
2394 int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2395 (params->spp_flags & SPP_PMTUD_ENABLE);
2396 trans->param_flags =
2397 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2398 if (update) {
Vlad Yasevich9914ae32011-04-26 21:51:31 +00002399 sctp_transport_pmtu(trans, sctp_opt2sk(sp));
David S. Miller02f3d4c2012-07-16 03:57:14 -07002400 sctp_assoc_sync_pmtu(sctp_opt2sk(sp), asoc);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002401 }
2402 } else if (asoc) {
2403 asoc->param_flags =
2404 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2405 } else {
2406 sp->param_flags =
2407 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2408 }
2409 }
2410
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002411 /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2412 * value of this field is ignored. Note also that a value of zero
2413 * indicates the current setting should be left unchanged.
2414 */
2415 if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002416 if (trans) {
2417 trans->sackdelay =
2418 msecs_to_jiffies(params->spp_sackdelay);
2419 } else if (asoc) {
2420 asoc->sackdelay =
2421 msecs_to_jiffies(params->spp_sackdelay);
2422 } else {
2423 sp->sackdelay = params->spp_sackdelay;
2424 }
2425 }
2426
2427 if (sackdelay_change) {
2428 if (trans) {
2429 trans->param_flags =
2430 (trans->param_flags & ~SPP_SACKDELAY) |
2431 sackdelay_change;
2432 } else if (asoc) {
2433 asoc->param_flags =
2434 (asoc->param_flags & ~SPP_SACKDELAY) |
2435 sackdelay_change;
2436 } else {
2437 sp->param_flags =
2438 (sp->param_flags & ~SPP_SACKDELAY) |
2439 sackdelay_change;
2440 }
2441 }
2442
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002443 /* Note that a value of zero indicates the current setting should be
2444 left unchanged.
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002445 */
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002446 if (params->spp_pathmaxrxt) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002447 if (trans) {
2448 trans->pathmaxrxt = params->spp_pathmaxrxt;
2449 } else if (asoc) {
2450 asoc->pathmaxrxt = params->spp_pathmaxrxt;
2451 } else {
2452 sp->pathmaxrxt = params->spp_pathmaxrxt;
2453 }
2454 }
2455
2456 return 0;
2457}
2458
2459static int sctp_setsockopt_peer_addr_params(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002460 char __user *optval,
2461 unsigned int optlen)
Frank Filz52ccb8e2005-12-22 11:36:46 -08002462{
2463 struct sctp_paddrparams params;
2464 struct sctp_transport *trans = NULL;
2465 struct sctp_association *asoc = NULL;
2466 struct sctp_sock *sp = sctp_sk(sk);
2467 int error;
2468 int hb_change, pmtud_change, sackdelay_change;
2469
2470 if (optlen != sizeof(struct sctp_paddrparams))
2471 return - EINVAL;
2472
2473 if (copy_from_user(&params, optval, optlen))
2474 return -EFAULT;
2475
2476 /* Validate flags and value parameters. */
2477 hb_change = params.spp_flags & SPP_HB;
2478 pmtud_change = params.spp_flags & SPP_PMTUD;
2479 sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2480
2481 if (hb_change == SPP_HB ||
2482 pmtud_change == SPP_PMTUD ||
2483 sackdelay_change == SPP_SACKDELAY ||
2484 params.spp_sackdelay > 500 ||
Joe Perchesf64f9e72009-11-29 16:55:45 -08002485 (params.spp_pathmtu &&
2486 params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
Frank Filz52ccb8e2005-12-22 11:36:46 -08002487 return -EINVAL;
2488
2489 /* If an address other than INADDR_ANY is specified, and
2490 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 */
Vlad Yasevich52cae8f2008-08-18 10:34:34 -04002492 if (!sctp_is_any(sk, ( union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002493 trans = sctp_addr_id2transport(sk, &params.spp_address,
2494 params.spp_assoc_id);
2495 if (!trans)
2496 return -EINVAL;
2497 }
2498
2499 /* Get association, if assoc_id != 0 and the socket is a one
2500 * to many style socket, and an association was not found, then
2501 * the id was invalid.
2502 */
2503 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
2504 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP))
2505 return -EINVAL;
2506
2507 /* Heartbeat demand can only be sent on a transport or
2508 * association, but not a socket.
2509 */
2510 if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2511 return -EINVAL;
2512
2513 /* Process parameters. */
2514 error = sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2515 hb_change, pmtud_change,
2516 sackdelay_change);
2517
2518 if (error)
2519 return error;
2520
2521 /* If changes are for association, also apply parameters to each
2522 * transport.
2523 */
2524 if (!trans && asoc) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002525 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2526 transports) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002527 sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2528 hb_change, pmtud_change,
2529 sackdelay_change);
2530 }
2531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
2533 return 0;
2534}
2535
Wei Yongjund364d922008-05-09 15:13:26 -07002536/*
2537 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08002538 *
Wei Yongjund364d922008-05-09 15:13:26 -07002539 * This option will effect the way delayed acks are performed. This
2540 * option allows you to get or set the delayed ack time, in
2541 * milliseconds. It also allows changing the delayed ack frequency.
2542 * Changing the frequency to 1 disables the delayed sack algorithm. If
2543 * the assoc_id is 0, then this sets or gets the endpoints default
2544 * values. If the assoc_id field is non-zero, then the set or get
2545 * effects the specified association for the one to many model (the
2546 * assoc_id field is ignored by the one to one model). Note that if
2547 * sack_delay or sack_freq are 0 when setting this option, then the
2548 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08002549 *
Wei Yongjund364d922008-05-09 15:13:26 -07002550 * struct sctp_sack_info {
2551 * sctp_assoc_t sack_assoc_id;
2552 * uint32_t sack_delay;
2553 * uint32_t sack_freq;
2554 * };
Frank Filz77086102005-12-22 11:37:30 -08002555 *
Wei Yongjund364d922008-05-09 15:13:26 -07002556 * sack_assoc_id - This parameter, indicates which association the user
2557 * is performing an action upon. Note that if this field's value is
2558 * zero then the endpoints default value is changed (effecting future
2559 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08002560 *
Wei Yongjund364d922008-05-09 15:13:26 -07002561 * sack_delay - This parameter contains the number of milliseconds that
2562 * the user is requesting the delayed ACK timer be set to. Note that
2563 * this value is defined in the standard to be between 200 and 500
2564 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08002565 *
Wei Yongjund364d922008-05-09 15:13:26 -07002566 * sack_freq - This parameter contains the number of packets that must
2567 * be received before a sack is sent without waiting for the delay
2568 * timer to expire. The default value for this is 2, setting this
2569 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08002570 */
2571
Wei Yongjund364d922008-05-09 15:13:26 -07002572static int sctp_setsockopt_delayed_ack(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002573 char __user *optval, unsigned int optlen)
Frank Filz77086102005-12-22 11:37:30 -08002574{
Wei Yongjund364d922008-05-09 15:13:26 -07002575 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08002576 struct sctp_transport *trans = NULL;
2577 struct sctp_association *asoc = NULL;
2578 struct sctp_sock *sp = sctp_sk(sk);
2579
Wei Yongjund364d922008-05-09 15:13:26 -07002580 if (optlen == sizeof(struct sctp_sack_info)) {
2581 if (copy_from_user(&params, optval, optlen))
2582 return -EFAULT;
2583
2584 if (params.sack_delay == 0 && params.sack_freq == 0)
2585 return 0;
2586 } else if (optlen == sizeof(struct sctp_assoc_value)) {
Joe Perches145ce502010-08-24 13:21:08 +00002587 pr_warn("Use of struct sctp_assoc_value in delayed_ack socket option deprecated\n");
2588 pr_warn("Use struct sctp_sack_info instead\n");
Wei Yongjund364d922008-05-09 15:13:26 -07002589 if (copy_from_user(&params, optval, optlen))
2590 return -EFAULT;
2591
2592 if (params.sack_delay == 0)
2593 params.sack_freq = 1;
2594 else
2595 params.sack_freq = 0;
2596 } else
Frank Filz77086102005-12-22 11:37:30 -08002597 return - EINVAL;
2598
Frank Filz77086102005-12-22 11:37:30 -08002599 /* Validate value parameter. */
Wei Yongjund364d922008-05-09 15:13:26 -07002600 if (params.sack_delay > 500)
Frank Filz77086102005-12-22 11:37:30 -08002601 return -EINVAL;
2602
Wei Yongjund364d922008-05-09 15:13:26 -07002603 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08002604 * to many style socket, and an association was not found, then
2605 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002606 */
Wei Yongjund364d922008-05-09 15:13:26 -07002607 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
2608 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08002609 return -EINVAL;
2610
Wei Yongjund364d922008-05-09 15:13:26 -07002611 if (params.sack_delay) {
Frank Filz77086102005-12-22 11:37:30 -08002612 if (asoc) {
2613 asoc->sackdelay =
Wei Yongjund364d922008-05-09 15:13:26 -07002614 msecs_to_jiffies(params.sack_delay);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002615 asoc->param_flags =
Frank Filz77086102005-12-22 11:37:30 -08002616 (asoc->param_flags & ~SPP_SACKDELAY) |
2617 SPP_SACKDELAY_ENABLE;
2618 } else {
Wei Yongjund364d922008-05-09 15:13:26 -07002619 sp->sackdelay = params.sack_delay;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002620 sp->param_flags =
Frank Filz77086102005-12-22 11:37:30 -08002621 (sp->param_flags & ~SPP_SACKDELAY) |
2622 SPP_SACKDELAY_ENABLE;
2623 }
Wei Yongjund364d922008-05-09 15:13:26 -07002624 }
2625
2626 if (params.sack_freq == 1) {
Frank Filz77086102005-12-22 11:37:30 -08002627 if (asoc) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002628 asoc->param_flags =
Frank Filz77086102005-12-22 11:37:30 -08002629 (asoc->param_flags & ~SPP_SACKDELAY) |
2630 SPP_SACKDELAY_DISABLE;
2631 } else {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002632 sp->param_flags =
Frank Filz77086102005-12-22 11:37:30 -08002633 (sp->param_flags & ~SPP_SACKDELAY) |
2634 SPP_SACKDELAY_DISABLE;
2635 }
Wei Yongjund364d922008-05-09 15:13:26 -07002636 } else if (params.sack_freq > 1) {
2637 if (asoc) {
2638 asoc->sackfreq = params.sack_freq;
2639 asoc->param_flags =
2640 (asoc->param_flags & ~SPP_SACKDELAY) |
2641 SPP_SACKDELAY_ENABLE;
2642 } else {
2643 sp->sackfreq = params.sack_freq;
2644 sp->param_flags =
2645 (sp->param_flags & ~SPP_SACKDELAY) |
2646 SPP_SACKDELAY_ENABLE;
2647 }
Frank Filz77086102005-12-22 11:37:30 -08002648 }
2649
2650 /* If change is for association, also apply to each transport. */
2651 if (asoc) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002652 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2653 transports) {
Wei Yongjund364d922008-05-09 15:13:26 -07002654 if (params.sack_delay) {
Frank Filz77086102005-12-22 11:37:30 -08002655 trans->sackdelay =
Wei Yongjund364d922008-05-09 15:13:26 -07002656 msecs_to_jiffies(params.sack_delay);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002657 trans->param_flags =
Frank Filz77086102005-12-22 11:37:30 -08002658 (trans->param_flags & ~SPP_SACKDELAY) |
2659 SPP_SACKDELAY_ENABLE;
Wei Yongjund364d922008-05-09 15:13:26 -07002660 }
Vlad Yasevich7bfe8bd2008-06-09 15:45:05 -07002661 if (params.sack_freq == 1) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002662 trans->param_flags =
Frank Filz77086102005-12-22 11:37:30 -08002663 (trans->param_flags & ~SPP_SACKDELAY) |
2664 SPP_SACKDELAY_DISABLE;
Wei Yongjund364d922008-05-09 15:13:26 -07002665 } else if (params.sack_freq > 1) {
2666 trans->sackfreq = params.sack_freq;
2667 trans->param_flags =
2668 (trans->param_flags & ~SPP_SACKDELAY) |
2669 SPP_SACKDELAY_ENABLE;
Frank Filz77086102005-12-22 11:37:30 -08002670 }
2671 }
2672 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002673
Frank Filz77086102005-12-22 11:37:30 -08002674 return 0;
2675}
2676
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2678 *
2679 * Applications can specify protocol parameters for the default association
2680 * initialization. The option name argument to setsockopt() and getsockopt()
2681 * is SCTP_INITMSG.
2682 *
2683 * Setting initialization parameters is effective only on an unconnected
2684 * socket (for UDP-style sockets only future associations are effected
2685 * by the change). With TCP-style sockets, this option is inherited by
2686 * sockets derived from a listener socket.
2687 */
David S. Millerb7058842009-09-30 16:12:20 -07002688static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689{
2690 struct sctp_initmsg sinit;
2691 struct sctp_sock *sp = sctp_sk(sk);
2692
2693 if (optlen != sizeof(struct sctp_initmsg))
2694 return -EINVAL;
2695 if (copy_from_user(&sinit, optval, optlen))
2696 return -EFAULT;
2697
2698 if (sinit.sinit_num_ostreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002699 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 if (sinit.sinit_max_instreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002701 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 if (sinit.sinit_max_attempts)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002703 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 if (sinit.sinit_max_init_timeo)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002705 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706
2707 return 0;
2708}
2709
2710/*
2711 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2712 *
2713 * Applications that wish to use the sendto() system call may wish to
2714 * specify a default set of parameters that would normally be supplied
2715 * through the inclusion of ancillary data. This socket option allows
2716 * such an application to set the default sctp_sndrcvinfo structure.
2717 * The application that wishes to use this socket option simply passes
2718 * in to this call the sctp_sndrcvinfo structure defined in Section
2719 * 5.2.2) The input parameters accepted by this call include
2720 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2721 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
2722 * to this call if the caller is using the UDP model.
2723 */
2724static int sctp_setsockopt_default_send_param(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002725 char __user *optval,
2726 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727{
2728 struct sctp_sndrcvinfo info;
2729 struct sctp_association *asoc;
2730 struct sctp_sock *sp = sctp_sk(sk);
2731
2732 if (optlen != sizeof(struct sctp_sndrcvinfo))
2733 return -EINVAL;
2734 if (copy_from_user(&info, optval, optlen))
2735 return -EFAULT;
2736
2737 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
2738 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
2739 return -EINVAL;
2740
2741 if (asoc) {
2742 asoc->default_stream = info.sinfo_stream;
2743 asoc->default_flags = info.sinfo_flags;
2744 asoc->default_ppid = info.sinfo_ppid;
2745 asoc->default_context = info.sinfo_context;
2746 asoc->default_timetolive = info.sinfo_timetolive;
2747 } else {
2748 sp->default_stream = info.sinfo_stream;
2749 sp->default_flags = info.sinfo_flags;
2750 sp->default_ppid = info.sinfo_ppid;
2751 sp->default_context = info.sinfo_context;
2752 sp->default_timetolive = info.sinfo_timetolive;
2753 }
2754
2755 return 0;
2756}
2757
2758/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
2759 *
2760 * Requests that the local SCTP stack use the enclosed peer address as
2761 * the association primary. The enclosed address must be one of the
2762 * association peer's addresses.
2763 */
2764static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002765 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766{
2767 struct sctp_prim prim;
2768 struct sctp_transport *trans;
2769
2770 if (optlen != sizeof(struct sctp_prim))
2771 return -EINVAL;
2772
2773 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
2774 return -EFAULT;
2775
2776 trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
2777 if (!trans)
2778 return -EINVAL;
2779
2780 sctp_assoc_set_primary(trans->asoc, trans);
2781
2782 return 0;
2783}
2784
2785/*
2786 * 7.1.5 SCTP_NODELAY
2787 *
2788 * Turn on/off any Nagle-like algorithm. This means that packets are
2789 * generally sent as soon as possible and no unnecessary delays are
2790 * introduced, at the cost of more packets in the network. Expects an
2791 * integer boolean flag.
2792 */
2793static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002794 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795{
2796 int val;
2797
2798 if (optlen < sizeof(int))
2799 return -EINVAL;
2800 if (get_user(val, (int __user *)optval))
2801 return -EFAULT;
2802
2803 sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
2804 return 0;
2805}
2806
2807/*
2808 *
2809 * 7.1.1 SCTP_RTOINFO
2810 *
2811 * The protocol parameters used to initialize and bound retransmission
2812 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
2813 * and modify these parameters.
2814 * All parameters are time values, in milliseconds. A value of 0, when
2815 * modifying the parameters, indicates that the current value should not
2816 * be changed.
2817 *
2818 */
David S. Millerb7058842009-09-30 16:12:20 -07002819static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, unsigned int optlen)
2820{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 struct sctp_rtoinfo rtoinfo;
2822 struct sctp_association *asoc;
2823
2824 if (optlen != sizeof (struct sctp_rtoinfo))
2825 return -EINVAL;
2826
2827 if (copy_from_user(&rtoinfo, optval, optlen))
2828 return -EFAULT;
2829
2830 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
2831
2832 /* Set the values to the specific association */
2833 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
2834 return -EINVAL;
2835
2836 if (asoc) {
2837 if (rtoinfo.srto_initial != 0)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002838 asoc->rto_initial =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 msecs_to_jiffies(rtoinfo.srto_initial);
2840 if (rtoinfo.srto_max != 0)
2841 asoc->rto_max = msecs_to_jiffies(rtoinfo.srto_max);
2842 if (rtoinfo.srto_min != 0)
2843 asoc->rto_min = msecs_to_jiffies(rtoinfo.srto_min);
2844 } else {
2845 /* If there is no association or the association-id = 0
2846 * set the values to the endpoint.
2847 */
2848 struct sctp_sock *sp = sctp_sk(sk);
2849
2850 if (rtoinfo.srto_initial != 0)
2851 sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
2852 if (rtoinfo.srto_max != 0)
2853 sp->rtoinfo.srto_max = rtoinfo.srto_max;
2854 if (rtoinfo.srto_min != 0)
2855 sp->rtoinfo.srto_min = rtoinfo.srto_min;
2856 }
2857
2858 return 0;
2859}
2860
2861/*
2862 *
2863 * 7.1.2 SCTP_ASSOCINFO
2864 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02002865 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 * of the association.
2867 * Returns an error if the new association retransmission value is
2868 * greater than the sum of the retransmission value of the peer.
2869 * See [SCTP] for more information.
2870 *
2871 */
David S. Millerb7058842009-09-30 16:12:20 -07002872static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873{
2874
2875 struct sctp_assocparams assocparams;
2876 struct sctp_association *asoc;
2877
2878 if (optlen != sizeof(struct sctp_assocparams))
2879 return -EINVAL;
2880 if (copy_from_user(&assocparams, optval, optlen))
2881 return -EFAULT;
2882
2883 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
2884
2885 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
2886 return -EINVAL;
2887
2888 /* Set the values to the specific association */
2889 if (asoc) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07002890 if (assocparams.sasoc_asocmaxrxt != 0) {
2891 __u32 path_sum = 0;
2892 int paths = 0;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07002893 struct sctp_transport *peer_addr;
2894
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002895 list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
2896 transports) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07002897 path_sum += peer_addr->pathmaxrxt;
2898 paths++;
2899 }
2900
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02002901 /* Only validate asocmaxrxt if we have more than
Vlad Yasevich402d68c2006-06-17 22:54:51 -07002902 * one path/transport. We do this because path
2903 * retransmissions are only counted when we have more
2904 * then one path.
2905 */
2906 if (paths > 1 &&
2907 assocparams.sasoc_asocmaxrxt > path_sum)
2908 return -EINVAL;
2909
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07002911 }
2912
Daniel Borkmann52db8822013-06-25 18:17:27 +02002913 if (assocparams.sasoc_cookie_life != 0)
2914 asoc->cookie_life = ms_to_ktime(assocparams.sasoc_cookie_life);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 } else {
2916 /* Set the values to the endpoint */
2917 struct sctp_sock *sp = sctp_sk(sk);
2918
2919 if (assocparams.sasoc_asocmaxrxt != 0)
2920 sp->assocparams.sasoc_asocmaxrxt =
2921 assocparams.sasoc_asocmaxrxt;
2922 if (assocparams.sasoc_cookie_life != 0)
2923 sp->assocparams.sasoc_cookie_life =
2924 assocparams.sasoc_cookie_life;
2925 }
2926 return 0;
2927}
2928
2929/*
2930 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
2931 *
2932 * This socket option is a boolean flag which turns on or off mapped V4
2933 * addresses. If this option is turned on and the socket is type
2934 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
2935 * If this option is turned off, then no mapping will be done of V4
2936 * addresses and a user will receive both PF_INET6 and PF_INET type
2937 * addresses on the socket.
2938 */
David S. Millerb7058842009-09-30 16:12:20 -07002939static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940{
2941 int val;
2942 struct sctp_sock *sp = sctp_sk(sk);
2943
2944 if (optlen < sizeof(int))
2945 return -EINVAL;
2946 if (get_user(val, (int __user *)optval))
2947 return -EFAULT;
2948 if (val)
2949 sp->v4mapped = 1;
2950 else
2951 sp->v4mapped = 0;
2952
2953 return 0;
2954}
2955
2956/*
Wei Yongjune89c2092008-12-25 16:54:58 -08002957 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
2958 * This option will get or set the maximum size to put in any outgoing
2959 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 * fragmented by SCTP into the specified size. Note that the underlying
2961 * SCTP implementation may fragment into smaller sized chunks when the
2962 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08002963 * the user. The default value for this option is '0' which indicates
2964 * the user is NOT limiting fragmentation and only the PMTU will effect
2965 * SCTP's choice of DATA chunk size. Note also that values set larger
2966 * than the maximum size of an IP datagram will effectively let SCTP
2967 * control fragmentation (i.e. the same as setting this option to 0).
2968 *
2969 * The following structure is used to access and modify this parameter:
2970 *
2971 * struct sctp_assoc_value {
2972 * sctp_assoc_t assoc_id;
2973 * uint32_t assoc_value;
2974 * };
2975 *
2976 * assoc_id: This parameter is ignored for one-to-one style sockets.
2977 * For one-to-many style sockets this parameter indicates which
2978 * association the user is performing an action upon. Note that if
2979 * this field's value is zero then the endpoints default value is
2980 * changed (effecting future associations only).
2981 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 */
David S. Millerb7058842009-09-30 16:12:20 -07002983static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984{
Wei Yongjune89c2092008-12-25 16:54:58 -08002985 struct sctp_assoc_value params;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 struct sctp_sock *sp = sctp_sk(sk);
2988 int val;
2989
Wei Yongjune89c2092008-12-25 16:54:58 -08002990 if (optlen == sizeof(int)) {
Joe Perches145ce502010-08-24 13:21:08 +00002991 pr_warn("Use of int in maxseg socket option deprecated\n");
2992 pr_warn("Use struct sctp_assoc_value instead\n");
Wei Yongjune89c2092008-12-25 16:54:58 -08002993 if (copy_from_user(&val, optval, optlen))
2994 return -EFAULT;
2995 params.assoc_id = 0;
2996 } else if (optlen == sizeof(struct sctp_assoc_value)) {
2997 if (copy_from_user(&params, optval, optlen))
2998 return -EFAULT;
2999 val = params.assoc_value;
3000 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 return -EINVAL;
Wei Yongjune89c2092008-12-25 16:54:58 -08003002
Ivan Skytte Jorgensen96a33992005-10-28 15:36:12 -07003003 if ((val != 0) && ((val < 8) || (val > SCTP_MAX_CHUNK_LEN)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005
Wei Yongjune89c2092008-12-25 16:54:58 -08003006 asoc = sctp_id2assoc(sk, params.assoc_id);
3007 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
3008 return -EINVAL;
3009
3010 if (asoc) {
3011 if (val == 0) {
3012 val = asoc->pathmtu;
3013 val -= sp->pf->af->net_header_len;
3014 val -= sizeof(struct sctphdr) +
3015 sizeof(struct sctp_data_chunk);
3016 }
Vlad Yasevichf68b2e02009-09-04 18:21:00 -04003017 asoc->user_frag = val;
3018 asoc->frag_point = sctp_frag_point(asoc, asoc->pathmtu);
Wei Yongjune89c2092008-12-25 16:54:58 -08003019 } else {
3020 sp->user_frag = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 }
3022
3023 return 0;
3024}
3025
3026
3027/*
3028 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3029 *
3030 * Requests that the peer mark the enclosed address as the association
3031 * primary. The enclosed address must be one of the association's
3032 * locally bound addresses. The following structure is used to make a
3033 * set primary request:
3034 */
3035static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003036 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003038 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 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
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003048 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 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{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003285 struct net *net = sock_net(sk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003286 struct sctp_authchunk val;
3287
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003288 if (!net->sctp.auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003289 return -EACCES;
3290
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003291 if (optlen != sizeof(struct sctp_authchunk))
3292 return -EINVAL;
3293 if (copy_from_user(&val, optval, optlen))
3294 return -EFAULT;
3295
3296 switch (val.sauth_chunk) {
Joe Perches7fd71b12011-07-01 09:43:11 +00003297 case SCTP_CID_INIT:
3298 case SCTP_CID_INIT_ACK:
3299 case SCTP_CID_SHUTDOWN_COMPLETE:
3300 case SCTP_CID_AUTH:
3301 return -EINVAL;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003302 }
3303
3304 /* add this chunk id to the endpoint */
3305 return sctp_auth_ep_add_chunkid(sctp_sk(sk)->ep, val.sauth_chunk);
3306}
3307
3308/*
3309 * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
3310 *
3311 * This option gets or sets the list of HMAC algorithms that the local
3312 * endpoint requires the peer to use.
3313 */
3314static int sctp_setsockopt_hmac_ident(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003315 char __user *optval,
3316 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003317{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003318 struct net *net = sock_net(sk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003319 struct sctp_hmacalgo *hmacs;
Vlad Yasevichd9724052008-08-27 16:09:49 -07003320 u32 idents;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003321 int err;
3322
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003323 if (!net->sctp.auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003324 return -EACCES;
3325
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003326 if (optlen < sizeof(struct sctp_hmacalgo))
3327 return -EINVAL;
3328
Shan Wei934253a2011-04-18 19:13:18 +00003329 hmacs= memdup_user(optval, optlen);
3330 if (IS_ERR(hmacs))
3331 return PTR_ERR(hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003332
Vlad Yasevichd9724052008-08-27 16:09:49 -07003333 idents = hmacs->shmac_num_idents;
3334 if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS ||
3335 (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo))) {
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003336 err = -EINVAL;
3337 goto out;
3338 }
3339
3340 err = sctp_auth_ep_set_hmacs(sctp_sk(sk)->ep, hmacs);
3341out:
3342 kfree(hmacs);
3343 return err;
3344}
3345
3346/*
3347 * 7.1.20. Set a shared key (SCTP_AUTH_KEY)
3348 *
3349 * This option will set a shared secret key which is used to build an
3350 * association shared key.
3351 */
3352static int sctp_setsockopt_auth_key(struct sock *sk,
3353 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003354 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003355{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003356 struct net *net = sock_net(sk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003357 struct sctp_authkey *authkey;
3358 struct sctp_association *asoc;
3359 int ret;
3360
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003361 if (!net->sctp.auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003362 return -EACCES;
3363
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003364 if (optlen <= sizeof(struct sctp_authkey))
3365 return -EINVAL;
3366
Shan Wei934253a2011-04-18 19:13:18 +00003367 authkey= memdup_user(optval, optlen);
3368 if (IS_ERR(authkey))
3369 return PTR_ERR(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003370
Vlad Yasevich328fc472008-08-27 16:08:54 -07003371 if (authkey->sca_keylength > optlen - sizeof(struct sctp_authkey)) {
Vlad Yasevich30c22352008-08-25 15:16:19 -07003372 ret = -EINVAL;
3373 goto out;
3374 }
3375
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003376 asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
3377 if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) {
3378 ret = -EINVAL;
3379 goto out;
3380 }
3381
3382 ret = sctp_auth_set_key(sctp_sk(sk)->ep, asoc, authkey);
3383out:
Daniel Borkmann6ba542a2013-02-08 03:04:34 +00003384 kzfree(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003385 return ret;
3386}
3387
3388/*
3389 * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
3390 *
3391 * This option will get or set the active shared key to be used to build
3392 * the association shared key.
3393 */
3394static int sctp_setsockopt_active_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003395 char __user *optval,
3396 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003397{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003398 struct net *net = sock_net(sk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003399 struct sctp_authkeyid val;
3400 struct sctp_association *asoc;
3401
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003402 if (!net->sctp.auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003403 return -EACCES;
3404
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003405 if (optlen != sizeof(struct sctp_authkeyid))
3406 return -EINVAL;
3407 if (copy_from_user(&val, optval, optlen))
3408 return -EFAULT;
3409
3410 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3411 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3412 return -EINVAL;
3413
3414 return sctp_auth_set_active_key(sctp_sk(sk)->ep, asoc,
3415 val.scact_keynumber);
3416}
3417
3418/*
3419 * 7.1.22. Delete a shared key (SCTP_AUTH_DELETE_KEY)
3420 *
3421 * This set option will delete a shared secret key from use.
3422 */
3423static int sctp_setsockopt_del_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003424 char __user *optval,
3425 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003426{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003427 struct net *net = sock_net(sk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003428 struct sctp_authkeyid val;
3429 struct sctp_association *asoc;
3430
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003431 if (!net->sctp.auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003432 return -EACCES;
3433
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003434 if (optlen != sizeof(struct sctp_authkeyid))
3435 return -EINVAL;
3436 if (copy_from_user(&val, optval, optlen))
3437 return -EFAULT;
3438
3439 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3440 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3441 return -EINVAL;
3442
3443 return sctp_auth_del_key_id(sctp_sk(sk)->ep, asoc,
3444 val.scact_keynumber);
3445
3446}
3447
Michio Honda7dc04d72011-04-26 20:16:31 +09003448/*
3449 * 8.1.23 SCTP_AUTO_ASCONF
3450 *
3451 * This option will enable or disable the use of the automatic generation of
3452 * ASCONF chunks to add and delete addresses to an existing association. Note
3453 * that this option has two caveats namely: a) it only affects sockets that
3454 * are bound to all addresses available to the SCTP stack, and b) the system
3455 * administrator may have an overriding control that turns the ASCONF feature
3456 * off no matter what setting the socket option may have.
3457 * This option expects an integer boolean flag, where a non-zero value turns on
3458 * the option, and a zero value turns off the option.
3459 * Note. In this implementation, socket operation overrides default parameter
3460 * being set by sysctl as well as FreeBSD implementation
3461 */
3462static int sctp_setsockopt_auto_asconf(struct sock *sk, char __user *optval,
3463 unsigned int optlen)
3464{
3465 int val;
3466 struct sctp_sock *sp = sctp_sk(sk);
3467
3468 if (optlen < sizeof(int))
3469 return -EINVAL;
3470 if (get_user(val, (int __user *)optval))
3471 return -EFAULT;
3472 if (!sctp_is_ep_boundall(sk) && val)
3473 return -EINVAL;
3474 if ((val && sp->do_auto_asconf) || (!val && !sp->do_auto_asconf))
3475 return 0;
3476
3477 if (val == 0 && sp->do_auto_asconf) {
3478 list_del(&sp->auto_asconf_list);
3479 sp->do_auto_asconf = 0;
3480 } else if (val && !sp->do_auto_asconf) {
3481 list_add_tail(&sp->auto_asconf_list,
Eric W. Biederman4db67e82012-08-06 08:42:04 +00003482 &sock_net(sk)->sctp.auto_asconf_splist);
Michio Honda7dc04d72011-04-26 20:16:31 +09003483 sp->do_auto_asconf = 1;
3484 }
3485 return 0;
3486}
3487
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003488
Neil Horman5aa93bc2012-07-21 07:56:07 +00003489/*
3490 * SCTP_PEER_ADDR_THLDS
3491 *
3492 * This option allows us to alter the partially failed threshold for one or all
3493 * transports in an association. See Section 6.1 of:
3494 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
3495 */
3496static int sctp_setsockopt_paddr_thresholds(struct sock *sk,
3497 char __user *optval,
3498 unsigned int optlen)
3499{
3500 struct sctp_paddrthlds val;
3501 struct sctp_transport *trans;
3502 struct sctp_association *asoc;
3503
3504 if (optlen < sizeof(struct sctp_paddrthlds))
3505 return -EINVAL;
3506 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval,
3507 sizeof(struct sctp_paddrthlds)))
3508 return -EFAULT;
3509
3510
3511 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
3512 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
3513 if (!asoc)
3514 return -ENOENT;
3515 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
3516 transports) {
3517 if (val.spt_pathmaxrxt)
3518 trans->pathmaxrxt = val.spt_pathmaxrxt;
3519 trans->pf_retrans = val.spt_pathpfthld;
3520 }
3521
3522 if (val.spt_pathmaxrxt)
3523 asoc->pathmaxrxt = val.spt_pathmaxrxt;
3524 asoc->pf_retrans = val.spt_pathpfthld;
3525 } else {
3526 trans = sctp_addr_id2transport(sk, &val.spt_address,
3527 val.spt_assoc_id);
3528 if (!trans)
3529 return -ENOENT;
3530
3531 if (val.spt_pathmaxrxt)
3532 trans->pathmaxrxt = val.spt_pathmaxrxt;
3533 trans->pf_retrans = val.spt_pathpfthld;
3534 }
3535
3536 return 0;
3537}
3538
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539/* API 6.2 setsockopt(), getsockopt()
3540 *
3541 * Applications use setsockopt() and getsockopt() to set or retrieve
3542 * socket options. Socket options are used to change the default
3543 * behavior of sockets calls. They are described in Section 7.
3544 *
3545 * The syntax is:
3546 *
3547 * ret = getsockopt(int sd, int level, int optname, void __user *optval,
3548 * int __user *optlen);
3549 * ret = setsockopt(int sd, int level, int optname, const void __user *optval,
3550 * int optlen);
3551 *
3552 * sd - the socket descript.
3553 * level - set to IPPROTO_SCTP for all SCTP options.
3554 * optname - the option name.
3555 * optval - the buffer to store the value of the option.
3556 * optlen - the size of the buffer.
3557 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02003558static int sctp_setsockopt(struct sock *sk, int level, int optname,
3559 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560{
3561 int retval = 0;
3562
3563 SCTP_DEBUG_PRINTK("sctp_setsockopt(sk: %p... optname: %d)\n",
3564 sk, optname);
3565
3566 /* I can hardly begin to describe how wrong this is. This is
3567 * so broken as to be worse than useless. The API draft
3568 * REALLY is NOT helpful here... I am not convinced that the
3569 * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
3570 * are at all well-founded.
3571 */
3572 if (level != SOL_SCTP) {
3573 struct sctp_af *af = sctp_sk(sk)->pf->af;
3574 retval = af->setsockopt(sk, level, optname, optval, optlen);
3575 goto out_nounlock;
3576 }
3577
3578 sctp_lock_sock(sk);
3579
3580 switch (optname) {
3581 case SCTP_SOCKOPT_BINDX_ADD:
3582 /* 'optlen' is the size of the addresses buffer. */
3583 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
3584 optlen, SCTP_BINDX_ADD_ADDR);
3585 break;
3586
3587 case SCTP_SOCKOPT_BINDX_REM:
3588 /* 'optlen' is the size of the addresses buffer. */
3589 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
3590 optlen, SCTP_BINDX_REM_ADDR);
3591 break;
3592
Vlad Yasevich88a0a942008-05-09 15:14:11 -07003593 case SCTP_SOCKOPT_CONNECTX_OLD:
3594 /* 'optlen' is the size of the addresses buffer. */
3595 retval = sctp_setsockopt_connectx_old(sk,
3596 (struct sockaddr __user *)optval,
3597 optlen);
3598 break;
3599
Frank Filz3f7a87d2005-06-20 13:14:57 -07003600 case SCTP_SOCKOPT_CONNECTX:
3601 /* 'optlen' is the size of the addresses buffer. */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07003602 retval = sctp_setsockopt_connectx(sk,
3603 (struct sockaddr __user *)optval,
3604 optlen);
Frank Filz3f7a87d2005-06-20 13:14:57 -07003605 break;
3606
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 case SCTP_DISABLE_FRAGMENTS:
3608 retval = sctp_setsockopt_disable_fragments(sk, optval, optlen);
3609 break;
3610
3611 case SCTP_EVENTS:
3612 retval = sctp_setsockopt_events(sk, optval, optlen);
3613 break;
3614
3615 case SCTP_AUTOCLOSE:
3616 retval = sctp_setsockopt_autoclose(sk, optval, optlen);
3617 break;
3618
3619 case SCTP_PEER_ADDR_PARAMS:
3620 retval = sctp_setsockopt_peer_addr_params(sk, optval, optlen);
3621 break;
3622
Shan Wei4580ccc2011-01-18 22:39:00 +00003623 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07003624 retval = sctp_setsockopt_delayed_ack(sk, optval, optlen);
Frank Filz77086102005-12-22 11:37:30 -08003625 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003626 case SCTP_PARTIAL_DELIVERY_POINT:
3627 retval = sctp_setsockopt_partial_delivery_point(sk, optval, optlen);
3628 break;
Frank Filz77086102005-12-22 11:37:30 -08003629
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 case SCTP_INITMSG:
3631 retval = sctp_setsockopt_initmsg(sk, optval, optlen);
3632 break;
3633 case SCTP_DEFAULT_SEND_PARAM:
3634 retval = sctp_setsockopt_default_send_param(sk, optval,
3635 optlen);
3636 break;
3637 case SCTP_PRIMARY_ADDR:
3638 retval = sctp_setsockopt_primary_addr(sk, optval, optlen);
3639 break;
3640 case SCTP_SET_PEER_PRIMARY_ADDR:
3641 retval = sctp_setsockopt_peer_primary_addr(sk, optval, optlen);
3642 break;
3643 case SCTP_NODELAY:
3644 retval = sctp_setsockopt_nodelay(sk, optval, optlen);
3645 break;
3646 case SCTP_RTOINFO:
3647 retval = sctp_setsockopt_rtoinfo(sk, optval, optlen);
3648 break;
3649 case SCTP_ASSOCINFO:
3650 retval = sctp_setsockopt_associnfo(sk, optval, optlen);
3651 break;
3652 case SCTP_I_WANT_MAPPED_V4_ADDR:
3653 retval = sctp_setsockopt_mappedv4(sk, optval, optlen);
3654 break;
3655 case SCTP_MAXSEG:
3656 retval = sctp_setsockopt_maxseg(sk, optval, optlen);
3657 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003658 case SCTP_ADAPTATION_LAYER:
3659 retval = sctp_setsockopt_adaptation_layer(sk, optval, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003661 case SCTP_CONTEXT:
3662 retval = sctp_setsockopt_context(sk, optval, optlen);
3663 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003664 case SCTP_FRAGMENT_INTERLEAVE:
3665 retval = sctp_setsockopt_fragment_interleave(sk, optval, optlen);
3666 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07003667 case SCTP_MAX_BURST:
3668 retval = sctp_setsockopt_maxburst(sk, optval, optlen);
3669 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003670 case SCTP_AUTH_CHUNK:
3671 retval = sctp_setsockopt_auth_chunk(sk, optval, optlen);
3672 break;
3673 case SCTP_HMAC_IDENT:
3674 retval = sctp_setsockopt_hmac_ident(sk, optval, optlen);
3675 break;
3676 case SCTP_AUTH_KEY:
3677 retval = sctp_setsockopt_auth_key(sk, optval, optlen);
3678 break;
3679 case SCTP_AUTH_ACTIVE_KEY:
3680 retval = sctp_setsockopt_active_key(sk, optval, optlen);
3681 break;
3682 case SCTP_AUTH_DELETE_KEY:
3683 retval = sctp_setsockopt_del_key(sk, optval, optlen);
3684 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09003685 case SCTP_AUTO_ASCONF:
3686 retval = sctp_setsockopt_auto_asconf(sk, optval, optlen);
3687 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00003688 case SCTP_PEER_ADDR_THLDS:
3689 retval = sctp_setsockopt_paddr_thresholds(sk, optval, optlen);
3690 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 default:
3692 retval = -ENOPROTOOPT;
3693 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07003694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695
3696 sctp_release_sock(sk);
3697
3698out_nounlock:
3699 return retval;
3700}
3701
3702/* API 3.1.6 connect() - UDP Style Syntax
3703 *
3704 * An application may use the connect() call in the UDP model to initiate an
3705 * association without sending data.
3706 *
3707 * The syntax is:
3708 *
3709 * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
3710 *
3711 * sd: the socket descriptor to have a new association added to.
3712 *
3713 * nam: the address structure (either struct sockaddr_in or struct
3714 * sockaddr_in6 defined in RFC2553 [7]).
3715 *
3716 * len: the size of the address.
3717 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02003718static int sctp_connect(struct sock *sk, struct sockaddr *addr,
3719 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 int err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07003722 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723
3724 sctp_lock_sock(sk);
3725
Frank Filz3f7a87d2005-06-20 13:14:57 -07003726 SCTP_DEBUG_PRINTK("%s - sk: %p, sockaddr: %p, addr_len: %d\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08003727 __func__, sk, addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728
Frank Filz3f7a87d2005-06-20 13:14:57 -07003729 /* Validate addr_len before calling common connect/connectx routine. */
3730 af = sctp_get_af_specific(addr->sa_family);
3731 if (!af || addr_len < af->sockaddr_len) {
3732 err = -EINVAL;
3733 } else {
3734 /* Pass correct addr len to common routine (so it knows there
3735 * is only one address being passed.
3736 */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07003737 err = __sctp_connect(sk, addr, af->sockaddr_len, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 }
3739
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740 sctp_release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 return err;
3742}
3743
3744/* FIXME: Write comments. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02003745static int sctp_disconnect(struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746{
3747 return -EOPNOTSUPP; /* STUB */
3748}
3749
3750/* 4.1.4 accept() - TCP Style Syntax
3751 *
3752 * Applications use accept() call to remove an established SCTP
3753 * association from the accept queue of the endpoint. A new socket
3754 * descriptor will be returned from accept() to represent the newly
3755 * formed association.
3756 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02003757static struct sock *sctp_accept(struct sock *sk, int flags, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758{
3759 struct sctp_sock *sp;
3760 struct sctp_endpoint *ep;
3761 struct sock *newsk = NULL;
3762 struct sctp_association *asoc;
3763 long timeo;
3764 int error = 0;
3765
3766 sctp_lock_sock(sk);
3767
3768 sp = sctp_sk(sk);
3769 ep = sp->ep;
3770
3771 if (!sctp_style(sk, TCP)) {
3772 error = -EOPNOTSUPP;
3773 goto out;
3774 }
3775
3776 if (!sctp_sstate(sk, LISTENING)) {
3777 error = -EINVAL;
3778 goto out;
3779 }
3780
Sridhar Samudrala8abfedd2006-08-22 00:24:09 -07003781 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782
3783 error = sctp_wait_for_accept(sk, timeo);
3784 if (error)
3785 goto out;
3786
3787 /* We treat the list of associations on the endpoint as the accept
3788 * queue and pick the first association on the list.
3789 */
3790 asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
3791
3792 newsk = sp->pf->create_accept_sk(sk, asoc);
3793 if (!newsk) {
3794 error = -ENOMEM;
3795 goto out;
3796 }
3797
3798 /* Populate the fields of the newsk from the oldsk and migrate the
3799 * asoc to the newsk.
3800 */
3801 sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
3802
3803out:
3804 sctp_release_sock(sk);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003805 *err = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 return newsk;
3807}
3808
3809/* The SCTP ioctl handler. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02003810static int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811{
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00003812 int rc = -ENOTCONN;
3813
3814 sctp_lock_sock(sk);
3815
3816 /*
3817 * SEQPACKET-style sockets in LISTENING state are valid, for
3818 * SCTP, so only discard TCP-style sockets in LISTENING state.
3819 */
3820 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
3821 goto out;
3822
3823 switch (cmd) {
3824 case SIOCINQ: {
3825 struct sk_buff *skb;
3826 unsigned int amount = 0;
3827
3828 skb = skb_peek(&sk->sk_receive_queue);
3829 if (skb != NULL) {
3830 /*
3831 * We will only return the amount of this packet since
3832 * that is all that will be read.
3833 */
3834 amount = skb->len;
3835 }
3836 rc = put_user(amount, (int __user *)arg);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00003837 break;
David S. Miller9a7241c2010-10-03 22:14:37 -07003838 }
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00003839 default:
3840 rc = -ENOIOCTLCMD;
3841 break;
3842 }
3843out:
3844 sctp_release_sock(sk);
3845 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846}
3847
3848/* This is the function which gets called during socket creation to
3849 * initialized the SCTP-specific portion of the sock.
3850 * The sock structure should already be zero-filled memory.
3851 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02003852static int sctp_init_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003854 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 struct sctp_sock *sp;
3856
3857 SCTP_DEBUG_PRINTK("sctp_init_sock(sk: %p)\n", sk);
3858
3859 sp = sctp_sk(sk);
3860
3861 /* Initialize the SCTP per socket area. */
3862 switch (sk->sk_type) {
3863 case SOCK_SEQPACKET:
3864 sp->type = SCTP_SOCKET_UDP;
3865 break;
3866 case SOCK_STREAM:
3867 sp->type = SCTP_SOCKET_TCP;
3868 break;
3869 default:
3870 return -ESOCKTNOSUPPORT;
3871 }
3872
3873 /* Initialize default send parameters. These parameters can be
3874 * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
3875 */
3876 sp->default_stream = 0;
3877 sp->default_ppid = 0;
3878 sp->default_flags = 0;
3879 sp->default_context = 0;
3880 sp->default_timetolive = 0;
3881
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003882 sp->default_rcv_context = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003883 sp->max_burst = net->sctp.max_burst;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003884
Neil Horman3c681982012-10-24 09:20:03 +00003885 sp->sctp_hmac_alg = net->sctp.sctp_hmac_alg;
3886
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887 /* Initialize default setup parameters. These parameters
3888 * can be modified with the SCTP_INITMSG socket option or
3889 * overridden by the SCTP_INIT CMSG.
3890 */
3891 sp->initmsg.sinit_num_ostreams = sctp_max_outstreams;
3892 sp->initmsg.sinit_max_instreams = sctp_max_instreams;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003893 sp->initmsg.sinit_max_attempts = net->sctp.max_retrans_init;
3894 sp->initmsg.sinit_max_init_timeo = net->sctp.rto_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895
3896 /* Initialize default RTO related parameters. These parameters can
3897 * be modified for with the SCTP_RTOINFO socket option.
3898 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003899 sp->rtoinfo.srto_initial = net->sctp.rto_initial;
3900 sp->rtoinfo.srto_max = net->sctp.rto_max;
3901 sp->rtoinfo.srto_min = net->sctp.rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902
3903 /* Initialize default association related parameters. These parameters
3904 * can be modified with the SCTP_ASSOCINFO socket option.
3905 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003906 sp->assocparams.sasoc_asocmaxrxt = net->sctp.max_retrans_association;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 sp->assocparams.sasoc_number_peer_destinations = 0;
3908 sp->assocparams.sasoc_peer_rwnd = 0;
3909 sp->assocparams.sasoc_local_rwnd = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003910 sp->assocparams.sasoc_cookie_life = net->sctp.valid_cookie_life;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911
3912 /* Initialize default event subscriptions. By default, all the
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003913 * options are off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 */
3915 memset(&sp->subscribe, 0, sizeof(struct sctp_event_subscribe));
3916
3917 /* Default Peer Address Parameters. These defaults can
3918 * be modified via SCTP_PEER_ADDR_PARAMS
3919 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003920 sp->hbinterval = net->sctp.hb_interval;
3921 sp->pathmaxrxt = net->sctp.max_retrans_path;
Frank Filz52ccb8e2005-12-22 11:36:46 -08003922 sp->pathmtu = 0; // allow default discovery
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003923 sp->sackdelay = net->sctp.sack_timeout;
Vlad Yasevich7bfe8bd2008-06-09 15:45:05 -07003924 sp->sackfreq = 2;
Frank Filz52ccb8e2005-12-22 11:36:46 -08003925 sp->param_flags = SPP_HB_ENABLE |
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003926 SPP_PMTUD_ENABLE |
3927 SPP_SACKDELAY_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928
3929 /* If enabled no SCTP message fragmentation will be performed.
3930 * Configure through SCTP_DISABLE_FRAGMENTS socket option.
3931 */
3932 sp->disable_fragments = 0;
3933
Sridhar Samudrala208edef2006-09-29 17:08:01 -07003934 /* Enable Nagle algorithm by default. */
3935 sp->nodelay = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936
3937 /* Enable by default. */
3938 sp->v4mapped = 1;
3939
3940 /* Auto-close idle associations after the configured
3941 * number of seconds. A value of 0 disables this
3942 * feature. Configure through the SCTP_AUTOCLOSE socket option,
3943 * for UDP-style sockets only.
3944 */
3945 sp->autoclose = 0;
3946
3947 /* User specified fragmentation limit. */
3948 sp->user_frag = 0;
3949
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003950 sp->adaptation_ind = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951
3952 sp->pf = sctp_get_pf_specific(sk->sk_family);
3953
3954 /* Control variables for partial data delivery. */
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003955 atomic_set(&sp->pd_mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 skb_queue_head_init(&sp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003957 sp->frag_interleave = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958
3959 /* Create a per socket endpoint structure. Even if we
3960 * change the data structure relationships, this may still
3961 * be useful for storing pre-connect address information.
3962 */
Daniel Borkmannc164b832013-06-14 18:24:06 +02003963 sp->ep = sctp_endpoint_new(sk, GFP_KERNEL);
3964 if (!sp->ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 return -ENOMEM;
3966
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 sp->hmac = NULL;
3968
3969 SCTP_DBG_OBJCNT_INC(sock);
David S. Miller6f756a82008-11-23 17:34:03 -08003970
3971 local_bh_disable();
Vlad Yasevich81419d82010-04-28 08:47:20 +00003972 percpu_counter_inc(&sctp_sockets_allocated);
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003973 sock_prot_inuse_add(net, sk->sk_prot, 1);
3974 if (net->sctp.default_auto_asconf) {
Michio Honda9f7d6532011-04-26 19:32:51 +09003975 list_add_tail(&sp->auto_asconf_list,
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003976 &net->sctp.auto_asconf_splist);
Michio Honda9f7d6532011-04-26 19:32:51 +09003977 sp->do_auto_asconf = 1;
3978 } else
3979 sp->do_auto_asconf = 0;
David S. Miller6f756a82008-11-23 17:34:03 -08003980 local_bh_enable();
3981
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982 return 0;
3983}
3984
3985/* Cleanup any SCTP per socket resources. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02003986static void sctp_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987{
Michio Honda9f7d6532011-04-26 19:32:51 +09003988 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989
3990 SCTP_DEBUG_PRINTK("sctp_destroy_sock(sk: %p)\n", sk);
3991
3992 /* Release our hold on the endpoint. */
Michio Honda9f7d6532011-04-26 19:32:51 +09003993 sp = sctp_sk(sk);
Daniel Borkmann1abd1652013-06-06 15:53:47 +02003994 /* This could happen during socket init, thus we bail out
3995 * early, since the rest of the below is not setup either.
3996 */
3997 if (sp->ep == NULL)
3998 return;
3999
Michio Honda9f7d6532011-04-26 19:32:51 +09004000 if (sp->do_auto_asconf) {
4001 sp->do_auto_asconf = 0;
4002 list_del(&sp->auto_asconf_list);
4003 }
4004 sctp_endpoint_free(sp->ep);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004005 local_bh_disable();
Vlad Yasevich81419d82010-04-28 08:47:20 +00004006 percpu_counter_dec(&sctp_sockets_allocated);
Eric Dumazet9a57f7f2008-11-17 02:41:00 -08004007 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004008 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009}
4010
4011/* API 4.1.7 shutdown() - TCP Style Syntax
4012 * int shutdown(int socket, int how);
4013 *
4014 * sd - the socket descriptor of the association to be closed.
4015 * how - Specifies the type of shutdown. The values are
4016 * as follows:
4017 * SHUT_RD
4018 * Disables further receive operations. No SCTP
4019 * protocol action is taken.
4020 * SHUT_WR
4021 * Disables further send operations, and initiates
4022 * the SCTP shutdown sequence.
4023 * SHUT_RDWR
4024 * Disables further send and receive operations
4025 * and initiates the SCTP shutdown sequence.
4026 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004027static void sctp_shutdown(struct sock *sk, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00004029 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030 struct sctp_endpoint *ep;
4031 struct sctp_association *asoc;
4032
4033 if (!sctp_style(sk, TCP))
4034 return;
4035
4036 if (how & SEND_SHUTDOWN) {
4037 ep = sctp_sk(sk)->ep;
4038 if (!list_empty(&ep->asocs)) {
4039 asoc = list_entry(ep->asocs.next,
4040 struct sctp_association, asocs);
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00004041 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042 }
4043 }
4044}
4045
4046/* 7.2.1 Association Status (SCTP_STATUS)
4047
4048 * Applications can retrieve current status information about an
4049 * association, including association state, peer receiver window size,
4050 * number of unacked data chunks, and number of data chunks pending
4051 * receipt. This information is read-only.
4052 */
4053static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
4054 char __user *optval,
4055 int __user *optlen)
4056{
4057 struct sctp_status status;
4058 struct sctp_association *asoc = NULL;
4059 struct sctp_transport *transport;
4060 sctp_assoc_t associd;
4061 int retval = 0;
4062
Neil Horman408f22e2007-06-16 14:03:45 -04004063 if (len < sizeof(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064 retval = -EINVAL;
4065 goto out;
4066 }
4067
Neil Horman408f22e2007-06-16 14:03:45 -04004068 len = sizeof(status);
4069 if (copy_from_user(&status, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070 retval = -EFAULT;
4071 goto out;
4072 }
4073
4074 associd = status.sstat_assoc_id;
4075 asoc = sctp_id2assoc(sk, associd);
4076 if (!asoc) {
4077 retval = -EINVAL;
4078 goto out;
4079 }
4080
4081 transport = asoc->peer.primary_path;
4082
4083 status.sstat_assoc_id = sctp_assoc2id(asoc);
4084 status.sstat_state = asoc->state;
4085 status.sstat_rwnd = asoc->peer.rwnd;
4086 status.sstat_unackdata = asoc->unack_data;
4087
4088 status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
4089 status.sstat_instrms = asoc->c.sinit_max_instreams;
4090 status.sstat_outstrms = asoc->c.sinit_num_ostreams;
4091 status.sstat_fragmentation_point = asoc->frag_point;
4092 status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Al Viro8cec6b82006-11-20 17:23:01 -08004093 memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
4094 transport->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 /* Map ipv4 address into v4-mapped-on-v6 address. */
4096 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk),
4097 (union sctp_addr *)&status.sstat_primary.spinfo_address);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004098 status.sstat_primary.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 status.sstat_primary.spinfo_cwnd = transport->cwnd;
4100 status.sstat_primary.spinfo_srtt = transport->srtt;
4101 status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08004102 status.sstat_primary.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103
Frank Filz3f7a87d2005-06-20 13:14:57 -07004104 if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
4105 status.sstat_primary.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 SCTP_DEBUG_PRINTK("sctp_getsockopt_sctp_status(%d): %d %d %d\n",
4113 len, status.sstat_state, status.sstat_rwnd,
4114 status.sstat_assoc_id);
4115
4116 if (copy_to_user(optval, &status, len)) {
4117 retval = -EFAULT;
4118 goto out;
4119 }
4120
4121out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00004122 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123}
4124
4125
4126/* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
4127 *
4128 * Applications can retrieve information about a specific peer address
4129 * of an association, including its reachability state, congestion
4130 * window, and retransmission timer values. This information is
4131 * read-only.
4132 */
4133static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
4134 char __user *optval,
4135 int __user *optlen)
4136{
4137 struct sctp_paddrinfo pinfo;
4138 struct sctp_transport *transport;
4139 int retval = 0;
4140
Neil Horman408f22e2007-06-16 14:03:45 -04004141 if (len < sizeof(pinfo)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142 retval = -EINVAL;
4143 goto out;
4144 }
4145
Neil Horman408f22e2007-06-16 14:03:45 -04004146 len = sizeof(pinfo);
4147 if (copy_from_user(&pinfo, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148 retval = -EFAULT;
4149 goto out;
4150 }
4151
4152 transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
4153 pinfo.spinfo_assoc_id);
4154 if (!transport)
4155 return -EINVAL;
4156
4157 pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004158 pinfo.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159 pinfo.spinfo_cwnd = transport->cwnd;
4160 pinfo.spinfo_srtt = transport->srtt;
4161 pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08004162 pinfo.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163
Frank Filz3f7a87d2005-06-20 13:14:57 -07004164 if (pinfo.spinfo_state == SCTP_UNKNOWN)
4165 pinfo.spinfo_state = SCTP_ACTIVE;
4166
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 if (put_user(len, optlen)) {
4168 retval = -EFAULT;
4169 goto out;
4170 }
4171
4172 if (copy_to_user(optval, &pinfo, len)) {
4173 retval = -EFAULT;
4174 goto out;
4175 }
4176
4177out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00004178 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179}
4180
4181/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
4182 *
4183 * This option is a on/off flag. If enabled no SCTP message
4184 * fragmentation will be performed. Instead if a message being sent
4185 * exceeds the current PMTU size, the message will NOT be sent and
4186 * instead a error will be indicated to the user.
4187 */
4188static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
4189 char __user *optval, int __user *optlen)
4190{
4191 int val;
4192
4193 if (len < sizeof(int))
4194 return -EINVAL;
4195
4196 len = sizeof(int);
4197 val = (sctp_sk(sk)->disable_fragments == 1);
4198 if (put_user(len, optlen))
4199 return -EFAULT;
4200 if (copy_to_user(optval, &val, len))
4201 return -EFAULT;
4202 return 0;
4203}
4204
4205/* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
4206 *
4207 * This socket option is used to specify various notifications and
4208 * ancillary data the user wishes to receive.
4209 */
4210static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
4211 int __user *optlen)
4212{
Thomas Grafacdd5982012-04-03 22:17:53 +00004213 if (len <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214 return -EINVAL;
Thomas Grafacdd5982012-04-03 22:17:53 +00004215 if (len > sizeof(struct sctp_event_subscribe))
4216 len = sizeof(struct sctp_event_subscribe);
Neil Horman408f22e2007-06-16 14:03:45 -04004217 if (put_user(len, optlen))
4218 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219 if (copy_to_user(optval, &sctp_sk(sk)->subscribe, len))
4220 return -EFAULT;
4221 return 0;
4222}
4223
4224/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
4225 *
4226 * This socket option is applicable to the UDP-style socket only. When
4227 * set it will cause associations that are idle for more than the
4228 * specified number of seconds to automatically close. An association
4229 * being idle is defined an association that has NOT sent or received
4230 * user data. The special value of '0' indicates that no automatic
4231 * close of any associations should be performed. The option expects an
4232 * integer defining the number of seconds of idle time before an
4233 * association is closed.
4234 */
4235static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
4236{
4237 /* Applicable to UDP-style socket only */
4238 if (sctp_style(sk, TCP))
4239 return -EOPNOTSUPP;
Neil Horman408f22e2007-06-16 14:03:45 -04004240 if (len < sizeof(int))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004242 len = sizeof(int);
4243 if (put_user(len, optlen))
4244 return -EFAULT;
4245 if (copy_to_user(optval, &sctp_sk(sk)->autoclose, sizeof(int)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 return -EFAULT;
4247 return 0;
4248}
4249
4250/* Helper routine to branch off an association to a new socket. */
Benjamin Poirier0343c552012-03-08 05:55:58 +00004251int sctp_do_peeloff(struct sock *sk, sctp_assoc_t id, struct socket **sockp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252{
Benjamin Poirier0343c552012-03-08 05:55:58 +00004253 struct sctp_association *asoc = sctp_id2assoc(sk, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254 struct socket *sock;
Vlad Yasevichd570ee42007-05-15 16:32:39 -04004255 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256 int err = 0;
4257
Benjamin Poirier0343c552012-03-08 05:55:58 +00004258 if (!asoc)
4259 return -EINVAL;
4260
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 /* An association cannot be branched off from an already peeled-off
4262 * socket, nor is this supported for tcp style sockets.
4263 */
4264 if (!sctp_style(sk, UDP))
4265 return -EINVAL;
4266
4267 /* Create a new socket. */
4268 err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
4269 if (err < 0)
4270 return err;
4271
Vlad Yasevich914e1c82009-02-13 08:33:44 +00004272 sctp_copy_sock(sock->sk, sk, asoc);
Vlad Yasevich4f444302006-10-30 18:54:32 -08004273
4274 /* Make peeled-off sockets more like 1-1 accepted sockets.
4275 * Set the daddr and initialize id to something more random
4276 */
Vlad Yasevichd570ee42007-05-15 16:32:39 -04004277 af = sctp_get_af_specific(asoc->peer.primary_addr.sa.sa_family);
4278 af->to_sk_daddr(&asoc->peer.primary_addr, sk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00004279
4280 /* Populate the fields of the newsk from the oldsk and migrate the
4281 * asoc to the newsk.
4282 */
4283 sctp_sock_migrate(sk, sock->sk, asoc, SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
Vlad Yasevich4f444302006-10-30 18:54:32 -08004284
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 *sockp = sock;
4286
4287 return err;
4288}
Benjamin Poirier0343c552012-03-08 05:55:58 +00004289EXPORT_SYMBOL(sctp_do_peeloff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290
4291static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
4292{
4293 sctp_peeloff_arg_t peeloff;
4294 struct socket *newsock;
Al Viro56b31d12012-08-18 00:25:51 -04004295 struct file *newfile;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297
Neil Horman408f22e2007-06-16 14:03:45 -04004298 if (len < sizeof(sctp_peeloff_arg_t))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004300 len = sizeof(sctp_peeloff_arg_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 if (copy_from_user(&peeloff, optval, len))
4302 return -EFAULT;
4303
Benjamin Poirier0343c552012-03-08 05:55:58 +00004304 retval = sctp_do_peeloff(sk, peeloff.associd, &newsock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 if (retval < 0)
4306 goto out;
4307
4308 /* Map the socket to an unused fd that can be returned to the user. */
Al Viro56b31d12012-08-18 00:25:51 -04004309 retval = get_unused_fd();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310 if (retval < 0) {
4311 sock_release(newsock);
4312 goto out;
4313 }
4314
Linus Torvaldsaab174f2012-10-02 20:25:04 -07004315 newfile = sock_alloc_file(newsock, 0, NULL);
Al Viro56b31d12012-08-18 00:25:51 -04004316 if (unlikely(IS_ERR(newfile))) {
4317 put_unused_fd(retval);
4318 sock_release(newsock);
4319 return PTR_ERR(newfile);
4320 }
4321
Benjamin Poirier0343c552012-03-08 05:55:58 +00004322 SCTP_DEBUG_PRINTK("%s: sk: %p newsk: %p sd: %d\n",
4323 __func__, sk, newsock->sk, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324
4325 /* Return the fd mapped to the new socket. */
Al Viro56b31d12012-08-18 00:25:51 -04004326 if (put_user(len, optlen)) {
4327 fput(newfile);
4328 put_unused_fd(retval);
Neil Horman408f22e2007-06-16 14:03:45 -04004329 return -EFAULT;
Al Viro56b31d12012-08-18 00:25:51 -04004330 }
4331 peeloff.sd = retval;
4332 if (copy_to_user(optval, &peeloff, len)) {
4333 fput(newfile);
4334 put_unused_fd(retval);
4335 return -EFAULT;
4336 }
4337 fd_install(retval, newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338out:
4339 return retval;
4340}
4341
4342/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
4343 *
4344 * Applications can enable or disable heartbeats for any peer address of
4345 * an association, modify an address's heartbeat interval, force a
4346 * heartbeat to be sent immediately, and adjust the address's maximum
4347 * number of retransmissions sent before an address is considered
4348 * unreachable. The following structure is used to access and modify an
4349 * address's parameters:
4350 *
4351 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08004352 * sctp_assoc_t spp_assoc_id;
4353 * struct sockaddr_storage spp_address;
4354 * uint32_t spp_hbinterval;
4355 * uint16_t spp_pathmaxrxt;
4356 * uint32_t spp_pathmtu;
4357 * uint32_t spp_sackdelay;
4358 * uint32_t spp_flags;
4359 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08004361 * spp_assoc_id - (one-to-many style socket) This is filled in the
4362 * application, and identifies the association for
4363 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364 * spp_address - This specifies which address is of interest.
4365 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08004366 * in milliseconds. If a value of zero
4367 * is present in this field then no changes are to
4368 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369 * spp_pathmaxrxt - This contains the maximum number of
4370 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08004371 * considered unreachable. If a value of zero
4372 * is present in this field then no changes are to
4373 * be made to this parameter.
4374 * spp_pathmtu - When Path MTU discovery is disabled the value
4375 * specified here will be the "fixed" path mtu.
4376 * Note that if the spp_address field is empty
4377 * then all associations on this address will
4378 * have this fixed path mtu set upon them.
4379 *
4380 * spp_sackdelay - When delayed sack is enabled, this value specifies
4381 * the number of milliseconds that sacks will be delayed
4382 * for. This value will apply to all addresses of an
4383 * association if the spp_address field is empty. Note
4384 * also, that if delayed sack is enabled and this
4385 * value is set to 0, no change is made to the last
4386 * recorded delayed sack timer value.
4387 *
4388 * spp_flags - These flags are used to control various features
4389 * on an association. The flag field may contain
4390 * zero or more of the following options.
4391 *
4392 * SPP_HB_ENABLE - Enable heartbeats on the
4393 * specified address. Note that if the address
4394 * field is empty all addresses for the association
4395 * have heartbeats enabled upon them.
4396 *
4397 * SPP_HB_DISABLE - Disable heartbeats on the
4398 * speicifed address. Note that if the address
4399 * field is empty all addresses for the association
4400 * will have their heartbeats disabled. Note also
4401 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
4402 * mutually exclusive, only one of these two should
4403 * be specified. Enabling both fields will have
4404 * undetermined results.
4405 *
4406 * SPP_HB_DEMAND - Request a user initiated heartbeat
4407 * to be made immediately.
4408 *
4409 * SPP_PMTUD_ENABLE - This field will enable PMTU
4410 * discovery upon the specified address. Note that
4411 * if the address feild is empty then all addresses
4412 * on the association are effected.
4413 *
4414 * SPP_PMTUD_DISABLE - This field will disable PMTU
4415 * discovery upon the specified address. Note that
4416 * if the address feild is empty then all addresses
4417 * on the association are effected. Not also that
4418 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
4419 * exclusive. Enabling both will have undetermined
4420 * results.
4421 *
4422 * SPP_SACKDELAY_ENABLE - Setting this flag turns
4423 * on delayed sack. The time specified in spp_sackdelay
4424 * is used to specify the sack delay for this address. Note
4425 * that if spp_address is empty then all addresses will
4426 * enable delayed sack and take on the sack delay
4427 * value specified in spp_sackdelay.
4428 * SPP_SACKDELAY_DISABLE - Setting this flag turns
4429 * off delayed sack. If the spp_address field is blank then
4430 * delayed sack is disabled for the entire association. Note
4431 * also that this field is mutually exclusive to
4432 * SPP_SACKDELAY_ENABLE, setting both will have undefined
4433 * results.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434 */
4435static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
Frank Filz52ccb8e2005-12-22 11:36:46 -08004436 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437{
Frank Filz52ccb8e2005-12-22 11:36:46 -08004438 struct sctp_paddrparams params;
4439 struct sctp_transport *trans = NULL;
4440 struct sctp_association *asoc = NULL;
4441 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442
Neil Horman408f22e2007-06-16 14:03:45 -04004443 if (len < sizeof(struct sctp_paddrparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004445 len = sizeof(struct sctp_paddrparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446 if (copy_from_user(&params, optval, len))
4447 return -EFAULT;
4448
Frank Filz52ccb8e2005-12-22 11:36:46 -08004449 /* If an address other than INADDR_ANY is specified, and
4450 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 */
Vlad Yasevich52cae8f2008-08-18 10:34:34 -04004452 if (!sctp_is_any(sk, ( union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08004453 trans = sctp_addr_id2transport(sk, &params.spp_address,
4454 params.spp_assoc_id);
4455 if (!trans) {
4456 SCTP_DEBUG_PRINTK("Failed no transport\n");
4457 return -EINVAL;
4458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459 }
4460
Frank Filz52ccb8e2005-12-22 11:36:46 -08004461 /* Get association, if assoc_id != 0 and the socket is a one
4462 * to many style socket, and an association was not found, then
4463 * the id was invalid.
4464 */
4465 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
4466 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP)) {
4467 SCTP_DEBUG_PRINTK("Failed no association\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08004469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470
Frank Filz52ccb8e2005-12-22 11:36:46 -08004471 if (trans) {
4472 /* Fetch transport values. */
4473 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
4474 params.spp_pathmtu = trans->pathmtu;
4475 params.spp_pathmaxrxt = trans->pathmaxrxt;
4476 params.spp_sackdelay = jiffies_to_msecs(trans->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477
Frank Filz52ccb8e2005-12-22 11:36:46 -08004478 /*draft-11 doesn't say what to return in spp_flags*/
4479 params.spp_flags = trans->param_flags;
4480 } else if (asoc) {
4481 /* Fetch association values. */
4482 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
4483 params.spp_pathmtu = asoc->pathmtu;
4484 params.spp_pathmaxrxt = asoc->pathmaxrxt;
4485 params.spp_sackdelay = jiffies_to_msecs(asoc->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486
Frank Filz52ccb8e2005-12-22 11:36:46 -08004487 /*draft-11 doesn't say what to return in spp_flags*/
4488 params.spp_flags = asoc->param_flags;
4489 } else {
4490 /* Fetch socket values. */
4491 params.spp_hbinterval = sp->hbinterval;
4492 params.spp_pathmtu = sp->pathmtu;
4493 params.spp_sackdelay = sp->sackdelay;
4494 params.spp_pathmaxrxt = sp->pathmaxrxt;
4495
4496 /*draft-11 doesn't say what to return in spp_flags*/
4497 params.spp_flags = sp->param_flags;
4498 }
4499
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 if (copy_to_user(optval, &params, len))
4501 return -EFAULT;
4502
4503 if (put_user(len, optlen))
4504 return -EFAULT;
4505
4506 return 0;
4507}
4508
Wei Yongjund364d922008-05-09 15:13:26 -07004509/*
4510 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08004511 *
Wei Yongjund364d922008-05-09 15:13:26 -07004512 * This option will effect the way delayed acks are performed. This
4513 * option allows you to get or set the delayed ack time, in
4514 * milliseconds. It also allows changing the delayed ack frequency.
4515 * Changing the frequency to 1 disables the delayed sack algorithm. If
4516 * the assoc_id is 0, then this sets or gets the endpoints default
4517 * values. If the assoc_id field is non-zero, then the set or get
4518 * effects the specified association for the one to many model (the
4519 * assoc_id field is ignored by the one to one model). Note that if
4520 * sack_delay or sack_freq are 0 when setting this option, then the
4521 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08004522 *
Wei Yongjund364d922008-05-09 15:13:26 -07004523 * struct sctp_sack_info {
4524 * sctp_assoc_t sack_assoc_id;
4525 * uint32_t sack_delay;
4526 * uint32_t sack_freq;
4527 * };
Frank Filz77086102005-12-22 11:37:30 -08004528 *
Wei Yongjund364d922008-05-09 15:13:26 -07004529 * sack_assoc_id - This parameter, indicates which association the user
4530 * is performing an action upon. Note that if this field's value is
4531 * zero then the endpoints default value is changed (effecting future
4532 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08004533 *
Wei Yongjund364d922008-05-09 15:13:26 -07004534 * sack_delay - This parameter contains the number of milliseconds that
4535 * the user is requesting the delayed ACK timer be set to. Note that
4536 * this value is defined in the standard to be between 200 and 500
4537 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08004538 *
Wei Yongjund364d922008-05-09 15:13:26 -07004539 * sack_freq - This parameter contains the number of packets that must
4540 * be received before a sack is sent without waiting for the delay
4541 * timer to expire. The default value for this is 2, setting this
4542 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08004543 */
Wei Yongjund364d922008-05-09 15:13:26 -07004544static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
Frank Filz77086102005-12-22 11:37:30 -08004545 char __user *optval,
4546 int __user *optlen)
4547{
Wei Yongjund364d922008-05-09 15:13:26 -07004548 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08004549 struct sctp_association *asoc = NULL;
4550 struct sctp_sock *sp = sctp_sk(sk);
4551
Wei Yongjund364d922008-05-09 15:13:26 -07004552 if (len >= sizeof(struct sctp_sack_info)) {
4553 len = sizeof(struct sctp_sack_info);
4554
4555 if (copy_from_user(&params, optval, len))
4556 return -EFAULT;
4557 } else if (len == sizeof(struct sctp_assoc_value)) {
Joe Perches145ce502010-08-24 13:21:08 +00004558 pr_warn("Use of struct sctp_assoc_value in delayed_ack socket option deprecated\n");
4559 pr_warn("Use struct sctp_sack_info instead\n");
Wei Yongjund364d922008-05-09 15:13:26 -07004560 if (copy_from_user(&params, optval, len))
4561 return -EFAULT;
4562 } else
Frank Filz77086102005-12-22 11:37:30 -08004563 return - EINVAL;
4564
Wei Yongjund364d922008-05-09 15:13:26 -07004565 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08004566 * to many style socket, and an association was not found, then
4567 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004568 */
Wei Yongjund364d922008-05-09 15:13:26 -07004569 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
4570 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08004571 return -EINVAL;
4572
4573 if (asoc) {
4574 /* Fetch association values. */
Wei Yongjund364d922008-05-09 15:13:26 -07004575 if (asoc->param_flags & SPP_SACKDELAY_ENABLE) {
4576 params.sack_delay = jiffies_to_msecs(
Frank Filz77086102005-12-22 11:37:30 -08004577 asoc->sackdelay);
Wei Yongjund364d922008-05-09 15:13:26 -07004578 params.sack_freq = asoc->sackfreq;
4579
4580 } else {
4581 params.sack_delay = 0;
4582 params.sack_freq = 1;
4583 }
Frank Filz77086102005-12-22 11:37:30 -08004584 } else {
4585 /* Fetch socket values. */
Wei Yongjund364d922008-05-09 15:13:26 -07004586 if (sp->param_flags & SPP_SACKDELAY_ENABLE) {
4587 params.sack_delay = sp->sackdelay;
4588 params.sack_freq = sp->sackfreq;
4589 } else {
4590 params.sack_delay = 0;
4591 params.sack_freq = 1;
4592 }
Frank Filz77086102005-12-22 11:37:30 -08004593 }
4594
4595 if (copy_to_user(optval, &params, len))
4596 return -EFAULT;
4597
4598 if (put_user(len, optlen))
4599 return -EFAULT;
4600
4601 return 0;
4602}
4603
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
4605 *
4606 * Applications can specify protocol parameters for the default association
4607 * initialization. The option name argument to setsockopt() and getsockopt()
4608 * is SCTP_INITMSG.
4609 *
4610 * Setting initialization parameters is effective only on an unconnected
4611 * socket (for UDP-style sockets only future associations are effected
4612 * by the change). With TCP-style sockets, this option is inherited by
4613 * sockets derived from a listener socket.
4614 */
4615static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
4616{
Neil Horman408f22e2007-06-16 14:03:45 -04004617 if (len < sizeof(struct sctp_initmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004619 len = sizeof(struct sctp_initmsg);
4620 if (put_user(len, optlen))
4621 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622 if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
4623 return -EFAULT;
4624 return 0;
4625}
4626
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004628static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
4629 char __user *optval, int __user *optlen)
4630{
4631 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004632 int cnt = 0;
4633 struct sctp_getaddrs getaddrs;
4634 struct sctp_transport *from;
4635 void __user *to;
4636 union sctp_addr temp;
4637 struct sctp_sock *sp = sctp_sk(sk);
4638 int addrlen;
4639 size_t space_left;
4640 int bytes_copied;
4641
4642 if (len < sizeof(struct sctp_getaddrs))
4643 return -EINVAL;
4644
4645 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
4646 return -EFAULT;
4647
4648 /* For UDP-style sockets, id specifies the association to query. */
4649 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
4650 if (!asoc)
4651 return -EINVAL;
4652
4653 to = optval + offsetof(struct sctp_getaddrs,addrs);
Neil Horman186e2342007-06-18 19:59:16 -04004654 space_left = len - offsetof(struct sctp_getaddrs,addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004655
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07004656 list_for_each_entry(from, &asoc->peer.transport_addr_list,
4657 transports) {
Al Virob3f5b3b2006-11-20 17:22:43 -08004658 memcpy(&temp, &from->ipaddr, sizeof(temp));
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004659 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp, &temp);
Vlad Yasevicha5f4cea2010-04-30 21:42:42 -04004660 addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004661 if (space_left < addrlen)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004662 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004663 if (copy_to_user(to, &temp, addrlen))
4664 return -EFAULT;
4665 to += addrlen;
4666 cnt++;
4667 space_left -= addrlen;
4668 }
4669
4670 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
4671 return -EFAULT;
4672 bytes_copied = ((char __user *)to) - optval;
4673 if (put_user(bytes_copied, optlen))
4674 return -EFAULT;
4675
4676 return 0;
4677}
4678
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004679static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to,
4680 size_t space_left, int *bytes_copied)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004681{
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004682 struct sctp_sockaddr_entry *addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004683 union sctp_addr temp;
4684 int cnt = 0;
4685 int addrlen;
Eric W. Biederman4db67e82012-08-06 08:42:04 +00004686 struct net *net = sock_net(sk);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004687
Vlad Yasevich29303542007-09-16 16:02:12 -07004688 rcu_read_lock();
Eric W. Biederman4db67e82012-08-06 08:42:04 +00004689 list_for_each_entry_rcu(addr, &net->sctp.local_addr_list, list) {
Vlad Yasevich29303542007-09-16 16:02:12 -07004690 if (!addr->valid)
4691 continue;
4692
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004693 if ((PF_INET == sk->sk_family) &&
Al Viro6244be42006-11-20 17:21:44 -08004694 (AF_INET6 == addr->a.sa.sa_family))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004695 continue;
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07004696 if ((PF_INET6 == sk->sk_family) &&
4697 inet_v6_ipv6only(sk) &&
4698 (AF_INET == addr->a.sa.sa_family))
4699 continue;
Al Viro6244be42006-11-20 17:21:44 -08004700 memcpy(&temp, &addr->a, sizeof(temp));
Vlad Yasevichb46ae362008-01-28 14:25:36 -05004701 if (!temp.v4.sin_port)
4702 temp.v4.sin_port = htons(port);
4703
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004704 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk),
4705 &temp);
4706 addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len;
Vlad Yasevich29303542007-09-16 16:02:12 -07004707 if (space_left < addrlen) {
4708 cnt = -ENOMEM;
4709 break;
4710 }
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004711 memcpy(to, &temp, addrlen);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08004712
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004713 to += addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004714 cnt ++;
4715 space_left -= addrlen;
Vlad Yasevich3663c302007-07-03 12:43:12 -04004716 *bytes_copied += addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004717 }
Vlad Yasevich29303542007-09-16 16:02:12 -07004718 rcu_read_unlock();
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004719
4720 return cnt;
4721}
4722
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004724static int sctp_getsockopt_local_addrs(struct sock *sk, int len,
4725 char __user *optval, int __user *optlen)
4726{
4727 struct sctp_bind_addr *bp;
4728 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004729 int cnt = 0;
4730 struct sctp_getaddrs getaddrs;
4731 struct sctp_sockaddr_entry *addr;
4732 void __user *to;
4733 union sctp_addr temp;
4734 struct sctp_sock *sp = sctp_sk(sk);
4735 int addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004736 int err = 0;
4737 size_t space_left;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004738 int bytes_copied = 0;
4739 void *addrs;
Vlad Yasevich70b57b82007-05-09 13:51:31 -07004740 void *buf;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004741
Neil Horman408f22e2007-06-16 14:03:45 -04004742 if (len < sizeof(struct sctp_getaddrs))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004743 return -EINVAL;
4744
4745 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
4746 return -EFAULT;
4747
4748 /*
4749 * For UDP-style sockets, id specifies the association to query.
4750 * If the id field is set to the value '0' then the locally bound
4751 * addresses are returned without regard to any particular
4752 * association.
4753 */
4754 if (0 == getaddrs.assoc_id) {
4755 bp = &sctp_sk(sk)->ep->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004756 } else {
4757 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
4758 if (!asoc)
4759 return -EINVAL;
4760 bp = &asoc->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004761 }
4762
4763 to = optval + offsetof(struct sctp_getaddrs,addrs);
Neil Horman186e2342007-06-18 19:59:16 -04004764 space_left = len - offsetof(struct sctp_getaddrs,addrs);
4765
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004766 addrs = kmalloc(space_left, GFP_KERNEL);
4767 if (!addrs)
4768 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004769
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004770 /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
4771 * addresses from the global local address list.
4772 */
4773 if (sctp_list_single_entry(&bp->address_list)) {
4774 addr = list_entry(bp->address_list.next,
4775 struct sctp_sockaddr_entry, list);
Vlad Yasevich52cae8f2008-08-18 10:34:34 -04004776 if (sctp_is_any(sk, &addr->a)) {
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004777 cnt = sctp_copy_laddrs(sk, bp->port, addrs,
4778 space_left, &bytes_copied);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004779 if (cnt < 0) {
4780 err = cnt;
Vlad Yasevich559cf712007-09-16 16:03:28 -07004781 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004782 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004783 goto copy_getaddrs;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004784 }
4785 }
4786
Vlad Yasevich70b57b82007-05-09 13:51:31 -07004787 buf = addrs;
Vlad Yasevich559cf712007-09-16 16:03:28 -07004788 /* Protection on the bound address list is not needed since
4789 * in the socket option context we hold a socket lock and
4790 * thus the bound address list can't change.
4791 */
4792 list_for_each_entry(addr, &bp->address_list, list) {
Al Viro6244be42006-11-20 17:21:44 -08004793 memcpy(&temp, &addr->a, sizeof(temp));
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004794 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp, &temp);
4795 addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004796 if (space_left < addrlen) {
4797 err = -ENOMEM; /*fixme: right error?*/
Vlad Yasevich559cf712007-09-16 16:03:28 -07004798 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004799 }
Vlad Yasevich70b57b82007-05-09 13:51:31 -07004800 memcpy(buf, &temp, addrlen);
4801 buf += addrlen;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004802 bytes_copied += addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004803 cnt ++;
4804 space_left -= addrlen;
4805 }
4806
4807copy_getaddrs:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004808 if (copy_to_user(to, addrs, bytes_copied)) {
4809 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02004810 goto out;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004811 }
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04004812 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num)) {
4813 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02004814 goto out;
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04004815 }
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004816 if (put_user(bytes_copied, optlen))
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04004817 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02004818out:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004819 kfree(addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004820 return err;
4821}
4822
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
4824 *
4825 * Requests that the local SCTP stack use the enclosed peer address as
4826 * the association primary. The enclosed address must be one of the
4827 * association peer's addresses.
4828 */
4829static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
4830 char __user *optval, int __user *optlen)
4831{
4832 struct sctp_prim prim;
4833 struct sctp_association *asoc;
4834 struct sctp_sock *sp = sctp_sk(sk);
4835
Neil Horman408f22e2007-06-16 14:03:45 -04004836 if (len < sizeof(struct sctp_prim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837 return -EINVAL;
4838
Neil Horman408f22e2007-06-16 14:03:45 -04004839 len = sizeof(struct sctp_prim);
4840
4841 if (copy_from_user(&prim, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842 return -EFAULT;
4843
4844 asoc = sctp_id2assoc(sk, prim.ssp_assoc_id);
4845 if (!asoc)
4846 return -EINVAL;
4847
4848 if (!asoc->peer.primary_path)
4849 return -ENOTCONN;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004850
Al Viro8cec6b82006-11-20 17:23:01 -08004851 memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr,
4852 asoc->peer.primary_path->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853
4854 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp,
4855 (union sctp_addr *)&prim.ssp_addr);
4856
Neil Horman408f22e2007-06-16 14:03:45 -04004857 if (put_user(len, optlen))
4858 return -EFAULT;
4859 if (copy_to_user(optval, &prim, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860 return -EFAULT;
4861
4862 return 0;
4863}
4864
4865/*
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004866 * 7.1.11 Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867 *
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004868 * Requests that the local endpoint set the specified Adaptation Layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869 * Indication parameter for all future INIT and INIT-ACK exchanges.
4870 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004871static int sctp_getsockopt_adaptation_layer(struct sock *sk, int len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872 char __user *optval, int __user *optlen)
4873{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004874 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875
Neil Horman408f22e2007-06-16 14:03:45 -04004876 if (len < sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877 return -EINVAL;
4878
Neil Horman408f22e2007-06-16 14:03:45 -04004879 len = sizeof(struct sctp_setadaptation);
4880
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004881 adaptation.ssb_adaptation_ind = sctp_sk(sk)->adaptation_ind;
Neil Horman408f22e2007-06-16 14:03:45 -04004882
4883 if (put_user(len, optlen))
4884 return -EFAULT;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004885 if (copy_to_user(optval, &adaptation, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886 return -EFAULT;
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07004887
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888 return 0;
4889}
4890
4891/*
4892 *
4893 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
4894 *
4895 * Applications that wish to use the sendto() system call may wish to
4896 * specify a default set of parameters that would normally be supplied
4897 * through the inclusion of ancillary data. This socket option allows
4898 * such an application to set the default sctp_sndrcvinfo structure.
4899
4900
4901 * The application that wishes to use this socket option simply passes
4902 * in to this call the sctp_sndrcvinfo structure defined in Section
4903 * 5.2.2) The input parameters accepted by this call include
4904 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
4905 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
4906 * to this call if the caller is using the UDP model.
4907 *
4908 * For getsockopt, it get the default sctp_sndrcvinfo structure.
4909 */
4910static int sctp_getsockopt_default_send_param(struct sock *sk,
4911 int len, char __user *optval,
4912 int __user *optlen)
4913{
4914 struct sctp_sndrcvinfo info;
4915 struct sctp_association *asoc;
4916 struct sctp_sock *sp = sctp_sk(sk);
4917
Neil Horman408f22e2007-06-16 14:03:45 -04004918 if (len < sizeof(struct sctp_sndrcvinfo))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004920
4921 len = sizeof(struct sctp_sndrcvinfo);
4922
4923 if (copy_from_user(&info, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924 return -EFAULT;
4925
4926 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
4927 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
4928 return -EINVAL;
4929
4930 if (asoc) {
4931 info.sinfo_stream = asoc->default_stream;
4932 info.sinfo_flags = asoc->default_flags;
4933 info.sinfo_ppid = asoc->default_ppid;
4934 info.sinfo_context = asoc->default_context;
4935 info.sinfo_timetolive = asoc->default_timetolive;
4936 } else {
4937 info.sinfo_stream = sp->default_stream;
4938 info.sinfo_flags = sp->default_flags;
4939 info.sinfo_ppid = sp->default_ppid;
4940 info.sinfo_context = sp->default_context;
4941 info.sinfo_timetolive = sp->default_timetolive;
4942 }
4943
Neil Horman408f22e2007-06-16 14:03:45 -04004944 if (put_user(len, optlen))
4945 return -EFAULT;
4946 if (copy_to_user(optval, &info, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947 return -EFAULT;
4948
4949 return 0;
4950}
4951
4952/*
4953 *
4954 * 7.1.5 SCTP_NODELAY
4955 *
4956 * Turn on/off any Nagle-like algorithm. This means that packets are
4957 * generally sent as soon as possible and no unnecessary delays are
4958 * introduced, at the cost of more packets in the network. Expects an
4959 * integer boolean flag.
4960 */
4961
4962static int sctp_getsockopt_nodelay(struct sock *sk, int len,
4963 char __user *optval, int __user *optlen)
4964{
4965 int val;
4966
4967 if (len < sizeof(int))
4968 return -EINVAL;
4969
4970 len = sizeof(int);
4971 val = (sctp_sk(sk)->nodelay == 1);
4972 if (put_user(len, optlen))
4973 return -EFAULT;
4974 if (copy_to_user(optval, &val, len))
4975 return -EFAULT;
4976 return 0;
4977}
4978
4979/*
4980 *
4981 * 7.1.1 SCTP_RTOINFO
4982 *
4983 * The protocol parameters used to initialize and bound retransmission
4984 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
4985 * and modify these parameters.
4986 * All parameters are time values, in milliseconds. A value of 0, when
4987 * modifying the parameters, indicates that the current value should not
4988 * be changed.
4989 *
4990 */
4991static int sctp_getsockopt_rtoinfo(struct sock *sk, int len,
4992 char __user *optval,
4993 int __user *optlen) {
4994 struct sctp_rtoinfo rtoinfo;
4995 struct sctp_association *asoc;
4996
Neil Horman408f22e2007-06-16 14:03:45 -04004997 if (len < sizeof (struct sctp_rtoinfo))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998 return -EINVAL;
4999
Neil Horman408f22e2007-06-16 14:03:45 -04005000 len = sizeof(struct sctp_rtoinfo);
5001
5002 if (copy_from_user(&rtoinfo, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003 return -EFAULT;
5004
5005 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
5006
5007 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
5008 return -EINVAL;
5009
5010 /* Values corresponding to the specific association. */
5011 if (asoc) {
5012 rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial);
5013 rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max);
5014 rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min);
5015 } else {
5016 /* Values corresponding to the endpoint. */
5017 struct sctp_sock *sp = sctp_sk(sk);
5018
5019 rtoinfo.srto_initial = sp->rtoinfo.srto_initial;
5020 rtoinfo.srto_max = sp->rtoinfo.srto_max;
5021 rtoinfo.srto_min = sp->rtoinfo.srto_min;
5022 }
5023
5024 if (put_user(len, optlen))
5025 return -EFAULT;
5026
5027 if (copy_to_user(optval, &rtoinfo, len))
5028 return -EFAULT;
5029
5030 return 0;
5031}
5032
5033/*
5034 *
5035 * 7.1.2 SCTP_ASSOCINFO
5036 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02005037 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038 * of the association.
5039 * Returns an error if the new association retransmission value is
5040 * greater than the sum of the retransmission value of the peer.
5041 * See [SCTP] for more information.
5042 *
5043 */
5044static int sctp_getsockopt_associnfo(struct sock *sk, int len,
5045 char __user *optval,
5046 int __user *optlen)
5047{
5048
5049 struct sctp_assocparams assocparams;
5050 struct sctp_association *asoc;
5051 struct list_head *pos;
5052 int cnt = 0;
5053
Neil Horman408f22e2007-06-16 14:03:45 -04005054 if (len < sizeof (struct sctp_assocparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055 return -EINVAL;
5056
Neil Horman408f22e2007-06-16 14:03:45 -04005057 len = sizeof(struct sctp_assocparams);
5058
5059 if (copy_from_user(&assocparams, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060 return -EFAULT;
5061
5062 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
5063
5064 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
5065 return -EINVAL;
5066
5067 /* Values correspoinding to the specific association */
Vladislav Yasevich17337212005-04-28 11:57:54 -07005068 if (asoc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069 assocparams.sasoc_asocmaxrxt = asoc->max_retrans;
5070 assocparams.sasoc_peer_rwnd = asoc->peer.rwnd;
5071 assocparams.sasoc_local_rwnd = asoc->a_rwnd;
Daniel Borkmann52db8822013-06-25 18:17:27 +02005072 assocparams.sasoc_cookie_life = ktime_to_ms(asoc->cookie_life);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073
5074 list_for_each(pos, &asoc->peer.transport_addr_list) {
5075 cnt ++;
5076 }
5077
5078 assocparams.sasoc_number_peer_destinations = cnt;
5079 } else {
5080 /* Values corresponding to the endpoint */
5081 struct sctp_sock *sp = sctp_sk(sk);
5082
5083 assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt;
5084 assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd;
5085 assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd;
5086 assocparams.sasoc_cookie_life =
5087 sp->assocparams.sasoc_cookie_life;
5088 assocparams.sasoc_number_peer_destinations =
5089 sp->assocparams.
5090 sasoc_number_peer_destinations;
5091 }
5092
5093 if (put_user(len, optlen))
5094 return -EFAULT;
5095
5096 if (copy_to_user(optval, &assocparams, len))
5097 return -EFAULT;
5098
5099 return 0;
5100}
5101
5102/*
5103 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
5104 *
5105 * This socket option is a boolean flag which turns on or off mapped V4
5106 * addresses. If this option is turned on and the socket is type
5107 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
5108 * If this option is turned off, then no mapping will be done of V4
5109 * addresses and a user will receive both PF_INET6 and PF_INET type
5110 * addresses on the socket.
5111 */
5112static int sctp_getsockopt_mappedv4(struct sock *sk, int len,
5113 char __user *optval, int __user *optlen)
5114{
5115 int val;
5116 struct sctp_sock *sp = sctp_sk(sk);
5117
5118 if (len < sizeof(int))
5119 return -EINVAL;
5120
5121 len = sizeof(int);
5122 val = sp->v4mapped;
5123 if (put_user(len, optlen))
5124 return -EFAULT;
5125 if (copy_to_user(optval, &val, len))
5126 return -EFAULT;
5127
5128 return 0;
5129}
5130
5131/*
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005132 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
5133 * (chapter and verse is quoted at sctp_setsockopt_context())
5134 */
5135static int sctp_getsockopt_context(struct sock *sk, int len,
5136 char __user *optval, int __user *optlen)
5137{
5138 struct sctp_assoc_value params;
5139 struct sctp_sock *sp;
5140 struct sctp_association *asoc;
5141
Neil Horman408f22e2007-06-16 14:03:45 -04005142 if (len < sizeof(struct sctp_assoc_value))
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005143 return -EINVAL;
5144
Neil Horman408f22e2007-06-16 14:03:45 -04005145 len = sizeof(struct sctp_assoc_value);
5146
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005147 if (copy_from_user(&params, optval, len))
5148 return -EFAULT;
5149
5150 sp = sctp_sk(sk);
5151
5152 if (params.assoc_id != 0) {
5153 asoc = sctp_id2assoc(sk, params.assoc_id);
5154 if (!asoc)
5155 return -EINVAL;
5156 params.assoc_value = asoc->default_rcv_context;
5157 } else {
5158 params.assoc_value = sp->default_rcv_context;
5159 }
5160
5161 if (put_user(len, optlen))
5162 return -EFAULT;
5163 if (copy_to_user(optval, &params, len))
5164 return -EFAULT;
5165
5166 return 0;
5167}
5168
5169/*
Wei Yongjune89c2092008-12-25 16:54:58 -08005170 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
5171 * This option will get or set the maximum size to put in any outgoing
5172 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173 * fragmented by SCTP into the specified size. Note that the underlying
5174 * SCTP implementation may fragment into smaller sized chunks when the
5175 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08005176 * the user. The default value for this option is '0' which indicates
5177 * the user is NOT limiting fragmentation and only the PMTU will effect
5178 * SCTP's choice of DATA chunk size. Note also that values set larger
5179 * than the maximum size of an IP datagram will effectively let SCTP
5180 * control fragmentation (i.e. the same as setting this option to 0).
5181 *
5182 * The following structure is used to access and modify this parameter:
5183 *
5184 * struct sctp_assoc_value {
5185 * sctp_assoc_t assoc_id;
5186 * uint32_t assoc_value;
5187 * };
5188 *
5189 * assoc_id: This parameter is ignored for one-to-one style sockets.
5190 * For one-to-many style sockets this parameter indicates which
5191 * association the user is performing an action upon. Note that if
5192 * this field's value is zero then the endpoints default value is
5193 * changed (effecting future associations only).
5194 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195 */
5196static int sctp_getsockopt_maxseg(struct sock *sk, int len,
5197 char __user *optval, int __user *optlen)
5198{
Wei Yongjune89c2092008-12-25 16:54:58 -08005199 struct sctp_assoc_value params;
5200 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201
Wei Yongjune89c2092008-12-25 16:54:58 -08005202 if (len == sizeof(int)) {
Joe Perches145ce502010-08-24 13:21:08 +00005203 pr_warn("Use of int in maxseg socket option deprecated\n");
5204 pr_warn("Use struct sctp_assoc_value instead\n");
Wei Yongjune89c2092008-12-25 16:54:58 -08005205 params.assoc_id = 0;
5206 } else if (len >= sizeof(struct sctp_assoc_value)) {
5207 len = sizeof(struct sctp_assoc_value);
5208 if (copy_from_user(&params, optval, sizeof(params)))
5209 return -EFAULT;
5210 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211 return -EINVAL;
5212
Wei Yongjune89c2092008-12-25 16:54:58 -08005213 asoc = sctp_id2assoc(sk, params.assoc_id);
5214 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
5215 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216
Wei Yongjune89c2092008-12-25 16:54:58 -08005217 if (asoc)
5218 params.assoc_value = asoc->frag_point;
5219 else
5220 params.assoc_value = sctp_sk(sk)->user_frag;
5221
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222 if (put_user(len, optlen))
5223 return -EFAULT;
Wei Yongjune89c2092008-12-25 16:54:58 -08005224 if (len == sizeof(int)) {
5225 if (copy_to_user(optval, &params.assoc_value, len))
5226 return -EFAULT;
5227 } else {
5228 if (copy_to_user(optval, &params, len))
5229 return -EFAULT;
5230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231
5232 return 0;
5233}
5234
Vlad Yasevichb6e13312007-04-20 12:23:15 -07005235/*
5236 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
5237 * (chapter and verse is quoted at sctp_setsockopt_fragment_interleave())
5238 */
5239static int sctp_getsockopt_fragment_interleave(struct sock *sk, int len,
5240 char __user *optval, int __user *optlen)
5241{
5242 int val;
5243
5244 if (len < sizeof(int))
5245 return -EINVAL;
5246
5247 len = sizeof(int);
5248
5249 val = sctp_sk(sk)->frag_interleave;
5250 if (put_user(len, optlen))
5251 return -EFAULT;
5252 if (copy_to_user(optval, &val, len))
5253 return -EFAULT;
5254
5255 return 0;
5256}
5257
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07005258/*
5259 * 7.1.25. Set or Get the sctp partial delivery point
5260 * (chapter and verse is quoted at sctp_setsockopt_partial_delivery_point())
5261 */
5262static int sctp_getsockopt_partial_delivery_point(struct sock *sk, int len,
5263 char __user *optval,
5264 int __user *optlen)
5265{
YOSHIFUJI Hideaki9cbcbf42007-07-19 10:44:50 +09005266 u32 val;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07005267
5268 if (len < sizeof(u32))
5269 return -EINVAL;
5270
5271 len = sizeof(u32);
5272
5273 val = sctp_sk(sk)->pd_point;
5274 if (put_user(len, optlen))
5275 return -EFAULT;
5276 if (copy_to_user(optval, &val, len))
5277 return -EFAULT;
5278
Wei Yongjun7d743b72010-12-14 16:10:41 +00005279 return 0;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07005280}
5281
Vlad Yasevich70331572007-03-23 11:34:36 -07005282/*
5283 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
5284 * (chapter and verse is quoted at sctp_setsockopt_maxburst())
5285 */
5286static int sctp_getsockopt_maxburst(struct sock *sk, int len,
5287 char __user *optval,
5288 int __user *optlen)
5289{
Neil Horman219b99a2008-03-05 13:44:46 -08005290 struct sctp_assoc_value params;
5291 struct sctp_sock *sp;
5292 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07005293
Neil Horman219b99a2008-03-05 13:44:46 -08005294 if (len == sizeof(int)) {
Joe Perches145ce502010-08-24 13:21:08 +00005295 pr_warn("Use of int in max_burst socket option deprecated\n");
5296 pr_warn("Use struct sctp_assoc_value instead\n");
Neil Horman219b99a2008-03-05 13:44:46 -08005297 params.assoc_id = 0;
Wei Yongjunc6db93a2009-03-02 09:46:12 +00005298 } else if (len >= sizeof(struct sctp_assoc_value)) {
5299 len = sizeof(struct sctp_assoc_value);
Neil Horman219b99a2008-03-05 13:44:46 -08005300 if (copy_from_user(&params, optval, len))
5301 return -EFAULT;
5302 } else
5303 return -EINVAL;
Vlad Yasevich70331572007-03-23 11:34:36 -07005304
Neil Horman219b99a2008-03-05 13:44:46 -08005305 sp = sctp_sk(sk);
Vlad Yasevich70331572007-03-23 11:34:36 -07005306
Neil Horman219b99a2008-03-05 13:44:46 -08005307 if (params.assoc_id != 0) {
5308 asoc = sctp_id2assoc(sk, params.assoc_id);
5309 if (!asoc)
5310 return -EINVAL;
5311 params.assoc_value = asoc->max_burst;
5312 } else
5313 params.assoc_value = sp->max_burst;
5314
5315 if (len == sizeof(int)) {
5316 if (copy_to_user(optval, &params.assoc_value, len))
5317 return -EFAULT;
5318 } else {
5319 if (copy_to_user(optval, &params, len))
5320 return -EFAULT;
5321 }
5322
5323 return 0;
5324
Vlad Yasevich70331572007-03-23 11:34:36 -07005325}
5326
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005327static int sctp_getsockopt_hmac_ident(struct sock *sk, int len,
5328 char __user *optval, int __user *optlen)
5329{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005330 struct net *net = sock_net(sk);
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005331 struct sctp_hmacalgo __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005332 struct sctp_hmac_algo_param *hmacs;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005333 __u16 data_len = 0;
5334 u32 num_idents;
5335
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005336 if (!net->sctp.auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005337 return -EACCES;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005338
5339 hmacs = sctp_sk(sk)->ep->auth_hmacs_list;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005340 data_len = ntohs(hmacs->param_hdr.length) - sizeof(sctp_paramhdr_t);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005341
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005342 if (len < sizeof(struct sctp_hmacalgo) + data_len)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005343 return -EINVAL;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005344
5345 len = sizeof(struct sctp_hmacalgo) + data_len;
5346 num_idents = data_len / sizeof(u16);
5347
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005348 if (put_user(len, optlen))
5349 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005350 if (put_user(num_idents, &p->shmac_num_idents))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005351 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005352 if (copy_to_user(p->shmac_idents, hmacs->hmac_ids, data_len))
5353 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005354 return 0;
5355}
5356
5357static int sctp_getsockopt_active_key(struct sock *sk, int len,
5358 char __user *optval, int __user *optlen)
5359{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005360 struct net *net = sock_net(sk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005361 struct sctp_authkeyid val;
5362 struct sctp_association *asoc;
5363
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005364 if (!net->sctp.auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005365 return -EACCES;
5366
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005367 if (len < sizeof(struct sctp_authkeyid))
5368 return -EINVAL;
5369 if (copy_from_user(&val, optval, sizeof(struct sctp_authkeyid)))
5370 return -EFAULT;
5371
5372 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
5373 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
5374 return -EINVAL;
5375
5376 if (asoc)
5377 val.scact_keynumber = asoc->active_key_id;
5378 else
5379 val.scact_keynumber = sctp_sk(sk)->ep->active_key_id;
5380
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005381 len = sizeof(struct sctp_authkeyid);
5382 if (put_user(len, optlen))
5383 return -EFAULT;
5384 if (copy_to_user(optval, &val, len))
5385 return -EFAULT;
5386
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005387 return 0;
5388}
5389
5390static int sctp_getsockopt_peer_auth_chunks(struct sock *sk, int len,
5391 char __user *optval, int __user *optlen)
5392{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005393 struct net *net = sock_net(sk);
Al Viro411223c2007-10-14 19:21:20 +01005394 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005395 struct sctp_authchunks val;
5396 struct sctp_association *asoc;
5397 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005398 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005399 char __user *to;
5400
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005401 if (!net->sctp.auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005402 return -EACCES;
5403
5404 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005405 return -EINVAL;
5406
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005407 if (copy_from_user(&val, optval, sizeof(struct sctp_authchunks)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005408 return -EFAULT;
5409
Al Viro411223c2007-10-14 19:21:20 +01005410 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005411 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
5412 if (!asoc)
5413 return -EINVAL;
5414
5415 ch = asoc->peer.peer_chunks;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005416 if (!ch)
5417 goto num;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005418
5419 /* See if the user provided enough room for all the data */
Vlad Yasevichb40db682008-02-27 14:40:37 -05005420 num_chunks = ntohs(ch->param_hdr.length) - sizeof(sctp_paramhdr_t);
5421 if (len < num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005422 return -EINVAL;
5423
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005424 if (copy_to_user(to, ch->chunks, num_chunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005425 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005426num:
5427 len = sizeof(struct sctp_authchunks) + num_chunks;
5428 if (put_user(len, optlen)) return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05005429 if (put_user(num_chunks, &p->gauth_number_of_chunks))
5430 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005431 return 0;
5432}
5433
5434static int sctp_getsockopt_local_auth_chunks(struct sock *sk, int len,
5435 char __user *optval, int __user *optlen)
5436{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005437 struct net *net = sock_net(sk);
Al Viro411223c2007-10-14 19:21:20 +01005438 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005439 struct sctp_authchunks val;
5440 struct sctp_association *asoc;
5441 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005442 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005443 char __user *to;
5444
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005445 if (!net->sctp.auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005446 return -EACCES;
5447
5448 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005449 return -EINVAL;
5450
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005451 if (copy_from_user(&val, optval, sizeof(struct sctp_authchunks)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005452 return -EFAULT;
5453
Al Viro411223c2007-10-14 19:21:20 +01005454 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005455 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
5456 if (!asoc && val.gauth_assoc_id && sctp_style(sk, UDP))
5457 return -EINVAL;
5458
5459 if (asoc)
5460 ch = (struct sctp_chunks_param*)asoc->c.auth_chunks;
5461 else
5462 ch = sctp_sk(sk)->ep->auth_chunk_list;
5463
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005464 if (!ch)
5465 goto num;
5466
Vlad Yasevichb40db682008-02-27 14:40:37 -05005467 num_chunks = ntohs(ch->param_hdr.length) - sizeof(sctp_paramhdr_t);
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005468 if (len < sizeof(struct sctp_authchunks) + num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005469 return -EINVAL;
5470
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005471 if (copy_to_user(to, ch->chunks, num_chunks))
5472 return -EFAULT;
5473num:
5474 len = sizeof(struct sctp_authchunks) + num_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005475 if (put_user(len, optlen))
5476 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05005477 if (put_user(num_chunks, &p->gauth_number_of_chunks))
5478 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005479
5480 return 0;
5481}
5482
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08005483/*
5484 * 8.2.5. Get the Current Number of Associations (SCTP_GET_ASSOC_NUMBER)
5485 * This option gets the current number of associations that are attached
5486 * to a one-to-many style socket. The option value is an uint32_t.
5487 */
5488static int sctp_getsockopt_assoc_number(struct sock *sk, int len,
5489 char __user *optval, int __user *optlen)
5490{
5491 struct sctp_sock *sp = sctp_sk(sk);
5492 struct sctp_association *asoc;
5493 u32 val = 0;
5494
5495 if (sctp_style(sk, TCP))
5496 return -EOPNOTSUPP;
5497
5498 if (len < sizeof(u32))
5499 return -EINVAL;
5500
5501 len = sizeof(u32);
5502
5503 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
5504 val++;
5505 }
5506
5507 if (put_user(len, optlen))
5508 return -EFAULT;
5509 if (copy_to_user(optval, &val, len))
5510 return -EFAULT;
5511
5512 return 0;
5513}
5514
Wei Yongjun209ba422011-04-17 17:27:08 +00005515/*
Michio Honda7dc04d72011-04-26 20:16:31 +09005516 * 8.1.23 SCTP_AUTO_ASCONF
5517 * See the corresponding setsockopt entry as description
5518 */
5519static int sctp_getsockopt_auto_asconf(struct sock *sk, int len,
5520 char __user *optval, int __user *optlen)
5521{
5522 int val = 0;
5523
5524 if (len < sizeof(int))
5525 return -EINVAL;
5526
5527 len = sizeof(int);
5528 if (sctp_sk(sk)->do_auto_asconf && sctp_is_ep_boundall(sk))
5529 val = 1;
5530 if (put_user(len, optlen))
5531 return -EFAULT;
5532 if (copy_to_user(optval, &val, len))
5533 return -EFAULT;
5534 return 0;
5535}
5536
5537/*
Wei Yongjun209ba422011-04-17 17:27:08 +00005538 * 8.2.6. Get the Current Identifiers of Associations
5539 * (SCTP_GET_ASSOC_ID_LIST)
5540 *
5541 * This option gets the current list of SCTP association identifiers of
5542 * the SCTP associations handled by a one-to-many style socket.
5543 */
5544static int sctp_getsockopt_assoc_ids(struct sock *sk, int len,
5545 char __user *optval, int __user *optlen)
5546{
5547 struct sctp_sock *sp = sctp_sk(sk);
5548 struct sctp_association *asoc;
5549 struct sctp_assoc_ids *ids;
5550 u32 num = 0;
5551
5552 if (sctp_style(sk, TCP))
5553 return -EOPNOTSUPP;
5554
5555 if (len < sizeof(struct sctp_assoc_ids))
5556 return -EINVAL;
5557
5558 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
5559 num++;
5560 }
5561
5562 if (len < sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num)
5563 return -EINVAL;
5564
5565 len = sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num;
5566
5567 ids = kmalloc(len, GFP_KERNEL);
5568 if (unlikely(!ids))
5569 return -ENOMEM;
5570
5571 ids->gaids_number_of_ids = num;
5572 num = 0;
5573 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
5574 ids->gaids_assoc_id[num++] = asoc->assoc_id;
5575 }
5576
5577 if (put_user(len, optlen) || copy_to_user(optval, ids, len)) {
5578 kfree(ids);
5579 return -EFAULT;
5580 }
5581
5582 kfree(ids);
5583 return 0;
5584}
5585
Neil Horman5aa93bc2012-07-21 07:56:07 +00005586/*
5587 * SCTP_PEER_ADDR_THLDS
5588 *
5589 * This option allows us to fetch the partially failed threshold for one or all
5590 * transports in an association. See Section 6.1 of:
5591 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
5592 */
5593static int sctp_getsockopt_paddr_thresholds(struct sock *sk,
5594 char __user *optval,
5595 int len,
5596 int __user *optlen)
5597{
5598 struct sctp_paddrthlds val;
5599 struct sctp_transport *trans;
5600 struct sctp_association *asoc;
5601
5602 if (len < sizeof(struct sctp_paddrthlds))
5603 return -EINVAL;
5604 len = sizeof(struct sctp_paddrthlds);
5605 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval, len))
5606 return -EFAULT;
5607
5608 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
5609 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
5610 if (!asoc)
5611 return -ENOENT;
5612
5613 val.spt_pathpfthld = asoc->pf_retrans;
5614 val.spt_pathmaxrxt = asoc->pathmaxrxt;
5615 } else {
5616 trans = sctp_addr_id2transport(sk, &val.spt_address,
5617 val.spt_assoc_id);
5618 if (!trans)
5619 return -ENOENT;
5620
5621 val.spt_pathmaxrxt = trans->pathmaxrxt;
5622 val.spt_pathpfthld = trans->pf_retrans;
5623 }
5624
5625 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
5626 return -EFAULT;
5627
5628 return 0;
5629}
5630
Michele Baldessari196d6752012-12-01 04:49:42 +00005631/*
5632 * SCTP_GET_ASSOC_STATS
5633 *
5634 * This option retrieves local per endpoint statistics. It is modeled
5635 * after OpenSolaris' implementation
5636 */
5637static int sctp_getsockopt_assoc_stats(struct sock *sk, int len,
5638 char __user *optval,
5639 int __user *optlen)
5640{
5641 struct sctp_assoc_stats sas;
5642 struct sctp_association *asoc = NULL;
5643
5644 /* User must provide at least the assoc id */
5645 if (len < sizeof(sctp_assoc_t))
5646 return -EINVAL;
5647
Guenter Roeck726bc6b2013-02-27 10:57:31 +00005648 /* Allow the struct to grow and fill in as much as possible */
5649 len = min_t(size_t, len, sizeof(sas));
5650
Michele Baldessari196d6752012-12-01 04:49:42 +00005651 if (copy_from_user(&sas, optval, len))
5652 return -EFAULT;
5653
5654 asoc = sctp_id2assoc(sk, sas.sas_assoc_id);
5655 if (!asoc)
5656 return -EINVAL;
5657
5658 sas.sas_rtxchunks = asoc->stats.rtxchunks;
5659 sas.sas_gapcnt = asoc->stats.gapcnt;
5660 sas.sas_outofseqtsns = asoc->stats.outofseqtsns;
5661 sas.sas_osacks = asoc->stats.osacks;
5662 sas.sas_isacks = asoc->stats.isacks;
5663 sas.sas_octrlchunks = asoc->stats.octrlchunks;
5664 sas.sas_ictrlchunks = asoc->stats.ictrlchunks;
5665 sas.sas_oodchunks = asoc->stats.oodchunks;
5666 sas.sas_iodchunks = asoc->stats.iodchunks;
5667 sas.sas_ouodchunks = asoc->stats.ouodchunks;
5668 sas.sas_iuodchunks = asoc->stats.iuodchunks;
5669 sas.sas_idupchunks = asoc->stats.idupchunks;
5670 sas.sas_opackets = asoc->stats.opackets;
5671 sas.sas_ipackets = asoc->stats.ipackets;
5672
5673 /* New high max rto observed, will return 0 if not a single
5674 * RTO update took place. obs_rto_ipaddr will be bogus
5675 * in such a case
5676 */
5677 sas.sas_maxrto = asoc->stats.max_obs_rto;
5678 memcpy(&sas.sas_obs_rto_ipaddr, &asoc->stats.obs_rto_ipaddr,
5679 sizeof(struct sockaddr_storage));
5680
5681 /* Mark beginning of a new observation period */
5682 asoc->stats.max_obs_rto = asoc->rto_min;
5683
Michele Baldessari196d6752012-12-01 04:49:42 +00005684 if (put_user(len, optlen))
5685 return -EFAULT;
5686
5687 SCTP_DEBUG_PRINTK("sctp_getsockopt_assoc_stat(%d): %d\n",
5688 len, sas.sas_assoc_id);
5689
5690 if (copy_to_user(optval, &sas, len))
5691 return -EFAULT;
5692
5693 return 0;
5694}
5695
Daniel Borkmanndda91922013-06-17 11:40:05 +02005696static int sctp_getsockopt(struct sock *sk, int level, int optname,
5697 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698{
5699 int retval = 0;
5700 int len;
5701
Frank Filz3f7a87d2005-06-20 13:14:57 -07005702 SCTP_DEBUG_PRINTK("sctp_getsockopt(sk: %p... optname: %d)\n",
5703 sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704
5705 /* I can hardly begin to describe how wrong this is. This is
5706 * so broken as to be worse than useless. The API draft
5707 * REALLY is NOT helpful here... I am not convinced that the
5708 * semantics of getsockopt() with a level OTHER THAN SOL_SCTP
5709 * are at all well-founded.
5710 */
5711 if (level != SOL_SCTP) {
5712 struct sctp_af *af = sctp_sk(sk)->pf->af;
5713
5714 retval = af->getsockopt(sk, level, optname, optval, optlen);
5715 return retval;
5716 }
5717
5718 if (get_user(len, optlen))
5719 return -EFAULT;
5720
5721 sctp_lock_sock(sk);
5722
5723 switch (optname) {
5724 case SCTP_STATUS:
5725 retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen);
5726 break;
5727 case SCTP_DISABLE_FRAGMENTS:
5728 retval = sctp_getsockopt_disable_fragments(sk, len, optval,
5729 optlen);
5730 break;
5731 case SCTP_EVENTS:
5732 retval = sctp_getsockopt_events(sk, len, optval, optlen);
5733 break;
5734 case SCTP_AUTOCLOSE:
5735 retval = sctp_getsockopt_autoclose(sk, len, optval, optlen);
5736 break;
5737 case SCTP_SOCKOPT_PEELOFF:
5738 retval = sctp_getsockopt_peeloff(sk, len, optval, optlen);
5739 break;
5740 case SCTP_PEER_ADDR_PARAMS:
5741 retval = sctp_getsockopt_peer_addr_params(sk, len, optval,
5742 optlen);
5743 break;
Shan Wei4580ccc2011-01-18 22:39:00 +00005744 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07005745 retval = sctp_getsockopt_delayed_ack(sk, len, optval,
Frank Filz77086102005-12-22 11:37:30 -08005746 optlen);
5747 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748 case SCTP_INITMSG:
5749 retval = sctp_getsockopt_initmsg(sk, len, optval, optlen);
5750 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751 case SCTP_GET_PEER_ADDRS:
5752 retval = sctp_getsockopt_peer_addrs(sk, len, optval,
5753 optlen);
5754 break;
5755 case SCTP_GET_LOCAL_ADDRS:
5756 retval = sctp_getsockopt_local_addrs(sk, len, optval,
5757 optlen);
5758 break;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04005759 case SCTP_SOCKOPT_CONNECTX3:
5760 retval = sctp_getsockopt_connectx3(sk, len, optval, optlen);
5761 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005762 case SCTP_DEFAULT_SEND_PARAM:
5763 retval = sctp_getsockopt_default_send_param(sk, len,
5764 optval, optlen);
5765 break;
5766 case SCTP_PRIMARY_ADDR:
5767 retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen);
5768 break;
5769 case SCTP_NODELAY:
5770 retval = sctp_getsockopt_nodelay(sk, len, optval, optlen);
5771 break;
5772 case SCTP_RTOINFO:
5773 retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen);
5774 break;
5775 case SCTP_ASSOCINFO:
5776 retval = sctp_getsockopt_associnfo(sk, len, optval, optlen);
5777 break;
5778 case SCTP_I_WANT_MAPPED_V4_ADDR:
5779 retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen);
5780 break;
5781 case SCTP_MAXSEG:
5782 retval = sctp_getsockopt_maxseg(sk, len, optval, optlen);
5783 break;
5784 case SCTP_GET_PEER_ADDR_INFO:
5785 retval = sctp_getsockopt_peer_addr_info(sk, len, optval,
5786 optlen);
5787 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005788 case SCTP_ADAPTATION_LAYER:
5789 retval = sctp_getsockopt_adaptation_layer(sk, len, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005790 optlen);
5791 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005792 case SCTP_CONTEXT:
5793 retval = sctp_getsockopt_context(sk, len, optval, optlen);
5794 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07005795 case SCTP_FRAGMENT_INTERLEAVE:
5796 retval = sctp_getsockopt_fragment_interleave(sk, len, optval,
5797 optlen);
5798 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07005799 case SCTP_PARTIAL_DELIVERY_POINT:
5800 retval = sctp_getsockopt_partial_delivery_point(sk, len, optval,
5801 optlen);
5802 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07005803 case SCTP_MAX_BURST:
5804 retval = sctp_getsockopt_maxburst(sk, len, optval, optlen);
5805 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005806 case SCTP_AUTH_KEY:
5807 case SCTP_AUTH_CHUNK:
5808 case SCTP_AUTH_DELETE_KEY:
5809 retval = -EOPNOTSUPP;
5810 break;
5811 case SCTP_HMAC_IDENT:
5812 retval = sctp_getsockopt_hmac_ident(sk, len, optval, optlen);
5813 break;
5814 case SCTP_AUTH_ACTIVE_KEY:
5815 retval = sctp_getsockopt_active_key(sk, len, optval, optlen);
5816 break;
5817 case SCTP_PEER_AUTH_CHUNKS:
5818 retval = sctp_getsockopt_peer_auth_chunks(sk, len, optval,
5819 optlen);
5820 break;
5821 case SCTP_LOCAL_AUTH_CHUNKS:
5822 retval = sctp_getsockopt_local_auth_chunks(sk, len, optval,
5823 optlen);
5824 break;
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08005825 case SCTP_GET_ASSOC_NUMBER:
5826 retval = sctp_getsockopt_assoc_number(sk, len, optval, optlen);
5827 break;
Wei Yongjun209ba422011-04-17 17:27:08 +00005828 case SCTP_GET_ASSOC_ID_LIST:
5829 retval = sctp_getsockopt_assoc_ids(sk, len, optval, optlen);
5830 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09005831 case SCTP_AUTO_ASCONF:
5832 retval = sctp_getsockopt_auto_asconf(sk, len, optval, optlen);
5833 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00005834 case SCTP_PEER_ADDR_THLDS:
5835 retval = sctp_getsockopt_paddr_thresholds(sk, optval, len, optlen);
5836 break;
Michele Baldessari196d6752012-12-01 04:49:42 +00005837 case SCTP_GET_ASSOC_STATS:
5838 retval = sctp_getsockopt_assoc_stats(sk, len, optval, optlen);
5839 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840 default:
5841 retval = -ENOPROTOOPT;
5842 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07005843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005844
5845 sctp_release_sock(sk);
5846 return retval;
5847}
5848
5849static void sctp_hash(struct sock *sk)
5850{
5851 /* STUB */
5852}
5853
5854static void sctp_unhash(struct sock *sk)
5855{
5856 /* STUB */
5857}
5858
5859/* Check if port is acceptable. Possibly find first available port.
5860 *
5861 * The port hash table (contained in the 'global' SCTP protocol storage
5862 * returned by struct sctp_protocol *sctp_get_protocol()). The hash
5863 * table is an array of 4096 lists (sctp_bind_hashbucket). Each
5864 * list (the list number is the port number hashed out, so as you
5865 * would expect from a hash function, all the ports in a given list have
5866 * such a number that hashes out to the same list number; you were
5867 * expecting that, right?); so each list has a set of ports, with a
5868 * link to the socket (struct sock) that uses it, the port number and
5869 * a fastreuse flag (FIXME: NPI ipg).
5870 */
5871static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00005872 struct sctp_bind_hashbucket *head, struct net *, unsigned short snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005873
5874static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
5875{
5876 struct sctp_bind_hashbucket *head; /* hash list */
Sasha Levinb67bfe02013-02-27 17:06:00 -08005877 struct sctp_bind_bucket *pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005878 unsigned short snum;
5879 int ret;
5880
Al Viro04afd8b2006-11-20 17:02:01 -08005881 snum = ntohs(addr->v4.sin_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882
5883 SCTP_DEBUG_PRINTK("sctp_get_port() begins, snum=%d\n", snum);
5884 sctp_local_bh_disable();
5885
5886 if (snum == 0) {
Stephen Hemminger06393002007-10-10 17:30:18 -07005887 /* Search for an available port. */
Stephen Hemminger227b60f2007-10-10 17:30:46 -07005888 int low, high, remaining, index;
5889 unsigned int rover;
5890
5891 inet_get_local_port_range(&low, &high);
5892 remaining = (high - low) + 1;
5893 rover = net_random() % remaining + low;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005894
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895 do {
5896 rover++;
5897 if ((rover < low) || (rover > high))
5898 rover = low;
Amerigo Wange3826f12010-05-05 00:27:06 +00005899 if (inet_is_reserved_local_port(rover))
5900 continue;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00005901 index = sctp_phashfn(sock_net(sk), rover);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005902 head = &sctp_port_hashtable[index];
5903 sctp_spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08005904 sctp_for_each_hentry(pp, &head->chain)
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00005905 if ((pp->port == rover) &&
5906 net_eq(sock_net(sk), pp->net))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005907 goto next;
5908 break;
5909 next:
5910 sctp_spin_unlock(&head->lock);
5911 } while (--remaining > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005912
5913 /* Exhausted local port range during search? */
5914 ret = 1;
5915 if (remaining <= 0)
5916 goto fail;
5917
5918 /* OK, here is the one we will use. HEAD (the port
5919 * hash table list entry) is non-NULL and we hold it's
5920 * mutex.
5921 */
5922 snum = rover;
5923 } else {
5924 /* We are given an specific port number; we verify
5925 * that it is not being used. If it is used, we will
5926 * exahust the search in the hash list corresponding
5927 * to the port number (snum) - we detect that with the
5928 * port iterator, pp being NULL.
5929 */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00005930 head = &sctp_port_hashtable[sctp_phashfn(sock_net(sk), snum)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931 sctp_spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08005932 sctp_for_each_hentry(pp, &head->chain) {
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00005933 if ((pp->port == snum) && net_eq(pp->net, sock_net(sk)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005934 goto pp_found;
5935 }
5936 }
5937 pp = NULL;
5938 goto pp_not_found;
5939pp_found:
5940 if (!hlist_empty(&pp->owner)) {
5941 /* We had a port hash table hit - there is an
5942 * available port (pp != NULL) and it is being
5943 * used by other socket (pp->owner not empty); that other
5944 * socket is going to be sk2.
5945 */
5946 int reuse = sk->sk_reuse;
5947 struct sock *sk2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005948
5949 SCTP_DEBUG_PRINTK("sctp_get_port() found a possible match\n");
Vlad Yasevichce5325c2007-05-04 13:34:49 -07005950 if (pp->fastreuse && sk->sk_reuse &&
5951 sk->sk_state != SCTP_SS_LISTENING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952 goto success;
5953
5954 /* Run through the list of sockets bound to the port
5955 * (pp->port) [via the pointers bind_next and
5956 * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one,
5957 * we get the endpoint they describe and run through
5958 * the endpoint's list of IP (v4 or v6) addresses,
5959 * comparing each of the addresses with the address of
5960 * the socket sk. If we find a match, then that means
5961 * that this port/socket (sk) combination are already
5962 * in an endpoint.
5963 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08005964 sk_for_each_bound(sk2, &pp->owner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965 struct sctp_endpoint *ep2;
5966 ep2 = sctp_sk(sk2)->ep;
5967
Vlad Yasevich4e540642008-07-18 23:06:32 -07005968 if (sk == sk2 ||
5969 (reuse && sk2->sk_reuse &&
5970 sk2->sk_state != SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971 continue;
5972
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07005973 if (sctp_bind_addr_conflict(&ep2->base.bind_addr, addr,
5974 sctp_sk(sk2), sctp_sk(sk))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975 ret = (long)sk2;
5976 goto fail_unlock;
5977 }
5978 }
5979 SCTP_DEBUG_PRINTK("sctp_get_port(): Found a match\n");
5980 }
5981pp_not_found:
5982 /* If there was a hash table miss, create a new port. */
5983 ret = 1;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00005984 if (!pp && !(pp = sctp_bucket_create(head, sock_net(sk), snum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005985 goto fail_unlock;
5986
5987 /* In either case (hit or miss), make sure fastreuse is 1 only
5988 * if sk->sk_reuse is too (that is, if the caller requested
5989 * SO_REUSEADDR on this socket -sk-).
5990 */
Vlad Yasevichce5325c2007-05-04 13:34:49 -07005991 if (hlist_empty(&pp->owner)) {
5992 if (sk->sk_reuse && sk->sk_state != SCTP_SS_LISTENING)
5993 pp->fastreuse = 1;
5994 else
5995 pp->fastreuse = 0;
5996 } else if (pp->fastreuse &&
5997 (!sk->sk_reuse || sk->sk_state == SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998 pp->fastreuse = 0;
5999
6000 /* We are set, so fill up all the data in the hash table
6001 * entry, tie the socket list information with the rest of the
6002 * sockets FIXME: Blurry, NPI (ipg).
6003 */
6004success:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005 if (!sctp_sk(sk)->bind_hash) {
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006006 inet_sk(sk)->inet_num = snum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007 sk_add_bind_node(sk, &pp->owner);
6008 sctp_sk(sk)->bind_hash = pp;
6009 }
6010 ret = 0;
6011
6012fail_unlock:
6013 sctp_spin_unlock(&head->lock);
6014
6015fail:
6016 sctp_local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006017 return ret;
6018}
6019
6020/* Assign a 'snum' port to the socket. If snum == 0, an ephemeral
6021 * port is requested.
6022 */
6023static int sctp_get_port(struct sock *sk, unsigned short snum)
6024{
6025 long ret;
6026 union sctp_addr addr;
6027 struct sctp_af *af = sctp_sk(sk)->pf->af;
6028
6029 /* Set up a dummy address struct from the sk. */
6030 af->from_sk(&addr, sk);
6031 addr.v4.sin_port = htons(snum);
6032
6033 /* Note: sk->sk_num gets filled in if ephemeral port request. */
6034 ret = sctp_get_port_local(sk, &addr);
6035
Eric Dumazeta02cec22010-09-22 20:43:57 +00006036 return ret ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037}
6038
6039/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040 * Move a socket to LISTENING state.
6041 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02006042static int sctp_listen_start(struct sock *sk, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043{
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00006044 struct sctp_sock *sp = sctp_sk(sk);
6045 struct sctp_endpoint *ep = sp->ep;
Herbert Xu1b489e12006-08-20 15:07:14 +10006046 struct crypto_hash *tfm = NULL;
Neil Horman3c681982012-10-24 09:20:03 +00006047 char alg[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048
6049 /* Allocate HMAC for generating cookie. */
Neil Horman3c681982012-10-24 09:20:03 +00006050 if (!sp->hmac && sp->sctp_hmac_alg) {
6051 sprintf(alg, "hmac(%s)", sp->sctp_hmac_alg);
6052 tfm = crypto_alloc_hash(alg, 0, CRYPTO_ALG_ASYNC);
Vlad Yasevich8dc49842007-05-09 13:50:20 -07006053 if (IS_ERR(tfm)) {
Joe Perchese87cc472012-05-13 21:56:26 +00006054 net_info_ratelimited("failed to load transform for %s: %ld\n",
Neil Horman3c681982012-10-24 09:20:03 +00006055 sp->sctp_hmac_alg, PTR_ERR(tfm));
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00006056 return -ENOSYS;
6057 }
6058 sctp_sk(sk)->hmac = tfm;
6059 }
6060
6061 /*
6062 * If a bind() or sctp_bindx() is not called prior to a listen()
6063 * call that allows new associations to be accepted, the system
6064 * picks an ephemeral port and will choose an address set equivalent
6065 * to binding with a wildcard address.
6066 *
6067 * This is not currently spelled out in the SCTP sockets
6068 * extensions draft, but follows the practice as seen in TCP
6069 * sockets.
6070 *
6071 */
6072 sk->sk_state = SCTP_SS_LISTENING;
6073 if (!ep->base.bind_addr.port) {
6074 if (sctp_autobind(sk))
6075 return -EAGAIN;
6076 } else {
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006077 if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00006078 sk->sk_state = SCTP_SS_CLOSED;
6079 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080 }
6081 }
6082
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00006083 sk->sk_max_ack_backlog = backlog;
6084 sctp_hash_endpoint(ep);
6085 return 0;
6086}
6087
6088/*
6089 * 4.1.3 / 5.1.3 listen()
6090 *
6091 * By default, new associations are not accepted for UDP style sockets.
6092 * An application uses listen() to mark a socket as being able to
6093 * accept new associations.
6094 *
6095 * On TCP style sockets, applications use listen() to ready the SCTP
6096 * endpoint for accepting inbound associations.
6097 *
6098 * On both types of endpoints a backlog of '0' disables listening.
6099 *
6100 * Move a socket to LISTENING state.
6101 */
6102int sctp_inet_listen(struct socket *sock, int backlog)
6103{
6104 struct sock *sk = sock->sk;
6105 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
6106 int err = -EINVAL;
6107
6108 if (unlikely(backlog < 0))
6109 return err;
6110
6111 sctp_lock_sock(sk);
6112
6113 /* Peeled-off sockets are not allowed to listen(). */
6114 if (sctp_style(sk, UDP_HIGH_BANDWIDTH))
6115 goto out;
6116
6117 if (sock->state != SS_UNCONNECTED)
6118 goto out;
6119
6120 /* If backlog is zero, disable listening. */
6121 if (!backlog) {
6122 if (sctp_sstate(sk, CLOSED))
6123 goto out;
6124
6125 err = 0;
6126 sctp_unhash_endpoint(ep);
6127 sk->sk_state = SCTP_SS_CLOSED;
6128 if (sk->sk_reuse)
6129 sctp_sk(sk)->bind_hash->fastreuse = 1;
6130 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07006131 }
6132
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00006133 /* If we are already listening, just update the backlog */
6134 if (sctp_sstate(sk, LISTENING))
6135 sk->sk_max_ack_backlog = backlog;
6136 else {
6137 err = sctp_listen_start(sk, backlog);
6138 if (err)
6139 goto out;
6140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006141
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00006142 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006143out:
6144 sctp_release_sock(sk);
6145 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006146}
6147
6148/*
6149 * This function is done by modeling the current datagram_poll() and the
6150 * tcp_poll(). Note that, based on these implementations, we don't
6151 * lock the socket in this function, even though it seems that,
6152 * ideally, locking or some other mechanisms can be used to ensure
Neil Horman9bffc4a2005-12-19 14:24:40 -08006153 * the integrity of the counters (sndbuf and wmem_alloc) used
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154 * in this place. We assume that we don't need locks either until proven
6155 * otherwise.
6156 *
6157 * Another thing to note is that we include the Async I/O support
6158 * here, again, by modeling the current TCP/UDP code. We don't have
6159 * a good way to test with it yet.
6160 */
6161unsigned int sctp_poll(struct file *file, struct socket *sock, poll_table *wait)
6162{
6163 struct sock *sk = sock->sk;
6164 struct sctp_sock *sp = sctp_sk(sk);
6165 unsigned int mask;
6166
Eric Dumazetaa395142010-04-20 13:03:51 +00006167 poll_wait(file, sk_sleep(sk), wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006168
6169 /* A TCP-style listening socket becomes readable when the accept queue
6170 * is not empty.
6171 */
6172 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
6173 return (!list_empty(&sp->ep->asocs)) ?
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09006174 (POLLIN | POLLRDNORM) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006175
6176 mask = 0;
6177
6178 /* Is there any exceptional events? */
6179 if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
Keller, Jacob E7d4c04f2013-03-28 11:19:25 +00006180 mask |= POLLERR |
6181 sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? POLLPRI : 0;
Davide Libenzif348d702006-03-25 03:07:39 -08006182 if (sk->sk_shutdown & RCV_SHUTDOWN)
Eric Dumazetdb409802010-09-06 11:13:50 +00006183 mask |= POLLRDHUP | POLLIN | POLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006184 if (sk->sk_shutdown == SHUTDOWN_MASK)
6185 mask |= POLLHUP;
6186
6187 /* Is it readable? Reconsider this code with TCP-style support. */
Eric Dumazetdb409802010-09-06 11:13:50 +00006188 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006189 mask |= POLLIN | POLLRDNORM;
6190
6191 /* The association is either gone or not ready. */
6192 if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED))
6193 return mask;
6194
6195 /* Is it writable? */
6196 if (sctp_writeable(sk)) {
6197 mask |= POLLOUT | POLLWRNORM;
6198 } else {
6199 set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
6200 /*
6201 * Since the socket is not locked, the buffer
6202 * might be made available after the writeable check and
6203 * before the bit is set. This could cause a lost I/O
6204 * signal. tcp_poll() has a race breaker for this race
6205 * condition. Based on their implementation, we put
6206 * in the following code to cover it as well.
6207 */
6208 if (sctp_writeable(sk))
6209 mask |= POLLOUT | POLLWRNORM;
6210 }
6211 return mask;
6212}
6213
6214/********************************************************************
6215 * 2nd Level Abstractions
6216 ********************************************************************/
6217
6218static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00006219 struct sctp_bind_hashbucket *head, struct net *net, unsigned short snum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006220{
6221 struct sctp_bind_bucket *pp;
6222
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08006223 pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224 if (pp) {
Li Zefan935a7f62008-04-10 01:58:06 -07006225 SCTP_DBG_OBJCNT_INC(bind_bucket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006226 pp->port = snum;
6227 pp->fastreuse = 0;
6228 INIT_HLIST_HEAD(&pp->owner);
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00006229 pp->net = net;
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05006230 hlist_add_head(&pp->node, &head->chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006231 }
6232 return pp;
6233}
6234
6235/* Caller must hold hashbucket lock for this tb with local BH disabled */
6236static void sctp_bucket_destroy(struct sctp_bind_bucket *pp)
6237{
Sridhar Samudrala37fa6872006-07-21 14:45:47 -07006238 if (pp && hlist_empty(&pp->owner)) {
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05006239 __hlist_del(&pp->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240 kmem_cache_free(sctp_bucket_cachep, pp);
6241 SCTP_DBG_OBJCNT_DEC(bind_bucket);
6242 }
6243}
6244
6245/* Release this socket's reference to a local port. */
6246static inline void __sctp_put_port(struct sock *sk)
6247{
6248 struct sctp_bind_hashbucket *head =
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00006249 &sctp_port_hashtable[sctp_phashfn(sock_net(sk),
6250 inet_sk(sk)->inet_num)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251 struct sctp_bind_bucket *pp;
6252
6253 sctp_spin_lock(&head->lock);
6254 pp = sctp_sk(sk)->bind_hash;
6255 __sk_del_bind_node(sk);
6256 sctp_sk(sk)->bind_hash = NULL;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006257 inet_sk(sk)->inet_num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006258 sctp_bucket_destroy(pp);
6259 sctp_spin_unlock(&head->lock);
6260}
6261
6262void sctp_put_port(struct sock *sk)
6263{
6264 sctp_local_bh_disable();
6265 __sctp_put_port(sk);
6266 sctp_local_bh_enable();
6267}
6268
6269/*
6270 * The system picks an ephemeral port and choose an address set equivalent
6271 * to binding with a wildcard address.
6272 * One of those addresses will be the primary address for the association.
6273 * This automatically enables the multihoming capability of SCTP.
6274 */
6275static int sctp_autobind(struct sock *sk)
6276{
6277 union sctp_addr autoaddr;
6278 struct sctp_af *af;
Al Viro6fbfa9f2006-11-20 17:24:53 -08006279 __be16 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006280
6281 /* Initialize a local sockaddr structure to INADDR_ANY. */
6282 af = sctp_sk(sk)->pf->af;
6283
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006284 port = htons(inet_sk(sk)->inet_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006285 af->inaddr_any(&autoaddr, port);
6286
6287 return sctp_do_bind(sk, &autoaddr, af->sockaddr_len);
6288}
6289
6290/* Parse out IPPROTO_SCTP CMSG headers. Perform only minimal validation.
6291 *
6292 * From RFC 2292
6293 * 4.2 The cmsghdr Structure *
6294 *
6295 * When ancillary data is sent or received, any number of ancillary data
6296 * objects can be specified by the msg_control and msg_controllen members of
6297 * the msghdr structure, because each object is preceded by
6298 * a cmsghdr structure defining the object's length (the cmsg_len member).
6299 * Historically Berkeley-derived implementations have passed only one object
6300 * at a time, but this API allows multiple objects to be
6301 * passed in a single call to sendmsg() or recvmsg(). The following example
6302 * shows two ancillary data objects in a control buffer.
6303 *
6304 * |<--------------------------- msg_controllen -------------------------->|
6305 * | |
6306 *
6307 * |<----- ancillary data object ----->|<----- ancillary data object ----->|
6308 *
6309 * |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->|
6310 * | | |
6311 *
6312 * |<---------- cmsg_len ---------->| |<--------- cmsg_len ----------->| |
6313 *
6314 * |<--------- CMSG_LEN() --------->| |<-------- CMSG_LEN() ---------->| |
6315 * | | | | |
6316 *
6317 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
6318 * |cmsg_|cmsg_|cmsg_|XX| |XX|cmsg_|cmsg_|cmsg_|XX| |XX|
6319 *
6320 * |len |level|type |XX|cmsg_data[]|XX|len |level|type |XX|cmsg_data[]|XX|
6321 *
6322 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
6323 * ^
6324 * |
6325 *
6326 * msg_control
6327 * points here
6328 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02006329static int sctp_msghdr_parse(const struct msghdr *msg, sctp_cmsgs_t *cmsgs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006330{
6331 struct cmsghdr *cmsg;
Vlad Yasevichab38fb02008-04-12 18:40:06 -07006332 struct msghdr *my_msg = (struct msghdr *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333
6334 for (cmsg = CMSG_FIRSTHDR(msg);
6335 cmsg != NULL;
Vlad Yasevichab38fb02008-04-12 18:40:06 -07006336 cmsg = CMSG_NXTHDR(my_msg, cmsg)) {
6337 if (!CMSG_OK(my_msg, cmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006338 return -EINVAL;
6339
6340 /* Should we parse this header or ignore? */
6341 if (cmsg->cmsg_level != IPPROTO_SCTP)
6342 continue;
6343
6344 /* Strictly check lengths following example in SCM code. */
6345 switch (cmsg->cmsg_type) {
6346 case SCTP_INIT:
6347 /* SCTP Socket API Extension
6348 * 5.2.1 SCTP Initiation Structure (SCTP_INIT)
6349 *
6350 * This cmsghdr structure provides information for
6351 * initializing new SCTP associations with sendmsg().
6352 * The SCTP_INITMSG socket option uses this same data
6353 * structure. This structure is not used for
6354 * recvmsg().
6355 *
6356 * cmsg_level cmsg_type cmsg_data[]
6357 * ------------ ------------ ----------------------
6358 * IPPROTO_SCTP SCTP_INIT struct sctp_initmsg
6359 */
6360 if (cmsg->cmsg_len !=
6361 CMSG_LEN(sizeof(struct sctp_initmsg)))
6362 return -EINVAL;
6363 cmsgs->init = (struct sctp_initmsg *)CMSG_DATA(cmsg);
6364 break;
6365
6366 case SCTP_SNDRCV:
6367 /* SCTP Socket API Extension
6368 * 5.2.2 SCTP Header Information Structure(SCTP_SNDRCV)
6369 *
6370 * This cmsghdr structure specifies SCTP options for
6371 * sendmsg() and describes SCTP header information
6372 * about a received message through recvmsg().
6373 *
6374 * cmsg_level cmsg_type cmsg_data[]
6375 * ------------ ------------ ----------------------
6376 * IPPROTO_SCTP SCTP_SNDRCV struct sctp_sndrcvinfo
6377 */
6378 if (cmsg->cmsg_len !=
6379 CMSG_LEN(sizeof(struct sctp_sndrcvinfo)))
6380 return -EINVAL;
6381
6382 cmsgs->info =
6383 (struct sctp_sndrcvinfo *)CMSG_DATA(cmsg);
6384
6385 /* Minimally, validate the sinfo_flags. */
6386 if (cmsgs->info->sinfo_flags &
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07006387 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
6388 SCTP_ABORT | SCTP_EOF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006389 return -EINVAL;
6390 break;
6391
6392 default:
6393 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07006394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006395 }
6396 return 0;
6397}
6398
6399/*
6400 * Wait for a packet..
6401 * Note: This function is the same function as in core/datagram.c
6402 * with a few modifications to make lksctp work.
6403 */
6404static int sctp_wait_for_packet(struct sock * sk, int *err, long *timeo_p)
6405{
6406 int error;
6407 DEFINE_WAIT(wait);
6408
Eric Dumazetaa395142010-04-20 13:03:51 +00006409 prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006410
6411 /* Socket errors? */
6412 error = sock_error(sk);
6413 if (error)
6414 goto out;
6415
6416 if (!skb_queue_empty(&sk->sk_receive_queue))
6417 goto ready;
6418
6419 /* Socket shut down? */
6420 if (sk->sk_shutdown & RCV_SHUTDOWN)
6421 goto out;
6422
6423 /* Sequenced packets can come disconnected. If so we report the
6424 * problem.
6425 */
6426 error = -ENOTCONN;
6427
6428 /* Is there a good reason to think that we may receive some data? */
6429 if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING))
6430 goto out;
6431
6432 /* Handle signals. */
6433 if (signal_pending(current))
6434 goto interrupted;
6435
6436 /* Let another process have a go. Since we are going to sleep
6437 * anyway. Note: This may cause odd behaviors if the message
6438 * does not fit in the user's buffer, but this seems to be the
6439 * only way to honor MSG_DONTWAIT realistically.
6440 */
6441 sctp_release_sock(sk);
6442 *timeo_p = schedule_timeout(*timeo_p);
6443 sctp_lock_sock(sk);
6444
6445ready:
Eric Dumazetaa395142010-04-20 13:03:51 +00006446 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447 return 0;
6448
6449interrupted:
6450 error = sock_intr_errno(*timeo_p);
6451
6452out:
Eric Dumazetaa395142010-04-20 13:03:51 +00006453 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006454 *err = error;
6455 return error;
6456}
6457
6458/* Receive a datagram.
6459 * Note: This is pretty much the same routine as in core/datagram.c
6460 * with a few changes to make lksctp work.
6461 */
6462static struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags,
6463 int noblock, int *err)
6464{
6465 int error;
6466 struct sk_buff *skb;
6467 long timeo;
6468
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469 timeo = sock_rcvtimeo(sk, noblock);
6470
6471 SCTP_DEBUG_PRINTK("Timeout: timeo: %ld, MAX: %ld.\n",
6472 timeo, MAX_SCHEDULE_TIMEOUT);
6473
6474 do {
6475 /* Again only user level code calls this function,
6476 * so nothing interrupt level
6477 * will suddenly eat the receive_queue.
6478 *
6479 * Look at current nfs client by the way...
David Shwatrz8917a3c2010-12-02 09:01:55 +00006480 * However, this function was correct in any case. 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006481 */
6482 if (flags & MSG_PEEK) {
Herbert Xu1e061ab2005-06-18 22:56:42 -07006483 spin_lock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006484 skb = skb_peek(&sk->sk_receive_queue);
6485 if (skb)
6486 atomic_inc(&skb->users);
Herbert Xu1e061ab2005-06-18 22:56:42 -07006487 spin_unlock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006488 } else {
6489 skb = skb_dequeue(&sk->sk_receive_queue);
6490 }
6491
6492 if (skb)
6493 return skb;
6494
Neil Horman6736dc32005-12-02 20:30:06 -08006495 /* Caller is allowed not to check sk->sk_err before calling. */
6496 error = sock_error(sk);
6497 if (error)
6498 goto no_packet;
6499
Linus Torvalds1da177e2005-04-16 15:20:36 -07006500 if (sk->sk_shutdown & RCV_SHUTDOWN)
6501 break;
6502
6503 /* User doesn't want to wait. */
6504 error = -EAGAIN;
6505 if (!timeo)
6506 goto no_packet;
6507 } while (sctp_wait_for_packet(sk, err, &timeo) == 0);
6508
6509 return NULL;
6510
6511no_packet:
6512 *err = error;
6513 return NULL;
6514}
6515
6516/* If sndbuf has changed, wake up per association sndbuf waiters. */
6517static void __sctp_write_space(struct sctp_association *asoc)
6518{
6519 struct sock *sk = asoc->base.sk;
6520 struct socket *sock = sk->sk_socket;
6521
6522 if ((sctp_wspace(asoc) > 0) && sock) {
6523 if (waitqueue_active(&asoc->wait))
6524 wake_up_interruptible(&asoc->wait);
6525
6526 if (sctp_writeable(sk)) {
Eric Dumazeteaefd112011-02-18 03:26:36 +00006527 wait_queue_head_t *wq = sk_sleep(sk);
6528
6529 if (wq && waitqueue_active(wq))
6530 wake_up_interruptible(wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006531
6532 /* Note that we try to include the Async I/O support
6533 * here by modeling from the current TCP/UDP code.
6534 * We have not tested with it yet.
6535 */
Eric Dumazeteaefd112011-02-18 03:26:36 +00006536 if (!(sk->sk_shutdown & SEND_SHUTDOWN))
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08006537 sock_wake_async(sock,
6538 SOCK_WAKE_SPACE, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006539 }
6540 }
6541}
6542
6543/* Do accounting for the sndbuf space.
6544 * Decrement the used sndbuf space of the corresponding association by the
6545 * data size which was just transmitted(freed).
6546 */
6547static void sctp_wfree(struct sk_buff *skb)
6548{
6549 struct sctp_association *asoc;
6550 struct sctp_chunk *chunk;
6551 struct sock *sk;
6552
6553 /* Get the saved chunk pointer. */
6554 chunk = *((struct sctp_chunk **)(skb->cb));
6555 asoc = chunk->asoc;
6556 sk = asoc->base.sk;
Neil Horman4eb701d2005-04-28 12:02:04 -07006557 asoc->sndbuf_used -= SCTP_DATA_SNDSIZE(chunk) +
6558 sizeof(struct sk_buff) +
6559 sizeof(struct sctp_chunk);
6560
Neil Horman4eb701d2005-04-28 12:02:04 -07006561 atomic_sub(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
6562
Neil Horman4d93df02007-08-15 16:07:44 -07006563 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08006564 * This undoes what is done via sctp_set_owner_w and sk_mem_charge
Neil Horman4d93df02007-08-15 16:07:44 -07006565 */
6566 sk->sk_wmem_queued -= skb->truesize;
Hideo Aoki3ab224b2007-12-31 00:11:19 -08006567 sk_mem_uncharge(sk, skb->truesize);
Neil Horman4d93df02007-08-15 16:07:44 -07006568
Neil Horman4eb701d2005-04-28 12:02:04 -07006569 sock_wfree(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570 __sctp_write_space(asoc);
6571
6572 sctp_association_put(asoc);
6573}
6574
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07006575/* Do accounting for the receive space on the socket.
6576 * Accounting for the association is done in ulpevent.c
6577 * We set this as a destructor for the cloned data skbs so that
6578 * accounting is done at the correct time.
6579 */
6580void sctp_sock_rfree(struct sk_buff *skb)
6581{
6582 struct sock *sk = skb->sk;
6583 struct sctp_ulpevent *event = sctp_skb2event(skb);
6584
6585 atomic_sub(event->rmem_len, &sk->sk_rmem_alloc);
Neil Horman4d93df02007-08-15 16:07:44 -07006586
6587 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08006588 * Mimic the behavior of sock_rfree
Neil Horman4d93df02007-08-15 16:07:44 -07006589 */
Hideo Aoki3ab224b2007-12-31 00:11:19 -08006590 sk_mem_uncharge(sk, event->rmem_len);
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07006591}
6592
6593
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594/* Helper function to wait for space in the sndbuf. */
6595static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
6596 size_t msg_len)
6597{
6598 struct sock *sk = asoc->base.sk;
6599 int err = 0;
6600 long current_timeo = *timeo_p;
6601 DEFINE_WAIT(wait);
6602
6603 SCTP_DEBUG_PRINTK("wait_for_sndbuf: asoc=%p, timeo=%ld, msg_len=%zu\n",
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09006604 asoc, (long)(*timeo_p), msg_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605
6606 /* Increment the association's refcnt. */
6607 sctp_association_hold(asoc);
6608
6609 /* Wait on the association specific sndbuf space. */
6610 for (;;) {
6611 prepare_to_wait_exclusive(&asoc->wait, &wait,
6612 TASK_INTERRUPTIBLE);
6613 if (!*timeo_p)
6614 goto do_nonblock;
6615 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
6616 asoc->base.dead)
6617 goto do_error;
6618 if (signal_pending(current))
6619 goto do_interrupted;
6620 if (msg_len <= sctp_wspace(asoc))
6621 break;
6622
6623 /* Let another process have a go. Since we are going
6624 * to sleep anyway.
6625 */
6626 sctp_release_sock(sk);
6627 current_timeo = schedule_timeout(current_timeo);
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07006628 BUG_ON(sk != asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006629 sctp_lock_sock(sk);
6630
6631 *timeo_p = current_timeo;
6632 }
6633
6634out:
6635 finish_wait(&asoc->wait, &wait);
6636
6637 /* Release the association's refcnt. */
6638 sctp_association_put(asoc);
6639
6640 return err;
6641
6642do_error:
6643 err = -EPIPE;
6644 goto out;
6645
6646do_interrupted:
6647 err = sock_intr_errno(*timeo_p);
6648 goto out;
6649
6650do_nonblock:
6651 err = -EAGAIN;
6652 goto out;
6653}
6654
Wei Yongjun561b1732010-04-28 08:47:18 +00006655void sctp_data_ready(struct sock *sk, int len)
6656{
David S. Miller7ef52732010-05-02 21:43:40 -07006657 struct socket_wq *wq;
6658
6659 rcu_read_lock();
6660 wq = rcu_dereference(sk->sk_wq);
6661 if (wq_has_sleeper(wq))
6662 wake_up_interruptible_sync_poll(&wq->wait, POLLIN |
Wei Yongjun561b1732010-04-28 08:47:18 +00006663 POLLRDNORM | POLLRDBAND);
6664 sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
David S. Miller7ef52732010-05-02 21:43:40 -07006665 rcu_read_unlock();
Wei Yongjun561b1732010-04-28 08:47:18 +00006666}
6667
Linus Torvalds1da177e2005-04-16 15:20:36 -07006668/* If socket sndbuf has changed, wake up all per association waiters. */
6669void sctp_write_space(struct sock *sk)
6670{
6671 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006672
6673 /* Wake up the tasks in each wait queue. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07006674 list_for_each_entry(asoc, &((sctp_sk(sk))->ep->asocs), asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006675 __sctp_write_space(asoc);
6676 }
6677}
6678
6679/* Is there any sndbuf space available on the socket?
6680 *
Neil Horman9bffc4a2005-12-19 14:24:40 -08006681 * Note that sk_wmem_alloc is the sum of the send buffers on all of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07006682 * associations on the same socket. For a UDP-style socket with
6683 * multiple associations, it is possible for it to be "unwriteable"
6684 * prematurely. I assume that this is acceptable because
6685 * a premature "unwriteable" is better than an accidental "writeable" which
6686 * would cause an unwanted block under certain circumstances. For the 1-1
6687 * UDP-style sockets or TCP-style sockets, this code should work.
6688 * - Daisy
6689 */
6690static int sctp_writeable(struct sock *sk)
6691{
6692 int amt = 0;
6693
Eric Dumazet31e6d362009-06-17 19:05:41 -07006694 amt = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006695 if (amt < 0)
6696 amt = 0;
6697 return amt;
6698}
6699
6700/* Wait for an association to go into ESTABLISHED state. If timeout is 0,
6701 * returns immediately with EINPROGRESS.
6702 */
6703static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p)
6704{
6705 struct sock *sk = asoc->base.sk;
6706 int err = 0;
6707 long current_timeo = *timeo_p;
6708 DEFINE_WAIT(wait);
6709
Harvey Harrison0dc47872008-03-05 20:47:47 -08006710 SCTP_DEBUG_PRINTK("%s: asoc=%p, timeo=%ld\n", __func__, asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711 (long)(*timeo_p));
6712
6713 /* Increment the association's refcnt. */
6714 sctp_association_hold(asoc);
6715
6716 for (;;) {
6717 prepare_to_wait_exclusive(&asoc->wait, &wait,
6718 TASK_INTERRUPTIBLE);
6719 if (!*timeo_p)
6720 goto do_nonblock;
6721 if (sk->sk_shutdown & RCV_SHUTDOWN)
6722 break;
6723 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
6724 asoc->base.dead)
6725 goto do_error;
6726 if (signal_pending(current))
6727 goto do_interrupted;
6728
6729 if (sctp_state(asoc, ESTABLISHED))
6730 break;
6731
6732 /* Let another process have a go. Since we are going
6733 * to sleep anyway.
6734 */
6735 sctp_release_sock(sk);
6736 current_timeo = schedule_timeout(current_timeo);
6737 sctp_lock_sock(sk);
6738
6739 *timeo_p = current_timeo;
6740 }
6741
6742out:
6743 finish_wait(&asoc->wait, &wait);
6744
6745 /* Release the association's refcnt. */
6746 sctp_association_put(asoc);
6747
6748 return err;
6749
6750do_error:
Vlad Yasevich81845c212006-01-30 15:59:54 -08006751 if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006752 err = -ETIMEDOUT;
6753 else
6754 err = -ECONNREFUSED;
6755 goto out;
6756
6757do_interrupted:
6758 err = sock_intr_errno(*timeo_p);
6759 goto out;
6760
6761do_nonblock:
6762 err = -EINPROGRESS;
6763 goto out;
6764}
6765
6766static int sctp_wait_for_accept(struct sock *sk, long timeo)
6767{
6768 struct sctp_endpoint *ep;
6769 int err = 0;
6770 DEFINE_WAIT(wait);
6771
6772 ep = sctp_sk(sk)->ep;
6773
6774
6775 for (;;) {
Eric Dumazetaa395142010-04-20 13:03:51 +00006776 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006777 TASK_INTERRUPTIBLE);
6778
6779 if (list_empty(&ep->asocs)) {
6780 sctp_release_sock(sk);
6781 timeo = schedule_timeout(timeo);
6782 sctp_lock_sock(sk);
6783 }
6784
6785 err = -EINVAL;
6786 if (!sctp_sstate(sk, LISTENING))
6787 break;
6788
6789 err = 0;
6790 if (!list_empty(&ep->asocs))
6791 break;
6792
6793 err = sock_intr_errno(timeo);
6794 if (signal_pending(current))
6795 break;
6796
6797 err = -EAGAIN;
6798 if (!timeo)
6799 break;
6800 }
6801
Eric Dumazetaa395142010-04-20 13:03:51 +00006802 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006803
6804 return err;
6805}
6806
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +02006807static void sctp_wait_for_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006808{
6809 DEFINE_WAIT(wait);
6810
6811 do {
Eric Dumazetaa395142010-04-20 13:03:51 +00006812 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006813 if (list_empty(&sctp_sk(sk)->ep->asocs))
6814 break;
6815 sctp_release_sock(sk);
6816 timeout = schedule_timeout(timeout);
6817 sctp_lock_sock(sk);
6818 } while (!signal_pending(current) && timeout);
6819
Eric Dumazetaa395142010-04-20 13:03:51 +00006820 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006821}
6822
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006823static void sctp_skb_set_owner_r_frag(struct sk_buff *skb, struct sock *sk)
6824{
6825 struct sk_buff *frag;
6826
6827 if (!skb->data_len)
6828 goto done;
6829
6830 /* Don't forget the fragments. */
David S. Miller1b003be2009-06-09 00:22:35 -07006831 skb_walk_frags(skb, frag)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006832 sctp_skb_set_owner_r_frag(frag, sk);
6833
6834done:
6835 sctp_skb_set_owner_r(skb, sk);
6836}
6837
Vlad Yasevich914e1c82009-02-13 08:33:44 +00006838void sctp_copy_sock(struct sock *newsk, struct sock *sk,
6839 struct sctp_association *asoc)
6840{
6841 struct inet_sock *inet = inet_sk(sk);
Julia Lawall09cb47a2010-01-21 02:43:20 -08006842 struct inet_sock *newinet;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00006843
6844 newsk->sk_type = sk->sk_type;
6845 newsk->sk_bound_dev_if = sk->sk_bound_dev_if;
6846 newsk->sk_flags = sk->sk_flags;
6847 newsk->sk_no_check = sk->sk_no_check;
6848 newsk->sk_reuse = sk->sk_reuse;
6849
6850 newsk->sk_shutdown = sk->sk_shutdown;
6851 newsk->sk_destruct = inet_sock_destruct;
6852 newsk->sk_family = sk->sk_family;
6853 newsk->sk_protocol = IPPROTO_SCTP;
6854 newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
6855 newsk->sk_sndbuf = sk->sk_sndbuf;
6856 newsk->sk_rcvbuf = sk->sk_rcvbuf;
6857 newsk->sk_lingertime = sk->sk_lingertime;
6858 newsk->sk_rcvtimeo = sk->sk_rcvtimeo;
6859 newsk->sk_sndtimeo = sk->sk_sndtimeo;
6860
6861 newinet = inet_sk(newsk);
6862
6863 /* Initialize sk's sport, dport, rcv_saddr and daddr for
6864 * getsockname() and getpeername()
6865 */
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006866 newinet->inet_sport = inet->inet_sport;
6867 newinet->inet_saddr = inet->inet_saddr;
6868 newinet->inet_rcv_saddr = inet->inet_rcv_saddr;
6869 newinet->inet_dport = htons(asoc->peer.port);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00006870 newinet->pmtudisc = inet->pmtudisc;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006871 newinet->inet_id = asoc->next_tsn ^ jiffies;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00006872
6873 newinet->uc_ttl = inet->uc_ttl;
6874 newinet->mc_loop = 1;
6875 newinet->mc_ttl = 1;
6876 newinet->mc_index = 0;
6877 newinet->mc_list = NULL;
6878}
6879
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880/* Populate the fields of the newsk from the oldsk and migrate the assoc
6881 * and its messages to the newsk.
6882 */
6883static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
6884 struct sctp_association *assoc,
6885 sctp_socket_type_t type)
6886{
6887 struct sctp_sock *oldsp = sctp_sk(oldsk);
6888 struct sctp_sock *newsp = sctp_sk(newsk);
6889 struct sctp_bind_bucket *pp; /* hash list port iterator */
6890 struct sctp_endpoint *newep = newsp->ep;
6891 struct sk_buff *skb, *tmp;
6892 struct sctp_ulpevent *event;
Vlad Yasevichf26f7c42007-12-06 22:50:27 -08006893 struct sctp_bind_hashbucket *head;
Michio Honda9f7d6532011-04-26 19:32:51 +09006894 struct list_head tmplist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006895
6896 /* Migrate socket buffer sizes and all the socket level options to the
6897 * new socket.
6898 */
6899 newsk->sk_sndbuf = oldsk->sk_sndbuf;
6900 newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
6901 /* Brute force copy old sctp opt. */
Michio Honda9f7d6532011-04-26 19:32:51 +09006902 if (oldsp->do_auto_asconf) {
6903 memcpy(&tmplist, &newsp->auto_asconf_list, sizeof(tmplist));
6904 inet_sk_copy_descendant(newsk, oldsk);
6905 memcpy(&newsp->auto_asconf_list, &tmplist, sizeof(tmplist));
6906 } else
6907 inet_sk_copy_descendant(newsk, oldsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006908
6909 /* Restore the ep value that was overwritten with the above structure
6910 * copy.
6911 */
6912 newsp->ep = newep;
6913 newsp->hmac = NULL;
6914
6915 /* Hook this new socket in to the bind_hash list. */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00006916 head = &sctp_port_hashtable[sctp_phashfn(sock_net(oldsk),
6917 inet_sk(oldsk)->inet_num)];
Vlad Yasevichf26f7c42007-12-06 22:50:27 -08006918 sctp_local_bh_disable();
6919 sctp_spin_lock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006920 pp = sctp_sk(oldsk)->bind_hash;
6921 sk_add_bind_node(newsk, &pp->owner);
6922 sctp_sk(newsk)->bind_hash = pp;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006923 inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num;
Vlad Yasevichf26f7c42007-12-06 22:50:27 -08006924 sctp_spin_unlock(&head->lock);
6925 sctp_local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006926
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07006927 /* Copy the bind_addr list from the original endpoint to the new
6928 * endpoint so that we can handle restarts properly
6929 */
Vlad Yasevich8e71a112007-12-06 22:50:54 -08006930 sctp_bind_addr_dup(&newsp->ep->base.bind_addr,
6931 &oldsp->ep->base.bind_addr, GFP_KERNEL);
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07006932
Linus Torvalds1da177e2005-04-16 15:20:36 -07006933 /* Move any messages in the old socket's receive queue that are for the
6934 * peeled off association to the new socket's receive queue.
6935 */
6936 sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) {
6937 event = sctp_skb2event(skb);
6938 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07006939 __skb_unlink(skb, &oldsk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006940 __skb_queue_tail(&newsk->sk_receive_queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006941 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006942 }
6943 }
6944
6945 /* Clean up any messages pending delivery due to partial
6946 * delivery. Three cases:
6947 * 1) No partial deliver; no work.
6948 * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby.
6949 * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue.
6950 */
6951 skb_queue_head_init(&newsp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07006952 atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006953
Vlad Yasevichb6e13312007-04-20 12:23:15 -07006954 if (atomic_read(&sctp_sk(oldsk)->pd_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006955 struct sk_buff_head *queue;
6956
6957 /* Decide which queue to move pd_lobby skbs to. */
6958 if (assoc->ulpq.pd_mode) {
6959 queue = &newsp->pd_lobby;
6960 } else
6961 queue = &newsk->sk_receive_queue;
6962
6963 /* Walk through the pd_lobby, looking for skbs that
6964 * need moved to the new socket.
6965 */
6966 sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) {
6967 event = sctp_skb2event(skb);
6968 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07006969 __skb_unlink(skb, &oldsp->pd_lobby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006970 __skb_queue_tail(queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006971 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006972 }
6973 }
6974
6975 /* Clear up any skbs waiting for the partial
6976 * delivery to finish.
6977 */
6978 if (assoc->ulpq.pd_mode)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07006979 sctp_clear_pd(oldsk, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006980
6981 }
6982
Wei Yongjun1bc4ee42009-07-05 19:45:48 +00006983 sctp_skb_for_each(skb, &assoc->ulpq.reasm, tmp)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006984 sctp_skb_set_owner_r_frag(skb, newsk);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006985
Wei Yongjun1bc4ee42009-07-05 19:45:48 +00006986 sctp_skb_for_each(skb, &assoc->ulpq.lobby, tmp)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006987 sctp_skb_set_owner_r_frag(skb, newsk);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006988
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989 /* Set the type of socket to indicate that it is peeled off from the
6990 * original UDP-style socket or created with the accept() call on a
6991 * TCP-style socket..
6992 */
6993 newsp->type = type;
6994
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07006995 /* Mark the new socket "in-use" by the user so that any packets
6996 * that may arrive on the association after we've moved it are
6997 * queued to the backlog. This prevents a potential race between
6998 * backlog processing on the old socket and new-packet processing
6999 * on the new socket.
Zach Brown5131a182007-06-22 15:14:46 -07007000 *
7001 * The caller has just allocated newsk so we can guarantee that other
7002 * paths won't try to lock it and then oldsk.
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07007003 */
Zach Brown5131a182007-06-22 15:14:46 -07007004 lock_sock_nested(newsk, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007005 sctp_assoc_migrate(assoc, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007006
7007 /* If the association on the newsk is already closed before accept()
7008 * is called, set RCV_SHUTDOWN flag.
7009 */
7010 if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP))
7011 newsk->sk_shutdown |= RCV_SHUTDOWN;
7012
7013 newsk->sk_state = SCTP_SS_ESTABLISHED;
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07007014 sctp_release_sock(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007015}
7016
Neil Horman4d93df02007-08-15 16:07:44 -07007017
Linus Torvalds1da177e2005-04-16 15:20:36 -07007018/* This proto struct describes the ULP interface for SCTP. */
7019struct proto sctp_prot = {
7020 .name = "SCTP",
7021 .owner = THIS_MODULE,
7022 .close = sctp_close,
7023 .connect = sctp_connect,
7024 .disconnect = sctp_disconnect,
7025 .accept = sctp_accept,
7026 .ioctl = sctp_ioctl,
7027 .init = sctp_init_sock,
7028 .destroy = sctp_destroy_sock,
7029 .shutdown = sctp_shutdown,
7030 .setsockopt = sctp_setsockopt,
7031 .getsockopt = sctp_getsockopt,
7032 .sendmsg = sctp_sendmsg,
7033 .recvmsg = sctp_recvmsg,
7034 .bind = sctp_bind,
7035 .backlog_rcv = sctp_backlog_rcv,
7036 .hash = sctp_hash,
7037 .unhash = sctp_unhash,
7038 .get_port = sctp_get_port,
7039 .obj_size = sizeof(struct sctp_sock),
Neil Horman4d93df02007-08-15 16:07:44 -07007040 .sysctl_mem = sysctl_sctp_mem,
7041 .sysctl_rmem = sysctl_sctp_rmem,
7042 .sysctl_wmem = sysctl_sctp_wmem,
7043 .memory_pressure = &sctp_memory_pressure,
7044 .enter_memory_pressure = sctp_enter_memory_pressure,
7045 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08007046 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007047};
7048
Eric Dumazetdfd56b82011-12-10 09:48:31 +00007049#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazet8295b6d2007-11-05 23:40:28 -08007050
Linus Torvalds1da177e2005-04-16 15:20:36 -07007051struct proto sctpv6_prot = {
7052 .name = "SCTPv6",
7053 .owner = THIS_MODULE,
7054 .close = sctp_close,
7055 .connect = sctp_connect,
7056 .disconnect = sctp_disconnect,
7057 .accept = sctp_accept,
7058 .ioctl = sctp_ioctl,
7059 .init = sctp_init_sock,
7060 .destroy = sctp_destroy_sock,
7061 .shutdown = sctp_shutdown,
7062 .setsockopt = sctp_setsockopt,
7063 .getsockopt = sctp_getsockopt,
7064 .sendmsg = sctp_sendmsg,
7065 .recvmsg = sctp_recvmsg,
7066 .bind = sctp_bind,
7067 .backlog_rcv = sctp_backlog_rcv,
7068 .hash = sctp_hash,
7069 .unhash = sctp_unhash,
7070 .get_port = sctp_get_port,
7071 .obj_size = sizeof(struct sctp6_sock),
Neil Horman4d93df02007-08-15 16:07:44 -07007072 .sysctl_mem = sysctl_sctp_mem,
7073 .sysctl_rmem = sysctl_sctp_rmem,
7074 .sysctl_wmem = sysctl_sctp_wmem,
7075 .memory_pressure = &sctp_memory_pressure,
7076 .enter_memory_pressure = sctp_enter_memory_pressure,
7077 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08007078 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007079};
Eric Dumazetdfd56b82011-12-10 09:48:31 +00007080#endif /* IS_ENABLED(CONFIG_IPV6) */