blob: 75fe92ac2e9cbba1aa394de36e97c35c999f8d35 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 if (assocparams.sasoc_cookie_life != 0) {
2914 asoc->cookie_life.tv_sec =
2915 assocparams.sasoc_cookie_life / 1000;
2916 asoc->cookie_life.tv_usec =
2917 (assocparams.sasoc_cookie_life % 1000)
2918 * 1000;
2919 }
2920 } else {
2921 /* Set the values to the endpoint */
2922 struct sctp_sock *sp = sctp_sk(sk);
2923
2924 if (assocparams.sasoc_asocmaxrxt != 0)
2925 sp->assocparams.sasoc_asocmaxrxt =
2926 assocparams.sasoc_asocmaxrxt;
2927 if (assocparams.sasoc_cookie_life != 0)
2928 sp->assocparams.sasoc_cookie_life =
2929 assocparams.sasoc_cookie_life;
2930 }
2931 return 0;
2932}
2933
2934/*
2935 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
2936 *
2937 * This socket option is a boolean flag which turns on or off mapped V4
2938 * addresses. If this option is turned on and the socket is type
2939 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
2940 * If this option is turned off, then no mapping will be done of V4
2941 * addresses and a user will receive both PF_INET6 and PF_INET type
2942 * addresses on the socket.
2943 */
David S. Millerb7058842009-09-30 16:12:20 -07002944static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945{
2946 int val;
2947 struct sctp_sock *sp = sctp_sk(sk);
2948
2949 if (optlen < sizeof(int))
2950 return -EINVAL;
2951 if (get_user(val, (int __user *)optval))
2952 return -EFAULT;
2953 if (val)
2954 sp->v4mapped = 1;
2955 else
2956 sp->v4mapped = 0;
2957
2958 return 0;
2959}
2960
2961/*
Wei Yongjune89c2092008-12-25 16:54:58 -08002962 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
2963 * This option will get or set the maximum size to put in any outgoing
2964 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 * fragmented by SCTP into the specified size. Note that the underlying
2966 * SCTP implementation may fragment into smaller sized chunks when the
2967 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08002968 * the user. The default value for this option is '0' which indicates
2969 * the user is NOT limiting fragmentation and only the PMTU will effect
2970 * SCTP's choice of DATA chunk size. Note also that values set larger
2971 * than the maximum size of an IP datagram will effectively let SCTP
2972 * control fragmentation (i.e. the same as setting this option to 0).
2973 *
2974 * The following structure is used to access and modify this parameter:
2975 *
2976 * struct sctp_assoc_value {
2977 * sctp_assoc_t assoc_id;
2978 * uint32_t assoc_value;
2979 * };
2980 *
2981 * assoc_id: This parameter is ignored for one-to-one style sockets.
2982 * For one-to-many style sockets this parameter indicates which
2983 * association the user is performing an action upon. Note that if
2984 * this field's value is zero then the endpoints default value is
2985 * changed (effecting future associations only).
2986 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 */
David S. Millerb7058842009-09-30 16:12:20 -07002988static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989{
Wei Yongjune89c2092008-12-25 16:54:58 -08002990 struct sctp_assoc_value params;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 struct sctp_sock *sp = sctp_sk(sk);
2993 int val;
2994
Wei Yongjune89c2092008-12-25 16:54:58 -08002995 if (optlen == sizeof(int)) {
Joe Perches145ce502010-08-24 13:21:08 +00002996 pr_warn("Use of int in maxseg socket option deprecated\n");
2997 pr_warn("Use struct sctp_assoc_value instead\n");
Wei Yongjune89c2092008-12-25 16:54:58 -08002998 if (copy_from_user(&val, optval, optlen))
2999 return -EFAULT;
3000 params.assoc_id = 0;
3001 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3002 if (copy_from_user(&params, optval, optlen))
3003 return -EFAULT;
3004 val = params.assoc_value;
3005 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 return -EINVAL;
Wei Yongjune89c2092008-12-25 16:54:58 -08003007
Ivan Skytte Jorgensen96a33992005-10-28 15:36:12 -07003008 if ((val != 0) && ((val < 8) || (val > SCTP_MAX_CHUNK_LEN)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010
Wei Yongjune89c2092008-12-25 16:54:58 -08003011 asoc = sctp_id2assoc(sk, params.assoc_id);
3012 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
3013 return -EINVAL;
3014
3015 if (asoc) {
3016 if (val == 0) {
3017 val = asoc->pathmtu;
3018 val -= sp->pf->af->net_header_len;
3019 val -= sizeof(struct sctphdr) +
3020 sizeof(struct sctp_data_chunk);
3021 }
Vlad Yasevichf68b2e02009-09-04 18:21:00 -04003022 asoc->user_frag = val;
3023 asoc->frag_point = sctp_frag_point(asoc, asoc->pathmtu);
Wei Yongjune89c2092008-12-25 16:54:58 -08003024 } else {
3025 sp->user_frag = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 }
3027
3028 return 0;
3029}
3030
3031
3032/*
3033 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3034 *
3035 * Requests that the peer mark the enclosed address as the association
3036 * primary. The enclosed address must be one of the association's
3037 * locally bound addresses. The following structure is used to make a
3038 * set primary request:
3039 */
3040static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003041 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003043 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 struct sctp_association *asoc = NULL;
3046 struct sctp_setpeerprim prim;
3047 struct sctp_chunk *chunk;
Wei Yongjun40a01032010-12-07 17:11:09 +00003048 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 int err;
3050
3051 sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003053 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 return -EPERM;
3055
3056 if (optlen != sizeof(struct sctp_setpeerprim))
3057 return -EINVAL;
3058
3059 if (copy_from_user(&prim, optval, optlen))
3060 return -EFAULT;
3061
3062 asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003063 if (!asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 return -EINVAL;
3065
3066 if (!asoc->peer.asconf_capable)
3067 return -EPERM;
3068
3069 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
3070 return -EPERM;
3071
3072 if (!sctp_state(asoc, ESTABLISHED))
3073 return -ENOTCONN;
3074
Wei Yongjun40a01032010-12-07 17:11:09 +00003075 af = sctp_get_af_specific(prim.sspp_addr.ss_family);
3076 if (!af)
3077 return -EINVAL;
3078
3079 if (!af->addr_valid((union sctp_addr *)&prim.sspp_addr, sp, NULL))
3080 return -EADDRNOTAVAIL;
3081
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
3083 return -EADDRNOTAVAIL;
3084
3085 /* Create an ASCONF chunk with SET_PRIMARY parameter */
3086 chunk = sctp_make_asconf_set_prim(asoc,
3087 (union sctp_addr *)&prim.sspp_addr);
3088 if (!chunk)
3089 return -ENOMEM;
3090
3091 err = sctp_send_asconf(asoc, chunk);
3092
3093 SCTP_DEBUG_PRINTK("We set peer primary addr primitively.\n");
3094
3095 return err;
3096}
3097
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003098static int sctp_setsockopt_adaptation_layer(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003099 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003101 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003103 if (optlen != sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 return -EINVAL;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003105 if (copy_from_user(&adaptation, optval, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 return -EFAULT;
3107
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003108 sctp_sk(sk)->adaptation_ind = adaptation.ssb_adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109
3110 return 0;
3111}
3112
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003113/*
3114 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
3115 *
3116 * The context field in the sctp_sndrcvinfo structure is normally only
3117 * used when a failed message is retrieved holding the value that was
3118 * sent down on the actual send call. This option allows the setting of
3119 * a default context on an association basis that will be received on
3120 * reading messages from the peer. This is especially helpful in the
3121 * one-2-many model for an application to keep some reference to an
3122 * internal state machine that is processing messages on the
3123 * association. Note that the setting of this value only effects
3124 * received messages from the peer and does not effect the value that is
3125 * saved with outbound messages.
3126 */
3127static int sctp_setsockopt_context(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003128 unsigned int optlen)
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003129{
3130 struct sctp_assoc_value params;
3131 struct sctp_sock *sp;
3132 struct sctp_association *asoc;
3133
3134 if (optlen != sizeof(struct sctp_assoc_value))
3135 return -EINVAL;
3136 if (copy_from_user(&params, optval, optlen))
3137 return -EFAULT;
3138
3139 sp = sctp_sk(sk);
3140
3141 if (params.assoc_id != 0) {
3142 asoc = sctp_id2assoc(sk, params.assoc_id);
3143 if (!asoc)
3144 return -EINVAL;
3145 asoc->default_rcv_context = params.assoc_value;
3146 } else {
3147 sp->default_rcv_context = params.assoc_value;
3148 }
3149
3150 return 0;
3151}
3152
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003153/*
3154 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
3155 *
3156 * This options will at a minimum specify if the implementation is doing
3157 * fragmented interleave. Fragmented interleave, for a one to many
3158 * socket, is when subsequent calls to receive a message may return
3159 * parts of messages from different associations. Some implementations
3160 * may allow you to turn this value on or off. If so, when turned off,
3161 * no fragment interleave will occur (which will cause a head of line
3162 * blocking amongst multiple associations sharing the same one to many
3163 * socket). When this option is turned on, then each receive call may
3164 * come from a different association (thus the user must receive data
3165 * with the extended calls (e.g. sctp_recvmsg) to keep track of which
3166 * association each receive belongs to.
3167 *
3168 * This option takes a boolean value. A non-zero value indicates that
3169 * fragmented interleave is on. A value of zero indicates that
3170 * fragmented interleave is off.
3171 *
3172 * Note that it is important that an implementation that allows this
3173 * option to be turned on, have it off by default. Otherwise an unaware
3174 * application using the one to many model may become confused and act
3175 * incorrectly.
3176 */
3177static int sctp_setsockopt_fragment_interleave(struct sock *sk,
3178 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003179 unsigned int optlen)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003180{
3181 int val;
3182
3183 if (optlen != sizeof(int))
3184 return -EINVAL;
3185 if (get_user(val, (int __user *)optval))
3186 return -EFAULT;
3187
3188 sctp_sk(sk)->frag_interleave = (val == 0) ? 0 : 1;
3189
3190 return 0;
3191}
3192
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003193/*
Wei Yongjun8510b932008-12-25 16:59:03 -08003194 * 8.1.21. Set or Get the SCTP Partial Delivery Point
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003195 * (SCTP_PARTIAL_DELIVERY_POINT)
Wei Yongjun8510b932008-12-25 16:59:03 -08003196 *
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003197 * This option will set or get the SCTP partial delivery point. This
3198 * point is the size of a message where the partial delivery API will be
3199 * invoked to help free up rwnd space for the peer. Setting this to a
Wei Yongjun8510b932008-12-25 16:59:03 -08003200 * lower value will cause partial deliveries to happen more often. The
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003201 * calls argument is an integer that sets or gets the partial delivery
Wei Yongjun8510b932008-12-25 16:59:03 -08003202 * point. Note also that the call will fail if the user attempts to set
3203 * this value larger than the socket receive buffer size.
3204 *
3205 * Note that any single message having a length smaller than or equal to
3206 * the SCTP partial delivery point will be delivered in one single read
3207 * call as long as the user provided buffer is large enough to hold the
3208 * message.
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003209 */
3210static int sctp_setsockopt_partial_delivery_point(struct sock *sk,
3211 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003212 unsigned int optlen)
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003213{
3214 u32 val;
3215
3216 if (optlen != sizeof(u32))
3217 return -EINVAL;
3218 if (get_user(val, (int __user *)optval))
3219 return -EFAULT;
3220
Wei Yongjun8510b932008-12-25 16:59:03 -08003221 /* Note: We double the receive buffer from what the user sets
3222 * it to be, also initial rwnd is based on rcvbuf/2.
3223 */
3224 if (val > (sk->sk_rcvbuf >> 1))
3225 return -EINVAL;
3226
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003227 sctp_sk(sk)->pd_point = val;
3228
3229 return 0; /* is this the right error code? */
3230}
3231
Vlad Yasevich70331572007-03-23 11:34:36 -07003232/*
3233 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
3234 *
3235 * This option will allow a user to change the maximum burst of packets
3236 * that can be emitted by this association. Note that the default value
3237 * is 4, and some implementations may restrict this setting so that it
3238 * can only be lowered.
3239 *
3240 * NOTE: This text doesn't seem right. Do this on a socket basis with
3241 * future associations inheriting the socket value.
3242 */
3243static int sctp_setsockopt_maxburst(struct sock *sk,
3244 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003245 unsigned int optlen)
Vlad Yasevich70331572007-03-23 11:34:36 -07003246{
Neil Horman219b99a2008-03-05 13:44:46 -08003247 struct sctp_assoc_value params;
3248 struct sctp_sock *sp;
3249 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07003250 int val;
Neil Horman219b99a2008-03-05 13:44:46 -08003251 int assoc_id = 0;
Vlad Yasevich70331572007-03-23 11:34:36 -07003252
Neil Horman219b99a2008-03-05 13:44:46 -08003253 if (optlen == sizeof(int)) {
Joe Perches145ce502010-08-24 13:21:08 +00003254 pr_warn("Use of int in max_burst socket option deprecated\n");
3255 pr_warn("Use struct sctp_assoc_value instead\n");
Neil Horman219b99a2008-03-05 13:44:46 -08003256 if (copy_from_user(&val, optval, optlen))
3257 return -EFAULT;
3258 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3259 if (copy_from_user(&params, optval, optlen))
3260 return -EFAULT;
3261 val = params.assoc_value;
3262 assoc_id = params.assoc_id;
3263 } else
3264 return -EINVAL;
3265
3266 sp = sctp_sk(sk);
3267
3268 if (assoc_id != 0) {
3269 asoc = sctp_id2assoc(sk, assoc_id);
3270 if (!asoc)
3271 return -EINVAL;
3272 asoc->max_burst = val;
3273 } else
3274 sp->max_burst = val;
Vlad Yasevich70331572007-03-23 11:34:36 -07003275
3276 return 0;
3277}
3278
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003279/*
3280 * 7.1.18. Add a chunk that must be authenticated (SCTP_AUTH_CHUNK)
3281 *
3282 * This set option adds a chunk type that the user is requesting to be
3283 * received only in an authenticated way. Changes to the list of chunks
3284 * will only effect future associations on the socket.
3285 */
3286static int sctp_setsockopt_auth_chunk(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003287 char __user *optval,
3288 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003289{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003290 struct net *net = sock_net(sk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003291 struct sctp_authchunk val;
3292
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003293 if (!net->sctp.auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003294 return -EACCES;
3295
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003296 if (optlen != sizeof(struct sctp_authchunk))
3297 return -EINVAL;
3298 if (copy_from_user(&val, optval, optlen))
3299 return -EFAULT;
3300
3301 switch (val.sauth_chunk) {
Joe Perches7fd71b12011-07-01 09:43:11 +00003302 case SCTP_CID_INIT:
3303 case SCTP_CID_INIT_ACK:
3304 case SCTP_CID_SHUTDOWN_COMPLETE:
3305 case SCTP_CID_AUTH:
3306 return -EINVAL;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003307 }
3308
3309 /* add this chunk id to the endpoint */
3310 return sctp_auth_ep_add_chunkid(sctp_sk(sk)->ep, val.sauth_chunk);
3311}
3312
3313/*
3314 * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
3315 *
3316 * This option gets or sets the list of HMAC algorithms that the local
3317 * endpoint requires the peer to use.
3318 */
3319static int sctp_setsockopt_hmac_ident(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003320 char __user *optval,
3321 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003322{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003323 struct net *net = sock_net(sk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003324 struct sctp_hmacalgo *hmacs;
Vlad Yasevichd9724052008-08-27 16:09:49 -07003325 u32 idents;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003326 int err;
3327
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003328 if (!net->sctp.auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003329 return -EACCES;
3330
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003331 if (optlen < sizeof(struct sctp_hmacalgo))
3332 return -EINVAL;
3333
Shan Wei934253a2011-04-18 19:13:18 +00003334 hmacs= memdup_user(optval, optlen);
3335 if (IS_ERR(hmacs))
3336 return PTR_ERR(hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003337
Vlad Yasevichd9724052008-08-27 16:09:49 -07003338 idents = hmacs->shmac_num_idents;
3339 if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS ||
3340 (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo))) {
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003341 err = -EINVAL;
3342 goto out;
3343 }
3344
3345 err = sctp_auth_ep_set_hmacs(sctp_sk(sk)->ep, hmacs);
3346out:
3347 kfree(hmacs);
3348 return err;
3349}
3350
3351/*
3352 * 7.1.20. Set a shared key (SCTP_AUTH_KEY)
3353 *
3354 * This option will set a shared secret key which is used to build an
3355 * association shared key.
3356 */
3357static int sctp_setsockopt_auth_key(struct sock *sk,
3358 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003359 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003360{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003361 struct net *net = sock_net(sk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003362 struct sctp_authkey *authkey;
3363 struct sctp_association *asoc;
3364 int ret;
3365
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003366 if (!net->sctp.auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003367 return -EACCES;
3368
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003369 if (optlen <= sizeof(struct sctp_authkey))
3370 return -EINVAL;
3371
Shan Wei934253a2011-04-18 19:13:18 +00003372 authkey= memdup_user(optval, optlen);
3373 if (IS_ERR(authkey))
3374 return PTR_ERR(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003375
Vlad Yasevich328fc472008-08-27 16:08:54 -07003376 if (authkey->sca_keylength > optlen - sizeof(struct sctp_authkey)) {
Vlad Yasevich30c22352008-08-25 15:16:19 -07003377 ret = -EINVAL;
3378 goto out;
3379 }
3380
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003381 asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
3382 if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) {
3383 ret = -EINVAL;
3384 goto out;
3385 }
3386
3387 ret = sctp_auth_set_key(sctp_sk(sk)->ep, asoc, authkey);
3388out:
Daniel Borkmann6ba542a2013-02-08 03:04:34 +00003389 kzfree(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003390 return ret;
3391}
3392
3393/*
3394 * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
3395 *
3396 * This option will get or set the active shared key to be used to build
3397 * the association shared key.
3398 */
3399static int sctp_setsockopt_active_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003400 char __user *optval,
3401 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003402{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003403 struct net *net = sock_net(sk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003404 struct sctp_authkeyid val;
3405 struct sctp_association *asoc;
3406
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003407 if (!net->sctp.auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003408 return -EACCES;
3409
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003410 if (optlen != sizeof(struct sctp_authkeyid))
3411 return -EINVAL;
3412 if (copy_from_user(&val, optval, optlen))
3413 return -EFAULT;
3414
3415 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3416 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3417 return -EINVAL;
3418
3419 return sctp_auth_set_active_key(sctp_sk(sk)->ep, asoc,
3420 val.scact_keynumber);
3421}
3422
3423/*
3424 * 7.1.22. Delete a shared key (SCTP_AUTH_DELETE_KEY)
3425 *
3426 * This set option will delete a shared secret key from use.
3427 */
3428static int sctp_setsockopt_del_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003429 char __user *optval,
3430 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003431{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003432 struct net *net = sock_net(sk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003433 struct sctp_authkeyid val;
3434 struct sctp_association *asoc;
3435
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003436 if (!net->sctp.auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003437 return -EACCES;
3438
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003439 if (optlen != sizeof(struct sctp_authkeyid))
3440 return -EINVAL;
3441 if (copy_from_user(&val, optval, optlen))
3442 return -EFAULT;
3443
3444 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3445 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3446 return -EINVAL;
3447
3448 return sctp_auth_del_key_id(sctp_sk(sk)->ep, asoc,
3449 val.scact_keynumber);
3450
3451}
3452
Michio Honda7dc04d72011-04-26 20:16:31 +09003453/*
3454 * 8.1.23 SCTP_AUTO_ASCONF
3455 *
3456 * This option will enable or disable the use of the automatic generation of
3457 * ASCONF chunks to add and delete addresses to an existing association. Note
3458 * that this option has two caveats namely: a) it only affects sockets that
3459 * are bound to all addresses available to the SCTP stack, and b) the system
3460 * administrator may have an overriding control that turns the ASCONF feature
3461 * off no matter what setting the socket option may have.
3462 * This option expects an integer boolean flag, where a non-zero value turns on
3463 * the option, and a zero value turns off the option.
3464 * Note. In this implementation, socket operation overrides default parameter
3465 * being set by sysctl as well as FreeBSD implementation
3466 */
3467static int sctp_setsockopt_auto_asconf(struct sock *sk, char __user *optval,
3468 unsigned int optlen)
3469{
3470 int val;
3471 struct sctp_sock *sp = sctp_sk(sk);
3472
3473 if (optlen < sizeof(int))
3474 return -EINVAL;
3475 if (get_user(val, (int __user *)optval))
3476 return -EFAULT;
3477 if (!sctp_is_ep_boundall(sk) && val)
3478 return -EINVAL;
3479 if ((val && sp->do_auto_asconf) || (!val && !sp->do_auto_asconf))
3480 return 0;
3481
3482 if (val == 0 && sp->do_auto_asconf) {
3483 list_del(&sp->auto_asconf_list);
3484 sp->do_auto_asconf = 0;
3485 } else if (val && !sp->do_auto_asconf) {
3486 list_add_tail(&sp->auto_asconf_list,
Eric W. Biederman4db67e82012-08-06 08:42:04 +00003487 &sock_net(sk)->sctp.auto_asconf_splist);
Michio Honda7dc04d72011-04-26 20:16:31 +09003488 sp->do_auto_asconf = 1;
3489 }
3490 return 0;
3491}
3492
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003493
Neil Horman5aa93bc2012-07-21 07:56:07 +00003494/*
3495 * SCTP_PEER_ADDR_THLDS
3496 *
3497 * This option allows us to alter the partially failed threshold for one or all
3498 * transports in an association. See Section 6.1 of:
3499 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
3500 */
3501static int sctp_setsockopt_paddr_thresholds(struct sock *sk,
3502 char __user *optval,
3503 unsigned int optlen)
3504{
3505 struct sctp_paddrthlds val;
3506 struct sctp_transport *trans;
3507 struct sctp_association *asoc;
3508
3509 if (optlen < sizeof(struct sctp_paddrthlds))
3510 return -EINVAL;
3511 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval,
3512 sizeof(struct sctp_paddrthlds)))
3513 return -EFAULT;
3514
3515
3516 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
3517 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
3518 if (!asoc)
3519 return -ENOENT;
3520 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
3521 transports) {
3522 if (val.spt_pathmaxrxt)
3523 trans->pathmaxrxt = val.spt_pathmaxrxt;
3524 trans->pf_retrans = val.spt_pathpfthld;
3525 }
3526
3527 if (val.spt_pathmaxrxt)
3528 asoc->pathmaxrxt = val.spt_pathmaxrxt;
3529 asoc->pf_retrans = val.spt_pathpfthld;
3530 } else {
3531 trans = sctp_addr_id2transport(sk, &val.spt_address,
3532 val.spt_assoc_id);
3533 if (!trans)
3534 return -ENOENT;
3535
3536 if (val.spt_pathmaxrxt)
3537 trans->pathmaxrxt = val.spt_pathmaxrxt;
3538 trans->pf_retrans = val.spt_pathpfthld;
3539 }
3540
3541 return 0;
3542}
3543
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544/* API 6.2 setsockopt(), getsockopt()
3545 *
3546 * Applications use setsockopt() and getsockopt() to set or retrieve
3547 * socket options. Socket options are used to change the default
3548 * behavior of sockets calls. They are described in Section 7.
3549 *
3550 * The syntax is:
3551 *
3552 * ret = getsockopt(int sd, int level, int optname, void __user *optval,
3553 * int __user *optlen);
3554 * ret = setsockopt(int sd, int level, int optname, const void __user *optval,
3555 * int optlen);
3556 *
3557 * sd - the socket descript.
3558 * level - set to IPPROTO_SCTP for all SCTP options.
3559 * optname - the option name.
3560 * optval - the buffer to store the value of the option.
3561 * optlen - the size of the buffer.
3562 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02003563static int sctp_setsockopt(struct sock *sk, int level, int optname,
3564 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565{
3566 int retval = 0;
3567
3568 SCTP_DEBUG_PRINTK("sctp_setsockopt(sk: %p... optname: %d)\n",
3569 sk, optname);
3570
3571 /* I can hardly begin to describe how wrong this is. This is
3572 * so broken as to be worse than useless. The API draft
3573 * REALLY is NOT helpful here... I am not convinced that the
3574 * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
3575 * are at all well-founded.
3576 */
3577 if (level != SOL_SCTP) {
3578 struct sctp_af *af = sctp_sk(sk)->pf->af;
3579 retval = af->setsockopt(sk, level, optname, optval, optlen);
3580 goto out_nounlock;
3581 }
3582
3583 sctp_lock_sock(sk);
3584
3585 switch (optname) {
3586 case SCTP_SOCKOPT_BINDX_ADD:
3587 /* 'optlen' is the size of the addresses buffer. */
3588 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
3589 optlen, SCTP_BINDX_ADD_ADDR);
3590 break;
3591
3592 case SCTP_SOCKOPT_BINDX_REM:
3593 /* 'optlen' is the size of the addresses buffer. */
3594 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
3595 optlen, SCTP_BINDX_REM_ADDR);
3596 break;
3597
Vlad Yasevich88a0a942008-05-09 15:14:11 -07003598 case SCTP_SOCKOPT_CONNECTX_OLD:
3599 /* 'optlen' is the size of the addresses buffer. */
3600 retval = sctp_setsockopt_connectx_old(sk,
3601 (struct sockaddr __user *)optval,
3602 optlen);
3603 break;
3604
Frank Filz3f7a87d2005-06-20 13:14:57 -07003605 case SCTP_SOCKOPT_CONNECTX:
3606 /* 'optlen' is the size of the addresses buffer. */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07003607 retval = sctp_setsockopt_connectx(sk,
3608 (struct sockaddr __user *)optval,
3609 optlen);
Frank Filz3f7a87d2005-06-20 13:14:57 -07003610 break;
3611
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 case SCTP_DISABLE_FRAGMENTS:
3613 retval = sctp_setsockopt_disable_fragments(sk, optval, optlen);
3614 break;
3615
3616 case SCTP_EVENTS:
3617 retval = sctp_setsockopt_events(sk, optval, optlen);
3618 break;
3619
3620 case SCTP_AUTOCLOSE:
3621 retval = sctp_setsockopt_autoclose(sk, optval, optlen);
3622 break;
3623
3624 case SCTP_PEER_ADDR_PARAMS:
3625 retval = sctp_setsockopt_peer_addr_params(sk, optval, optlen);
3626 break;
3627
Shan Wei4580ccc2011-01-18 22:39:00 +00003628 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07003629 retval = sctp_setsockopt_delayed_ack(sk, optval, optlen);
Frank Filz77086102005-12-22 11:37:30 -08003630 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003631 case SCTP_PARTIAL_DELIVERY_POINT:
3632 retval = sctp_setsockopt_partial_delivery_point(sk, optval, optlen);
3633 break;
Frank Filz77086102005-12-22 11:37:30 -08003634
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635 case SCTP_INITMSG:
3636 retval = sctp_setsockopt_initmsg(sk, optval, optlen);
3637 break;
3638 case SCTP_DEFAULT_SEND_PARAM:
3639 retval = sctp_setsockopt_default_send_param(sk, optval,
3640 optlen);
3641 break;
3642 case SCTP_PRIMARY_ADDR:
3643 retval = sctp_setsockopt_primary_addr(sk, optval, optlen);
3644 break;
3645 case SCTP_SET_PEER_PRIMARY_ADDR:
3646 retval = sctp_setsockopt_peer_primary_addr(sk, optval, optlen);
3647 break;
3648 case SCTP_NODELAY:
3649 retval = sctp_setsockopt_nodelay(sk, optval, optlen);
3650 break;
3651 case SCTP_RTOINFO:
3652 retval = sctp_setsockopt_rtoinfo(sk, optval, optlen);
3653 break;
3654 case SCTP_ASSOCINFO:
3655 retval = sctp_setsockopt_associnfo(sk, optval, optlen);
3656 break;
3657 case SCTP_I_WANT_MAPPED_V4_ADDR:
3658 retval = sctp_setsockopt_mappedv4(sk, optval, optlen);
3659 break;
3660 case SCTP_MAXSEG:
3661 retval = sctp_setsockopt_maxseg(sk, optval, optlen);
3662 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003663 case SCTP_ADAPTATION_LAYER:
3664 retval = sctp_setsockopt_adaptation_layer(sk, optval, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003666 case SCTP_CONTEXT:
3667 retval = sctp_setsockopt_context(sk, optval, optlen);
3668 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003669 case SCTP_FRAGMENT_INTERLEAVE:
3670 retval = sctp_setsockopt_fragment_interleave(sk, optval, optlen);
3671 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07003672 case SCTP_MAX_BURST:
3673 retval = sctp_setsockopt_maxburst(sk, optval, optlen);
3674 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003675 case SCTP_AUTH_CHUNK:
3676 retval = sctp_setsockopt_auth_chunk(sk, optval, optlen);
3677 break;
3678 case SCTP_HMAC_IDENT:
3679 retval = sctp_setsockopt_hmac_ident(sk, optval, optlen);
3680 break;
3681 case SCTP_AUTH_KEY:
3682 retval = sctp_setsockopt_auth_key(sk, optval, optlen);
3683 break;
3684 case SCTP_AUTH_ACTIVE_KEY:
3685 retval = sctp_setsockopt_active_key(sk, optval, optlen);
3686 break;
3687 case SCTP_AUTH_DELETE_KEY:
3688 retval = sctp_setsockopt_del_key(sk, optval, optlen);
3689 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09003690 case SCTP_AUTO_ASCONF:
3691 retval = sctp_setsockopt_auto_asconf(sk, optval, optlen);
3692 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00003693 case SCTP_PEER_ADDR_THLDS:
3694 retval = sctp_setsockopt_paddr_thresholds(sk, optval, optlen);
3695 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 default:
3697 retval = -ENOPROTOOPT;
3698 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07003699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700
3701 sctp_release_sock(sk);
3702
3703out_nounlock:
3704 return retval;
3705}
3706
3707/* API 3.1.6 connect() - UDP Style Syntax
3708 *
3709 * An application may use the connect() call in the UDP model to initiate an
3710 * association without sending data.
3711 *
3712 * The syntax is:
3713 *
3714 * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
3715 *
3716 * sd: the socket descriptor to have a new association added to.
3717 *
3718 * nam: the address structure (either struct sockaddr_in or struct
3719 * sockaddr_in6 defined in RFC2553 [7]).
3720 *
3721 * len: the size of the address.
3722 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02003723static int sctp_connect(struct sock *sk, struct sockaddr *addr,
3724 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726 int err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07003727 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728
3729 sctp_lock_sock(sk);
3730
Frank Filz3f7a87d2005-06-20 13:14:57 -07003731 SCTP_DEBUG_PRINTK("%s - sk: %p, sockaddr: %p, addr_len: %d\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08003732 __func__, sk, addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733
Frank Filz3f7a87d2005-06-20 13:14:57 -07003734 /* Validate addr_len before calling common connect/connectx routine. */
3735 af = sctp_get_af_specific(addr->sa_family);
3736 if (!af || addr_len < af->sockaddr_len) {
3737 err = -EINVAL;
3738 } else {
3739 /* Pass correct addr len to common routine (so it knows there
3740 * is only one address being passed.
3741 */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07003742 err = __sctp_connect(sk, addr, af->sockaddr_len, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 }
3744
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 sctp_release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746 return err;
3747}
3748
3749/* FIXME: Write comments. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02003750static int sctp_disconnect(struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751{
3752 return -EOPNOTSUPP; /* STUB */
3753}
3754
3755/* 4.1.4 accept() - TCP Style Syntax
3756 *
3757 * Applications use accept() call to remove an established SCTP
3758 * association from the accept queue of the endpoint. A new socket
3759 * descriptor will be returned from accept() to represent the newly
3760 * formed association.
3761 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02003762static struct sock *sctp_accept(struct sock *sk, int flags, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763{
3764 struct sctp_sock *sp;
3765 struct sctp_endpoint *ep;
3766 struct sock *newsk = NULL;
3767 struct sctp_association *asoc;
3768 long timeo;
3769 int error = 0;
3770
3771 sctp_lock_sock(sk);
3772
3773 sp = sctp_sk(sk);
3774 ep = sp->ep;
3775
3776 if (!sctp_style(sk, TCP)) {
3777 error = -EOPNOTSUPP;
3778 goto out;
3779 }
3780
3781 if (!sctp_sstate(sk, LISTENING)) {
3782 error = -EINVAL;
3783 goto out;
3784 }
3785
Sridhar Samudrala8abfedd2006-08-22 00:24:09 -07003786 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787
3788 error = sctp_wait_for_accept(sk, timeo);
3789 if (error)
3790 goto out;
3791
3792 /* We treat the list of associations on the endpoint as the accept
3793 * queue and pick the first association on the list.
3794 */
3795 asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
3796
3797 newsk = sp->pf->create_accept_sk(sk, asoc);
3798 if (!newsk) {
3799 error = -ENOMEM;
3800 goto out;
3801 }
3802
3803 /* Populate the fields of the newsk from the oldsk and migrate the
3804 * asoc to the newsk.
3805 */
3806 sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
3807
3808out:
3809 sctp_release_sock(sk);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003810 *err = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 return newsk;
3812}
3813
3814/* The SCTP ioctl handler. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02003815static int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816{
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00003817 int rc = -ENOTCONN;
3818
3819 sctp_lock_sock(sk);
3820
3821 /*
3822 * SEQPACKET-style sockets in LISTENING state are valid, for
3823 * SCTP, so only discard TCP-style sockets in LISTENING state.
3824 */
3825 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
3826 goto out;
3827
3828 switch (cmd) {
3829 case SIOCINQ: {
3830 struct sk_buff *skb;
3831 unsigned int amount = 0;
3832
3833 skb = skb_peek(&sk->sk_receive_queue);
3834 if (skb != NULL) {
3835 /*
3836 * We will only return the amount of this packet since
3837 * that is all that will be read.
3838 */
3839 amount = skb->len;
3840 }
3841 rc = put_user(amount, (int __user *)arg);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00003842 break;
David S. Miller9a7241c2010-10-03 22:14:37 -07003843 }
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00003844 default:
3845 rc = -ENOIOCTLCMD;
3846 break;
3847 }
3848out:
3849 sctp_release_sock(sk);
3850 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851}
3852
3853/* This is the function which gets called during socket creation to
3854 * initialized the SCTP-specific portion of the sock.
3855 * The sock structure should already be zero-filled memory.
3856 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02003857static int sctp_init_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003859 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 struct sctp_sock *sp;
3861
3862 SCTP_DEBUG_PRINTK("sctp_init_sock(sk: %p)\n", sk);
3863
3864 sp = sctp_sk(sk);
3865
3866 /* Initialize the SCTP per socket area. */
3867 switch (sk->sk_type) {
3868 case SOCK_SEQPACKET:
3869 sp->type = SCTP_SOCKET_UDP;
3870 break;
3871 case SOCK_STREAM:
3872 sp->type = SCTP_SOCKET_TCP;
3873 break;
3874 default:
3875 return -ESOCKTNOSUPPORT;
3876 }
3877
3878 /* Initialize default send parameters. These parameters can be
3879 * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
3880 */
3881 sp->default_stream = 0;
3882 sp->default_ppid = 0;
3883 sp->default_flags = 0;
3884 sp->default_context = 0;
3885 sp->default_timetolive = 0;
3886
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003887 sp->default_rcv_context = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003888 sp->max_burst = net->sctp.max_burst;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003889
Neil Horman3c681982012-10-24 09:20:03 +00003890 sp->sctp_hmac_alg = net->sctp.sctp_hmac_alg;
3891
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 /* Initialize default setup parameters. These parameters
3893 * can be modified with the SCTP_INITMSG socket option or
3894 * overridden by the SCTP_INIT CMSG.
3895 */
3896 sp->initmsg.sinit_num_ostreams = sctp_max_outstreams;
3897 sp->initmsg.sinit_max_instreams = sctp_max_instreams;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003898 sp->initmsg.sinit_max_attempts = net->sctp.max_retrans_init;
3899 sp->initmsg.sinit_max_init_timeo = net->sctp.rto_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900
3901 /* Initialize default RTO related parameters. These parameters can
3902 * be modified for with the SCTP_RTOINFO socket option.
3903 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003904 sp->rtoinfo.srto_initial = net->sctp.rto_initial;
3905 sp->rtoinfo.srto_max = net->sctp.rto_max;
3906 sp->rtoinfo.srto_min = net->sctp.rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
3908 /* Initialize default association related parameters. These parameters
3909 * can be modified with the SCTP_ASSOCINFO socket option.
3910 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003911 sp->assocparams.sasoc_asocmaxrxt = net->sctp.max_retrans_association;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 sp->assocparams.sasoc_number_peer_destinations = 0;
3913 sp->assocparams.sasoc_peer_rwnd = 0;
3914 sp->assocparams.sasoc_local_rwnd = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003915 sp->assocparams.sasoc_cookie_life = net->sctp.valid_cookie_life;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916
3917 /* Initialize default event subscriptions. By default, all the
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003918 * options are off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 */
3920 memset(&sp->subscribe, 0, sizeof(struct sctp_event_subscribe));
3921
3922 /* Default Peer Address Parameters. These defaults can
3923 * be modified via SCTP_PEER_ADDR_PARAMS
3924 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003925 sp->hbinterval = net->sctp.hb_interval;
3926 sp->pathmaxrxt = net->sctp.max_retrans_path;
Frank Filz52ccb8e2005-12-22 11:36:46 -08003927 sp->pathmtu = 0; // allow default discovery
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003928 sp->sackdelay = net->sctp.sack_timeout;
Vlad Yasevich7bfe8bd2008-06-09 15:45:05 -07003929 sp->sackfreq = 2;
Frank Filz52ccb8e2005-12-22 11:36:46 -08003930 sp->param_flags = SPP_HB_ENABLE |
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003931 SPP_PMTUD_ENABLE |
3932 SPP_SACKDELAY_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933
3934 /* If enabled no SCTP message fragmentation will be performed.
3935 * Configure through SCTP_DISABLE_FRAGMENTS socket option.
3936 */
3937 sp->disable_fragments = 0;
3938
Sridhar Samudrala208edef2006-09-29 17:08:01 -07003939 /* Enable Nagle algorithm by default. */
3940 sp->nodelay = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941
3942 /* Enable by default. */
3943 sp->v4mapped = 1;
3944
3945 /* Auto-close idle associations after the configured
3946 * number of seconds. A value of 0 disables this
3947 * feature. Configure through the SCTP_AUTOCLOSE socket option,
3948 * for UDP-style sockets only.
3949 */
3950 sp->autoclose = 0;
3951
3952 /* User specified fragmentation limit. */
3953 sp->user_frag = 0;
3954
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003955 sp->adaptation_ind = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
3957 sp->pf = sctp_get_pf_specific(sk->sk_family);
3958
3959 /* Control variables for partial data delivery. */
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003960 atomic_set(&sp->pd_mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961 skb_queue_head_init(&sp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003962 sp->frag_interleave = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963
3964 /* Create a per socket endpoint structure. Even if we
3965 * change the data structure relationships, this may still
3966 * be useful for storing pre-connect address information.
3967 */
Daniel Borkmannc164b832013-06-14 18:24:06 +02003968 sp->ep = sctp_endpoint_new(sk, GFP_KERNEL);
3969 if (!sp->ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 return -ENOMEM;
3971
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 sp->hmac = NULL;
3973
3974 SCTP_DBG_OBJCNT_INC(sock);
David S. Miller6f756a82008-11-23 17:34:03 -08003975
3976 local_bh_disable();
Vlad Yasevich81419d82010-04-28 08:47:20 +00003977 percpu_counter_inc(&sctp_sockets_allocated);
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003978 sock_prot_inuse_add(net, sk->sk_prot, 1);
3979 if (net->sctp.default_auto_asconf) {
Michio Honda9f7d6532011-04-26 19:32:51 +09003980 list_add_tail(&sp->auto_asconf_list,
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003981 &net->sctp.auto_asconf_splist);
Michio Honda9f7d6532011-04-26 19:32:51 +09003982 sp->do_auto_asconf = 1;
3983 } else
3984 sp->do_auto_asconf = 0;
David S. Miller6f756a82008-11-23 17:34:03 -08003985 local_bh_enable();
3986
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 return 0;
3988}
3989
3990/* Cleanup any SCTP per socket resources. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02003991static void sctp_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992{
Michio Honda9f7d6532011-04-26 19:32:51 +09003993 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994
3995 SCTP_DEBUG_PRINTK("sctp_destroy_sock(sk: %p)\n", sk);
3996
3997 /* Release our hold on the endpoint. */
Michio Honda9f7d6532011-04-26 19:32:51 +09003998 sp = sctp_sk(sk);
3999 if (sp->do_auto_asconf) {
4000 sp->do_auto_asconf = 0;
4001 list_del(&sp->auto_asconf_list);
4002 }
4003 sctp_endpoint_free(sp->ep);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004004 local_bh_disable();
Vlad Yasevich81419d82010-04-28 08:47:20 +00004005 percpu_counter_dec(&sctp_sockets_allocated);
Eric Dumazet9a57f7f2008-11-17 02:41:00 -08004006 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004007 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008}
4009
4010/* API 4.1.7 shutdown() - TCP Style Syntax
4011 * int shutdown(int socket, int how);
4012 *
4013 * sd - the socket descriptor of the association to be closed.
4014 * how - Specifies the type of shutdown. The values are
4015 * as follows:
4016 * SHUT_RD
4017 * Disables further receive operations. No SCTP
4018 * protocol action is taken.
4019 * SHUT_WR
4020 * Disables further send operations, and initiates
4021 * the SCTP shutdown sequence.
4022 * SHUT_RDWR
4023 * Disables further send and receive operations
4024 * and initiates the SCTP shutdown sequence.
4025 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004026static void sctp_shutdown(struct sock *sk, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00004028 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 struct sctp_endpoint *ep;
4030 struct sctp_association *asoc;
4031
4032 if (!sctp_style(sk, TCP))
4033 return;
4034
4035 if (how & SEND_SHUTDOWN) {
4036 ep = sctp_sk(sk)->ep;
4037 if (!list_empty(&ep->asocs)) {
4038 asoc = list_entry(ep->asocs.next,
4039 struct sctp_association, asocs);
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00004040 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 }
4042 }
4043}
4044
4045/* 7.2.1 Association Status (SCTP_STATUS)
4046
4047 * Applications can retrieve current status information about an
4048 * association, including association state, peer receiver window size,
4049 * number of unacked data chunks, and number of data chunks pending
4050 * receipt. This information is read-only.
4051 */
4052static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
4053 char __user *optval,
4054 int __user *optlen)
4055{
4056 struct sctp_status status;
4057 struct sctp_association *asoc = NULL;
4058 struct sctp_transport *transport;
4059 sctp_assoc_t associd;
4060 int retval = 0;
4061
Neil Horman408f22e2007-06-16 14:03:45 -04004062 if (len < sizeof(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063 retval = -EINVAL;
4064 goto out;
4065 }
4066
Neil Horman408f22e2007-06-16 14:03:45 -04004067 len = sizeof(status);
4068 if (copy_from_user(&status, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069 retval = -EFAULT;
4070 goto out;
4071 }
4072
4073 associd = status.sstat_assoc_id;
4074 asoc = sctp_id2assoc(sk, associd);
4075 if (!asoc) {
4076 retval = -EINVAL;
4077 goto out;
4078 }
4079
4080 transport = asoc->peer.primary_path;
4081
4082 status.sstat_assoc_id = sctp_assoc2id(asoc);
4083 status.sstat_state = asoc->state;
4084 status.sstat_rwnd = asoc->peer.rwnd;
4085 status.sstat_unackdata = asoc->unack_data;
4086
4087 status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
4088 status.sstat_instrms = asoc->c.sinit_max_instreams;
4089 status.sstat_outstrms = asoc->c.sinit_num_ostreams;
4090 status.sstat_fragmentation_point = asoc->frag_point;
4091 status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Al Viro8cec6b82006-11-20 17:23:01 -08004092 memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
4093 transport->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094 /* Map ipv4 address into v4-mapped-on-v6 address. */
4095 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk),
4096 (union sctp_addr *)&status.sstat_primary.spinfo_address);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004097 status.sstat_primary.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098 status.sstat_primary.spinfo_cwnd = transport->cwnd;
4099 status.sstat_primary.spinfo_srtt = transport->srtt;
4100 status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08004101 status.sstat_primary.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102
Frank Filz3f7a87d2005-06-20 13:14:57 -07004103 if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
4104 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
4105
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 if (put_user(len, optlen)) {
4107 retval = -EFAULT;
4108 goto out;
4109 }
4110
4111 SCTP_DEBUG_PRINTK("sctp_getsockopt_sctp_status(%d): %d %d %d\n",
4112 len, status.sstat_state, status.sstat_rwnd,
4113 status.sstat_assoc_id);
4114
4115 if (copy_to_user(optval, &status, len)) {
4116 retval = -EFAULT;
4117 goto out;
4118 }
4119
4120out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00004121 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122}
4123
4124
4125/* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
4126 *
4127 * Applications can retrieve information about a specific peer address
4128 * of an association, including its reachability state, congestion
4129 * window, and retransmission timer values. This information is
4130 * read-only.
4131 */
4132static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
4133 char __user *optval,
4134 int __user *optlen)
4135{
4136 struct sctp_paddrinfo pinfo;
4137 struct sctp_transport *transport;
4138 int retval = 0;
4139
Neil Horman408f22e2007-06-16 14:03:45 -04004140 if (len < sizeof(pinfo)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 retval = -EINVAL;
4142 goto out;
4143 }
4144
Neil Horman408f22e2007-06-16 14:03:45 -04004145 len = sizeof(pinfo);
4146 if (copy_from_user(&pinfo, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147 retval = -EFAULT;
4148 goto out;
4149 }
4150
4151 transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
4152 pinfo.spinfo_assoc_id);
4153 if (!transport)
4154 return -EINVAL;
4155
4156 pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004157 pinfo.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158 pinfo.spinfo_cwnd = transport->cwnd;
4159 pinfo.spinfo_srtt = transport->srtt;
4160 pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08004161 pinfo.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162
Frank Filz3f7a87d2005-06-20 13:14:57 -07004163 if (pinfo.spinfo_state == SCTP_UNKNOWN)
4164 pinfo.spinfo_state = SCTP_ACTIVE;
4165
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166 if (put_user(len, optlen)) {
4167 retval = -EFAULT;
4168 goto out;
4169 }
4170
4171 if (copy_to_user(optval, &pinfo, len)) {
4172 retval = -EFAULT;
4173 goto out;
4174 }
4175
4176out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00004177 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178}
4179
4180/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
4181 *
4182 * This option is a on/off flag. If enabled no SCTP message
4183 * fragmentation will be performed. Instead if a message being sent
4184 * exceeds the current PMTU size, the message will NOT be sent and
4185 * instead a error will be indicated to the user.
4186 */
4187static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
4188 char __user *optval, int __user *optlen)
4189{
4190 int val;
4191
4192 if (len < sizeof(int))
4193 return -EINVAL;
4194
4195 len = sizeof(int);
4196 val = (sctp_sk(sk)->disable_fragments == 1);
4197 if (put_user(len, optlen))
4198 return -EFAULT;
4199 if (copy_to_user(optval, &val, len))
4200 return -EFAULT;
4201 return 0;
4202}
4203
4204/* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
4205 *
4206 * This socket option is used to specify various notifications and
4207 * ancillary data the user wishes to receive.
4208 */
4209static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
4210 int __user *optlen)
4211{
Thomas Grafacdd5982012-04-03 22:17:53 +00004212 if (len <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213 return -EINVAL;
Thomas Grafacdd5982012-04-03 22:17:53 +00004214 if (len > sizeof(struct sctp_event_subscribe))
4215 len = sizeof(struct sctp_event_subscribe);
Neil Horman408f22e2007-06-16 14:03:45 -04004216 if (put_user(len, optlen))
4217 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218 if (copy_to_user(optval, &sctp_sk(sk)->subscribe, len))
4219 return -EFAULT;
4220 return 0;
4221}
4222
4223/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
4224 *
4225 * This socket option is applicable to the UDP-style socket only. When
4226 * set it will cause associations that are idle for more than the
4227 * specified number of seconds to automatically close. An association
4228 * being idle is defined an association that has NOT sent or received
4229 * user data. The special value of '0' indicates that no automatic
4230 * close of any associations should be performed. The option expects an
4231 * integer defining the number of seconds of idle time before an
4232 * association is closed.
4233 */
4234static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
4235{
4236 /* Applicable to UDP-style socket only */
4237 if (sctp_style(sk, TCP))
4238 return -EOPNOTSUPP;
Neil Horman408f22e2007-06-16 14:03:45 -04004239 if (len < sizeof(int))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004241 len = sizeof(int);
4242 if (put_user(len, optlen))
4243 return -EFAULT;
4244 if (copy_to_user(optval, &sctp_sk(sk)->autoclose, sizeof(int)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245 return -EFAULT;
4246 return 0;
4247}
4248
4249/* Helper routine to branch off an association to a new socket. */
Benjamin Poirier0343c552012-03-08 05:55:58 +00004250int sctp_do_peeloff(struct sock *sk, sctp_assoc_t id, struct socket **sockp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251{
Benjamin Poirier0343c552012-03-08 05:55:58 +00004252 struct sctp_association *asoc = sctp_id2assoc(sk, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 struct socket *sock;
Vlad Yasevichd570ee42007-05-15 16:32:39 -04004254 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255 int err = 0;
4256
Benjamin Poirier0343c552012-03-08 05:55:58 +00004257 if (!asoc)
4258 return -EINVAL;
4259
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260 /* An association cannot be branched off from an already peeled-off
4261 * socket, nor is this supported for tcp style sockets.
4262 */
4263 if (!sctp_style(sk, UDP))
4264 return -EINVAL;
4265
4266 /* Create a new socket. */
4267 err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
4268 if (err < 0)
4269 return err;
4270
Vlad Yasevich914e1c82009-02-13 08:33:44 +00004271 sctp_copy_sock(sock->sk, sk, asoc);
Vlad Yasevich4f444302006-10-30 18:54:32 -08004272
4273 /* Make peeled-off sockets more like 1-1 accepted sockets.
4274 * Set the daddr and initialize id to something more random
4275 */
Vlad Yasevichd570ee42007-05-15 16:32:39 -04004276 af = sctp_get_af_specific(asoc->peer.primary_addr.sa.sa_family);
4277 af->to_sk_daddr(&asoc->peer.primary_addr, sk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00004278
4279 /* Populate the fields of the newsk from the oldsk and migrate the
4280 * asoc to the newsk.
4281 */
4282 sctp_sock_migrate(sk, sock->sk, asoc, SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
Vlad Yasevich4f444302006-10-30 18:54:32 -08004283
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 *sockp = sock;
4285
4286 return err;
4287}
Benjamin Poirier0343c552012-03-08 05:55:58 +00004288EXPORT_SYMBOL(sctp_do_peeloff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289
4290static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
4291{
4292 sctp_peeloff_arg_t peeloff;
4293 struct socket *newsock;
Al Viro56b31d12012-08-18 00:25:51 -04004294 struct file *newfile;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296
Neil Horman408f22e2007-06-16 14:03:45 -04004297 if (len < sizeof(sctp_peeloff_arg_t))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004299 len = sizeof(sctp_peeloff_arg_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 if (copy_from_user(&peeloff, optval, len))
4301 return -EFAULT;
4302
Benjamin Poirier0343c552012-03-08 05:55:58 +00004303 retval = sctp_do_peeloff(sk, peeloff.associd, &newsock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 if (retval < 0)
4305 goto out;
4306
4307 /* Map the socket to an unused fd that can be returned to the user. */
Al Viro56b31d12012-08-18 00:25:51 -04004308 retval = get_unused_fd();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 if (retval < 0) {
4310 sock_release(newsock);
4311 goto out;
4312 }
4313
Linus Torvaldsaab174f2012-10-02 20:25:04 -07004314 newfile = sock_alloc_file(newsock, 0, NULL);
Al Viro56b31d12012-08-18 00:25:51 -04004315 if (unlikely(IS_ERR(newfile))) {
4316 put_unused_fd(retval);
4317 sock_release(newsock);
4318 return PTR_ERR(newfile);
4319 }
4320
Benjamin Poirier0343c552012-03-08 05:55:58 +00004321 SCTP_DEBUG_PRINTK("%s: sk: %p newsk: %p sd: %d\n",
4322 __func__, sk, newsock->sk, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323
4324 /* Return the fd mapped to the new socket. */
Al Viro56b31d12012-08-18 00:25:51 -04004325 if (put_user(len, optlen)) {
4326 fput(newfile);
4327 put_unused_fd(retval);
Neil Horman408f22e2007-06-16 14:03:45 -04004328 return -EFAULT;
Al Viro56b31d12012-08-18 00:25:51 -04004329 }
4330 peeloff.sd = retval;
4331 if (copy_to_user(optval, &peeloff, len)) {
4332 fput(newfile);
4333 put_unused_fd(retval);
4334 return -EFAULT;
4335 }
4336 fd_install(retval, newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337out:
4338 return retval;
4339}
4340
4341/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
4342 *
4343 * Applications can enable or disable heartbeats for any peer address of
4344 * an association, modify an address's heartbeat interval, force a
4345 * heartbeat to be sent immediately, and adjust the address's maximum
4346 * number of retransmissions sent before an address is considered
4347 * unreachable. The following structure is used to access and modify an
4348 * address's parameters:
4349 *
4350 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08004351 * sctp_assoc_t spp_assoc_id;
4352 * struct sockaddr_storage spp_address;
4353 * uint32_t spp_hbinterval;
4354 * uint16_t spp_pathmaxrxt;
4355 * uint32_t spp_pathmtu;
4356 * uint32_t spp_sackdelay;
4357 * uint32_t spp_flags;
4358 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08004360 * spp_assoc_id - (one-to-many style socket) This is filled in the
4361 * application, and identifies the association for
4362 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363 * spp_address - This specifies which address is of interest.
4364 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08004365 * in milliseconds. If a value of zero
4366 * is present in this field then no changes are to
4367 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 * spp_pathmaxrxt - This contains the maximum number of
4369 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08004370 * considered unreachable. If a value of zero
4371 * is present in this field then no changes are to
4372 * be made to this parameter.
4373 * spp_pathmtu - When Path MTU discovery is disabled the value
4374 * specified here will be the "fixed" path mtu.
4375 * Note that if the spp_address field is empty
4376 * then all associations on this address will
4377 * have this fixed path mtu set upon them.
4378 *
4379 * spp_sackdelay - When delayed sack is enabled, this value specifies
4380 * the number of milliseconds that sacks will be delayed
4381 * for. This value will apply to all addresses of an
4382 * association if the spp_address field is empty. Note
4383 * also, that if delayed sack is enabled and this
4384 * value is set to 0, no change is made to the last
4385 * recorded delayed sack timer value.
4386 *
4387 * spp_flags - These flags are used to control various features
4388 * on an association. The flag field may contain
4389 * zero or more of the following options.
4390 *
4391 * SPP_HB_ENABLE - Enable heartbeats on the
4392 * specified address. Note that if the address
4393 * field is empty all addresses for the association
4394 * have heartbeats enabled upon them.
4395 *
4396 * SPP_HB_DISABLE - Disable heartbeats on the
4397 * speicifed address. Note that if the address
4398 * field is empty all addresses for the association
4399 * will have their heartbeats disabled. Note also
4400 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
4401 * mutually exclusive, only one of these two should
4402 * be specified. Enabling both fields will have
4403 * undetermined results.
4404 *
4405 * SPP_HB_DEMAND - Request a user initiated heartbeat
4406 * to be made immediately.
4407 *
4408 * SPP_PMTUD_ENABLE - This field will enable PMTU
4409 * discovery upon the specified address. Note that
4410 * if the address feild is empty then all addresses
4411 * on the association are effected.
4412 *
4413 * SPP_PMTUD_DISABLE - This field will disable PMTU
4414 * discovery upon the specified address. Note that
4415 * if the address feild is empty then all addresses
4416 * on the association are effected. Not also that
4417 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
4418 * exclusive. Enabling both will have undetermined
4419 * results.
4420 *
4421 * SPP_SACKDELAY_ENABLE - Setting this flag turns
4422 * on delayed sack. The time specified in spp_sackdelay
4423 * is used to specify the sack delay for this address. Note
4424 * that if spp_address is empty then all addresses will
4425 * enable delayed sack and take on the sack delay
4426 * value specified in spp_sackdelay.
4427 * SPP_SACKDELAY_DISABLE - Setting this flag turns
4428 * off delayed sack. If the spp_address field is blank then
4429 * delayed sack is disabled for the entire association. Note
4430 * also that this field is mutually exclusive to
4431 * SPP_SACKDELAY_ENABLE, setting both will have undefined
4432 * results.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 */
4434static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
Frank Filz52ccb8e2005-12-22 11:36:46 -08004435 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436{
Frank Filz52ccb8e2005-12-22 11:36:46 -08004437 struct sctp_paddrparams params;
4438 struct sctp_transport *trans = NULL;
4439 struct sctp_association *asoc = NULL;
4440 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441
Neil Horman408f22e2007-06-16 14:03:45 -04004442 if (len < sizeof(struct sctp_paddrparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004444 len = sizeof(struct sctp_paddrparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445 if (copy_from_user(&params, optval, len))
4446 return -EFAULT;
4447
Frank Filz52ccb8e2005-12-22 11:36:46 -08004448 /* If an address other than INADDR_ANY is specified, and
4449 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450 */
Vlad Yasevich52cae8f2008-08-18 10:34:34 -04004451 if (!sctp_is_any(sk, ( union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08004452 trans = sctp_addr_id2transport(sk, &params.spp_address,
4453 params.spp_assoc_id);
4454 if (!trans) {
4455 SCTP_DEBUG_PRINTK("Failed no transport\n");
4456 return -EINVAL;
4457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 }
4459
Frank Filz52ccb8e2005-12-22 11:36:46 -08004460 /* Get association, if assoc_id != 0 and the socket is a one
4461 * to many style socket, and an association was not found, then
4462 * the id was invalid.
4463 */
4464 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
4465 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP)) {
4466 SCTP_DEBUG_PRINTK("Failed no association\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08004468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469
Frank Filz52ccb8e2005-12-22 11:36:46 -08004470 if (trans) {
4471 /* Fetch transport values. */
4472 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
4473 params.spp_pathmtu = trans->pathmtu;
4474 params.spp_pathmaxrxt = trans->pathmaxrxt;
4475 params.spp_sackdelay = jiffies_to_msecs(trans->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476
Frank Filz52ccb8e2005-12-22 11:36:46 -08004477 /*draft-11 doesn't say what to return in spp_flags*/
4478 params.spp_flags = trans->param_flags;
4479 } else if (asoc) {
4480 /* Fetch association values. */
4481 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
4482 params.spp_pathmtu = asoc->pathmtu;
4483 params.spp_pathmaxrxt = asoc->pathmaxrxt;
4484 params.spp_sackdelay = jiffies_to_msecs(asoc->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485
Frank Filz52ccb8e2005-12-22 11:36:46 -08004486 /*draft-11 doesn't say what to return in spp_flags*/
4487 params.spp_flags = asoc->param_flags;
4488 } else {
4489 /* Fetch socket values. */
4490 params.spp_hbinterval = sp->hbinterval;
4491 params.spp_pathmtu = sp->pathmtu;
4492 params.spp_sackdelay = sp->sackdelay;
4493 params.spp_pathmaxrxt = sp->pathmaxrxt;
4494
4495 /*draft-11 doesn't say what to return in spp_flags*/
4496 params.spp_flags = sp->param_flags;
4497 }
4498
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499 if (copy_to_user(optval, &params, len))
4500 return -EFAULT;
4501
4502 if (put_user(len, optlen))
4503 return -EFAULT;
4504
4505 return 0;
4506}
4507
Wei Yongjund364d922008-05-09 15:13:26 -07004508/*
4509 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08004510 *
Wei Yongjund364d922008-05-09 15:13:26 -07004511 * This option will effect the way delayed acks are performed. This
4512 * option allows you to get or set the delayed ack time, in
4513 * milliseconds. It also allows changing the delayed ack frequency.
4514 * Changing the frequency to 1 disables the delayed sack algorithm. If
4515 * the assoc_id is 0, then this sets or gets the endpoints default
4516 * values. If the assoc_id field is non-zero, then the set or get
4517 * effects the specified association for the one to many model (the
4518 * assoc_id field is ignored by the one to one model). Note that if
4519 * sack_delay or sack_freq are 0 when setting this option, then the
4520 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08004521 *
Wei Yongjund364d922008-05-09 15:13:26 -07004522 * struct sctp_sack_info {
4523 * sctp_assoc_t sack_assoc_id;
4524 * uint32_t sack_delay;
4525 * uint32_t sack_freq;
4526 * };
Frank Filz77086102005-12-22 11:37:30 -08004527 *
Wei Yongjund364d922008-05-09 15:13:26 -07004528 * sack_assoc_id - This parameter, indicates which association the user
4529 * is performing an action upon. Note that if this field's value is
4530 * zero then the endpoints default value is changed (effecting future
4531 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08004532 *
Wei Yongjund364d922008-05-09 15:13:26 -07004533 * sack_delay - This parameter contains the number of milliseconds that
4534 * the user is requesting the delayed ACK timer be set to. Note that
4535 * this value is defined in the standard to be between 200 and 500
4536 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08004537 *
Wei Yongjund364d922008-05-09 15:13:26 -07004538 * sack_freq - This parameter contains the number of packets that must
4539 * be received before a sack is sent without waiting for the delay
4540 * timer to expire. The default value for this is 2, setting this
4541 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08004542 */
Wei Yongjund364d922008-05-09 15:13:26 -07004543static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
Frank Filz77086102005-12-22 11:37:30 -08004544 char __user *optval,
4545 int __user *optlen)
4546{
Wei Yongjund364d922008-05-09 15:13:26 -07004547 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08004548 struct sctp_association *asoc = NULL;
4549 struct sctp_sock *sp = sctp_sk(sk);
4550
Wei Yongjund364d922008-05-09 15:13:26 -07004551 if (len >= sizeof(struct sctp_sack_info)) {
4552 len = sizeof(struct sctp_sack_info);
4553
4554 if (copy_from_user(&params, optval, len))
4555 return -EFAULT;
4556 } else if (len == sizeof(struct sctp_assoc_value)) {
Joe Perches145ce502010-08-24 13:21:08 +00004557 pr_warn("Use of struct sctp_assoc_value in delayed_ack socket option deprecated\n");
4558 pr_warn("Use struct sctp_sack_info instead\n");
Wei Yongjund364d922008-05-09 15:13:26 -07004559 if (copy_from_user(&params, optval, len))
4560 return -EFAULT;
4561 } else
Frank Filz77086102005-12-22 11:37:30 -08004562 return - EINVAL;
4563
Wei Yongjund364d922008-05-09 15:13:26 -07004564 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08004565 * to many style socket, and an association was not found, then
4566 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004567 */
Wei Yongjund364d922008-05-09 15:13:26 -07004568 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
4569 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08004570 return -EINVAL;
4571
4572 if (asoc) {
4573 /* Fetch association values. */
Wei Yongjund364d922008-05-09 15:13:26 -07004574 if (asoc->param_flags & SPP_SACKDELAY_ENABLE) {
4575 params.sack_delay = jiffies_to_msecs(
Frank Filz77086102005-12-22 11:37:30 -08004576 asoc->sackdelay);
Wei Yongjund364d922008-05-09 15:13:26 -07004577 params.sack_freq = asoc->sackfreq;
4578
4579 } else {
4580 params.sack_delay = 0;
4581 params.sack_freq = 1;
4582 }
Frank Filz77086102005-12-22 11:37:30 -08004583 } else {
4584 /* Fetch socket values. */
Wei Yongjund364d922008-05-09 15:13:26 -07004585 if (sp->param_flags & SPP_SACKDELAY_ENABLE) {
4586 params.sack_delay = sp->sackdelay;
4587 params.sack_freq = sp->sackfreq;
4588 } else {
4589 params.sack_delay = 0;
4590 params.sack_freq = 1;
4591 }
Frank Filz77086102005-12-22 11:37:30 -08004592 }
4593
4594 if (copy_to_user(optval, &params, len))
4595 return -EFAULT;
4596
4597 if (put_user(len, optlen))
4598 return -EFAULT;
4599
4600 return 0;
4601}
4602
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
4604 *
4605 * Applications can specify protocol parameters for the default association
4606 * initialization. The option name argument to setsockopt() and getsockopt()
4607 * is SCTP_INITMSG.
4608 *
4609 * Setting initialization parameters is effective only on an unconnected
4610 * socket (for UDP-style sockets only future associations are effected
4611 * by the change). With TCP-style sockets, this option is inherited by
4612 * sockets derived from a listener socket.
4613 */
4614static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
4615{
Neil Horman408f22e2007-06-16 14:03:45 -04004616 if (len < sizeof(struct sctp_initmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004618 len = sizeof(struct sctp_initmsg);
4619 if (put_user(len, optlen))
4620 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621 if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
4622 return -EFAULT;
4623 return 0;
4624}
4625
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004627static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
4628 char __user *optval, int __user *optlen)
4629{
4630 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004631 int cnt = 0;
4632 struct sctp_getaddrs getaddrs;
4633 struct sctp_transport *from;
4634 void __user *to;
4635 union sctp_addr temp;
4636 struct sctp_sock *sp = sctp_sk(sk);
4637 int addrlen;
4638 size_t space_left;
4639 int bytes_copied;
4640
4641 if (len < sizeof(struct sctp_getaddrs))
4642 return -EINVAL;
4643
4644 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
4645 return -EFAULT;
4646
4647 /* For UDP-style sockets, id specifies the association to query. */
4648 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
4649 if (!asoc)
4650 return -EINVAL;
4651
4652 to = optval + offsetof(struct sctp_getaddrs,addrs);
Neil Horman186e2342007-06-18 19:59:16 -04004653 space_left = len - offsetof(struct sctp_getaddrs,addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004654
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07004655 list_for_each_entry(from, &asoc->peer.transport_addr_list,
4656 transports) {
Al Virob3f5b3b2006-11-20 17:22:43 -08004657 memcpy(&temp, &from->ipaddr, sizeof(temp));
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004658 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp, &temp);
Vlad Yasevicha5f4cea2010-04-30 21:42:42 -04004659 addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004660 if (space_left < addrlen)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004661 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004662 if (copy_to_user(to, &temp, addrlen))
4663 return -EFAULT;
4664 to += addrlen;
4665 cnt++;
4666 space_left -= addrlen;
4667 }
4668
4669 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
4670 return -EFAULT;
4671 bytes_copied = ((char __user *)to) - optval;
4672 if (put_user(bytes_copied, optlen))
4673 return -EFAULT;
4674
4675 return 0;
4676}
4677
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004678static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to,
4679 size_t space_left, int *bytes_copied)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004680{
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004681 struct sctp_sockaddr_entry *addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004682 union sctp_addr temp;
4683 int cnt = 0;
4684 int addrlen;
Eric W. Biederman4db67e82012-08-06 08:42:04 +00004685 struct net *net = sock_net(sk);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004686
Vlad Yasevich29303542007-09-16 16:02:12 -07004687 rcu_read_lock();
Eric W. Biederman4db67e82012-08-06 08:42:04 +00004688 list_for_each_entry_rcu(addr, &net->sctp.local_addr_list, list) {
Vlad Yasevich29303542007-09-16 16:02:12 -07004689 if (!addr->valid)
4690 continue;
4691
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004692 if ((PF_INET == sk->sk_family) &&
Al Viro6244be42006-11-20 17:21:44 -08004693 (AF_INET6 == addr->a.sa.sa_family))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004694 continue;
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07004695 if ((PF_INET6 == sk->sk_family) &&
4696 inet_v6_ipv6only(sk) &&
4697 (AF_INET == addr->a.sa.sa_family))
4698 continue;
Al Viro6244be42006-11-20 17:21:44 -08004699 memcpy(&temp, &addr->a, sizeof(temp));
Vlad Yasevichb46ae362008-01-28 14:25:36 -05004700 if (!temp.v4.sin_port)
4701 temp.v4.sin_port = htons(port);
4702
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004703 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk),
4704 &temp);
4705 addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len;
Vlad Yasevich29303542007-09-16 16:02:12 -07004706 if (space_left < addrlen) {
4707 cnt = -ENOMEM;
4708 break;
4709 }
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004710 memcpy(to, &temp, addrlen);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08004711
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004712 to += addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004713 cnt ++;
4714 space_left -= addrlen;
Vlad Yasevich3663c302007-07-03 12:43:12 -04004715 *bytes_copied += addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004716 }
Vlad Yasevich29303542007-09-16 16:02:12 -07004717 rcu_read_unlock();
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004718
4719 return cnt;
4720}
4721
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004723static int sctp_getsockopt_local_addrs(struct sock *sk, int len,
4724 char __user *optval, int __user *optlen)
4725{
4726 struct sctp_bind_addr *bp;
4727 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004728 int cnt = 0;
4729 struct sctp_getaddrs getaddrs;
4730 struct sctp_sockaddr_entry *addr;
4731 void __user *to;
4732 union sctp_addr temp;
4733 struct sctp_sock *sp = sctp_sk(sk);
4734 int addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004735 int err = 0;
4736 size_t space_left;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004737 int bytes_copied = 0;
4738 void *addrs;
Vlad Yasevich70b57b82007-05-09 13:51:31 -07004739 void *buf;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004740
Neil Horman408f22e2007-06-16 14:03:45 -04004741 if (len < sizeof(struct sctp_getaddrs))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004742 return -EINVAL;
4743
4744 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
4745 return -EFAULT;
4746
4747 /*
4748 * For UDP-style sockets, id specifies the association to query.
4749 * If the id field is set to the value '0' then the locally bound
4750 * addresses are returned without regard to any particular
4751 * association.
4752 */
4753 if (0 == getaddrs.assoc_id) {
4754 bp = &sctp_sk(sk)->ep->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004755 } else {
4756 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
4757 if (!asoc)
4758 return -EINVAL;
4759 bp = &asoc->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004760 }
4761
4762 to = optval + offsetof(struct sctp_getaddrs,addrs);
Neil Horman186e2342007-06-18 19:59:16 -04004763 space_left = len - offsetof(struct sctp_getaddrs,addrs);
4764
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004765 addrs = kmalloc(space_left, GFP_KERNEL);
4766 if (!addrs)
4767 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004768
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004769 /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
4770 * addresses from the global local address list.
4771 */
4772 if (sctp_list_single_entry(&bp->address_list)) {
4773 addr = list_entry(bp->address_list.next,
4774 struct sctp_sockaddr_entry, list);
Vlad Yasevich52cae8f2008-08-18 10:34:34 -04004775 if (sctp_is_any(sk, &addr->a)) {
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004776 cnt = sctp_copy_laddrs(sk, bp->port, addrs,
4777 space_left, &bytes_copied);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004778 if (cnt < 0) {
4779 err = cnt;
Vlad Yasevich559cf712007-09-16 16:03:28 -07004780 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004781 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004782 goto copy_getaddrs;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004783 }
4784 }
4785
Vlad Yasevich70b57b82007-05-09 13:51:31 -07004786 buf = addrs;
Vlad Yasevich559cf712007-09-16 16:03:28 -07004787 /* Protection on the bound address list is not needed since
4788 * in the socket option context we hold a socket lock and
4789 * thus the bound address list can't change.
4790 */
4791 list_for_each_entry(addr, &bp->address_list, list) {
Al Viro6244be42006-11-20 17:21:44 -08004792 memcpy(&temp, &addr->a, sizeof(temp));
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004793 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp, &temp);
4794 addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004795 if (space_left < addrlen) {
4796 err = -ENOMEM; /*fixme: right error?*/
Vlad Yasevich559cf712007-09-16 16:03:28 -07004797 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004798 }
Vlad Yasevich70b57b82007-05-09 13:51:31 -07004799 memcpy(buf, &temp, addrlen);
4800 buf += addrlen;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004801 bytes_copied += addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004802 cnt ++;
4803 space_left -= addrlen;
4804 }
4805
4806copy_getaddrs:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004807 if (copy_to_user(to, addrs, bytes_copied)) {
4808 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02004809 goto out;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004810 }
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04004811 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num)) {
4812 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02004813 goto out;
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04004814 }
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004815 if (put_user(bytes_copied, optlen))
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04004816 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02004817out:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07004818 kfree(addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07004819 return err;
4820}
4821
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
4823 *
4824 * Requests that the local SCTP stack use the enclosed peer address as
4825 * the association primary. The enclosed address must be one of the
4826 * association peer's addresses.
4827 */
4828static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
4829 char __user *optval, int __user *optlen)
4830{
4831 struct sctp_prim prim;
4832 struct sctp_association *asoc;
4833 struct sctp_sock *sp = sctp_sk(sk);
4834
Neil Horman408f22e2007-06-16 14:03:45 -04004835 if (len < sizeof(struct sctp_prim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836 return -EINVAL;
4837
Neil Horman408f22e2007-06-16 14:03:45 -04004838 len = sizeof(struct sctp_prim);
4839
4840 if (copy_from_user(&prim, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841 return -EFAULT;
4842
4843 asoc = sctp_id2assoc(sk, prim.ssp_assoc_id);
4844 if (!asoc)
4845 return -EINVAL;
4846
4847 if (!asoc->peer.primary_path)
4848 return -ENOTCONN;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004849
Al Viro8cec6b82006-11-20 17:23:01 -08004850 memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr,
4851 asoc->peer.primary_path->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852
4853 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp,
4854 (union sctp_addr *)&prim.ssp_addr);
4855
Neil Horman408f22e2007-06-16 14:03:45 -04004856 if (put_user(len, optlen))
4857 return -EFAULT;
4858 if (copy_to_user(optval, &prim, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 return -EFAULT;
4860
4861 return 0;
4862}
4863
4864/*
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004865 * 7.1.11 Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866 *
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004867 * Requests that the local endpoint set the specified Adaptation Layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868 * Indication parameter for all future INIT and INIT-ACK exchanges.
4869 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004870static int sctp_getsockopt_adaptation_layer(struct sock *sk, int len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871 char __user *optval, int __user *optlen)
4872{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004873 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874
Neil Horman408f22e2007-06-16 14:03:45 -04004875 if (len < sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876 return -EINVAL;
4877
Neil Horman408f22e2007-06-16 14:03:45 -04004878 len = sizeof(struct sctp_setadaptation);
4879
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004880 adaptation.ssb_adaptation_ind = sctp_sk(sk)->adaptation_ind;
Neil Horman408f22e2007-06-16 14:03:45 -04004881
4882 if (put_user(len, optlen))
4883 return -EFAULT;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004884 if (copy_to_user(optval, &adaptation, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004885 return -EFAULT;
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07004886
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887 return 0;
4888}
4889
4890/*
4891 *
4892 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
4893 *
4894 * Applications that wish to use the sendto() system call may wish to
4895 * specify a default set of parameters that would normally be supplied
4896 * through the inclusion of ancillary data. This socket option allows
4897 * such an application to set the default sctp_sndrcvinfo structure.
4898
4899
4900 * The application that wishes to use this socket option simply passes
4901 * in to this call the sctp_sndrcvinfo structure defined in Section
4902 * 5.2.2) The input parameters accepted by this call include
4903 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
4904 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
4905 * to this call if the caller is using the UDP model.
4906 *
4907 * For getsockopt, it get the default sctp_sndrcvinfo structure.
4908 */
4909static int sctp_getsockopt_default_send_param(struct sock *sk,
4910 int len, char __user *optval,
4911 int __user *optlen)
4912{
4913 struct sctp_sndrcvinfo info;
4914 struct sctp_association *asoc;
4915 struct sctp_sock *sp = sctp_sk(sk);
4916
Neil Horman408f22e2007-06-16 14:03:45 -04004917 if (len < sizeof(struct sctp_sndrcvinfo))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004919
4920 len = sizeof(struct sctp_sndrcvinfo);
4921
4922 if (copy_from_user(&info, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923 return -EFAULT;
4924
4925 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
4926 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
4927 return -EINVAL;
4928
4929 if (asoc) {
4930 info.sinfo_stream = asoc->default_stream;
4931 info.sinfo_flags = asoc->default_flags;
4932 info.sinfo_ppid = asoc->default_ppid;
4933 info.sinfo_context = asoc->default_context;
4934 info.sinfo_timetolive = asoc->default_timetolive;
4935 } else {
4936 info.sinfo_stream = sp->default_stream;
4937 info.sinfo_flags = sp->default_flags;
4938 info.sinfo_ppid = sp->default_ppid;
4939 info.sinfo_context = sp->default_context;
4940 info.sinfo_timetolive = sp->default_timetolive;
4941 }
4942
Neil Horman408f22e2007-06-16 14:03:45 -04004943 if (put_user(len, optlen))
4944 return -EFAULT;
4945 if (copy_to_user(optval, &info, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946 return -EFAULT;
4947
4948 return 0;
4949}
4950
4951/*
4952 *
4953 * 7.1.5 SCTP_NODELAY
4954 *
4955 * Turn on/off any Nagle-like algorithm. This means that packets are
4956 * generally sent as soon as possible and no unnecessary delays are
4957 * introduced, at the cost of more packets in the network. Expects an
4958 * integer boolean flag.
4959 */
4960
4961static int sctp_getsockopt_nodelay(struct sock *sk, int len,
4962 char __user *optval, int __user *optlen)
4963{
4964 int val;
4965
4966 if (len < sizeof(int))
4967 return -EINVAL;
4968
4969 len = sizeof(int);
4970 val = (sctp_sk(sk)->nodelay == 1);
4971 if (put_user(len, optlen))
4972 return -EFAULT;
4973 if (copy_to_user(optval, &val, len))
4974 return -EFAULT;
4975 return 0;
4976}
4977
4978/*
4979 *
4980 * 7.1.1 SCTP_RTOINFO
4981 *
4982 * The protocol parameters used to initialize and bound retransmission
4983 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
4984 * and modify these parameters.
4985 * All parameters are time values, in milliseconds. A value of 0, when
4986 * modifying the parameters, indicates that the current value should not
4987 * be changed.
4988 *
4989 */
4990static int sctp_getsockopt_rtoinfo(struct sock *sk, int len,
4991 char __user *optval,
4992 int __user *optlen) {
4993 struct sctp_rtoinfo rtoinfo;
4994 struct sctp_association *asoc;
4995
Neil Horman408f22e2007-06-16 14:03:45 -04004996 if (len < sizeof (struct sctp_rtoinfo))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997 return -EINVAL;
4998
Neil Horman408f22e2007-06-16 14:03:45 -04004999 len = sizeof(struct sctp_rtoinfo);
5000
5001 if (copy_from_user(&rtoinfo, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002 return -EFAULT;
5003
5004 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
5005
5006 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
5007 return -EINVAL;
5008
5009 /* Values corresponding to the specific association. */
5010 if (asoc) {
5011 rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial);
5012 rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max);
5013 rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min);
5014 } else {
5015 /* Values corresponding to the endpoint. */
5016 struct sctp_sock *sp = sctp_sk(sk);
5017
5018 rtoinfo.srto_initial = sp->rtoinfo.srto_initial;
5019 rtoinfo.srto_max = sp->rtoinfo.srto_max;
5020 rtoinfo.srto_min = sp->rtoinfo.srto_min;
5021 }
5022
5023 if (put_user(len, optlen))
5024 return -EFAULT;
5025
5026 if (copy_to_user(optval, &rtoinfo, len))
5027 return -EFAULT;
5028
5029 return 0;
5030}
5031
5032/*
5033 *
5034 * 7.1.2 SCTP_ASSOCINFO
5035 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02005036 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037 * of the association.
5038 * Returns an error if the new association retransmission value is
5039 * greater than the sum of the retransmission value of the peer.
5040 * See [SCTP] for more information.
5041 *
5042 */
5043static int sctp_getsockopt_associnfo(struct sock *sk, int len,
5044 char __user *optval,
5045 int __user *optlen)
5046{
5047
5048 struct sctp_assocparams assocparams;
5049 struct sctp_association *asoc;
5050 struct list_head *pos;
5051 int cnt = 0;
5052
Neil Horman408f22e2007-06-16 14:03:45 -04005053 if (len < sizeof (struct sctp_assocparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054 return -EINVAL;
5055
Neil Horman408f22e2007-06-16 14:03:45 -04005056 len = sizeof(struct sctp_assocparams);
5057
5058 if (copy_from_user(&assocparams, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059 return -EFAULT;
5060
5061 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
5062
5063 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
5064 return -EINVAL;
5065
5066 /* Values correspoinding to the specific association */
Vladislav Yasevich17337212005-04-28 11:57:54 -07005067 if (asoc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068 assocparams.sasoc_asocmaxrxt = asoc->max_retrans;
5069 assocparams.sasoc_peer_rwnd = asoc->peer.rwnd;
5070 assocparams.sasoc_local_rwnd = asoc->a_rwnd;
5071 assocparams.sasoc_cookie_life = (asoc->cookie_life.tv_sec
5072 * 1000) +
5073 (asoc->cookie_life.tv_usec
5074 / 1000);
5075
5076 list_for_each(pos, &asoc->peer.transport_addr_list) {
5077 cnt ++;
5078 }
5079
5080 assocparams.sasoc_number_peer_destinations = cnt;
5081 } else {
5082 /* Values corresponding to the endpoint */
5083 struct sctp_sock *sp = sctp_sk(sk);
5084
5085 assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt;
5086 assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd;
5087 assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd;
5088 assocparams.sasoc_cookie_life =
5089 sp->assocparams.sasoc_cookie_life;
5090 assocparams.sasoc_number_peer_destinations =
5091 sp->assocparams.
5092 sasoc_number_peer_destinations;
5093 }
5094
5095 if (put_user(len, optlen))
5096 return -EFAULT;
5097
5098 if (copy_to_user(optval, &assocparams, len))
5099 return -EFAULT;
5100
5101 return 0;
5102}
5103
5104/*
5105 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
5106 *
5107 * This socket option is a boolean flag which turns on or off mapped V4
5108 * addresses. If this option is turned on and the socket is type
5109 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
5110 * If this option is turned off, then no mapping will be done of V4
5111 * addresses and a user will receive both PF_INET6 and PF_INET type
5112 * addresses on the socket.
5113 */
5114static int sctp_getsockopt_mappedv4(struct sock *sk, int len,
5115 char __user *optval, int __user *optlen)
5116{
5117 int val;
5118 struct sctp_sock *sp = sctp_sk(sk);
5119
5120 if (len < sizeof(int))
5121 return -EINVAL;
5122
5123 len = sizeof(int);
5124 val = sp->v4mapped;
5125 if (put_user(len, optlen))
5126 return -EFAULT;
5127 if (copy_to_user(optval, &val, len))
5128 return -EFAULT;
5129
5130 return 0;
5131}
5132
5133/*
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005134 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
5135 * (chapter and verse is quoted at sctp_setsockopt_context())
5136 */
5137static int sctp_getsockopt_context(struct sock *sk, int len,
5138 char __user *optval, int __user *optlen)
5139{
5140 struct sctp_assoc_value params;
5141 struct sctp_sock *sp;
5142 struct sctp_association *asoc;
5143
Neil Horman408f22e2007-06-16 14:03:45 -04005144 if (len < sizeof(struct sctp_assoc_value))
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005145 return -EINVAL;
5146
Neil Horman408f22e2007-06-16 14:03:45 -04005147 len = sizeof(struct sctp_assoc_value);
5148
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005149 if (copy_from_user(&params, optval, len))
5150 return -EFAULT;
5151
5152 sp = sctp_sk(sk);
5153
5154 if (params.assoc_id != 0) {
5155 asoc = sctp_id2assoc(sk, params.assoc_id);
5156 if (!asoc)
5157 return -EINVAL;
5158 params.assoc_value = asoc->default_rcv_context;
5159 } else {
5160 params.assoc_value = sp->default_rcv_context;
5161 }
5162
5163 if (put_user(len, optlen))
5164 return -EFAULT;
5165 if (copy_to_user(optval, &params, len))
5166 return -EFAULT;
5167
5168 return 0;
5169}
5170
5171/*
Wei Yongjune89c2092008-12-25 16:54:58 -08005172 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
5173 * This option will get or set the maximum size to put in any outgoing
5174 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175 * fragmented by SCTP into the specified size. Note that the underlying
5176 * SCTP implementation may fragment into smaller sized chunks when the
5177 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08005178 * the user. The default value for this option is '0' which indicates
5179 * the user is NOT limiting fragmentation and only the PMTU will effect
5180 * SCTP's choice of DATA chunk size. Note also that values set larger
5181 * than the maximum size of an IP datagram will effectively let SCTP
5182 * control fragmentation (i.e. the same as setting this option to 0).
5183 *
5184 * The following structure is used to access and modify this parameter:
5185 *
5186 * struct sctp_assoc_value {
5187 * sctp_assoc_t assoc_id;
5188 * uint32_t assoc_value;
5189 * };
5190 *
5191 * assoc_id: This parameter is ignored for one-to-one style sockets.
5192 * For one-to-many style sockets this parameter indicates which
5193 * association the user is performing an action upon. Note that if
5194 * this field's value is zero then the endpoints default value is
5195 * changed (effecting future associations only).
5196 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197 */
5198static int sctp_getsockopt_maxseg(struct sock *sk, int len,
5199 char __user *optval, int __user *optlen)
5200{
Wei Yongjune89c2092008-12-25 16:54:58 -08005201 struct sctp_assoc_value params;
5202 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005203
Wei Yongjune89c2092008-12-25 16:54:58 -08005204 if (len == sizeof(int)) {
Joe Perches145ce502010-08-24 13:21:08 +00005205 pr_warn("Use of int in maxseg socket option deprecated\n");
5206 pr_warn("Use struct sctp_assoc_value instead\n");
Wei Yongjune89c2092008-12-25 16:54:58 -08005207 params.assoc_id = 0;
5208 } else if (len >= sizeof(struct sctp_assoc_value)) {
5209 len = sizeof(struct sctp_assoc_value);
5210 if (copy_from_user(&params, optval, sizeof(params)))
5211 return -EFAULT;
5212 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213 return -EINVAL;
5214
Wei Yongjune89c2092008-12-25 16:54:58 -08005215 asoc = sctp_id2assoc(sk, params.assoc_id);
5216 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
5217 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218
Wei Yongjune89c2092008-12-25 16:54:58 -08005219 if (asoc)
5220 params.assoc_value = asoc->frag_point;
5221 else
5222 params.assoc_value = sctp_sk(sk)->user_frag;
5223
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224 if (put_user(len, optlen))
5225 return -EFAULT;
Wei Yongjune89c2092008-12-25 16:54:58 -08005226 if (len == sizeof(int)) {
5227 if (copy_to_user(optval, &params.assoc_value, len))
5228 return -EFAULT;
5229 } else {
5230 if (copy_to_user(optval, &params, len))
5231 return -EFAULT;
5232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233
5234 return 0;
5235}
5236
Vlad Yasevichb6e13312007-04-20 12:23:15 -07005237/*
5238 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
5239 * (chapter and verse is quoted at sctp_setsockopt_fragment_interleave())
5240 */
5241static int sctp_getsockopt_fragment_interleave(struct sock *sk, int len,
5242 char __user *optval, int __user *optlen)
5243{
5244 int val;
5245
5246 if (len < sizeof(int))
5247 return -EINVAL;
5248
5249 len = sizeof(int);
5250
5251 val = sctp_sk(sk)->frag_interleave;
5252 if (put_user(len, optlen))
5253 return -EFAULT;
5254 if (copy_to_user(optval, &val, len))
5255 return -EFAULT;
5256
5257 return 0;
5258}
5259
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07005260/*
5261 * 7.1.25. Set or Get the sctp partial delivery point
5262 * (chapter and verse is quoted at sctp_setsockopt_partial_delivery_point())
5263 */
5264static int sctp_getsockopt_partial_delivery_point(struct sock *sk, int len,
5265 char __user *optval,
5266 int __user *optlen)
5267{
YOSHIFUJI Hideaki9cbcbf42007-07-19 10:44:50 +09005268 u32 val;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07005269
5270 if (len < sizeof(u32))
5271 return -EINVAL;
5272
5273 len = sizeof(u32);
5274
5275 val = sctp_sk(sk)->pd_point;
5276 if (put_user(len, optlen))
5277 return -EFAULT;
5278 if (copy_to_user(optval, &val, len))
5279 return -EFAULT;
5280
Wei Yongjun7d743b72010-12-14 16:10:41 +00005281 return 0;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07005282}
5283
Vlad Yasevich70331572007-03-23 11:34:36 -07005284/*
5285 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
5286 * (chapter and verse is quoted at sctp_setsockopt_maxburst())
5287 */
5288static int sctp_getsockopt_maxburst(struct sock *sk, int len,
5289 char __user *optval,
5290 int __user *optlen)
5291{
Neil Horman219b99a2008-03-05 13:44:46 -08005292 struct sctp_assoc_value params;
5293 struct sctp_sock *sp;
5294 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07005295
Neil Horman219b99a2008-03-05 13:44:46 -08005296 if (len == sizeof(int)) {
Joe Perches145ce502010-08-24 13:21:08 +00005297 pr_warn("Use of int in max_burst socket option deprecated\n");
5298 pr_warn("Use struct sctp_assoc_value instead\n");
Neil Horman219b99a2008-03-05 13:44:46 -08005299 params.assoc_id = 0;
Wei Yongjunc6db93a2009-03-02 09:46:12 +00005300 } else if (len >= sizeof(struct sctp_assoc_value)) {
5301 len = sizeof(struct sctp_assoc_value);
Neil Horman219b99a2008-03-05 13:44:46 -08005302 if (copy_from_user(&params, optval, len))
5303 return -EFAULT;
5304 } else
5305 return -EINVAL;
Vlad Yasevich70331572007-03-23 11:34:36 -07005306
Neil Horman219b99a2008-03-05 13:44:46 -08005307 sp = sctp_sk(sk);
Vlad Yasevich70331572007-03-23 11:34:36 -07005308
Neil Horman219b99a2008-03-05 13:44:46 -08005309 if (params.assoc_id != 0) {
5310 asoc = sctp_id2assoc(sk, params.assoc_id);
5311 if (!asoc)
5312 return -EINVAL;
5313 params.assoc_value = asoc->max_burst;
5314 } else
5315 params.assoc_value = sp->max_burst;
5316
5317 if (len == sizeof(int)) {
5318 if (copy_to_user(optval, &params.assoc_value, len))
5319 return -EFAULT;
5320 } else {
5321 if (copy_to_user(optval, &params, len))
5322 return -EFAULT;
5323 }
5324
5325 return 0;
5326
Vlad Yasevich70331572007-03-23 11:34:36 -07005327}
5328
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005329static int sctp_getsockopt_hmac_ident(struct sock *sk, int len,
5330 char __user *optval, int __user *optlen)
5331{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005332 struct net *net = sock_net(sk);
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005333 struct sctp_hmacalgo __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005334 struct sctp_hmac_algo_param *hmacs;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005335 __u16 data_len = 0;
5336 u32 num_idents;
5337
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005338 if (!net->sctp.auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005339 return -EACCES;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005340
5341 hmacs = sctp_sk(sk)->ep->auth_hmacs_list;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005342 data_len = ntohs(hmacs->param_hdr.length) - sizeof(sctp_paramhdr_t);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005343
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005344 if (len < sizeof(struct sctp_hmacalgo) + data_len)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005345 return -EINVAL;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005346
5347 len = sizeof(struct sctp_hmacalgo) + data_len;
5348 num_idents = data_len / sizeof(u16);
5349
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005350 if (put_user(len, optlen))
5351 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005352 if (put_user(num_idents, &p->shmac_num_idents))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005353 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005354 if (copy_to_user(p->shmac_idents, hmacs->hmac_ids, data_len))
5355 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005356 return 0;
5357}
5358
5359static int sctp_getsockopt_active_key(struct sock *sk, int len,
5360 char __user *optval, int __user *optlen)
5361{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005362 struct net *net = sock_net(sk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005363 struct sctp_authkeyid val;
5364 struct sctp_association *asoc;
5365
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005366 if (!net->sctp.auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005367 return -EACCES;
5368
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005369 if (len < sizeof(struct sctp_authkeyid))
5370 return -EINVAL;
5371 if (copy_from_user(&val, optval, sizeof(struct sctp_authkeyid)))
5372 return -EFAULT;
5373
5374 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
5375 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
5376 return -EINVAL;
5377
5378 if (asoc)
5379 val.scact_keynumber = asoc->active_key_id;
5380 else
5381 val.scact_keynumber = sctp_sk(sk)->ep->active_key_id;
5382
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005383 len = sizeof(struct sctp_authkeyid);
5384 if (put_user(len, optlen))
5385 return -EFAULT;
5386 if (copy_to_user(optval, &val, len))
5387 return -EFAULT;
5388
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005389 return 0;
5390}
5391
5392static int sctp_getsockopt_peer_auth_chunks(struct sock *sk, int len,
5393 char __user *optval, int __user *optlen)
5394{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005395 struct net *net = sock_net(sk);
Al Viro411223c2007-10-14 19:21:20 +01005396 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005397 struct sctp_authchunks val;
5398 struct sctp_association *asoc;
5399 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005400 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005401 char __user *to;
5402
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005403 if (!net->sctp.auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005404 return -EACCES;
5405
5406 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005407 return -EINVAL;
5408
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005409 if (copy_from_user(&val, optval, sizeof(struct sctp_authchunks)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005410 return -EFAULT;
5411
Al Viro411223c2007-10-14 19:21:20 +01005412 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005413 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
5414 if (!asoc)
5415 return -EINVAL;
5416
5417 ch = asoc->peer.peer_chunks;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005418 if (!ch)
5419 goto num;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005420
5421 /* See if the user provided enough room for all the data */
Vlad Yasevichb40db682008-02-27 14:40:37 -05005422 num_chunks = ntohs(ch->param_hdr.length) - sizeof(sctp_paramhdr_t);
5423 if (len < num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005424 return -EINVAL;
5425
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005426 if (copy_to_user(to, ch->chunks, num_chunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005427 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005428num:
5429 len = sizeof(struct sctp_authchunks) + num_chunks;
5430 if (put_user(len, optlen)) return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05005431 if (put_user(num_chunks, &p->gauth_number_of_chunks))
5432 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005433 return 0;
5434}
5435
5436static int sctp_getsockopt_local_auth_chunks(struct sock *sk, int len,
5437 char __user *optval, int __user *optlen)
5438{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005439 struct net *net = sock_net(sk);
Al Viro411223c2007-10-14 19:21:20 +01005440 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005441 struct sctp_authchunks val;
5442 struct sctp_association *asoc;
5443 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005444 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005445 char __user *to;
5446
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005447 if (!net->sctp.auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005448 return -EACCES;
5449
5450 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005451 return -EINVAL;
5452
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005453 if (copy_from_user(&val, optval, sizeof(struct sctp_authchunks)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005454 return -EFAULT;
5455
Al Viro411223c2007-10-14 19:21:20 +01005456 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005457 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
5458 if (!asoc && val.gauth_assoc_id && sctp_style(sk, UDP))
5459 return -EINVAL;
5460
5461 if (asoc)
5462 ch = (struct sctp_chunks_param*)asoc->c.auth_chunks;
5463 else
5464 ch = sctp_sk(sk)->ep->auth_chunk_list;
5465
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005466 if (!ch)
5467 goto num;
5468
Vlad Yasevichb40db682008-02-27 14:40:37 -05005469 num_chunks = ntohs(ch->param_hdr.length) - sizeof(sctp_paramhdr_t);
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005470 if (len < sizeof(struct sctp_authchunks) + num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005471 return -EINVAL;
5472
Vlad Yasevich5e739d12008-08-21 03:34:25 -07005473 if (copy_to_user(to, ch->chunks, num_chunks))
5474 return -EFAULT;
5475num:
5476 len = sizeof(struct sctp_authchunks) + num_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005477 if (put_user(len, optlen))
5478 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05005479 if (put_user(num_chunks, &p->gauth_number_of_chunks))
5480 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005481
5482 return 0;
5483}
5484
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08005485/*
5486 * 8.2.5. Get the Current Number of Associations (SCTP_GET_ASSOC_NUMBER)
5487 * This option gets the current number of associations that are attached
5488 * to a one-to-many style socket. The option value is an uint32_t.
5489 */
5490static int sctp_getsockopt_assoc_number(struct sock *sk, int len,
5491 char __user *optval, int __user *optlen)
5492{
5493 struct sctp_sock *sp = sctp_sk(sk);
5494 struct sctp_association *asoc;
5495 u32 val = 0;
5496
5497 if (sctp_style(sk, TCP))
5498 return -EOPNOTSUPP;
5499
5500 if (len < sizeof(u32))
5501 return -EINVAL;
5502
5503 len = sizeof(u32);
5504
5505 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
5506 val++;
5507 }
5508
5509 if (put_user(len, optlen))
5510 return -EFAULT;
5511 if (copy_to_user(optval, &val, len))
5512 return -EFAULT;
5513
5514 return 0;
5515}
5516
Wei Yongjun209ba422011-04-17 17:27:08 +00005517/*
Michio Honda7dc04d72011-04-26 20:16:31 +09005518 * 8.1.23 SCTP_AUTO_ASCONF
5519 * See the corresponding setsockopt entry as description
5520 */
5521static int sctp_getsockopt_auto_asconf(struct sock *sk, int len,
5522 char __user *optval, int __user *optlen)
5523{
5524 int val = 0;
5525
5526 if (len < sizeof(int))
5527 return -EINVAL;
5528
5529 len = sizeof(int);
5530 if (sctp_sk(sk)->do_auto_asconf && sctp_is_ep_boundall(sk))
5531 val = 1;
5532 if (put_user(len, optlen))
5533 return -EFAULT;
5534 if (copy_to_user(optval, &val, len))
5535 return -EFAULT;
5536 return 0;
5537}
5538
5539/*
Wei Yongjun209ba422011-04-17 17:27:08 +00005540 * 8.2.6. Get the Current Identifiers of Associations
5541 * (SCTP_GET_ASSOC_ID_LIST)
5542 *
5543 * This option gets the current list of SCTP association identifiers of
5544 * the SCTP associations handled by a one-to-many style socket.
5545 */
5546static int sctp_getsockopt_assoc_ids(struct sock *sk, int len,
5547 char __user *optval, int __user *optlen)
5548{
5549 struct sctp_sock *sp = sctp_sk(sk);
5550 struct sctp_association *asoc;
5551 struct sctp_assoc_ids *ids;
5552 u32 num = 0;
5553
5554 if (sctp_style(sk, TCP))
5555 return -EOPNOTSUPP;
5556
5557 if (len < sizeof(struct sctp_assoc_ids))
5558 return -EINVAL;
5559
5560 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
5561 num++;
5562 }
5563
5564 if (len < sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num)
5565 return -EINVAL;
5566
5567 len = sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num;
5568
5569 ids = kmalloc(len, GFP_KERNEL);
5570 if (unlikely(!ids))
5571 return -ENOMEM;
5572
5573 ids->gaids_number_of_ids = num;
5574 num = 0;
5575 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
5576 ids->gaids_assoc_id[num++] = asoc->assoc_id;
5577 }
5578
5579 if (put_user(len, optlen) || copy_to_user(optval, ids, len)) {
5580 kfree(ids);
5581 return -EFAULT;
5582 }
5583
5584 kfree(ids);
5585 return 0;
5586}
5587
Neil Horman5aa93bc2012-07-21 07:56:07 +00005588/*
5589 * SCTP_PEER_ADDR_THLDS
5590 *
5591 * This option allows us to fetch the partially failed threshold for one or all
5592 * transports in an association. See Section 6.1 of:
5593 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
5594 */
5595static int sctp_getsockopt_paddr_thresholds(struct sock *sk,
5596 char __user *optval,
5597 int len,
5598 int __user *optlen)
5599{
5600 struct sctp_paddrthlds val;
5601 struct sctp_transport *trans;
5602 struct sctp_association *asoc;
5603
5604 if (len < sizeof(struct sctp_paddrthlds))
5605 return -EINVAL;
5606 len = sizeof(struct sctp_paddrthlds);
5607 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval, len))
5608 return -EFAULT;
5609
5610 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
5611 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
5612 if (!asoc)
5613 return -ENOENT;
5614
5615 val.spt_pathpfthld = asoc->pf_retrans;
5616 val.spt_pathmaxrxt = asoc->pathmaxrxt;
5617 } else {
5618 trans = sctp_addr_id2transport(sk, &val.spt_address,
5619 val.spt_assoc_id);
5620 if (!trans)
5621 return -ENOENT;
5622
5623 val.spt_pathmaxrxt = trans->pathmaxrxt;
5624 val.spt_pathpfthld = trans->pf_retrans;
5625 }
5626
5627 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
5628 return -EFAULT;
5629
5630 return 0;
5631}
5632
Michele Baldessari196d6752012-12-01 04:49:42 +00005633/*
5634 * SCTP_GET_ASSOC_STATS
5635 *
5636 * This option retrieves local per endpoint statistics. It is modeled
5637 * after OpenSolaris' implementation
5638 */
5639static int sctp_getsockopt_assoc_stats(struct sock *sk, int len,
5640 char __user *optval,
5641 int __user *optlen)
5642{
5643 struct sctp_assoc_stats sas;
5644 struct sctp_association *asoc = NULL;
5645
5646 /* User must provide at least the assoc id */
5647 if (len < sizeof(sctp_assoc_t))
5648 return -EINVAL;
5649
Guenter Roeck726bc6b2013-02-27 10:57:31 +00005650 /* Allow the struct to grow and fill in as much as possible */
5651 len = min_t(size_t, len, sizeof(sas));
5652
Michele Baldessari196d6752012-12-01 04:49:42 +00005653 if (copy_from_user(&sas, optval, len))
5654 return -EFAULT;
5655
5656 asoc = sctp_id2assoc(sk, sas.sas_assoc_id);
5657 if (!asoc)
5658 return -EINVAL;
5659
5660 sas.sas_rtxchunks = asoc->stats.rtxchunks;
5661 sas.sas_gapcnt = asoc->stats.gapcnt;
5662 sas.sas_outofseqtsns = asoc->stats.outofseqtsns;
5663 sas.sas_osacks = asoc->stats.osacks;
5664 sas.sas_isacks = asoc->stats.isacks;
5665 sas.sas_octrlchunks = asoc->stats.octrlchunks;
5666 sas.sas_ictrlchunks = asoc->stats.ictrlchunks;
5667 sas.sas_oodchunks = asoc->stats.oodchunks;
5668 sas.sas_iodchunks = asoc->stats.iodchunks;
5669 sas.sas_ouodchunks = asoc->stats.ouodchunks;
5670 sas.sas_iuodchunks = asoc->stats.iuodchunks;
5671 sas.sas_idupchunks = asoc->stats.idupchunks;
5672 sas.sas_opackets = asoc->stats.opackets;
5673 sas.sas_ipackets = asoc->stats.ipackets;
5674
5675 /* New high max rto observed, will return 0 if not a single
5676 * RTO update took place. obs_rto_ipaddr will be bogus
5677 * in such a case
5678 */
5679 sas.sas_maxrto = asoc->stats.max_obs_rto;
5680 memcpy(&sas.sas_obs_rto_ipaddr, &asoc->stats.obs_rto_ipaddr,
5681 sizeof(struct sockaddr_storage));
5682
5683 /* Mark beginning of a new observation period */
5684 asoc->stats.max_obs_rto = asoc->rto_min;
5685
Michele Baldessari196d6752012-12-01 04:49:42 +00005686 if (put_user(len, optlen))
5687 return -EFAULT;
5688
5689 SCTP_DEBUG_PRINTK("sctp_getsockopt_assoc_stat(%d): %d\n",
5690 len, sas.sas_assoc_id);
5691
5692 if (copy_to_user(optval, &sas, len))
5693 return -EFAULT;
5694
5695 return 0;
5696}
5697
Daniel Borkmanndda91922013-06-17 11:40:05 +02005698static int sctp_getsockopt(struct sock *sk, int level, int optname,
5699 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700{
5701 int retval = 0;
5702 int len;
5703
Frank Filz3f7a87d2005-06-20 13:14:57 -07005704 SCTP_DEBUG_PRINTK("sctp_getsockopt(sk: %p... optname: %d)\n",
5705 sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706
5707 /* I can hardly begin to describe how wrong this is. This is
5708 * so broken as to be worse than useless. The API draft
5709 * REALLY is NOT helpful here... I am not convinced that the
5710 * semantics of getsockopt() with a level OTHER THAN SOL_SCTP
5711 * are at all well-founded.
5712 */
5713 if (level != SOL_SCTP) {
5714 struct sctp_af *af = sctp_sk(sk)->pf->af;
5715
5716 retval = af->getsockopt(sk, level, optname, optval, optlen);
5717 return retval;
5718 }
5719
5720 if (get_user(len, optlen))
5721 return -EFAULT;
5722
5723 sctp_lock_sock(sk);
5724
5725 switch (optname) {
5726 case SCTP_STATUS:
5727 retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen);
5728 break;
5729 case SCTP_DISABLE_FRAGMENTS:
5730 retval = sctp_getsockopt_disable_fragments(sk, len, optval,
5731 optlen);
5732 break;
5733 case SCTP_EVENTS:
5734 retval = sctp_getsockopt_events(sk, len, optval, optlen);
5735 break;
5736 case SCTP_AUTOCLOSE:
5737 retval = sctp_getsockopt_autoclose(sk, len, optval, optlen);
5738 break;
5739 case SCTP_SOCKOPT_PEELOFF:
5740 retval = sctp_getsockopt_peeloff(sk, len, optval, optlen);
5741 break;
5742 case SCTP_PEER_ADDR_PARAMS:
5743 retval = sctp_getsockopt_peer_addr_params(sk, len, optval,
5744 optlen);
5745 break;
Shan Wei4580ccc2011-01-18 22:39:00 +00005746 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07005747 retval = sctp_getsockopt_delayed_ack(sk, len, optval,
Frank Filz77086102005-12-22 11:37:30 -08005748 optlen);
5749 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750 case SCTP_INITMSG:
5751 retval = sctp_getsockopt_initmsg(sk, len, optval, optlen);
5752 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753 case SCTP_GET_PEER_ADDRS:
5754 retval = sctp_getsockopt_peer_addrs(sk, len, optval,
5755 optlen);
5756 break;
5757 case SCTP_GET_LOCAL_ADDRS:
5758 retval = sctp_getsockopt_local_addrs(sk, len, optval,
5759 optlen);
5760 break;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04005761 case SCTP_SOCKOPT_CONNECTX3:
5762 retval = sctp_getsockopt_connectx3(sk, len, optval, optlen);
5763 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005764 case SCTP_DEFAULT_SEND_PARAM:
5765 retval = sctp_getsockopt_default_send_param(sk, len,
5766 optval, optlen);
5767 break;
5768 case SCTP_PRIMARY_ADDR:
5769 retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen);
5770 break;
5771 case SCTP_NODELAY:
5772 retval = sctp_getsockopt_nodelay(sk, len, optval, optlen);
5773 break;
5774 case SCTP_RTOINFO:
5775 retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen);
5776 break;
5777 case SCTP_ASSOCINFO:
5778 retval = sctp_getsockopt_associnfo(sk, len, optval, optlen);
5779 break;
5780 case SCTP_I_WANT_MAPPED_V4_ADDR:
5781 retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen);
5782 break;
5783 case SCTP_MAXSEG:
5784 retval = sctp_getsockopt_maxseg(sk, len, optval, optlen);
5785 break;
5786 case SCTP_GET_PEER_ADDR_INFO:
5787 retval = sctp_getsockopt_peer_addr_info(sk, len, optval,
5788 optlen);
5789 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005790 case SCTP_ADAPTATION_LAYER:
5791 retval = sctp_getsockopt_adaptation_layer(sk, len, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005792 optlen);
5793 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005794 case SCTP_CONTEXT:
5795 retval = sctp_getsockopt_context(sk, len, optval, optlen);
5796 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07005797 case SCTP_FRAGMENT_INTERLEAVE:
5798 retval = sctp_getsockopt_fragment_interleave(sk, len, optval,
5799 optlen);
5800 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07005801 case SCTP_PARTIAL_DELIVERY_POINT:
5802 retval = sctp_getsockopt_partial_delivery_point(sk, len, optval,
5803 optlen);
5804 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07005805 case SCTP_MAX_BURST:
5806 retval = sctp_getsockopt_maxburst(sk, len, optval, optlen);
5807 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07005808 case SCTP_AUTH_KEY:
5809 case SCTP_AUTH_CHUNK:
5810 case SCTP_AUTH_DELETE_KEY:
5811 retval = -EOPNOTSUPP;
5812 break;
5813 case SCTP_HMAC_IDENT:
5814 retval = sctp_getsockopt_hmac_ident(sk, len, optval, optlen);
5815 break;
5816 case SCTP_AUTH_ACTIVE_KEY:
5817 retval = sctp_getsockopt_active_key(sk, len, optval, optlen);
5818 break;
5819 case SCTP_PEER_AUTH_CHUNKS:
5820 retval = sctp_getsockopt_peer_auth_chunks(sk, len, optval,
5821 optlen);
5822 break;
5823 case SCTP_LOCAL_AUTH_CHUNKS:
5824 retval = sctp_getsockopt_local_auth_chunks(sk, len, optval,
5825 optlen);
5826 break;
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08005827 case SCTP_GET_ASSOC_NUMBER:
5828 retval = sctp_getsockopt_assoc_number(sk, len, optval, optlen);
5829 break;
Wei Yongjun209ba422011-04-17 17:27:08 +00005830 case SCTP_GET_ASSOC_ID_LIST:
5831 retval = sctp_getsockopt_assoc_ids(sk, len, optval, optlen);
5832 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09005833 case SCTP_AUTO_ASCONF:
5834 retval = sctp_getsockopt_auto_asconf(sk, len, optval, optlen);
5835 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00005836 case SCTP_PEER_ADDR_THLDS:
5837 retval = sctp_getsockopt_paddr_thresholds(sk, optval, len, optlen);
5838 break;
Michele Baldessari196d6752012-12-01 04:49:42 +00005839 case SCTP_GET_ASSOC_STATS:
5840 retval = sctp_getsockopt_assoc_stats(sk, len, optval, optlen);
5841 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842 default:
5843 retval = -ENOPROTOOPT;
5844 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07005845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846
5847 sctp_release_sock(sk);
5848 return retval;
5849}
5850
5851static void sctp_hash(struct sock *sk)
5852{
5853 /* STUB */
5854}
5855
5856static void sctp_unhash(struct sock *sk)
5857{
5858 /* STUB */
5859}
5860
5861/* Check if port is acceptable. Possibly find first available port.
5862 *
5863 * The port hash table (contained in the 'global' SCTP protocol storage
5864 * returned by struct sctp_protocol *sctp_get_protocol()). The hash
5865 * table is an array of 4096 lists (sctp_bind_hashbucket). Each
5866 * list (the list number is the port number hashed out, so as you
5867 * would expect from a hash function, all the ports in a given list have
5868 * such a number that hashes out to the same list number; you were
5869 * expecting that, right?); so each list has a set of ports, with a
5870 * link to the socket (struct sock) that uses it, the port number and
5871 * a fastreuse flag (FIXME: NPI ipg).
5872 */
5873static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00005874 struct sctp_bind_hashbucket *head, struct net *, unsigned short snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875
5876static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
5877{
5878 struct sctp_bind_hashbucket *head; /* hash list */
Sasha Levinb67bfe02013-02-27 17:06:00 -08005879 struct sctp_bind_bucket *pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005880 unsigned short snum;
5881 int ret;
5882
Al Viro04afd8b2006-11-20 17:02:01 -08005883 snum = ntohs(addr->v4.sin_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884
5885 SCTP_DEBUG_PRINTK("sctp_get_port() begins, snum=%d\n", snum);
5886 sctp_local_bh_disable();
5887
5888 if (snum == 0) {
Stephen Hemminger06393002007-10-10 17:30:18 -07005889 /* Search for an available port. */
Stephen Hemminger227b60f2007-10-10 17:30:46 -07005890 int low, high, remaining, index;
5891 unsigned int rover;
5892
5893 inet_get_local_port_range(&low, &high);
5894 remaining = (high - low) + 1;
5895 rover = net_random() % remaining + low;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897 do {
5898 rover++;
5899 if ((rover < low) || (rover > high))
5900 rover = low;
Amerigo Wange3826f12010-05-05 00:27:06 +00005901 if (inet_is_reserved_local_port(rover))
5902 continue;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00005903 index = sctp_phashfn(sock_net(sk), rover);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904 head = &sctp_port_hashtable[index];
5905 sctp_spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08005906 sctp_for_each_hentry(pp, &head->chain)
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00005907 if ((pp->port == rover) &&
5908 net_eq(sock_net(sk), pp->net))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909 goto next;
5910 break;
5911 next:
5912 sctp_spin_unlock(&head->lock);
5913 } while (--remaining > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914
5915 /* Exhausted local port range during search? */
5916 ret = 1;
5917 if (remaining <= 0)
5918 goto fail;
5919
5920 /* OK, here is the one we will use. HEAD (the port
5921 * hash table list entry) is non-NULL and we hold it's
5922 * mutex.
5923 */
5924 snum = rover;
5925 } else {
5926 /* We are given an specific port number; we verify
5927 * that it is not being used. If it is used, we will
5928 * exahust the search in the hash list corresponding
5929 * to the port number (snum) - we detect that with the
5930 * port iterator, pp being NULL.
5931 */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00005932 head = &sctp_port_hashtable[sctp_phashfn(sock_net(sk), snum)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005933 sctp_spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08005934 sctp_for_each_hentry(pp, &head->chain) {
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00005935 if ((pp->port == snum) && net_eq(pp->net, sock_net(sk)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936 goto pp_found;
5937 }
5938 }
5939 pp = NULL;
5940 goto pp_not_found;
5941pp_found:
5942 if (!hlist_empty(&pp->owner)) {
5943 /* We had a port hash table hit - there is an
5944 * available port (pp != NULL) and it is being
5945 * used by other socket (pp->owner not empty); that other
5946 * socket is going to be sk2.
5947 */
5948 int reuse = sk->sk_reuse;
5949 struct sock *sk2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950
5951 SCTP_DEBUG_PRINTK("sctp_get_port() found a possible match\n");
Vlad Yasevichce5325c2007-05-04 13:34:49 -07005952 if (pp->fastreuse && sk->sk_reuse &&
5953 sk->sk_state != SCTP_SS_LISTENING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954 goto success;
5955
5956 /* Run through the list of sockets bound to the port
5957 * (pp->port) [via the pointers bind_next and
5958 * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one,
5959 * we get the endpoint they describe and run through
5960 * the endpoint's list of IP (v4 or v6) addresses,
5961 * comparing each of the addresses with the address of
5962 * the socket sk. If we find a match, then that means
5963 * that this port/socket (sk) combination are already
5964 * in an endpoint.
5965 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08005966 sk_for_each_bound(sk2, &pp->owner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967 struct sctp_endpoint *ep2;
5968 ep2 = sctp_sk(sk2)->ep;
5969
Vlad Yasevich4e540642008-07-18 23:06:32 -07005970 if (sk == sk2 ||
5971 (reuse && sk2->sk_reuse &&
5972 sk2->sk_state != SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973 continue;
5974
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07005975 if (sctp_bind_addr_conflict(&ep2->base.bind_addr, addr,
5976 sctp_sk(sk2), sctp_sk(sk))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005977 ret = (long)sk2;
5978 goto fail_unlock;
5979 }
5980 }
5981 SCTP_DEBUG_PRINTK("sctp_get_port(): Found a match\n");
5982 }
5983pp_not_found:
5984 /* If there was a hash table miss, create a new port. */
5985 ret = 1;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00005986 if (!pp && !(pp = sctp_bucket_create(head, sock_net(sk), snum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987 goto fail_unlock;
5988
5989 /* In either case (hit or miss), make sure fastreuse is 1 only
5990 * if sk->sk_reuse is too (that is, if the caller requested
5991 * SO_REUSEADDR on this socket -sk-).
5992 */
Vlad Yasevichce5325c2007-05-04 13:34:49 -07005993 if (hlist_empty(&pp->owner)) {
5994 if (sk->sk_reuse && sk->sk_state != SCTP_SS_LISTENING)
5995 pp->fastreuse = 1;
5996 else
5997 pp->fastreuse = 0;
5998 } else if (pp->fastreuse &&
5999 (!sk->sk_reuse || sk->sk_state == SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000 pp->fastreuse = 0;
6001
6002 /* We are set, so fill up all the data in the hash table
6003 * entry, tie the socket list information with the rest of the
6004 * sockets FIXME: Blurry, NPI (ipg).
6005 */
6006success:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007 if (!sctp_sk(sk)->bind_hash) {
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006008 inet_sk(sk)->inet_num = snum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009 sk_add_bind_node(sk, &pp->owner);
6010 sctp_sk(sk)->bind_hash = pp;
6011 }
6012 ret = 0;
6013
6014fail_unlock:
6015 sctp_spin_unlock(&head->lock);
6016
6017fail:
6018 sctp_local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019 return ret;
6020}
6021
6022/* Assign a 'snum' port to the socket. If snum == 0, an ephemeral
6023 * port is requested.
6024 */
6025static int sctp_get_port(struct sock *sk, unsigned short snum)
6026{
6027 long ret;
6028 union sctp_addr addr;
6029 struct sctp_af *af = sctp_sk(sk)->pf->af;
6030
6031 /* Set up a dummy address struct from the sk. */
6032 af->from_sk(&addr, sk);
6033 addr.v4.sin_port = htons(snum);
6034
6035 /* Note: sk->sk_num gets filled in if ephemeral port request. */
6036 ret = sctp_get_port_local(sk, &addr);
6037
Eric Dumazeta02cec22010-09-22 20:43:57 +00006038 return ret ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006039}
6040
6041/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006042 * Move a socket to LISTENING state.
6043 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02006044static int sctp_listen_start(struct sock *sk, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045{
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00006046 struct sctp_sock *sp = sctp_sk(sk);
6047 struct sctp_endpoint *ep = sp->ep;
Herbert Xu1b489e12006-08-20 15:07:14 +10006048 struct crypto_hash *tfm = NULL;
Neil Horman3c681982012-10-24 09:20:03 +00006049 char alg[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006050
6051 /* Allocate HMAC for generating cookie. */
Neil Horman3c681982012-10-24 09:20:03 +00006052 if (!sp->hmac && sp->sctp_hmac_alg) {
6053 sprintf(alg, "hmac(%s)", sp->sctp_hmac_alg);
6054 tfm = crypto_alloc_hash(alg, 0, CRYPTO_ALG_ASYNC);
Vlad Yasevich8dc49842007-05-09 13:50:20 -07006055 if (IS_ERR(tfm)) {
Joe Perchese87cc472012-05-13 21:56:26 +00006056 net_info_ratelimited("failed to load transform for %s: %ld\n",
Neil Horman3c681982012-10-24 09:20:03 +00006057 sp->sctp_hmac_alg, PTR_ERR(tfm));
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00006058 return -ENOSYS;
6059 }
6060 sctp_sk(sk)->hmac = tfm;
6061 }
6062
6063 /*
6064 * If a bind() or sctp_bindx() is not called prior to a listen()
6065 * call that allows new associations to be accepted, the system
6066 * picks an ephemeral port and will choose an address set equivalent
6067 * to binding with a wildcard address.
6068 *
6069 * This is not currently spelled out in the SCTP sockets
6070 * extensions draft, but follows the practice as seen in TCP
6071 * sockets.
6072 *
6073 */
6074 sk->sk_state = SCTP_SS_LISTENING;
6075 if (!ep->base.bind_addr.port) {
6076 if (sctp_autobind(sk))
6077 return -EAGAIN;
6078 } else {
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006079 if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00006080 sk->sk_state = SCTP_SS_CLOSED;
6081 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006082 }
6083 }
6084
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00006085 sk->sk_max_ack_backlog = backlog;
6086 sctp_hash_endpoint(ep);
6087 return 0;
6088}
6089
6090/*
6091 * 4.1.3 / 5.1.3 listen()
6092 *
6093 * By default, new associations are not accepted for UDP style sockets.
6094 * An application uses listen() to mark a socket as being able to
6095 * accept new associations.
6096 *
6097 * On TCP style sockets, applications use listen() to ready the SCTP
6098 * endpoint for accepting inbound associations.
6099 *
6100 * On both types of endpoints a backlog of '0' disables listening.
6101 *
6102 * Move a socket to LISTENING state.
6103 */
6104int sctp_inet_listen(struct socket *sock, int backlog)
6105{
6106 struct sock *sk = sock->sk;
6107 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
6108 int err = -EINVAL;
6109
6110 if (unlikely(backlog < 0))
6111 return err;
6112
6113 sctp_lock_sock(sk);
6114
6115 /* Peeled-off sockets are not allowed to listen(). */
6116 if (sctp_style(sk, UDP_HIGH_BANDWIDTH))
6117 goto out;
6118
6119 if (sock->state != SS_UNCONNECTED)
6120 goto out;
6121
6122 /* If backlog is zero, disable listening. */
6123 if (!backlog) {
6124 if (sctp_sstate(sk, CLOSED))
6125 goto out;
6126
6127 err = 0;
6128 sctp_unhash_endpoint(ep);
6129 sk->sk_state = SCTP_SS_CLOSED;
6130 if (sk->sk_reuse)
6131 sctp_sk(sk)->bind_hash->fastreuse = 1;
6132 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07006133 }
6134
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00006135 /* If we are already listening, just update the backlog */
6136 if (sctp_sstate(sk, LISTENING))
6137 sk->sk_max_ack_backlog = backlog;
6138 else {
6139 err = sctp_listen_start(sk, backlog);
6140 if (err)
6141 goto out;
6142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006143
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00006144 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006145out:
6146 sctp_release_sock(sk);
6147 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148}
6149
6150/*
6151 * This function is done by modeling the current datagram_poll() and the
6152 * tcp_poll(). Note that, based on these implementations, we don't
6153 * lock the socket in this function, even though it seems that,
6154 * ideally, locking or some other mechanisms can be used to ensure
Neil Horman9bffc4a2005-12-19 14:24:40 -08006155 * the integrity of the counters (sndbuf and wmem_alloc) used
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156 * in this place. We assume that we don't need locks either until proven
6157 * otherwise.
6158 *
6159 * Another thing to note is that we include the Async I/O support
6160 * here, again, by modeling the current TCP/UDP code. We don't have
6161 * a good way to test with it yet.
6162 */
6163unsigned int sctp_poll(struct file *file, struct socket *sock, poll_table *wait)
6164{
6165 struct sock *sk = sock->sk;
6166 struct sctp_sock *sp = sctp_sk(sk);
6167 unsigned int mask;
6168
Eric Dumazetaa395142010-04-20 13:03:51 +00006169 poll_wait(file, sk_sleep(sk), wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006170
6171 /* A TCP-style listening socket becomes readable when the accept queue
6172 * is not empty.
6173 */
6174 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
6175 return (!list_empty(&sp->ep->asocs)) ?
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09006176 (POLLIN | POLLRDNORM) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006177
6178 mask = 0;
6179
6180 /* Is there any exceptional events? */
6181 if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
Keller, Jacob E7d4c04f2013-03-28 11:19:25 +00006182 mask |= POLLERR |
6183 sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? POLLPRI : 0;
Davide Libenzif348d702006-03-25 03:07:39 -08006184 if (sk->sk_shutdown & RCV_SHUTDOWN)
Eric Dumazetdb409802010-09-06 11:13:50 +00006185 mask |= POLLRDHUP | POLLIN | POLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006186 if (sk->sk_shutdown == SHUTDOWN_MASK)
6187 mask |= POLLHUP;
6188
6189 /* Is it readable? Reconsider this code with TCP-style support. */
Eric Dumazetdb409802010-09-06 11:13:50 +00006190 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006191 mask |= POLLIN | POLLRDNORM;
6192
6193 /* The association is either gone or not ready. */
6194 if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED))
6195 return mask;
6196
6197 /* Is it writable? */
6198 if (sctp_writeable(sk)) {
6199 mask |= POLLOUT | POLLWRNORM;
6200 } else {
6201 set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
6202 /*
6203 * Since the socket is not locked, the buffer
6204 * might be made available after the writeable check and
6205 * before the bit is set. This could cause a lost I/O
6206 * signal. tcp_poll() has a race breaker for this race
6207 * condition. Based on their implementation, we put
6208 * in the following code to cover it as well.
6209 */
6210 if (sctp_writeable(sk))
6211 mask |= POLLOUT | POLLWRNORM;
6212 }
6213 return mask;
6214}
6215
6216/********************************************************************
6217 * 2nd Level Abstractions
6218 ********************************************************************/
6219
6220static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00006221 struct sctp_bind_hashbucket *head, struct net *net, unsigned short snum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222{
6223 struct sctp_bind_bucket *pp;
6224
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08006225 pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006226 if (pp) {
Li Zefan935a7f62008-04-10 01:58:06 -07006227 SCTP_DBG_OBJCNT_INC(bind_bucket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006228 pp->port = snum;
6229 pp->fastreuse = 0;
6230 INIT_HLIST_HEAD(&pp->owner);
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00006231 pp->net = net;
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05006232 hlist_add_head(&pp->node, &head->chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006233 }
6234 return pp;
6235}
6236
6237/* Caller must hold hashbucket lock for this tb with local BH disabled */
6238static void sctp_bucket_destroy(struct sctp_bind_bucket *pp)
6239{
Sridhar Samudrala37fa6872006-07-21 14:45:47 -07006240 if (pp && hlist_empty(&pp->owner)) {
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05006241 __hlist_del(&pp->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006242 kmem_cache_free(sctp_bucket_cachep, pp);
6243 SCTP_DBG_OBJCNT_DEC(bind_bucket);
6244 }
6245}
6246
6247/* Release this socket's reference to a local port. */
6248static inline void __sctp_put_port(struct sock *sk)
6249{
6250 struct sctp_bind_hashbucket *head =
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00006251 &sctp_port_hashtable[sctp_phashfn(sock_net(sk),
6252 inet_sk(sk)->inet_num)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253 struct sctp_bind_bucket *pp;
6254
6255 sctp_spin_lock(&head->lock);
6256 pp = sctp_sk(sk)->bind_hash;
6257 __sk_del_bind_node(sk);
6258 sctp_sk(sk)->bind_hash = NULL;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006259 inet_sk(sk)->inet_num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006260 sctp_bucket_destroy(pp);
6261 sctp_spin_unlock(&head->lock);
6262}
6263
6264void sctp_put_port(struct sock *sk)
6265{
6266 sctp_local_bh_disable();
6267 __sctp_put_port(sk);
6268 sctp_local_bh_enable();
6269}
6270
6271/*
6272 * The system picks an ephemeral port and choose an address set equivalent
6273 * to binding with a wildcard address.
6274 * One of those addresses will be the primary address for the association.
6275 * This automatically enables the multihoming capability of SCTP.
6276 */
6277static int sctp_autobind(struct sock *sk)
6278{
6279 union sctp_addr autoaddr;
6280 struct sctp_af *af;
Al Viro6fbfa9f2006-11-20 17:24:53 -08006281 __be16 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282
6283 /* Initialize a local sockaddr structure to INADDR_ANY. */
6284 af = sctp_sk(sk)->pf->af;
6285
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006286 port = htons(inet_sk(sk)->inet_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006287 af->inaddr_any(&autoaddr, port);
6288
6289 return sctp_do_bind(sk, &autoaddr, af->sockaddr_len);
6290}
6291
6292/* Parse out IPPROTO_SCTP CMSG headers. Perform only minimal validation.
6293 *
6294 * From RFC 2292
6295 * 4.2 The cmsghdr Structure *
6296 *
6297 * When ancillary data is sent or received, any number of ancillary data
6298 * objects can be specified by the msg_control and msg_controllen members of
6299 * the msghdr structure, because each object is preceded by
6300 * a cmsghdr structure defining the object's length (the cmsg_len member).
6301 * Historically Berkeley-derived implementations have passed only one object
6302 * at a time, but this API allows multiple objects to be
6303 * passed in a single call to sendmsg() or recvmsg(). The following example
6304 * shows two ancillary data objects in a control buffer.
6305 *
6306 * |<--------------------------- msg_controllen -------------------------->|
6307 * | |
6308 *
6309 * |<----- ancillary data object ----->|<----- ancillary data object ----->|
6310 *
6311 * |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->|
6312 * | | |
6313 *
6314 * |<---------- cmsg_len ---------->| |<--------- cmsg_len ----------->| |
6315 *
6316 * |<--------- CMSG_LEN() --------->| |<-------- CMSG_LEN() ---------->| |
6317 * | | | | |
6318 *
6319 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
6320 * |cmsg_|cmsg_|cmsg_|XX| |XX|cmsg_|cmsg_|cmsg_|XX| |XX|
6321 *
6322 * |len |level|type |XX|cmsg_data[]|XX|len |level|type |XX|cmsg_data[]|XX|
6323 *
6324 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
6325 * ^
6326 * |
6327 *
6328 * msg_control
6329 * points here
6330 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02006331static int sctp_msghdr_parse(const struct msghdr *msg, sctp_cmsgs_t *cmsgs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006332{
6333 struct cmsghdr *cmsg;
Vlad Yasevichab38fb02008-04-12 18:40:06 -07006334 struct msghdr *my_msg = (struct msghdr *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006335
6336 for (cmsg = CMSG_FIRSTHDR(msg);
6337 cmsg != NULL;
Vlad Yasevichab38fb02008-04-12 18:40:06 -07006338 cmsg = CMSG_NXTHDR(my_msg, cmsg)) {
6339 if (!CMSG_OK(my_msg, cmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006340 return -EINVAL;
6341
6342 /* Should we parse this header or ignore? */
6343 if (cmsg->cmsg_level != IPPROTO_SCTP)
6344 continue;
6345
6346 /* Strictly check lengths following example in SCM code. */
6347 switch (cmsg->cmsg_type) {
6348 case SCTP_INIT:
6349 /* SCTP Socket API Extension
6350 * 5.2.1 SCTP Initiation Structure (SCTP_INIT)
6351 *
6352 * This cmsghdr structure provides information for
6353 * initializing new SCTP associations with sendmsg().
6354 * The SCTP_INITMSG socket option uses this same data
6355 * structure. This structure is not used for
6356 * recvmsg().
6357 *
6358 * cmsg_level cmsg_type cmsg_data[]
6359 * ------------ ------------ ----------------------
6360 * IPPROTO_SCTP SCTP_INIT struct sctp_initmsg
6361 */
6362 if (cmsg->cmsg_len !=
6363 CMSG_LEN(sizeof(struct sctp_initmsg)))
6364 return -EINVAL;
6365 cmsgs->init = (struct sctp_initmsg *)CMSG_DATA(cmsg);
6366 break;
6367
6368 case SCTP_SNDRCV:
6369 /* SCTP Socket API Extension
6370 * 5.2.2 SCTP Header Information Structure(SCTP_SNDRCV)
6371 *
6372 * This cmsghdr structure specifies SCTP options for
6373 * sendmsg() and describes SCTP header information
6374 * about a received message through recvmsg().
6375 *
6376 * cmsg_level cmsg_type cmsg_data[]
6377 * ------------ ------------ ----------------------
6378 * IPPROTO_SCTP SCTP_SNDRCV struct sctp_sndrcvinfo
6379 */
6380 if (cmsg->cmsg_len !=
6381 CMSG_LEN(sizeof(struct sctp_sndrcvinfo)))
6382 return -EINVAL;
6383
6384 cmsgs->info =
6385 (struct sctp_sndrcvinfo *)CMSG_DATA(cmsg);
6386
6387 /* Minimally, validate the sinfo_flags. */
6388 if (cmsgs->info->sinfo_flags &
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07006389 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
6390 SCTP_ABORT | SCTP_EOF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006391 return -EINVAL;
6392 break;
6393
6394 default:
6395 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07006396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006397 }
6398 return 0;
6399}
6400
6401/*
6402 * Wait for a packet..
6403 * Note: This function is the same function as in core/datagram.c
6404 * with a few modifications to make lksctp work.
6405 */
6406static int sctp_wait_for_packet(struct sock * sk, int *err, long *timeo_p)
6407{
6408 int error;
6409 DEFINE_WAIT(wait);
6410
Eric Dumazetaa395142010-04-20 13:03:51 +00006411 prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006412
6413 /* Socket errors? */
6414 error = sock_error(sk);
6415 if (error)
6416 goto out;
6417
6418 if (!skb_queue_empty(&sk->sk_receive_queue))
6419 goto ready;
6420
6421 /* Socket shut down? */
6422 if (sk->sk_shutdown & RCV_SHUTDOWN)
6423 goto out;
6424
6425 /* Sequenced packets can come disconnected. If so we report the
6426 * problem.
6427 */
6428 error = -ENOTCONN;
6429
6430 /* Is there a good reason to think that we may receive some data? */
6431 if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING))
6432 goto out;
6433
6434 /* Handle signals. */
6435 if (signal_pending(current))
6436 goto interrupted;
6437
6438 /* Let another process have a go. Since we are going to sleep
6439 * anyway. Note: This may cause odd behaviors if the message
6440 * does not fit in the user's buffer, but this seems to be the
6441 * only way to honor MSG_DONTWAIT realistically.
6442 */
6443 sctp_release_sock(sk);
6444 *timeo_p = schedule_timeout(*timeo_p);
6445 sctp_lock_sock(sk);
6446
6447ready:
Eric Dumazetaa395142010-04-20 13:03:51 +00006448 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006449 return 0;
6450
6451interrupted:
6452 error = sock_intr_errno(*timeo_p);
6453
6454out:
Eric Dumazetaa395142010-04-20 13:03:51 +00006455 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006456 *err = error;
6457 return error;
6458}
6459
6460/* Receive a datagram.
6461 * Note: This is pretty much the same routine as in core/datagram.c
6462 * with a few changes to make lksctp work.
6463 */
6464static struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags,
6465 int noblock, int *err)
6466{
6467 int error;
6468 struct sk_buff *skb;
6469 long timeo;
6470
Linus Torvalds1da177e2005-04-16 15:20:36 -07006471 timeo = sock_rcvtimeo(sk, noblock);
6472
6473 SCTP_DEBUG_PRINTK("Timeout: timeo: %ld, MAX: %ld.\n",
6474 timeo, MAX_SCHEDULE_TIMEOUT);
6475
6476 do {
6477 /* Again only user level code calls this function,
6478 * so nothing interrupt level
6479 * will suddenly eat the receive_queue.
6480 *
6481 * Look at current nfs client by the way...
David Shwatrz8917a3c2010-12-02 09:01:55 +00006482 * However, this function was correct in any case. 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006483 */
6484 if (flags & MSG_PEEK) {
Herbert Xu1e061ab2005-06-18 22:56:42 -07006485 spin_lock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486 skb = skb_peek(&sk->sk_receive_queue);
6487 if (skb)
6488 atomic_inc(&skb->users);
Herbert Xu1e061ab2005-06-18 22:56:42 -07006489 spin_unlock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006490 } else {
6491 skb = skb_dequeue(&sk->sk_receive_queue);
6492 }
6493
6494 if (skb)
6495 return skb;
6496
Neil Horman6736dc32005-12-02 20:30:06 -08006497 /* Caller is allowed not to check sk->sk_err before calling. */
6498 error = sock_error(sk);
6499 if (error)
6500 goto no_packet;
6501
Linus Torvalds1da177e2005-04-16 15:20:36 -07006502 if (sk->sk_shutdown & RCV_SHUTDOWN)
6503 break;
6504
6505 /* User doesn't want to wait. */
6506 error = -EAGAIN;
6507 if (!timeo)
6508 goto no_packet;
6509 } while (sctp_wait_for_packet(sk, err, &timeo) == 0);
6510
6511 return NULL;
6512
6513no_packet:
6514 *err = error;
6515 return NULL;
6516}
6517
6518/* If sndbuf has changed, wake up per association sndbuf waiters. */
6519static void __sctp_write_space(struct sctp_association *asoc)
6520{
6521 struct sock *sk = asoc->base.sk;
6522 struct socket *sock = sk->sk_socket;
6523
6524 if ((sctp_wspace(asoc) > 0) && sock) {
6525 if (waitqueue_active(&asoc->wait))
6526 wake_up_interruptible(&asoc->wait);
6527
6528 if (sctp_writeable(sk)) {
Eric Dumazeteaefd112011-02-18 03:26:36 +00006529 wait_queue_head_t *wq = sk_sleep(sk);
6530
6531 if (wq && waitqueue_active(wq))
6532 wake_up_interruptible(wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006533
6534 /* Note that we try to include the Async I/O support
6535 * here by modeling from the current TCP/UDP code.
6536 * We have not tested with it yet.
6537 */
Eric Dumazeteaefd112011-02-18 03:26:36 +00006538 if (!(sk->sk_shutdown & SEND_SHUTDOWN))
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +08006539 sock_wake_async(sock,
6540 SOCK_WAKE_SPACE, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541 }
6542 }
6543}
6544
6545/* Do accounting for the sndbuf space.
6546 * Decrement the used sndbuf space of the corresponding association by the
6547 * data size which was just transmitted(freed).
6548 */
6549static void sctp_wfree(struct sk_buff *skb)
6550{
6551 struct sctp_association *asoc;
6552 struct sctp_chunk *chunk;
6553 struct sock *sk;
6554
6555 /* Get the saved chunk pointer. */
6556 chunk = *((struct sctp_chunk **)(skb->cb));
6557 asoc = chunk->asoc;
6558 sk = asoc->base.sk;
Neil Horman4eb701d2005-04-28 12:02:04 -07006559 asoc->sndbuf_used -= SCTP_DATA_SNDSIZE(chunk) +
6560 sizeof(struct sk_buff) +
6561 sizeof(struct sctp_chunk);
6562
Neil Horman4eb701d2005-04-28 12:02:04 -07006563 atomic_sub(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
6564
Neil Horman4d93df02007-08-15 16:07:44 -07006565 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08006566 * This undoes what is done via sctp_set_owner_w and sk_mem_charge
Neil Horman4d93df02007-08-15 16:07:44 -07006567 */
6568 sk->sk_wmem_queued -= skb->truesize;
Hideo Aoki3ab224b2007-12-31 00:11:19 -08006569 sk_mem_uncharge(sk, skb->truesize);
Neil Horman4d93df02007-08-15 16:07:44 -07006570
Neil Horman4eb701d2005-04-28 12:02:04 -07006571 sock_wfree(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572 __sctp_write_space(asoc);
6573
6574 sctp_association_put(asoc);
6575}
6576
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07006577/* Do accounting for the receive space on the socket.
6578 * Accounting for the association is done in ulpevent.c
6579 * We set this as a destructor for the cloned data skbs so that
6580 * accounting is done at the correct time.
6581 */
6582void sctp_sock_rfree(struct sk_buff *skb)
6583{
6584 struct sock *sk = skb->sk;
6585 struct sctp_ulpevent *event = sctp_skb2event(skb);
6586
6587 atomic_sub(event->rmem_len, &sk->sk_rmem_alloc);
Neil Horman4d93df02007-08-15 16:07:44 -07006588
6589 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08006590 * Mimic the behavior of sock_rfree
Neil Horman4d93df02007-08-15 16:07:44 -07006591 */
Hideo Aoki3ab224b2007-12-31 00:11:19 -08006592 sk_mem_uncharge(sk, event->rmem_len);
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07006593}
6594
6595
Linus Torvalds1da177e2005-04-16 15:20:36 -07006596/* Helper function to wait for space in the sndbuf. */
6597static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
6598 size_t msg_len)
6599{
6600 struct sock *sk = asoc->base.sk;
6601 int err = 0;
6602 long current_timeo = *timeo_p;
6603 DEFINE_WAIT(wait);
6604
6605 SCTP_DEBUG_PRINTK("wait_for_sndbuf: asoc=%p, timeo=%ld, msg_len=%zu\n",
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09006606 asoc, (long)(*timeo_p), msg_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006607
6608 /* Increment the association's refcnt. */
6609 sctp_association_hold(asoc);
6610
6611 /* Wait on the association specific sndbuf space. */
6612 for (;;) {
6613 prepare_to_wait_exclusive(&asoc->wait, &wait,
6614 TASK_INTERRUPTIBLE);
6615 if (!*timeo_p)
6616 goto do_nonblock;
6617 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
6618 asoc->base.dead)
6619 goto do_error;
6620 if (signal_pending(current))
6621 goto do_interrupted;
6622 if (msg_len <= sctp_wspace(asoc))
6623 break;
6624
6625 /* Let another process have a go. Since we are going
6626 * to sleep anyway.
6627 */
6628 sctp_release_sock(sk);
6629 current_timeo = schedule_timeout(current_timeo);
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07006630 BUG_ON(sk != asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006631 sctp_lock_sock(sk);
6632
6633 *timeo_p = current_timeo;
6634 }
6635
6636out:
6637 finish_wait(&asoc->wait, &wait);
6638
6639 /* Release the association's refcnt. */
6640 sctp_association_put(asoc);
6641
6642 return err;
6643
6644do_error:
6645 err = -EPIPE;
6646 goto out;
6647
6648do_interrupted:
6649 err = sock_intr_errno(*timeo_p);
6650 goto out;
6651
6652do_nonblock:
6653 err = -EAGAIN;
6654 goto out;
6655}
6656
Wei Yongjun561b1732010-04-28 08:47:18 +00006657void sctp_data_ready(struct sock *sk, int len)
6658{
David S. Miller7ef52732010-05-02 21:43:40 -07006659 struct socket_wq *wq;
6660
6661 rcu_read_lock();
6662 wq = rcu_dereference(sk->sk_wq);
6663 if (wq_has_sleeper(wq))
6664 wake_up_interruptible_sync_poll(&wq->wait, POLLIN |
Wei Yongjun561b1732010-04-28 08:47:18 +00006665 POLLRDNORM | POLLRDBAND);
6666 sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
David S. Miller7ef52732010-05-02 21:43:40 -07006667 rcu_read_unlock();
Wei Yongjun561b1732010-04-28 08:47:18 +00006668}
6669
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670/* If socket sndbuf has changed, wake up all per association waiters. */
6671void sctp_write_space(struct sock *sk)
6672{
6673 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674
6675 /* Wake up the tasks in each wait queue. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07006676 list_for_each_entry(asoc, &((sctp_sk(sk))->ep->asocs), asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677 __sctp_write_space(asoc);
6678 }
6679}
6680
6681/* Is there any sndbuf space available on the socket?
6682 *
Neil Horman9bffc4a2005-12-19 14:24:40 -08006683 * Note that sk_wmem_alloc is the sum of the send buffers on all of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07006684 * associations on the same socket. For a UDP-style socket with
6685 * multiple associations, it is possible for it to be "unwriteable"
6686 * prematurely. I assume that this is acceptable because
6687 * a premature "unwriteable" is better than an accidental "writeable" which
6688 * would cause an unwanted block under certain circumstances. For the 1-1
6689 * UDP-style sockets or TCP-style sockets, this code should work.
6690 * - Daisy
6691 */
6692static int sctp_writeable(struct sock *sk)
6693{
6694 int amt = 0;
6695
Eric Dumazet31e6d362009-06-17 19:05:41 -07006696 amt = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006697 if (amt < 0)
6698 amt = 0;
6699 return amt;
6700}
6701
6702/* Wait for an association to go into ESTABLISHED state. If timeout is 0,
6703 * returns immediately with EINPROGRESS.
6704 */
6705static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p)
6706{
6707 struct sock *sk = asoc->base.sk;
6708 int err = 0;
6709 long current_timeo = *timeo_p;
6710 DEFINE_WAIT(wait);
6711
Harvey Harrison0dc47872008-03-05 20:47:47 -08006712 SCTP_DEBUG_PRINTK("%s: asoc=%p, timeo=%ld\n", __func__, asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006713 (long)(*timeo_p));
6714
6715 /* Increment the association's refcnt. */
6716 sctp_association_hold(asoc);
6717
6718 for (;;) {
6719 prepare_to_wait_exclusive(&asoc->wait, &wait,
6720 TASK_INTERRUPTIBLE);
6721 if (!*timeo_p)
6722 goto do_nonblock;
6723 if (sk->sk_shutdown & RCV_SHUTDOWN)
6724 break;
6725 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
6726 asoc->base.dead)
6727 goto do_error;
6728 if (signal_pending(current))
6729 goto do_interrupted;
6730
6731 if (sctp_state(asoc, ESTABLISHED))
6732 break;
6733
6734 /* Let another process have a go. Since we are going
6735 * to sleep anyway.
6736 */
6737 sctp_release_sock(sk);
6738 current_timeo = schedule_timeout(current_timeo);
6739 sctp_lock_sock(sk);
6740
6741 *timeo_p = current_timeo;
6742 }
6743
6744out:
6745 finish_wait(&asoc->wait, &wait);
6746
6747 /* Release the association's refcnt. */
6748 sctp_association_put(asoc);
6749
6750 return err;
6751
6752do_error:
Vlad Yasevich81845c22006-01-30 15:59:54 -08006753 if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006754 err = -ETIMEDOUT;
6755 else
6756 err = -ECONNREFUSED;
6757 goto out;
6758
6759do_interrupted:
6760 err = sock_intr_errno(*timeo_p);
6761 goto out;
6762
6763do_nonblock:
6764 err = -EINPROGRESS;
6765 goto out;
6766}
6767
6768static int sctp_wait_for_accept(struct sock *sk, long timeo)
6769{
6770 struct sctp_endpoint *ep;
6771 int err = 0;
6772 DEFINE_WAIT(wait);
6773
6774 ep = sctp_sk(sk)->ep;
6775
6776
6777 for (;;) {
Eric Dumazetaa395142010-04-20 13:03:51 +00006778 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006779 TASK_INTERRUPTIBLE);
6780
6781 if (list_empty(&ep->asocs)) {
6782 sctp_release_sock(sk);
6783 timeo = schedule_timeout(timeo);
6784 sctp_lock_sock(sk);
6785 }
6786
6787 err = -EINVAL;
6788 if (!sctp_sstate(sk, LISTENING))
6789 break;
6790
6791 err = 0;
6792 if (!list_empty(&ep->asocs))
6793 break;
6794
6795 err = sock_intr_errno(timeo);
6796 if (signal_pending(current))
6797 break;
6798
6799 err = -EAGAIN;
6800 if (!timeo)
6801 break;
6802 }
6803
Eric Dumazetaa395142010-04-20 13:03:51 +00006804 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006805
6806 return err;
6807}
6808
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +02006809static void sctp_wait_for_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006810{
6811 DEFINE_WAIT(wait);
6812
6813 do {
Eric Dumazetaa395142010-04-20 13:03:51 +00006814 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006815 if (list_empty(&sctp_sk(sk)->ep->asocs))
6816 break;
6817 sctp_release_sock(sk);
6818 timeout = schedule_timeout(timeout);
6819 sctp_lock_sock(sk);
6820 } while (!signal_pending(current) && timeout);
6821
Eric Dumazetaa395142010-04-20 13:03:51 +00006822 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006823}
6824
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006825static void sctp_skb_set_owner_r_frag(struct sk_buff *skb, struct sock *sk)
6826{
6827 struct sk_buff *frag;
6828
6829 if (!skb->data_len)
6830 goto done;
6831
6832 /* Don't forget the fragments. */
David S. Miller1b003be2009-06-09 00:22:35 -07006833 skb_walk_frags(skb, frag)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006834 sctp_skb_set_owner_r_frag(frag, sk);
6835
6836done:
6837 sctp_skb_set_owner_r(skb, sk);
6838}
6839
Vlad Yasevich914e1c82009-02-13 08:33:44 +00006840void sctp_copy_sock(struct sock *newsk, struct sock *sk,
6841 struct sctp_association *asoc)
6842{
6843 struct inet_sock *inet = inet_sk(sk);
Julia Lawall09cb47a2010-01-21 02:43:20 -08006844 struct inet_sock *newinet;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00006845
6846 newsk->sk_type = sk->sk_type;
6847 newsk->sk_bound_dev_if = sk->sk_bound_dev_if;
6848 newsk->sk_flags = sk->sk_flags;
6849 newsk->sk_no_check = sk->sk_no_check;
6850 newsk->sk_reuse = sk->sk_reuse;
6851
6852 newsk->sk_shutdown = sk->sk_shutdown;
6853 newsk->sk_destruct = inet_sock_destruct;
6854 newsk->sk_family = sk->sk_family;
6855 newsk->sk_protocol = IPPROTO_SCTP;
6856 newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
6857 newsk->sk_sndbuf = sk->sk_sndbuf;
6858 newsk->sk_rcvbuf = sk->sk_rcvbuf;
6859 newsk->sk_lingertime = sk->sk_lingertime;
6860 newsk->sk_rcvtimeo = sk->sk_rcvtimeo;
6861 newsk->sk_sndtimeo = sk->sk_sndtimeo;
6862
6863 newinet = inet_sk(newsk);
6864
6865 /* Initialize sk's sport, dport, rcv_saddr and daddr for
6866 * getsockname() and getpeername()
6867 */
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006868 newinet->inet_sport = inet->inet_sport;
6869 newinet->inet_saddr = inet->inet_saddr;
6870 newinet->inet_rcv_saddr = inet->inet_rcv_saddr;
6871 newinet->inet_dport = htons(asoc->peer.port);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00006872 newinet->pmtudisc = inet->pmtudisc;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006873 newinet->inet_id = asoc->next_tsn ^ jiffies;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00006874
6875 newinet->uc_ttl = inet->uc_ttl;
6876 newinet->mc_loop = 1;
6877 newinet->mc_ttl = 1;
6878 newinet->mc_index = 0;
6879 newinet->mc_list = NULL;
6880}
6881
Linus Torvalds1da177e2005-04-16 15:20:36 -07006882/* Populate the fields of the newsk from the oldsk and migrate the assoc
6883 * and its messages to the newsk.
6884 */
6885static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
6886 struct sctp_association *assoc,
6887 sctp_socket_type_t type)
6888{
6889 struct sctp_sock *oldsp = sctp_sk(oldsk);
6890 struct sctp_sock *newsp = sctp_sk(newsk);
6891 struct sctp_bind_bucket *pp; /* hash list port iterator */
6892 struct sctp_endpoint *newep = newsp->ep;
6893 struct sk_buff *skb, *tmp;
6894 struct sctp_ulpevent *event;
Vlad Yasevichf26f7c42007-12-06 22:50:27 -08006895 struct sctp_bind_hashbucket *head;
Michio Honda9f7d6532011-04-26 19:32:51 +09006896 struct list_head tmplist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006897
6898 /* Migrate socket buffer sizes and all the socket level options to the
6899 * new socket.
6900 */
6901 newsk->sk_sndbuf = oldsk->sk_sndbuf;
6902 newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
6903 /* Brute force copy old sctp opt. */
Michio Honda9f7d6532011-04-26 19:32:51 +09006904 if (oldsp->do_auto_asconf) {
6905 memcpy(&tmplist, &newsp->auto_asconf_list, sizeof(tmplist));
6906 inet_sk_copy_descendant(newsk, oldsk);
6907 memcpy(&newsp->auto_asconf_list, &tmplist, sizeof(tmplist));
6908 } else
6909 inet_sk_copy_descendant(newsk, oldsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006910
6911 /* Restore the ep value that was overwritten with the above structure
6912 * copy.
6913 */
6914 newsp->ep = newep;
6915 newsp->hmac = NULL;
6916
6917 /* Hook this new socket in to the bind_hash list. */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00006918 head = &sctp_port_hashtable[sctp_phashfn(sock_net(oldsk),
6919 inet_sk(oldsk)->inet_num)];
Vlad Yasevichf26f7c42007-12-06 22:50:27 -08006920 sctp_local_bh_disable();
6921 sctp_spin_lock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006922 pp = sctp_sk(oldsk)->bind_hash;
6923 sk_add_bind_node(newsk, &pp->owner);
6924 sctp_sk(newsk)->bind_hash = pp;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00006925 inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num;
Vlad Yasevichf26f7c42007-12-06 22:50:27 -08006926 sctp_spin_unlock(&head->lock);
6927 sctp_local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006928
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07006929 /* Copy the bind_addr list from the original endpoint to the new
6930 * endpoint so that we can handle restarts properly
6931 */
Vlad Yasevich8e71a112007-12-06 22:50:54 -08006932 sctp_bind_addr_dup(&newsp->ep->base.bind_addr,
6933 &oldsp->ep->base.bind_addr, GFP_KERNEL);
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07006934
Linus Torvalds1da177e2005-04-16 15:20:36 -07006935 /* Move any messages in the old socket's receive queue that are for the
6936 * peeled off association to the new socket's receive queue.
6937 */
6938 sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) {
6939 event = sctp_skb2event(skb);
6940 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07006941 __skb_unlink(skb, &oldsk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006942 __skb_queue_tail(&newsk->sk_receive_queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006943 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006944 }
6945 }
6946
6947 /* Clean up any messages pending delivery due to partial
6948 * delivery. Three cases:
6949 * 1) No partial deliver; no work.
6950 * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby.
6951 * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue.
6952 */
6953 skb_queue_head_init(&newsp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07006954 atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006955
Vlad Yasevichb6e13312007-04-20 12:23:15 -07006956 if (atomic_read(&sctp_sk(oldsk)->pd_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006957 struct sk_buff_head *queue;
6958
6959 /* Decide which queue to move pd_lobby skbs to. */
6960 if (assoc->ulpq.pd_mode) {
6961 queue = &newsp->pd_lobby;
6962 } else
6963 queue = &newsk->sk_receive_queue;
6964
6965 /* Walk through the pd_lobby, looking for skbs that
6966 * need moved to the new socket.
6967 */
6968 sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) {
6969 event = sctp_skb2event(skb);
6970 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07006971 __skb_unlink(skb, &oldsp->pd_lobby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006972 __skb_queue_tail(queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006973 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006974 }
6975 }
6976
6977 /* Clear up any skbs waiting for the partial
6978 * delivery to finish.
6979 */
6980 if (assoc->ulpq.pd_mode)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07006981 sctp_clear_pd(oldsk, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006982
6983 }
6984
Wei Yongjun1bc4ee42009-07-05 19:45:48 +00006985 sctp_skb_for_each(skb, &assoc->ulpq.reasm, tmp)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006986 sctp_skb_set_owner_r_frag(skb, newsk);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006987
Wei Yongjun1bc4ee42009-07-05 19:45:48 +00006988 sctp_skb_for_each(skb, &assoc->ulpq.lobby, tmp)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006989 sctp_skb_set_owner_r_frag(skb, newsk);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07006990
Linus Torvalds1da177e2005-04-16 15:20:36 -07006991 /* Set the type of socket to indicate that it is peeled off from the
6992 * original UDP-style socket or created with the accept() call on a
6993 * TCP-style socket..
6994 */
6995 newsp->type = type;
6996
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07006997 /* Mark the new socket "in-use" by the user so that any packets
6998 * that may arrive on the association after we've moved it are
6999 * queued to the backlog. This prevents a potential race between
7000 * backlog processing on the old socket and new-packet processing
7001 * on the new socket.
Zach Brown5131a182007-06-22 15:14:46 -07007002 *
7003 * The caller has just allocated newsk so we can guarantee that other
7004 * paths won't try to lock it and then oldsk.
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07007005 */
Zach Brown5131a182007-06-22 15:14:46 -07007006 lock_sock_nested(newsk, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007007 sctp_assoc_migrate(assoc, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007008
7009 /* If the association on the newsk is already closed before accept()
7010 * is called, set RCV_SHUTDOWN flag.
7011 */
7012 if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP))
7013 newsk->sk_shutdown |= RCV_SHUTDOWN;
7014
7015 newsk->sk_state = SCTP_SS_ESTABLISHED;
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07007016 sctp_release_sock(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007017}
7018
Neil Horman4d93df02007-08-15 16:07:44 -07007019
Linus Torvalds1da177e2005-04-16 15:20:36 -07007020/* This proto struct describes the ULP interface for SCTP. */
7021struct proto sctp_prot = {
7022 .name = "SCTP",
7023 .owner = THIS_MODULE,
7024 .close = sctp_close,
7025 .connect = sctp_connect,
7026 .disconnect = sctp_disconnect,
7027 .accept = sctp_accept,
7028 .ioctl = sctp_ioctl,
7029 .init = sctp_init_sock,
7030 .destroy = sctp_destroy_sock,
7031 .shutdown = sctp_shutdown,
7032 .setsockopt = sctp_setsockopt,
7033 .getsockopt = sctp_getsockopt,
7034 .sendmsg = sctp_sendmsg,
7035 .recvmsg = sctp_recvmsg,
7036 .bind = sctp_bind,
7037 .backlog_rcv = sctp_backlog_rcv,
7038 .hash = sctp_hash,
7039 .unhash = sctp_unhash,
7040 .get_port = sctp_get_port,
7041 .obj_size = sizeof(struct sctp_sock),
Neil Horman4d93df02007-08-15 16:07:44 -07007042 .sysctl_mem = sysctl_sctp_mem,
7043 .sysctl_rmem = sysctl_sctp_rmem,
7044 .sysctl_wmem = sysctl_sctp_wmem,
7045 .memory_pressure = &sctp_memory_pressure,
7046 .enter_memory_pressure = sctp_enter_memory_pressure,
7047 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08007048 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007049};
7050
Eric Dumazetdfd56b82011-12-10 09:48:31 +00007051#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazet8295b6d2007-11-05 23:40:28 -08007052
Linus Torvalds1da177e2005-04-16 15:20:36 -07007053struct proto sctpv6_prot = {
7054 .name = "SCTPv6",
7055 .owner = THIS_MODULE,
7056 .close = sctp_close,
7057 .connect = sctp_connect,
7058 .disconnect = sctp_disconnect,
7059 .accept = sctp_accept,
7060 .ioctl = sctp_ioctl,
7061 .init = sctp_init_sock,
7062 .destroy = sctp_destroy_sock,
7063 .shutdown = sctp_shutdown,
7064 .setsockopt = sctp_setsockopt,
7065 .getsockopt = sctp_getsockopt,
7066 .sendmsg = sctp_sendmsg,
7067 .recvmsg = sctp_recvmsg,
7068 .bind = sctp_bind,
7069 .backlog_rcv = sctp_backlog_rcv,
7070 .hash = sctp_hash,
7071 .unhash = sctp_unhash,
7072 .get_port = sctp_get_port,
7073 .obj_size = sizeof(struct sctp6_sock),
Neil Horman4d93df02007-08-15 16:07:44 -07007074 .sysctl_mem = sysctl_sctp_mem,
7075 .sysctl_rmem = sysctl_sctp_rmem,
7076 .sysctl_wmem = sysctl_sctp_wmem,
7077 .memory_pressure = &sctp_memory_pressure,
7078 .enter_memory_pressure = sctp_enter_memory_pressure,
7079 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08007080 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007081};
Eric Dumazetdfd56b82011-12-10 09:48:31 +00007082#endif /* IS_ENABLED(CONFIG_IPV6) */