blob: 018190655d63f8bc50f118635df724569c8ed90f [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
Jeff Kirsher4b2f13a2013-12-06 06:28:48 -080031 * along with GNU CC; see the file COPYING. If not, see
32 * <http://www.gnu.org/licenses/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 *
34 * Please send any bug reports or fixes you make to the
35 * email address(es):
Daniel Borkmann91705c62013-07-23 14:51:47 +020036 * lksctp developers <linux-sctp@vger.kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * Written or modified by:
39 * La Monte H.P. Yarroll <piggy@acm.org>
40 * Narasimha Budihal <narsi@refcode.org>
41 * Karl Knutson <karl@athena.chicago.il.us>
42 * Jon Grimm <jgrimm@us.ibm.com>
43 * Xingang Guo <xingang.guo@intel.com>
44 * Daisy Chang <daisyc@us.ibm.com>
45 * Sridhar Samudrala <samudrala@us.ibm.com>
46 * Inaky Perez-Gonzalez <inaky.gonzalez@intel.com>
47 * Ardelle Fan <ardelle.fan@intel.com>
48 * Ryan Layer <rmlayer@us.ibm.com>
49 * Anup Pemmaiah <pemmaiah@cc.usu.edu>
50 * Kevin Gao <kevin.gao@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 */
52
Joe Perches145ce502010-08-24 13:21:08 +000053#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
54
Herbert Xu5821c762016-01-24 21:20:12 +080055#include <crypto/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <linux/types.h>
57#include <linux/kernel.h>
58#include <linux/wait.h>
59#include <linux/time.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010060#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/ip.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080062#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/fcntl.h>
64#include <linux/poll.h>
65#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090066#include <linux/slab.h>
Al Viro56b31d12012-08-18 00:25:51 -040067#include <linux/file.h>
Daniel Borkmannffd59392014-02-17 12:11:11 +010068#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70#include <net/ip.h>
71#include <net/icmp.h>
72#include <net/route.h>
73#include <net/ipv6.h>
74#include <net/inet_common.h>
Neil Horman8465a5f2014-04-17 15:26:51 -040075#include <net/busy_poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77#include <linux/socket.h> /* for sa_family_t */
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040078#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <net/sock.h>
80#include <net/sctp/sctp.h>
81#include <net/sctp/sm.h>
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/* Forward declarations for internal helper functions. */
84static int sctp_writeable(struct sock *sk);
85static void sctp_wfree(struct sk_buff *skb);
86static int sctp_wait_for_sndbuf(struct sctp_association *, long *timeo_p,
87 size_t msg_len);
wangweidong26ac8e52013-12-23 12:16:51 +080088static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
90static int sctp_wait_for_accept(struct sock *sk, long timeo);
91static void sctp_wait_for_close(struct sock *sk, long timeo);
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +020092static void sctp_destruct_sock(struct sock *sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
94 union sctp_addr *addr, int len);
95static int sctp_bindx_add(struct sock *, struct sockaddr *, int);
96static int sctp_bindx_rem(struct sock *, struct sockaddr *, int);
97static int sctp_send_asconf_add_ip(struct sock *, struct sockaddr *, int);
98static int sctp_send_asconf_del_ip(struct sock *, struct sockaddr *, int);
99static int sctp_send_asconf(struct sctp_association *asoc,
100 struct sctp_chunk *chunk);
101static int sctp_do_bind(struct sock *, union sctp_addr *, int);
102static int sctp_autobind(struct sock *sk);
103static void sctp_sock_migrate(struct sock *, struct sock *,
104 struct sctp_association *, sctp_socket_type_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Eric Dumazet06044752017-06-07 13:29:12 -0700106static unsigned long sctp_memory_pressure;
Eric Dumazet8d987e52010-11-09 23:24:26 +0000107static atomic_long_t sctp_memory_allocated;
Eric Dumazet17483762008-11-25 21:16:35 -0800108struct percpu_counter sctp_sockets_allocated;
Neil Horman4d93df02007-08-15 16:07:44 -0700109
Pavel Emelyanov5c52ba12008-07-16 20:28:10 -0700110static void sctp_enter_memory_pressure(struct sock *sk)
Neil Horman4d93df02007-08-15 16:07:44 -0700111{
112 sctp_memory_pressure = 1;
113}
114
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116/* Get the sndbuf space available at the time on the association. */
117static inline int sctp_wspace(struct sctp_association *asoc)
118{
Neil Horman4d93df02007-08-15 16:07:44 -0700119 int amt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Neil Horman4d93df02007-08-15 16:07:44 -0700121 if (asoc->ep->sndbuf_policy)
122 amt = asoc->sndbuf_used;
123 else
Eric Dumazet31e6d362009-06-17 19:05:41 -0700124 amt = sk_wmem_alloc_get(asoc->base.sk);
Neil Horman4d93df02007-08-15 16:07:44 -0700125
126 if (amt >= asoc->base.sk->sk_sndbuf) {
127 if (asoc->base.sk->sk_userlocks & SOCK_SNDBUF_LOCK)
128 amt = 0;
129 else {
130 amt = sk_stream_wspace(asoc->base.sk);
131 if (amt < 0)
132 amt = 0;
133 }
Neil Horman4eb701d2005-04-28 12:02:04 -0700134 } else {
Neil Horman4d93df02007-08-15 16:07:44 -0700135 amt = asoc->base.sk->sk_sndbuf - amt;
Neil Horman4eb701d2005-04-28 12:02:04 -0700136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 return amt;
138}
139
140/* Increment the used sndbuf space count of the corresponding association by
141 * the size of the outgoing data chunk.
142 * Also, set the skb destructor for sndbuf accounting later.
143 *
144 * Since it is always 1-1 between chunk and skb, and also a new skb is always
145 * allocated for chunk bundling in sctp_packet_transmit(), we can use the
146 * destructor in the data chunk skb for the purpose of the sndbuf space
147 * tracking.
148 */
149static inline void sctp_set_owner_w(struct sctp_chunk *chunk)
150{
151 struct sctp_association *asoc = chunk->asoc;
152 struct sock *sk = asoc->base.sk;
153
154 /* The sndbuf space is tracked per association. */
155 sctp_association_hold(asoc);
156
Neil Horman4eb701d2005-04-28 12:02:04 -0700157 skb_set_owner_w(chunk->skb, sk);
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 chunk->skb->destructor = sctp_wfree;
160 /* Save the chunk pointer in skb for sctp_wfree to use later. */
Daniel Borkmannf869c912014-11-20 01:54:48 +0100161 skb_shinfo(chunk->skb)->destructor_arg = chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Neil Horman4eb701d2005-04-28 12:02:04 -0700163 asoc->sndbuf_used += SCTP_DATA_SNDSIZE(chunk) +
164 sizeof(struct sk_buff) +
165 sizeof(struct sctp_chunk);
166
Reshetova, Elena14afee42017-06-30 13:08:00 +0300167 refcount_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800168 sk->sk_wmem_queued += chunk->skb->truesize;
169 sk_mem_charge(sk, chunk->skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
172/* Verify that this is a valid address. */
173static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr,
174 int len)
175{
176 struct sctp_af *af;
177
178 /* Verify basic sockaddr. */
179 af = sctp_sockaddr_af(sctp_sk(sk), addr, len);
180 if (!af)
181 return -EINVAL;
182
183 /* Is this a valid SCTP address? */
Vlad Yasevich5636bef2006-06-17 22:55:35 -0700184 if (!af->addr_valid(addr, sctp_sk(sk), NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return -EINVAL;
186
187 if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr)))
188 return -EINVAL;
189
190 return 0;
191}
192
193/* Look up the association by its id. If this is not a UDP-style
194 * socket, the ID field is always ignored.
195 */
196struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
197{
198 struct sctp_association *asoc = NULL;
199
200 /* If this is not a UDP-style socket, assoc id should be ignored. */
201 if (!sctp_style(sk, UDP)) {
202 /* Return NULL if the socket state is not ESTABLISHED. It
203 * could be a TCP-style listening socket or a socket which
204 * hasn't yet called connect() to establish an association.
205 */
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -0300206 if (!sctp_sstate(sk, ESTABLISHED) && !sctp_sstate(sk, CLOSING))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return NULL;
208
209 /* Get the first and the only association from the list. */
210 if (!list_empty(&sctp_sk(sk)->ep->asocs))
211 asoc = list_entry(sctp_sk(sk)->ep->asocs.next,
212 struct sctp_association, asocs);
213 return asoc;
214 }
215
216 /* Otherwise this is a UDP-style socket. */
217 if (!id || (id == (sctp_assoc_t)-1))
218 return NULL;
219
220 spin_lock_bh(&sctp_assocs_id_lock);
221 asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id);
222 spin_unlock_bh(&sctp_assocs_id_lock);
223
224 if (!asoc || (asoc->base.sk != sk) || asoc->base.dead)
225 return NULL;
226
227 return asoc;
228}
229
230/* Look up the transport from an address and an assoc id. If both address and
231 * id are specified, the associations matching the address and the id should be
232 * the same.
233 */
234static struct sctp_transport *sctp_addr_id2transport(struct sock *sk,
235 struct sockaddr_storage *addr,
236 sctp_assoc_t id)
237{
238 struct sctp_association *addr_asoc = NULL, *id_asoc = NULL;
Xin Long6f29a132017-01-24 14:01:53 +0800239 struct sctp_af *af = sctp_get_af_specific(addr->ss_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 union sctp_addr *laddr = (union sctp_addr *)addr;
Xin Long6f29a132017-01-24 14:01:53 +0800241 struct sctp_transport *transport;
242
Xin Long912964e2017-02-07 20:56:08 +0800243 if (!af || sctp_verify_addr(sk, laddr, af->sockaddr_len))
Xin Long6f29a132017-01-24 14:01:53 +0800244 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
Al Virocd4ff032006-11-20 17:11:33 -0800247 laddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 &transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 if (!addr_asoc)
251 return NULL;
252
253 id_asoc = sctp_id2assoc(sk, id);
254 if (id_asoc && (id_asoc != addr_asoc))
255 return NULL;
256
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600257 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 (union sctp_addr *)addr);
259
260 return transport;
261}
262
263/* API 3.1.2 bind() - UDP Style Syntax
264 * The syntax of bind() is,
265 *
266 * ret = bind(int sd, struct sockaddr *addr, int addrlen);
267 *
268 * sd - the socket descriptor returned by socket().
269 * addr - the address structure (struct sockaddr_in or struct
270 * sockaddr_in6 [RFC 2553]),
271 * addr_len - the size of the address structure.
272 */
Daniel Borkmanndda91922013-06-17 11:40:05 +0200273static int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
275 int retval = 0;
276
wangweidong048ed4b2014-01-21 15:44:11 +0800277 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Daniel Borkmannbb333812013-06-28 19:49:40 +0200279 pr_debug("%s: sk:%p, addr:%p, addr_len:%d\n", __func__, sk,
280 addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 /* Disallow binding twice. */
283 if (!sctp_sk(sk)->ep->base.bind_addr.port)
Frank Filz3f7a87d2005-06-20 13:14:57 -0700284 retval = sctp_do_bind(sk, (union sctp_addr *)addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 addr_len);
286 else
287 retval = -EINVAL;
288
wangweidong048ed4b2014-01-21 15:44:11 +0800289 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 return retval;
292}
293
294static long sctp_get_port_local(struct sock *, union sctp_addr *);
295
296/* Verify this is a valid sockaddr. */
297static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
298 union sctp_addr *addr, int len)
299{
300 struct sctp_af *af;
301
302 /* Check minimum size. */
303 if (len < sizeof (struct sockaddr))
304 return NULL;
305
Vlad Yasevich7dab83d2008-07-18 23:05:40 -0700306 /* V4 mapped address are really of AF_INET family */
307 if (addr->sa.sa_family == AF_INET6 &&
308 ipv6_addr_v4mapped(&addr->v6.sin6_addr)) {
309 if (!opt->pf->af_supported(AF_INET, opt))
310 return NULL;
311 } else {
312 /* Does this PF support this AF? */
313 if (!opt->pf->af_supported(addr->sa.sa_family, opt))
314 return NULL;
315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 /* If we get this far, af is valid. */
318 af = sctp_get_af_specific(addr->sa.sa_family);
319
320 if (len < af->sockaddr_len)
321 return NULL;
322
323 return af;
324}
325
326/* Bind a local address either to an endpoint or to an association. */
Daniel Borkmanndda91922013-06-17 11:40:05 +0200327static int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Eric W. Biederman35946982012-11-16 03:03:12 +0000329 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 struct sctp_sock *sp = sctp_sk(sk);
331 struct sctp_endpoint *ep = sp->ep;
332 struct sctp_bind_addr *bp = &ep->base.bind_addr;
333 struct sctp_af *af;
334 unsigned short snum;
335 int ret = 0;
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 /* Common sockaddr verification. */
338 af = sctp_sockaddr_af(sp, addr, len);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700339 if (!af) {
Daniel Borkmannbb333812013-06-28 19:49:40 +0200340 pr_debug("%s: sk:%p, newaddr:%p, len:%d EINVAL\n",
341 __func__, sk, addr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 return -EINVAL;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700343 }
344
345 snum = ntohs(addr->v4.sin_port);
346
Daniel Borkmannbb333812013-06-28 19:49:40 +0200347 pr_debug("%s: sk:%p, new addr:%pISc, port:%d, new port:%d, len:%d\n",
348 __func__, sk, &addr->sa, bp->port, snum, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 /* PF specific bind() address verification. */
351 if (!sp->pf->bind_verify(sp, addr))
352 return -EADDRNOTAVAIL;
353
Vlad Yasevich8b358052007-05-15 17:14:58 -0400354 /* We must either be unbound, or bind to the same port.
355 * It's OK to allow 0 ports if we are already bound.
356 * We'll just inhert an already bound port in this case
357 */
358 if (bp->port) {
359 if (!snum)
360 snum = bp->port;
361 else if (snum != bp->port) {
Daniel Borkmannbb333812013-06-28 19:49:40 +0200362 pr_debug("%s: new port %d doesn't match existing port "
363 "%d\n", __func__, snum, bp->port);
Vlad Yasevich8b358052007-05-15 17:14:58 -0400364 return -EINVAL;
365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
367
Krister Johansen4548b682017-01-20 17:49:11 -0800368 if (snum && snum < inet_prot_sock(net) &&
Eric W. Biederman35946982012-11-16 03:03:12 +0000369 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return -EACCES;
371
Vlad Yasevich4e540642008-07-18 23:06:32 -0700372 /* See if the address matches any of the addresses we may have
373 * already bound before checking against other endpoints.
374 */
375 if (sctp_bind_addr_match(bp, addr, sp))
376 return -EINVAL;
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 /* Make sure we are allowed to bind here.
379 * The function sctp_get_port_local() does duplicate address
380 * detection.
381 */
Vlad Yasevich2772b492007-08-21 14:24:30 +0900382 addr->v4.sin_port = htons(snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 if ((ret = sctp_get_port_local(sk, addr))) {
Vlad Yasevich4e540642008-07-18 23:06:32 -0700384 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
386
387 /* Refresh ephemeral port. */
388 if (!bp->port)
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000389 bp->port = inet_sk(sk)->inet_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Vlad Yasevich559cf712007-09-16 16:03:28 -0700391 /* Add the address to the bind address list.
392 * Use GFP_ATOMIC since BHs will be disabled.
393 */
Marcelo Ricardo Leitner133800d2016-03-08 10:34:28 -0300394 ret = sctp_add_bind_addr(bp, addr, af->sockaddr_len,
395 SCTP_ADDR_SRC, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 /* Copy back into socket for getsockname() use. */
398 if (!ret) {
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000399 inet_sk(sk)->inet_sport = htons(inet_sk(sk)->inet_num);
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600400 sp->pf->to_sk_saddr(addr, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
402
403 return ret;
404}
405
406 /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
407 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900408 * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 * at any one time. If a sender, after sending an ASCONF chunk, decides
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900410 * it needs to transfer another ASCONF Chunk, it MUST wait until the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900412 * subsequent ASCONF. Note this restriction binds each side, so at any
413 * time two ASCONF may be in-transit on any given association (one sent
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 * from each endpoint).
415 */
416static int sctp_send_asconf(struct sctp_association *asoc,
417 struct sctp_chunk *chunk)
418{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +0000419 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 int retval = 0;
421
422 /* If there is an outstanding ASCONF chunk, queue it for later
423 * transmission.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900424 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (asoc->addip_last_asconf) {
David S. Miller79af02c2005-07-08 21:47:49 -0700426 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900427 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429
430 /* Hold the chunk until an ASCONF_ACK is received. */
431 sctp_chunk_hold(chunk);
Eric W. Biederman55e26eb2012-08-07 07:25:24 +0000432 retval = sctp_primitive_ASCONF(net, asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (retval)
434 sctp_chunk_free(chunk);
435 else
436 asoc->addip_last_asconf = chunk;
437
438out:
439 return retval;
440}
441
442/* Add a list of addresses as bind addresses to local endpoint or
443 * association.
444 *
445 * Basically run through each address specified in the addrs/addrcnt
446 * array/length pair, determine if it is IPv6 or IPv4 and call
447 * sctp_do_bind() on it.
448 *
449 * If any of them fails, then the operation will be reversed and the
450 * ones that were added will be removed.
451 *
452 * Only sctp_setsockopt_bindx() is supposed to call this function.
453 */
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +0200454static int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 int cnt;
457 int retval = 0;
458 void *addr_buf;
459 struct sockaddr *sa_addr;
460 struct sctp_af *af;
461
Daniel Borkmannbb333812013-06-28 19:49:40 +0200462 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n", __func__, sk,
463 addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 addr_buf = addrs;
466 for (cnt = 0; cnt < addrcnt; cnt++) {
467 /* The list may contain either IPv4 or IPv6 address;
468 * determine the address length for walking thru the list.
469 */
Joe Perchesea110732011-06-13 16:21:26 +0000470 sa_addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 af = sctp_get_af_specific(sa_addr->sa_family);
472 if (!af) {
473 retval = -EINVAL;
474 goto err_bindx_add;
475 }
476
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900477 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 af->sockaddr_len);
479
480 addr_buf += af->sockaddr_len;
481
482err_bindx_add:
483 if (retval < 0) {
484 /* Failed. Cleanup the ones that have been added */
485 if (cnt > 0)
486 sctp_bindx_rem(sk, addrs, cnt);
487 return retval;
488 }
489 }
490
491 return retval;
492}
493
494/* Send an ASCONF chunk with Add IP address parameters to all the peers of the
495 * associations that are part of the endpoint indicating that a list of local
496 * addresses are added to the endpoint.
497 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900498 * If any of the addresses is already in the bind address list of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 * association, we do not send the chunk for that association. But it will not
500 * affect other associations.
501 *
502 * Only sctp_setsockopt_bindx() is supposed to call this function.
503 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900504static int sctp_send_asconf_add_ip(struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 struct sockaddr *addrs,
506 int addrcnt)
507{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000508 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 struct sctp_sock *sp;
510 struct sctp_endpoint *ep;
511 struct sctp_association *asoc;
512 struct sctp_bind_addr *bp;
513 struct sctp_chunk *chunk;
514 struct sctp_sockaddr_entry *laddr;
515 union sctp_addr *addr;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700516 union sctp_addr saveaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 void *addr_buf;
518 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 struct list_head *p;
520 int i;
521 int retval = 0;
522
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000523 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return retval;
525
526 sp = sctp_sk(sk);
527 ep = sp->ep;
528
Daniel Borkmannbb333812013-06-28 19:49:40 +0200529 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
530 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700532 list_for_each_entry(asoc, &ep->asocs, asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (!asoc->peer.asconf_capable)
534 continue;
535
536 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_ADD_IP)
537 continue;
538
539 if (!sctp_state(asoc, ESTABLISHED))
540 continue;
541
542 /* Check if any address in the packed array of addresses is
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900543 * in the bind address list of the association. If so,
544 * do not send the asconf chunk to its peer, but continue with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 * other associations.
546 */
547 addr_buf = addrs;
548 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000549 addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 af = sctp_get_af_specific(addr->v4.sin_family);
551 if (!af) {
552 retval = -EINVAL;
553 goto out;
554 }
555
556 if (sctp_assoc_lookup_laddr(asoc, addr))
557 break;
558
559 addr_buf += af->sockaddr_len;
560 }
561 if (i < addrcnt)
562 continue;
563
Vlad Yasevich559cf712007-09-16 16:03:28 -0700564 /* Use the first valid address in bind addr list of
565 * association as Address Parameter of ASCONF CHUNK.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 bp = &asoc->base.bind_addr;
568 p = bp->address_list.next;
569 laddr = list_entry(p, struct sctp_sockaddr_entry, list);
Al Viro5ae955c2006-11-20 17:22:08 -0800570 chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 addrcnt, SCTP_PARAM_ADD_IP);
572 if (!chunk) {
573 retval = -ENOMEM;
574 goto out;
575 }
576
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700577 /* Add the new addresses to the bind address list with
578 * use_as_src set to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700580 addr_buf = addrs;
581 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000582 addr = addr_buf;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700583 af = sctp_get_af_specific(addr->v4.sin_family);
584 memcpy(&saveaddr, addr, af->sockaddr_len);
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800585 retval = sctp_add_bind_addr(bp, &saveaddr,
Marcelo Ricardo Leitner133800d2016-03-08 10:34:28 -0300586 sizeof(saveaddr),
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800587 SCTP_ADDR_NEW, GFP_ATOMIC);
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700588 addr_buf += af->sockaddr_len;
589 }
Michio Honda8a07eb02011-04-26 20:19:36 +0900590 if (asoc->src_out_of_asoc_ok) {
591 struct sctp_transport *trans;
592
593 list_for_each_entry(trans,
594 &asoc->peer.transport_addr_list, transports) {
595 /* Clear the source and route cache */
Julian Anastasovc86a7732017-02-06 23:14:13 +0200596 sctp_transport_dst_release(trans);
Michio Honda8a07eb02011-04-26 20:19:36 +0900597 trans->cwnd = min(4*asoc->pathmtu, max_t(__u32,
598 2*asoc->pathmtu, 4380));
599 trans->ssthresh = asoc->peer.i.a_rwnd;
600 trans->rto = asoc->rto_initial;
Michele Baldessari196d6752012-12-01 04:49:42 +0000601 sctp_max_rto(asoc, trans);
Michio Honda8a07eb02011-04-26 20:19:36 +0900602 trans->rtt = trans->srtt = trans->rttvar = 0;
603 sctp_transport_route(trans, NULL,
604 sctp_sk(asoc->base.sk));
605 }
606 }
607 retval = sctp_send_asconf(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609
610out:
611 return retval;
612}
613
614/* Remove a list of addresses from bind addresses list. Do not remove the
615 * last address.
616 *
617 * Basically run through each address specified in the addrs/addrcnt
618 * array/length pair, determine if it is IPv6 or IPv4 and call
619 * sctp_del_bind() on it.
620 *
621 * If any of them fails, then the operation will be reversed and the
622 * ones that were removed will be added back.
623 *
624 * At least one address has to be left; if only one address is
625 * available, the operation will return -EBUSY.
626 *
627 * Only sctp_setsockopt_bindx() is supposed to call this function.
628 */
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +0200629static int sctp_bindx_rem(struct sock *sk, struct sockaddr *addrs, int addrcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
631 struct sctp_sock *sp = sctp_sk(sk);
632 struct sctp_endpoint *ep = sp->ep;
633 int cnt;
634 struct sctp_bind_addr *bp = &ep->base.bind_addr;
635 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 void *addr_buf;
Al Viroc9a08502006-11-20 17:07:48 -0800637 union sctp_addr *sa_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 struct sctp_af *af;
639
Daniel Borkmannbb333812013-06-28 19:49:40 +0200640 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
641 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 addr_buf = addrs;
644 for (cnt = 0; cnt < addrcnt; cnt++) {
645 /* If the bind address list is empty or if there is only one
646 * bind address, there is nothing more to be removed (we need
647 * at least one address here).
648 */
649 if (list_empty(&bp->address_list) ||
650 (sctp_list_single_entry(&bp->address_list))) {
651 retval = -EBUSY;
652 goto err_bindx_rem;
653 }
654
Joe Perchesea110732011-06-13 16:21:26 +0000655 sa_addr = addr_buf;
Al Viroc9a08502006-11-20 17:07:48 -0800656 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 if (!af) {
658 retval = -EINVAL;
659 goto err_bindx_rem;
660 }
Paolo Galtieri0304ff8a2007-04-17 12:52:36 -0700661
662 if (!af->addr_valid(sa_addr, sp, NULL)) {
663 retval = -EADDRNOTAVAIL;
664 goto err_bindx_rem;
665 }
666
Vlad Yasevichee9cbac2011-04-18 19:14:47 +0000667 if (sa_addr->v4.sin_port &&
668 sa_addr->v4.sin_port != htons(bp->port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 retval = -EINVAL;
670 goto err_bindx_rem;
671 }
672
Vlad Yasevichee9cbac2011-04-18 19:14:47 +0000673 if (!sa_addr->v4.sin_port)
674 sa_addr->v4.sin_port = htons(bp->port);
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 /* FIXME - There is probably a need to check if sk->sk_saddr and
677 * sk->sk_rcv_addr are currently set to one of the addresses to
678 * be removed. This is something which needs to be looked into
679 * when we are fixing the outstanding issues with multi-homing
680 * socket routing and failover schemes. Refer to comments in
681 * sctp_do_bind(). -daisy
682 */
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -0400683 retval = sctp_del_bind_addr(bp, sa_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 addr_buf += af->sockaddr_len;
686err_bindx_rem:
687 if (retval < 0) {
688 /* Failed. Add the ones that has been removed back */
689 if (cnt > 0)
690 sctp_bindx_add(sk, addrs, cnt);
691 return retval;
692 }
693 }
694
695 return retval;
696}
697
698/* Send an ASCONF chunk with Delete IP address parameters to all the peers of
699 * the associations that are part of the endpoint indicating that a list of
700 * local addresses are removed from the endpoint.
701 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900702 * If any of the addresses is already in the bind address list of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 * association, we do not send the chunk for that association. But it will not
704 * affect other associations.
705 *
706 * Only sctp_setsockopt_bindx() is supposed to call this function.
707 */
708static int sctp_send_asconf_del_ip(struct sock *sk,
709 struct sockaddr *addrs,
710 int addrcnt)
711{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000712 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 struct sctp_sock *sp;
714 struct sctp_endpoint *ep;
715 struct sctp_association *asoc;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700716 struct sctp_transport *transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 struct sctp_bind_addr *bp;
718 struct sctp_chunk *chunk;
719 union sctp_addr *laddr;
720 void *addr_buf;
721 struct sctp_af *af;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700722 struct sctp_sockaddr_entry *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 int i;
724 int retval = 0;
Michio Honda8a07eb02011-04-26 20:19:36 +0900725 int stored = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Michio Honda8a07eb02011-04-26 20:19:36 +0900727 chunk = NULL;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000728 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return retval;
730
731 sp = sctp_sk(sk);
732 ep = sp->ep;
733
Daniel Borkmannbb333812013-06-28 19:49:40 +0200734 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
735 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700737 list_for_each_entry(asoc, &ep->asocs, asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 if (!asoc->peer.asconf_capable)
740 continue;
741
742 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_DEL_IP)
743 continue;
744
745 if (!sctp_state(asoc, ESTABLISHED))
746 continue;
747
748 /* Check if any address in the packed array of addresses is
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900749 * not present in the bind address list of the association.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 * If so, do not send the asconf chunk to its peer, but
751 * continue with other associations.
752 */
753 addr_buf = addrs;
754 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000755 laddr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 af = sctp_get_af_specific(laddr->v4.sin_family);
757 if (!af) {
758 retval = -EINVAL;
759 goto out;
760 }
761
762 if (!sctp_assoc_lookup_laddr(asoc, laddr))
763 break;
764
765 addr_buf += af->sockaddr_len;
766 }
767 if (i < addrcnt)
768 continue;
769
770 /* Find one address in the association's bind address list
771 * that is not in the packed array of addresses. This is to
772 * make sure that we do not delete all the addresses in the
773 * association.
774 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 bp = &asoc->base.bind_addr;
776 laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs,
777 addrcnt, sp);
Michio Honda8a07eb02011-04-26 20:19:36 +0900778 if ((laddr == NULL) && (addrcnt == 1)) {
779 if (asoc->asconf_addr_del_pending)
780 continue;
781 asoc->asconf_addr_del_pending =
782 kzalloc(sizeof(union sctp_addr), GFP_ATOMIC);
Michio Honda6d65e5e2011-06-10 16:42:14 +0900783 if (asoc->asconf_addr_del_pending == NULL) {
784 retval = -ENOMEM;
785 goto out;
786 }
Michio Honda8a07eb02011-04-26 20:19:36 +0900787 asoc->asconf_addr_del_pending->sa.sa_family =
788 addrs->sa_family;
789 asoc->asconf_addr_del_pending->v4.sin_port =
790 htons(bp->port);
791 if (addrs->sa_family == AF_INET) {
792 struct sockaddr_in *sin;
793
794 sin = (struct sockaddr_in *)addrs;
795 asoc->asconf_addr_del_pending->v4.sin_addr.s_addr = sin->sin_addr.s_addr;
796 } else if (addrs->sa_family == AF_INET6) {
797 struct sockaddr_in6 *sin6;
798
799 sin6 = (struct sockaddr_in6 *)addrs;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000800 asoc->asconf_addr_del_pending->v6.sin6_addr = sin6->sin6_addr;
Michio Honda8a07eb02011-04-26 20:19:36 +0900801 }
Daniel Borkmannbb333812013-06-28 19:49:40 +0200802
803 pr_debug("%s: keep the last address asoc:%p %pISc at %p\n",
804 __func__, asoc, &asoc->asconf_addr_del_pending->sa,
805 asoc->asconf_addr_del_pending);
806
Michio Honda8a07eb02011-04-26 20:19:36 +0900807 asoc->src_out_of_asoc_ok = 1;
808 stored = 1;
809 goto skip_mkasconf;
810 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Daniel Borkmann88362ad2013-09-07 20:51:21 +0200812 if (laddr == NULL)
813 return -EINVAL;
814
Vlad Yasevich559cf712007-09-16 16:03:28 -0700815 /* We do not need RCU protection throughout this loop
816 * because this is done under a socket lock from the
817 * setsockopt call.
818 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 chunk = sctp_make_asconf_update_ip(asoc, laddr, addrs, addrcnt,
820 SCTP_PARAM_DEL_IP);
821 if (!chunk) {
822 retval = -ENOMEM;
823 goto out;
824 }
825
Michio Honda8a07eb02011-04-26 20:19:36 +0900826skip_mkasconf:
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700827 /* Reset use_as_src flag for the addresses in the bind address
828 * list that are to be deleted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700830 addr_buf = addrs;
831 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000832 laddr = addr_buf;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700833 af = sctp_get_af_specific(laddr->v4.sin_family);
Vlad Yasevich559cf712007-09-16 16:03:28 -0700834 list_for_each_entry(saddr, &bp->address_list, list) {
Al Viro5f242a12006-11-20 17:05:23 -0800835 if (sctp_cmp_addr_exact(&saddr->a, laddr))
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800836 saddr->state = SCTP_ADDR_DEL;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700837 }
838 addr_buf += af->sockaddr_len;
839 }
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700840
841 /* Update the route and saddr entries for all the transports
842 * as some of the addresses in the bind address list are
843 * about to be deleted and cannot be used as source addresses.
844 */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700845 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
846 transports) {
Julian Anastasovc86a7732017-02-06 23:14:13 +0200847 sctp_transport_dst_release(transport);
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700848 sctp_transport_route(transport, NULL,
849 sctp_sk(asoc->base.sk));
850 }
851
Michio Honda8a07eb02011-04-26 20:19:36 +0900852 if (stored)
853 /* We don't need to transmit ASCONF */
854 continue;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700855 retval = sctp_send_asconf(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
857out:
858 return retval;
859}
860
Michio Honda9f7d6532011-04-26 19:32:51 +0900861/* set addr events to assocs in the endpoint. ep and addr_wq must be locked */
862int sctp_asconf_mgmt(struct sctp_sock *sp, struct sctp_sockaddr_entry *addrw)
863{
864 struct sock *sk = sctp_opt2sk(sp);
865 union sctp_addr *addr;
866 struct sctp_af *af;
867
868 /* It is safe to write port space in caller. */
869 addr = &addrw->a;
870 addr->v4.sin_port = htons(sp->ep->base.bind_addr.port);
871 af = sctp_get_af_specific(addr->sa.sa_family);
872 if (!af)
873 return -EINVAL;
874 if (sctp_verify_addr(sk, addr, af->sockaddr_len))
875 return -EINVAL;
876
877 if (addrw->state == SCTP_ADDR_NEW)
878 return sctp_send_asconf_add_ip(sk, (struct sockaddr *)addr, 1);
879 else
880 return sctp_send_asconf_del_ip(sk, (struct sockaddr *)addr, 1);
881}
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883/* Helper for tunneling sctp_bindx() requests through sctp_setsockopt()
884 *
885 * API 8.1
886 * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt,
887 * int flags);
888 *
889 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
890 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
891 * or IPv6 addresses.
892 *
893 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
894 * Section 3.1.2 for this usage.
895 *
896 * addrs is a pointer to an array of one or more socket addresses. Each
897 * address is contained in its appropriate structure (i.e. struct
898 * sockaddr_in or struct sockaddr_in6) the family of the address type
Ville Nuorvala23c435f2006-10-16 22:08:28 -0700899 * must be used to distinguish the address length (note that this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 * representation is termed a "packed array" of addresses). The caller
901 * specifies the number of addresses in the array with addrcnt.
902 *
903 * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns
904 * -1, and sets errno to the appropriate error code.
905 *
906 * For SCTP, the port given in each socket address must be the same, or
907 * sctp_bindx() will fail, setting errno to EINVAL.
908 *
909 * The flags parameter is formed from the bitwise OR of zero or more of
910 * the following currently defined flags:
911 *
912 * SCTP_BINDX_ADD_ADDR
913 *
914 * SCTP_BINDX_REM_ADDR
915 *
916 * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the
917 * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given
918 * addresses from the association. The two flags are mutually exclusive;
919 * if both are given, sctp_bindx() will fail with EINVAL. A caller may
920 * not remove all addresses from an association; sctp_bindx() will
921 * reject such an attempt with EINVAL.
922 *
923 * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate
924 * additional addresses with an endpoint after calling bind(). Or use
925 * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening
926 * socket is associated with so that no new association accepted will be
927 * associated with those addresses. If the endpoint supports dynamic
928 * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a
929 * endpoint to send the appropriate message to the peer to change the
930 * peers address lists.
931 *
932 * Adding and removing addresses from a connected association is
933 * optional functionality. Implementations that do not support this
934 * functionality should return EOPNOTSUPP.
935 *
936 * Basically do nothing but copying the addresses from user to kernel
937 * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk.
Frank Filz3f7a87d2005-06-20 13:14:57 -0700938 * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
939 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 *
941 * We don't use copy_from_user() for optimization: we first do the
942 * sanity checks (buffer size -fast- and access check-healthy
943 * pointer); if all of those succeed, then we can alloc the memory
944 * (expensive operation) needed to copy the data to kernel. Then we do
945 * the copying without checking the user space area
946 * (__copy_from_user()).
947 *
948 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
949 * it.
950 *
951 * sk The sk of the socket
952 * addrs The pointer to the addresses in user land
953 * addrssize Size of the addrs buffer
954 * op Operation to perform (add or remove, see the flags of
955 * sctp_bindx)
956 *
957 * Returns 0 if ok, <0 errno code on error.
958 */
wangweidong26ac8e52013-12-23 12:16:51 +0800959static int sctp_setsockopt_bindx(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +0200960 struct sockaddr __user *addrs,
961 int addrs_size, int op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
963 struct sockaddr *kaddrs;
964 int err;
965 int addrcnt = 0;
966 int walk_size = 0;
967 struct sockaddr *sa_addr;
968 void *addr_buf;
969 struct sctp_af *af;
970
Daniel Borkmannbb333812013-06-28 19:49:40 +0200971 pr_debug("%s: sk:%p addrs:%p addrs_size:%d opt:%d\n",
972 __func__, sk, addrs, addrs_size, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 if (unlikely(addrs_size <= 0))
975 return -EINVAL;
976
977 /* Check the user passed a healthy pointer. */
978 if (unlikely(!access_ok(VERIFY_READ, addrs, addrs_size)))
979 return -EFAULT;
980
981 /* Alloc space for the address array in kernel memory. */
Marcelo Ricardo Leitnercacc0622015-11-30 14:32:54 -0200982 kaddrs = kmalloc(addrs_size, GFP_USER | __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (unlikely(!kaddrs))
984 return -ENOMEM;
985
986 if (__copy_from_user(kaddrs, addrs, addrs_size)) {
987 kfree(kaddrs);
988 return -EFAULT;
989 }
990
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900991 /* Walk through the addrs buffer and count the number of addresses. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 addr_buf = kaddrs;
993 while (walk_size < addrs_size) {
Dan Rosenbergd7e0d192010-10-01 11:16:58 +0000994 if (walk_size + sizeof(sa_family_t) > addrs_size) {
995 kfree(kaddrs);
996 return -EINVAL;
997 }
998
Joe Perchesea110732011-06-13 16:21:26 +0000999 sa_addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 af = sctp_get_af_specific(sa_addr->sa_family);
1001
1002 /* If the address family is not supported or if this address
1003 * causes the address buffer to overflow return EINVAL.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1006 kfree(kaddrs);
1007 return -EINVAL;
1008 }
1009 addrcnt++;
1010 addr_buf += af->sockaddr_len;
1011 walk_size += af->sockaddr_len;
1012 }
1013
1014 /* Do the work. */
1015 switch (op) {
1016 case SCTP_BINDX_ADD_ADDR:
1017 err = sctp_bindx_add(sk, kaddrs, addrcnt);
1018 if (err)
1019 goto out;
1020 err = sctp_send_asconf_add_ip(sk, kaddrs, addrcnt);
1021 break;
1022
1023 case SCTP_BINDX_REM_ADDR:
1024 err = sctp_bindx_rem(sk, kaddrs, addrcnt);
1025 if (err)
1026 goto out;
1027 err = sctp_send_asconf_del_ip(sk, kaddrs, addrcnt);
1028 break;
1029
1030 default:
1031 err = -EINVAL;
1032 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001033 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035out:
1036 kfree(kaddrs);
1037
1038 return err;
1039}
1040
Frank Filz3f7a87d2005-06-20 13:14:57 -07001041/* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size)
1042 *
1043 * Common routine for handling connect() and sctp_connectx().
1044 * Connect will come in with just a single address.
1045 */
wangweidong26ac8e52013-12-23 12:16:51 +08001046static int __sctp_connect(struct sock *sk,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001047 struct sockaddr *kaddrs,
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001048 int addrs_size,
1049 sctp_assoc_t *assoc_id)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001050{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001051 struct net *net = sock_net(sk);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001052 struct sctp_sock *sp;
1053 struct sctp_endpoint *ep;
1054 struct sctp_association *asoc = NULL;
1055 struct sctp_association *asoc2;
1056 struct sctp_transport *transport;
1057 union sctp_addr to;
Xin Long1c662012017-08-05 19:59:54 +08001058 enum sctp_scope scope;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001059 long timeo;
1060 int err = 0;
1061 int addrcnt = 0;
1062 int walk_size = 0;
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001063 union sctp_addr *sa_addr = NULL;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001064 void *addr_buf;
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001065 unsigned short port;
Vlad Yasevichf50f95c2007-07-03 12:47:40 -04001066 unsigned int f_flags = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001067
1068 sp = sctp_sk(sk);
1069 ep = sp->ep;
1070
1071 /* connect() cannot be done on a socket that is already in ESTABLISHED
1072 * state - UDP-style peeled off socket or a TCP-style socket that
1073 * is already connected.
1074 * It cannot be done even on a TCP-style listening socket.
1075 */
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -03001076 if (sctp_sstate(sk, ESTABLISHED) || sctp_sstate(sk, CLOSING) ||
Frank Filz3f7a87d2005-06-20 13:14:57 -07001077 (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))) {
1078 err = -EISCONN;
1079 goto out_free;
1080 }
1081
1082 /* Walk through the addrs buffer and count the number of addresses. */
1083 addr_buf = kaddrs;
1084 while (walk_size < addrs_size) {
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001085 struct sctp_af *af;
1086
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001087 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1088 err = -EINVAL;
1089 goto out_free;
1090 }
1091
Joe Perchesea110732011-06-13 16:21:26 +00001092 sa_addr = addr_buf;
Al Viro4bdf4b52006-11-20 17:10:20 -08001093 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001094
1095 /* If the address family is not supported or if this address
1096 * causes the address buffer to overflow return EINVAL.
1097 */
1098 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1099 err = -EINVAL;
1100 goto out_free;
1101 }
1102
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001103 port = ntohs(sa_addr->v4.sin_port);
1104
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001105 /* Save current address so we can work with it */
1106 memcpy(&to, sa_addr, af->sockaddr_len);
1107
1108 err = sctp_verify_addr(sk, &to, af->sockaddr_len);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001109 if (err)
1110 goto out_free;
1111
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001112 /* Make sure the destination port is correctly set
1113 * in all addresses.
1114 */
Wei Yongjun524fba62013-04-03 03:02:28 +00001115 if (asoc && asoc->peer.port && asoc->peer.port != port) {
1116 err = -EINVAL;
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001117 goto out_free;
Wei Yongjun524fba62013-04-03 03:02:28 +00001118 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001119
1120 /* Check if there already is a matching association on the
1121 * endpoint (other than the one created here).
1122 */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001123 asoc2 = sctp_endpoint_lookup_assoc(ep, &to, &transport);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001124 if (asoc2 && asoc2 != asoc) {
1125 if (asoc2->state >= SCTP_STATE_ESTABLISHED)
1126 err = -EISCONN;
1127 else
1128 err = -EALREADY;
1129 goto out_free;
1130 }
1131
1132 /* If we could not find a matching association on the endpoint,
1133 * make sure that there is no peeled-off association matching
1134 * the peer address even on another socket.
1135 */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001136 if (sctp_endpoint_is_peeled_off(ep, &to)) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07001137 err = -EADDRNOTAVAIL;
1138 goto out_free;
1139 }
1140
1141 if (!asoc) {
1142 /* If a bind() or sctp_bindx() is not called prior to
1143 * an sctp_connectx() call, the system picks an
1144 * ephemeral port and will choose an address set
1145 * equivalent to binding with a wildcard address.
1146 */
1147 if (!ep->base.bind_addr.port) {
1148 if (sctp_autobind(sk)) {
1149 err = -EAGAIN;
1150 goto out_free;
1151 }
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001152 } else {
1153 /*
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001154 * If an unprivileged user inherits a 1-many
1155 * style socket with open associations on a
1156 * privileged port, it MAY be permitted to
1157 * accept new associations, but it SHOULD NOT
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001158 * be permitted to open new associations.
1159 */
Krister Johansen4548b682017-01-20 17:49:11 -08001160 if (ep->base.bind_addr.port <
1161 inet_prot_sock(net) &&
1162 !ns_capable(net->user_ns,
1163 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 Dumazetc720c7e82009-10-15 06:30:45 +00001212 inet_sk(sk)->inet_dport = htons(asoc->peer.port);
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001213 sp->pf->to_sk_daddr(sa_addr, sk);
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07001214 sk->sk_err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001215
Vlad Yasevichf50f95c2007-07-03 12:47:40 -04001216 /* in-kernel sockets don't generally have a file allocated to them
1217 * if all they do is call sock_create_kern().
1218 */
1219 if (sk->sk_socket->file)
1220 f_flags = sk->sk_socket->file->f_flags;
1221
1222 timeo = sock_sndtimeo(sk, f_flags & O_NONBLOCK);
1223
Marcelo Ricardo Leitner7233bc82016-11-03 17:03:41 -02001224 if (assoc_id)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001225 *assoc_id = asoc->assoc_id;
Marcelo Ricardo Leitner7233bc82016-11-03 17:03:41 -02001226 err = sctp_wait_for_connect(asoc, &timeo);
1227 /* Note: the asoc may be freed after the return of
1228 * sctp_wait_for_connect.
1229 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07001230
1231 /* Don't free association on exit. */
1232 asoc = NULL;
1233
1234out_free:
Daniel Borkmannbb333812013-06-28 19:49:40 +02001235 pr_debug("%s: took out_free path with asoc:%p kaddrs:%p err:%d\n",
1236 __func__, asoc, kaddrs, err);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001237
Neil Horman2eebc1e2012-07-16 09:13:51 +00001238 if (asoc) {
1239 /* sctp_primitive_ASSOCIATE may have added this association
1240 * To the hash table, try to unhash it, just in case, its a noop
1241 * if it wasn't hashed so we're safe
1242 */
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 */
wangweidong26ac8e52013-12-23 12:16:51 +08001310static 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{
Frank Filz3f7a87d2005-06-20 13:14:57 -07001315 struct sockaddr *kaddrs;
Marcelo Ricardo Leitner9ba0b962015-12-23 16:28:40 -02001316 gfp_t gfp = GFP_KERNEL;
1317 int err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001318
Daniel Borkmannbb333812013-06-28 19:49:40 +02001319 pr_debug("%s: sk:%p addrs:%p addrs_size:%d\n",
1320 __func__, sk, addrs, addrs_size);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001321
1322 if (unlikely(addrs_size <= 0))
1323 return -EINVAL;
1324
1325 /* Check the user passed a healthy pointer. */
1326 if (unlikely(!access_ok(VERIFY_READ, addrs, addrs_size)))
1327 return -EFAULT;
1328
1329 /* Alloc space for the address array in kernel memory. */
Marcelo Ricardo Leitner9ba0b962015-12-23 16:28:40 -02001330 if (sk->sk_socket->file)
1331 gfp = GFP_USER | __GFP_NOWARN;
1332 kaddrs = kmalloc(addrs_size, gfp);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001333 if (unlikely(!kaddrs))
1334 return -ENOMEM;
1335
1336 if (__copy_from_user(kaddrs, addrs, addrs_size)) {
1337 err = -EFAULT;
1338 } else {
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001339 err = __sctp_connect(sk, kaddrs, addrs_size, assoc_id);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001340 }
1341
1342 kfree(kaddrs);
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001343
Frank Filz3f7a87d2005-06-20 13:14:57 -07001344 return err;
1345}
1346
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001347/*
1348 * This is an older interface. It's kept for backward compatibility
1349 * to the option that doesn't provide association id.
1350 */
wangweidong26ac8e52013-12-23 12:16:51 +08001351static int sctp_setsockopt_connectx_old(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001352 struct sockaddr __user *addrs,
1353 int addrs_size)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001354{
1355 return __sctp_setsockopt_connectx(sk, addrs, addrs_size, NULL);
1356}
1357
1358/*
1359 * New interface for the API. The since the API is done with a socket
1360 * option, to make it simple we feed back the association id is as a return
1361 * indication to the call. Error is always negative and association id is
1362 * always positive.
1363 */
wangweidong26ac8e52013-12-23 12:16:51 +08001364static int sctp_setsockopt_connectx(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001365 struct sockaddr __user *addrs,
1366 int addrs_size)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001367{
1368 sctp_assoc_t assoc_id = 0;
1369 int err = 0;
1370
1371 err = __sctp_setsockopt_connectx(sk, addrs, addrs_size, &assoc_id);
1372
1373 if (err)
1374 return err;
1375 else
1376 return assoc_id;
1377}
1378
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001379/*
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001380 * New (hopefully final) interface for the API.
1381 * We use the sctp_getaddrs_old structure so that use-space library
Daniel Borkmannffd59392014-02-17 12:11:11 +01001382 * can avoid any unnecessary allocations. The only different part
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001383 * is that we store the actual length of the address buffer into the
Daniel Borkmannffd59392014-02-17 12:11:11 +01001384 * addrs_num structure member. That way we can re-use the existing
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001385 * code.
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001386 */
Daniel Borkmannffd59392014-02-17 12:11:11 +01001387#ifdef CONFIG_COMPAT
1388struct compat_sctp_getaddrs_old {
1389 sctp_assoc_t assoc_id;
1390 s32 addr_num;
1391 compat_uptr_t addrs; /* struct sockaddr * */
1392};
1393#endif
1394
wangweidong26ac8e52013-12-23 12:16:51 +08001395static int sctp_getsockopt_connectx3(struct sock *sk, int len,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001396 char __user *optval,
1397 int __user *optlen)
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001398{
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001399 struct sctp_getaddrs_old param;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001400 sctp_assoc_t assoc_id = 0;
1401 int err = 0;
1402
Daniel Borkmannffd59392014-02-17 12:11:11 +01001403#ifdef CONFIG_COMPAT
Andy Lutomirski96c0e0a2016-03-22 14:25:07 -07001404 if (in_compat_syscall()) {
Daniel Borkmannffd59392014-02-17 12:11:11 +01001405 struct compat_sctp_getaddrs_old param32;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001406
Daniel Borkmannffd59392014-02-17 12:11:11 +01001407 if (len < sizeof(param32))
1408 return -EINVAL;
1409 if (copy_from_user(&param32, optval, sizeof(param32)))
1410 return -EFAULT;
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001411
Daniel Borkmannffd59392014-02-17 12:11:11 +01001412 param.assoc_id = param32.assoc_id;
1413 param.addr_num = param32.addr_num;
1414 param.addrs = compat_ptr(param32.addrs);
1415 } else
1416#endif
1417 {
1418 if (len < sizeof(param))
1419 return -EINVAL;
1420 if (copy_from_user(&param, optval, sizeof(param)))
1421 return -EFAULT;
1422 }
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001423
Daniel Borkmannffd59392014-02-17 12:11:11 +01001424 err = __sctp_setsockopt_connectx(sk, (struct sockaddr __user *)
1425 param.addrs, param.addr_num,
1426 &assoc_id);
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001427 if (err == 0 || err == -EINPROGRESS) {
1428 if (copy_to_user(optval, &assoc_id, sizeof(assoc_id)))
1429 return -EFAULT;
1430 if (put_user(sizeof(assoc_id), optlen))
1431 return -EFAULT;
1432 }
1433
1434 return err;
1435}
1436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437/* API 3.1.4 close() - UDP Style Syntax
1438 * Applications use close() to perform graceful shutdown (as described in
1439 * Section 10.1 of [SCTP]) on ALL the associations currently represented
1440 * by a UDP-style socket.
1441 *
1442 * The syntax is
1443 *
1444 * ret = close(int sd);
1445 *
1446 * sd - the socket descriptor of the associations to be closed.
1447 *
1448 * To gracefully shutdown a specific association represented by the
1449 * UDP-style socket, an application should use the sendmsg() call,
1450 * passing no user data, but including the appropriate flag in the
1451 * ancillary data (see Section xxxx).
1452 *
1453 * If sd in the close() call is a branched-off socket representing only
1454 * one association, the shutdown is performed on that association only.
1455 *
1456 * 4.1.6 close() - TCP Style Syntax
1457 *
1458 * Applications use close() to gracefully close down an association.
1459 *
1460 * The syntax is:
1461 *
1462 * int close(int sd);
1463 *
1464 * sd - the socket descriptor of the association to be closed.
1465 *
1466 * After an application calls close() on a socket descriptor, no further
1467 * socket operations will succeed on that descriptor.
1468 *
1469 * API 7.1.4 SO_LINGER
1470 *
1471 * An application using the TCP-style socket can use this option to
1472 * perform the SCTP ABORT primitive. The linger option structure is:
1473 *
1474 * struct linger {
1475 * int l_onoff; // option on/off
1476 * int l_linger; // linger time
1477 * };
1478 *
1479 * To enable the option, set l_onoff to 1. If the l_linger value is set
1480 * to 0, calling close() is the same as the ABORT primitive. If the
1481 * value is set to a negative value, the setsockopt() call will return
1482 * an error. If the value is set to a positive value linger_time, the
1483 * close() can be blocked for at most linger_time ms. If the graceful
1484 * shutdown phase does not finish during this period, close() will
1485 * return but the graceful shutdown phase continues in the system.
1486 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02001487static void sctp_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001489 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 struct sctp_endpoint *ep;
1491 struct sctp_association *asoc;
1492 struct list_head *pos, *temp;
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001493 unsigned int data_was_unread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Daniel Borkmannbb333812013-06-28 19:49:40 +02001495 pr_debug("%s: sk:%p, timeout:%ld\n", __func__, sk, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Xin Long6dfe4b92017-06-10 14:56:56 +08001497 lock_sock_nested(sk, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 sk->sk_shutdown = SHUTDOWN_MASK;
Vlad Yasevichbec96402009-07-30 18:08:28 -04001499 sk->sk_state = SCTP_SS_CLOSING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
1501 ep = sctp_sk(sk)->ep;
1502
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001503 /* Clean up any skbs sitting on the receive queue. */
1504 data_was_unread = sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1505 data_was_unread += sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1506
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07001507 /* Walk all associations on an endpoint. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 list_for_each_safe(pos, temp, &ep->asocs) {
1509 asoc = list_entry(pos, struct sctp_association, asocs);
1510
1511 if (sctp_style(sk, TCP)) {
1512 /* A closed association can still be in the list if
1513 * it belongs to a TCP-style listening socket that is
1514 * not yet accepted. If so, free it. If not, send an
1515 * ABORT or SHUTDOWN based on the linger options.
1516 */
1517 if (sctp_state(asoc, CLOSED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 sctp_association_free(asoc);
Vladislav Yasevichb89498a2006-05-19 14:32:06 -07001519 continue;
1520 }
1521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001523 if (data_was_unread || !skb_queue_empty(&asoc->ulpq.lobby) ||
1524 !skb_queue_empty(&asoc->ulpq.reasm) ||
1525 (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) {
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001526 struct sctp_chunk *chunk;
1527
1528 chunk = sctp_make_abort_user(asoc, NULL, 0);
Xin Long068d8bd2015-12-29 17:49:25 +08001529 sctp_primitive_ABORT(net, asoc, chunk);
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001530 } else
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001531 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 }
1533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 /* On a TCP-style socket, block for at most linger_time if set. */
1535 if (sctp_style(sk, TCP) && timeout)
1536 sctp_wait_for_close(sk, timeout);
1537
1538 /* This will run the backlog queue. */
wangweidong048ed4b2014-01-21 15:44:11 +08001539 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
1541 /* Supposedly, no process has access to the socket, but
1542 * the net layers still may.
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001543 * Also, sctp_destroy_sock() needs to be called with addr_wq_lock
1544 * held and that should be grabbed before socket lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 */
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001546 spin_lock_bh(&net->sctp.addr_wq_lock);
Xin Long6dfe4b92017-06-10 14:56:56 +08001547 bh_lock_sock_nested(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
1549 /* Hold the sock, since sk_common_release() will put sock_put()
1550 * and we have just a little more cleanup.
1551 */
1552 sock_hold(sk);
1553 sk_common_release(sk);
1554
wangweidong5bc1d1b2014-01-21 15:44:12 +08001555 bh_unlock_sock(sk);
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001556 spin_unlock_bh(&net->sctp.addr_wq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 sock_put(sk);
1559
1560 SCTP_DBG_OBJCNT_DEC(sock);
1561}
1562
1563/* Handle EPIPE error. */
1564static int sctp_error(struct sock *sk, int flags, int err)
1565{
1566 if (err == -EPIPE)
1567 err = sock_error(sk) ? : -EPIPE;
1568 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1569 send_sig(SIGPIPE, current, 0);
1570 return err;
1571}
1572
1573/* API 3.1.3 sendmsg() - UDP Style Syntax
1574 *
1575 * An application uses sendmsg() and recvmsg() calls to transmit data to
1576 * and receive data from its peer.
1577 *
1578 * ssize_t sendmsg(int socket, const struct msghdr *message,
1579 * int flags);
1580 *
1581 * socket - the socket descriptor of the endpoint.
1582 * message - pointer to the msghdr structure which contains a single
1583 * user message and possibly some ancillary data.
1584 *
1585 * See Section 5 for complete description of the data
1586 * structures.
1587 *
1588 * flags - flags sent or received with the user message, see Section
1589 * 5 for complete description of the flags.
1590 *
1591 * Note: This function could use a rewrite especially when explicit
1592 * connect support comes in.
1593 */
1594/* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */
1595
Xin Longa05437a2017-08-11 10:23:48 +08001596static int sctp_msghdr_parse(const struct msghdr *msg,
1597 struct sctp_cmsgs *cmsgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Ying Xue1b784142015-03-02 15:37:48 +08001599static int sctp_sendmsg(struct sock *sk, struct msghdr *msg, size_t msg_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001601 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 struct sctp_sock *sp;
1603 struct sctp_endpoint *ep;
wangweidongcb3f8372013-12-23 12:16:50 +08001604 struct sctp_association *new_asoc = NULL, *asoc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 struct sctp_transport *transport, *chunk_tp;
1606 struct sctp_chunk *chunk;
Al Virodce116a2006-11-20 17:25:15 -08001607 union sctp_addr to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 struct sockaddr *msg_name = NULL;
Joe Perches517aa0b2011-05-12 11:27:20 +00001609 struct sctp_sndrcvinfo default_sinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 struct sctp_sndrcvinfo *sinfo;
1611 struct sctp_initmsg *sinit;
1612 sctp_assoc_t associd = 0;
Xin Longa05437a2017-08-11 10:23:48 +08001613 struct sctp_cmsgs cmsgs = { NULL };
Xin Long1c662012017-08-05 19:59:54 +08001614 enum sctp_scope scope;
Daniel Borkmann2061dcd2015-01-15 16:34:35 +01001615 bool fill_sinfo_ttl = false, wait_connect = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 struct sctp_datamsg *datamsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 int msg_flags = msg->msg_flags;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02001618 __u16 sinfo_flags = 0;
1619 long timeo;
1620 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 err = 0;
1623 sp = sctp_sk(sk);
1624 ep = sp->ep;
1625
Daniel Borkmannbb333812013-06-28 19:49:40 +02001626 pr_debug("%s: sk:%p, msg:%p, msg_len:%zu ep:%p\n", __func__, sk,
1627 msg, msg_len, ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
1629 /* We cannot send a message over a TCP-style listening socket. */
1630 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING)) {
1631 err = -EPIPE;
1632 goto out_nounlock;
1633 }
1634
1635 /* Parse out the SCTP CMSGs. */
1636 err = sctp_msghdr_parse(msg, &cmsgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 if (err) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02001638 pr_debug("%s: msghdr parse err:%x\n", __func__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 goto out_nounlock;
1640 }
1641
1642 /* Fetch the destination address for this packet. This
1643 * address only selects the association--it is not necessarily
1644 * the address we will send to.
1645 * For a peeled-off socket, msg_name is ignored.
1646 */
1647 if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
1648 int msg_namelen = msg->msg_namelen;
1649
1650 err = sctp_verify_addr(sk, (union sctp_addr *)msg->msg_name,
1651 msg_namelen);
1652 if (err)
1653 return err;
1654
1655 if (msg_namelen > sizeof(to))
1656 msg_namelen = sizeof(to);
1657 memcpy(&to, msg->msg_name, msg_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 msg_name = msg->msg_name;
1659 }
1660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 sinit = cmsgs.init;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02001662 if (cmsgs.sinfo != NULL) {
1663 memset(&default_sinfo, 0, sizeof(default_sinfo));
1664 default_sinfo.sinfo_stream = cmsgs.sinfo->snd_sid;
1665 default_sinfo.sinfo_flags = cmsgs.sinfo->snd_flags;
1666 default_sinfo.sinfo_ppid = cmsgs.sinfo->snd_ppid;
1667 default_sinfo.sinfo_context = cmsgs.sinfo->snd_context;
1668 default_sinfo.sinfo_assoc_id = cmsgs.sinfo->snd_assoc_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02001670 sinfo = &default_sinfo;
1671 fill_sinfo_ttl = true;
1672 } else {
1673 sinfo = cmsgs.srinfo;
1674 }
1675 /* Did the user specify SNDINFO/SNDRCVINFO? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 if (sinfo) {
1677 sinfo_flags = sinfo->sinfo_flags;
1678 associd = sinfo->sinfo_assoc_id;
1679 }
1680
Daniel Borkmannbb333812013-06-28 19:49:40 +02001681 pr_debug("%s: msg_len:%zu, sinfo_flags:0x%x\n", __func__,
1682 msg_len, sinfo_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001684 /* SCTP_EOF or SCTP_ABORT cannot be set on a TCP-style socket. */
1685 if (sctp_style(sk, TCP) && (sinfo_flags & (SCTP_EOF | SCTP_ABORT))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 err = -EINVAL;
1687 goto out_nounlock;
1688 }
1689
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001690 /* If SCTP_EOF is set, no data can be sent. Disallow sending zero
1691 * length messages when SCTP_EOF|SCTP_ABORT is not set.
1692 * If SCTP_ABORT is set, the message length could be non zero with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 * the msg_iov set to the user abort reason.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001694 */
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001695 if (((sinfo_flags & SCTP_EOF) && (msg_len > 0)) ||
1696 (!(sinfo_flags & (SCTP_EOF|SCTP_ABORT)) && (msg_len == 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 err = -EINVAL;
1698 goto out_nounlock;
1699 }
1700
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001701 /* If SCTP_ADDR_OVER is set, there must be an address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 * specified in msg_name.
1703 */
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001704 if ((sinfo_flags & SCTP_ADDR_OVER) && (!msg->msg_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 err = -EINVAL;
1706 goto out_nounlock;
1707 }
1708
1709 transport = NULL;
1710
Daniel Borkmannbb333812013-06-28 19:49:40 +02001711 pr_debug("%s: about to look up association\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
wangweidong048ed4b2014-01-21 15:44:11 +08001713 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
1715 /* If a msg_name has been specified, assume this is to be used. */
1716 if (msg_name) {
1717 /* Look for a matching association on the endpoint. */
Al Virodce116a2006-11-20 17:25:15 -08001718 asoc = sctp_endpoint_lookup_assoc(ep, &to, &transport);
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -03001719
1720 /* If we could not find a matching association on the
1721 * endpoint, make sure that it is not a TCP-style
1722 * socket that already has an association or there is
1723 * no peeled-off association on another socket.
1724 */
1725 if (!asoc &&
1726 ((sctp_style(sk, TCP) &&
1727 (sctp_sstate(sk, ESTABLISHED) ||
1728 sctp_sstate(sk, CLOSING))) ||
1729 sctp_endpoint_is_peeled_off(ep, &to))) {
1730 err = -EADDRNOTAVAIL;
1731 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 }
1733 } else {
1734 asoc = sctp_id2assoc(sk, associd);
1735 if (!asoc) {
1736 err = -EPIPE;
1737 goto out_unlock;
1738 }
1739 }
1740
1741 if (asoc) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02001742 pr_debug("%s: just looked up association:%p\n", __func__, asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 /* We cannot send a message on a TCP-style SCTP_SS_ESTABLISHED
1745 * socket that has an association in CLOSED state. This can
1746 * happen when an accepted socket has an association that is
1747 * already CLOSED.
1748 */
1749 if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP)) {
1750 err = -EPIPE;
1751 goto out_unlock;
1752 }
1753
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001754 if (sinfo_flags & SCTP_EOF) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02001755 pr_debug("%s: shutting down association:%p\n",
1756 __func__, asoc);
1757
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001758 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 err = 0;
1760 goto out_unlock;
1761 }
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001762 if (sinfo_flags & SCTP_ABORT) {
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001763
1764 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1765 if (!chunk) {
1766 err = -ENOMEM;
1767 goto out_unlock;
1768 }
1769
Daniel Borkmannbb333812013-06-28 19:49:40 +02001770 pr_debug("%s: aborting association:%p\n",
1771 __func__, asoc);
1772
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001773 sctp_primitive_ABORT(net, asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 err = 0;
1775 goto out_unlock;
1776 }
1777 }
1778
1779 /* Do we need to create the association? */
1780 if (!asoc) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02001781 pr_debug("%s: there is no association yet\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001783 if (sinfo_flags & (SCTP_EOF | SCTP_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 err = -EINVAL;
1785 goto out_unlock;
1786 }
1787
1788 /* Check for invalid stream against the stream counts,
1789 * either the default or the user specified stream counts.
1790 */
1791 if (sinfo) {
Dan Carpenter0e864b22014-01-13 16:46:08 +03001792 if (!sinit || !sinit->sinit_num_ostreams) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 /* Check against the defaults. */
1794 if (sinfo->sinfo_stream >=
1795 sp->initmsg.sinit_num_ostreams) {
1796 err = -EINVAL;
1797 goto out_unlock;
1798 }
1799 } else {
1800 /* Check against the requested. */
1801 if (sinfo->sinfo_stream >=
1802 sinit->sinit_num_ostreams) {
1803 err = -EINVAL;
1804 goto out_unlock;
1805 }
1806 }
1807 }
1808
1809 /*
1810 * API 3.1.2 bind() - UDP Style Syntax
1811 * If a bind() or sctp_bindx() is not called prior to a
1812 * sendmsg() call that initiates a new association, the
1813 * system picks an ephemeral port and will choose an address
1814 * set equivalent to binding with a wildcard address.
1815 */
1816 if (!ep->base.bind_addr.port) {
1817 if (sctp_autobind(sk)) {
1818 err = -EAGAIN;
1819 goto out_unlock;
1820 }
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001821 } else {
1822 /*
1823 * If an unprivileged user inherits a one-to-many
1824 * style socket with open associations on a privileged
1825 * port, it MAY be permitted to accept new associations,
1826 * but it SHOULD NOT be permitted to open new
1827 * associations.
1828 */
Krister Johansen4548b682017-01-20 17:49:11 -08001829 if (ep->base.bind_addr.port < inet_prot_sock(net) &&
Eric W. Biederman35946982012-11-16 03:03:12 +00001830 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE)) {
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001831 err = -EACCES;
1832 goto out_unlock;
1833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 }
1835
1836 scope = sctp_scope(&to);
1837 new_asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1838 if (!new_asoc) {
1839 err = -ENOMEM;
1840 goto out_unlock;
1841 }
1842 asoc = new_asoc;
Vlad Yasevich409b95a2009-11-10 08:57:34 +00001843 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope, GFP_KERNEL);
1844 if (err < 0) {
1845 err = -ENOMEM;
1846 goto out_free;
1847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
1849 /* If the SCTP_INIT ancillary data is specified, set all
1850 * the association init values accordingly.
1851 */
1852 if (sinit) {
1853 if (sinit->sinit_num_ostreams) {
1854 asoc->c.sinit_num_ostreams =
1855 sinit->sinit_num_ostreams;
1856 }
1857 if (sinit->sinit_max_instreams) {
1858 asoc->c.sinit_max_instreams =
1859 sinit->sinit_max_instreams;
1860 }
1861 if (sinit->sinit_max_attempts) {
1862 asoc->max_init_attempts
1863 = sinit->sinit_max_attempts;
1864 }
1865 if (sinit->sinit_max_init_timeo) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001866 asoc->max_init_timeo =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 msecs_to_jiffies(sinit->sinit_max_init_timeo);
1868 }
1869 }
1870
1871 /* Prime the peer's transport structures. */
Al Virodce116a2006-11-20 17:25:15 -08001872 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL, SCTP_UNKNOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 if (!transport) {
1874 err = -ENOMEM;
1875 goto out_free;
1876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 }
1878
1879 /* ASSERT: we have a valid association at this point. */
Daniel Borkmannbb333812013-06-28 19:49:40 +02001880 pr_debug("%s: we have a valid association\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
1882 if (!sinfo) {
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02001883 /* If the user didn't specify SNDINFO/SNDRCVINFO, make up
1884 * one with some defaults.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 */
Joe Perches517aa0b2011-05-12 11:27:20 +00001886 memset(&default_sinfo, 0, sizeof(default_sinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 default_sinfo.sinfo_stream = asoc->default_stream;
1888 default_sinfo.sinfo_flags = asoc->default_flags;
1889 default_sinfo.sinfo_ppid = asoc->default_ppid;
1890 default_sinfo.sinfo_context = asoc->default_context;
1891 default_sinfo.sinfo_timetolive = asoc->default_timetolive;
1892 default_sinfo.sinfo_assoc_id = sctp_assoc2id(asoc);
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02001893
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 sinfo = &default_sinfo;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02001895 } else if (fill_sinfo_ttl) {
1896 /* In case SNDINFO was specified, we still need to fill
1897 * it with a default ttl from the assoc here.
1898 */
1899 sinfo->sinfo_timetolive = asoc->default_timetolive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 }
1901
1902 /* API 7.1.7, the sndbuf size per association bounds the
1903 * maximum size of data that can be sent in a single send call.
1904 */
1905 if (msg_len > sk->sk_sndbuf) {
1906 err = -EMSGSIZE;
1907 goto out_free;
1908 }
1909
Vlad Yasevich8a479492007-06-07 14:21:05 -04001910 if (asoc->pmtu_pending)
Xin Long3ebfdf02017-04-04 13:39:55 +08001911 sctp_assoc_pending_pmtu(asoc);
Vlad Yasevich8a479492007-06-07 14:21:05 -04001912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 /* If fragmentation is disabled and the message length exceeds the
1914 * association fragmentation point, return EMSGSIZE. The I-D
1915 * does not specify what this error is, but this looks like
1916 * a great fit.
1917 */
1918 if (sctp_sk(sk)->disable_fragments && (msg_len > asoc->frag_point)) {
1919 err = -EMSGSIZE;
1920 goto out_free;
1921 }
1922
Joe Perchesafd76142011-05-12 09:19:10 +00001923 /* Check for invalid stream. */
Xin Longcee360a2017-05-31 16:36:31 +08001924 if (sinfo->sinfo_stream >= asoc->stream.outcnt) {
Joe Perchesafd76142011-05-12 09:19:10 +00001925 err = -EINVAL;
1926 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 }
1928
Xin Long8dbdf1f2016-07-09 19:47:45 +08001929 if (sctp_wspace(asoc) < msg_len)
1930 sctp_prsctp_prune(asoc, sinfo, msg_len - sctp_wspace(asoc));
1931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1933 if (!sctp_wspace(asoc)) {
1934 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1935 if (err)
1936 goto out_free;
1937 }
1938
1939 /* If an address is passed with the sendto/sendmsg call, it is used
1940 * to override the primary destination address in the TCP model, or
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001941 * when SCTP_ADDR_OVER flag is set in the UDP model.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 */
1943 if ((sctp_style(sk, TCP) && msg_name) ||
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001944 (sinfo_flags & SCTP_ADDR_OVER)) {
Al Virodce116a2006-11-20 17:25:15 -08001945 chunk_tp = sctp_assoc_lookup_paddr(asoc, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 if (!chunk_tp) {
1947 err = -EINVAL;
1948 goto out_free;
1949 }
1950 } else
1951 chunk_tp = NULL;
1952
1953 /* Auto-connect, if we aren't connected already. */
1954 if (sctp_state(asoc, CLOSED)) {
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001955 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 if (err < 0)
1957 goto out_free;
Daniel Borkmannbb333812013-06-28 19:49:40 +02001958
Daniel Borkmann2061dcd2015-01-15 16:34:35 +01001959 wait_connect = true;
Daniel Borkmannbb333812013-06-28 19:49:40 +02001960 pr_debug("%s: we associated primitively\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 }
1962
1963 /* Break the message into multiple chunks of maximum size. */
Al Viroc0371da2014-11-24 10:42:55 -05001964 datamsg = sctp_datamsg_from_user(asoc, sinfo, &msg->msg_iter);
Tommi Rantala6e51fe72012-11-22 03:23:16 +00001965 if (IS_ERR(datamsg)) {
1966 err = PTR_ERR(datamsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 goto out_free;
1968 }
Xin Longf9ba3502017-03-27 00:21:15 +08001969 asoc->force_delay = !!(msg->msg_flags & MSG_MORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
1971 /* Now send the (possibly) fragmented message. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001972 list_for_each_entry(chunk, &datamsg->chunks, frag_list) {
Xin Longb61c6542016-09-14 02:04:20 +08001973 sctp_chunk_hold(chunk);
1974
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 /* Do accounting for the write space. */
1976 sctp_set_owner_w(chunk);
1977
1978 chunk->transport = chunk_tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 }
1980
Vlad Yasevich9c5c62b2009-08-10 13:51:03 -04001981 /* Send it to the lower layers. Note: all chunks
1982 * must either fail or succeed. The lower layer
1983 * works that way today. Keep it that way or this
1984 * breaks.
1985 */
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001986 err = sctp_primitive_SEND(net, asoc, datamsg);
Vlad Yasevich9c5c62b2009-08-10 13:51:03 -04001987 /* Did the lower layer accept the chunk? */
Xin Longb61c6542016-09-14 02:04:20 +08001988 if (err) {
1989 sctp_datamsg_free(datamsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 goto out_free;
Xin Longb61c6542016-09-14 02:04:20 +08001991 }
Daniel Borkmannbb333812013-06-28 19:49:40 +02001992
1993 pr_debug("%s: we sent primitively\n", __func__);
1994
Xin Longb61c6542016-09-14 02:04:20 +08001995 sctp_datamsg_put(datamsg);
Daniel Borkmannbb333812013-06-28 19:49:40 +02001996 err = msg_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
Daniel Borkmann2061dcd2015-01-15 16:34:35 +01001998 if (unlikely(wait_connect)) {
1999 timeo = sock_sndtimeo(sk, msg_flags & MSG_DONTWAIT);
2000 sctp_wait_for_connect(asoc, &timeo);
2001 }
2002
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 /* If we are already past ASSOCIATE, the lower
2004 * layers are responsible for association cleanup.
2005 */
2006 goto out_unlock;
2007
2008out_free:
Xin Longb5eff712015-12-30 23:50:49 +08002009 if (new_asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 sctp_association_free(asoc);
2011out_unlock:
wangweidong048ed4b2014-01-21 15:44:11 +08002012 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
2014out_nounlock:
2015 return sctp_error(sk, msg_flags, err);
2016
2017#if 0
2018do_sock_err:
2019 if (msg_len)
2020 err = msg_len;
2021 else
2022 err = sock_error(sk);
2023 goto out;
2024
2025do_interrupted:
2026 if (msg_len)
2027 err = msg_len;
2028 goto out;
2029#endif /* 0 */
2030}
2031
2032/* This is an extended version of skb_pull() that removes the data from the
2033 * start of a skb even when data is spread across the list of skb's in the
2034 * frag_list. len specifies the total amount of data that needs to be removed.
2035 * when 'len' bytes could be removed from the skb, it returns 0.
2036 * If 'len' exceeds the total skb length, it returns the no. of bytes that
2037 * could not be removed.
2038 */
2039static int sctp_skb_pull(struct sk_buff *skb, int len)
2040{
2041 struct sk_buff *list;
2042 int skb_len = skb_headlen(skb);
2043 int rlen;
2044
2045 if (len <= skb_len) {
2046 __skb_pull(skb, len);
2047 return 0;
2048 }
2049 len -= skb_len;
2050 __skb_pull(skb, skb_len);
2051
David S. Miller1b003be2009-06-09 00:22:35 -07002052 skb_walk_frags(skb, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 rlen = sctp_skb_pull(list, len);
2054 skb->len -= (len-rlen);
2055 skb->data_len -= (len-rlen);
2056
2057 if (!rlen)
2058 return 0;
2059
2060 len = rlen;
2061 }
2062
2063 return len;
2064}
2065
2066/* API 3.1.3 recvmsg() - UDP Style Syntax
2067 *
2068 * ssize_t recvmsg(int socket, struct msghdr *message,
2069 * int flags);
2070 *
2071 * socket - the socket descriptor of the endpoint.
2072 * message - pointer to the msghdr structure which contains a single
2073 * user message and possibly some ancillary data.
2074 *
2075 * See Section 5 for complete description of the data
2076 * structures.
2077 *
2078 * flags - flags sent or received with the user message, see Section
2079 * 5 for complete description of the flags.
2080 */
Ying Xue1b784142015-03-02 15:37:48 +08002081static int sctp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
2082 int noblock, int flags, int *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083{
2084 struct sctp_ulpevent *event = NULL;
2085 struct sctp_sock *sp = sctp_sk(sk);
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002086 struct sk_buff *skb, *head_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 int copied;
2088 int err = 0;
2089 int skb_len;
2090
Daniel Borkmannbb333812013-06-28 19:49:40 +02002091 pr_debug("%s: sk:%p, msghdr:%p, len:%zd, noblock:%d, flags:0x%x, "
2092 "addr_len:%p)\n", __func__, sk, msg, len, noblock, flags,
2093 addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
wangweidong048ed4b2014-01-21 15:44:11 +08002095 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -03002097 if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED) &&
Xin Longe0878692016-07-30 14:14:41 +08002098 !sctp_sstate(sk, CLOSING) && !sctp_sstate(sk, CLOSED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 err = -ENOTCONN;
2100 goto out;
2101 }
2102
2103 skb = sctp_skb_recv_datagram(sk, flags, noblock, &err);
2104 if (!skb)
2105 goto out;
2106
2107 /* Get the total length of the skb including any skb's in the
2108 * frag_list.
2109 */
2110 skb_len = skb->len;
2111
2112 copied = skb_len;
2113 if (copied > len)
2114 copied = len;
2115
David S. Miller51f3d022014-11-05 16:46:40 -05002116 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118 event = sctp_skb2event(skb);
2119
2120 if (err)
2121 goto out_free;
2122
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002123 if (event->chunk && event->chunk->head_skb)
2124 head_skb = event->chunk->head_skb;
2125 else
2126 head_skb = skb;
2127 sock_recv_ts_and_drops(msg, sk, head_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 if (sctp_ulpevent_is_notification(event)) {
2129 msg->msg_flags |= MSG_NOTIFICATION;
2130 sp->pf->event_msgname(event, msg->msg_name, addr_len);
2131 } else {
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002132 sp->pf->skb_msgname(head_skb, msg->msg_name, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 }
2134
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02002135 /* Check if we allow SCTP_NXTINFO. */
2136 if (sp->recvnxtinfo)
2137 sctp_ulpevent_read_nxtinfo(event, msg, sk);
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02002138 /* Check if we allow SCTP_RCVINFO. */
2139 if (sp->recvrcvinfo)
2140 sctp_ulpevent_read_rcvinfo(event, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 /* Check if we allow SCTP_SNDRCVINFO. */
2142 if (sp->subscribe.sctp_data_io_event)
2143 sctp_ulpevent_read_sndrcvinfo(event, msg);
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02002144
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 err = copied;
2146
2147 /* If skb's length exceeds the user's buffer, update the skb and
2148 * push it back to the receive_queue so that the next call to
2149 * recvmsg() will return the remaining data. Don't set MSG_EOR.
2150 */
2151 if (skb_len > copied) {
2152 msg->msg_flags &= ~MSG_EOR;
2153 if (flags & MSG_PEEK)
2154 goto out_free;
2155 sctp_skb_pull(skb, copied);
2156 skb_queue_head(&sk->sk_receive_queue, skb);
2157
Daniel Borkmann362d5202014-04-14 21:45:17 +02002158 /* When only partial message is copied to the user, increase
2159 * rwnd by that amount. If all the data in the skb is read,
2160 * rwnd is updated when the event is freed.
2161 */
2162 if (!sctp_ulpevent_is_notification(event))
2163 sctp_assoc_rwnd_increase(event->asoc, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 goto out;
2165 } else if ((event->msg_flags & MSG_NOTIFICATION) ||
2166 (event->msg_flags & MSG_EOR))
2167 msg->msg_flags |= MSG_EOR;
2168 else
2169 msg->msg_flags &= ~MSG_EOR;
2170
2171out_free:
2172 if (flags & MSG_PEEK) {
2173 /* Release the skb reference acquired after peeking the skb in
2174 * sctp_skb_recv_datagram().
2175 */
2176 kfree_skb(skb);
2177 } else {
2178 /* Free the event which includes releasing the reference to
2179 * the owner of the skb, freeing the skb and updating the
2180 * rwnd.
2181 */
2182 sctp_ulpevent_free(event);
2183 }
2184out:
wangweidong048ed4b2014-01-21 15:44:11 +08002185 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 return err;
2187}
2188
2189/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
2190 *
2191 * This option is a on/off flag. If enabled no SCTP message
2192 * fragmentation will be performed. Instead if a message being sent
2193 * exceeds the current PMTU size, the message will NOT be sent and
2194 * instead a error will be indicated to the user.
2195 */
2196static int sctp_setsockopt_disable_fragments(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002197 char __user *optval,
2198 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199{
2200 int val;
2201
2202 if (optlen < sizeof(int))
2203 return -EINVAL;
2204
2205 if (get_user(val, (int __user *)optval))
2206 return -EFAULT;
2207
2208 sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1;
2209
2210 return 0;
2211}
2212
2213static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002214 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215{
Wei Yongjun94912302011-07-02 09:28:04 +00002216 struct sctp_association *asoc;
2217 struct sctp_ulpevent *event;
2218
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05002219 if (optlen > sizeof(struct sctp_event_subscribe))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 return -EINVAL;
2221 if (copy_from_user(&sctp_sk(sk)->subscribe, optval, optlen))
2222 return -EFAULT;
Wei Yongjun94912302011-07-02 09:28:04 +00002223
Daniel Borkmannbbbea412014-07-12 20:30:40 +02002224 /* At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT,
Wei Yongjun94912302011-07-02 09:28:04 +00002225 * if there is no data to be sent or retransmit, the stack will
2226 * immediately send up this notification.
2227 */
2228 if (sctp_ulpevent_type_enabled(SCTP_SENDER_DRY_EVENT,
2229 &sctp_sk(sk)->subscribe)) {
2230 asoc = sctp_id2assoc(sk, 0);
2231
2232 if (asoc && sctp_outq_is_empty(&asoc->outqueue)) {
2233 event = sctp_ulpevent_make_sender_dry_event(asoc,
2234 GFP_ATOMIC);
2235 if (!event)
2236 return -ENOMEM;
2237
2238 sctp_ulpq_tail_event(&asoc->ulpq, event);
2239 }
2240 }
2241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 return 0;
2243}
2244
2245/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
2246 *
2247 * This socket option is applicable to the UDP-style socket only. When
2248 * set it will cause associations that are idle for more than the
2249 * specified number of seconds to automatically close. An association
2250 * being idle is defined an association that has NOT sent or received
2251 * user data. The special value of '0' indicates that no automatic
2252 * close of any associations should be performed. The option expects an
2253 * integer defining the number of seconds of idle time before an
2254 * association is closed.
2255 */
2256static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002257 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258{
2259 struct sctp_sock *sp = sctp_sk(sk);
Neil Horman9f70f462013-12-10 06:48:15 -05002260 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
2262 /* Applicable to UDP-style socket only */
2263 if (sctp_style(sk, TCP))
2264 return -EOPNOTSUPP;
2265 if (optlen != sizeof(int))
2266 return -EINVAL;
2267 if (copy_from_user(&sp->autoclose, optval, optlen))
2268 return -EFAULT;
2269
Neil Horman9f70f462013-12-10 06:48:15 -05002270 if (sp->autoclose > net->sctp.max_autoclose)
2271 sp->autoclose = net->sctp.max_autoclose;
2272
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 return 0;
2274}
2275
2276/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
2277 *
2278 * Applications can enable or disable heartbeats for any peer address of
2279 * an association, modify an address's heartbeat interval, force a
2280 * heartbeat to be sent immediately, and adjust the address's maximum
2281 * number of retransmissions sent before an address is considered
2282 * unreachable. The following structure is used to access and modify an
2283 * address's parameters:
2284 *
2285 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002286 * sctp_assoc_t spp_assoc_id;
2287 * struct sockaddr_storage spp_address;
2288 * uint32_t spp_hbinterval;
2289 * uint16_t spp_pathmaxrxt;
2290 * uint32_t spp_pathmtu;
2291 * uint32_t spp_sackdelay;
2292 * uint32_t spp_flags;
2293 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002295 * spp_assoc_id - (one-to-many style socket) This is filled in the
2296 * application, and identifies the association for
2297 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 * spp_address - This specifies which address is of interest.
2299 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08002300 * in milliseconds. If a value of zero
2301 * is present in this field then no changes are to
2302 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 * spp_pathmaxrxt - This contains the maximum number of
2304 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08002305 * considered unreachable. If a value of zero
2306 * is present in this field then no changes are to
2307 * be made to this parameter.
2308 * spp_pathmtu - When Path MTU discovery is disabled the value
2309 * specified here will be the "fixed" path mtu.
2310 * Note that if the spp_address field is empty
2311 * then all associations on this address will
2312 * have this fixed path mtu set upon them.
2313 *
2314 * spp_sackdelay - When delayed sack is enabled, this value specifies
2315 * the number of milliseconds that sacks will be delayed
2316 * for. This value will apply to all addresses of an
2317 * association if the spp_address field is empty. Note
2318 * also, that if delayed sack is enabled and this
2319 * value is set to 0, no change is made to the last
2320 * recorded delayed sack timer value.
2321 *
2322 * spp_flags - These flags are used to control various features
2323 * on an association. The flag field may contain
2324 * zero or more of the following options.
2325 *
2326 * SPP_HB_ENABLE - Enable heartbeats on the
2327 * specified address. Note that if the address
2328 * field is empty all addresses for the association
2329 * have heartbeats enabled upon them.
2330 *
2331 * SPP_HB_DISABLE - Disable heartbeats on the
2332 * speicifed address. Note that if the address
2333 * field is empty all addresses for the association
2334 * will have their heartbeats disabled. Note also
2335 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
2336 * mutually exclusive, only one of these two should
2337 * be specified. Enabling both fields will have
2338 * undetermined results.
2339 *
2340 * SPP_HB_DEMAND - Request a user initiated heartbeat
2341 * to be made immediately.
2342 *
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002343 * SPP_HB_TIME_IS_ZERO - Specify's that the time for
2344 * heartbeat delayis to be set to the value of 0
2345 * milliseconds.
2346 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002347 * SPP_PMTUD_ENABLE - This field will enable PMTU
2348 * discovery upon the specified address. Note that
2349 * if the address feild is empty then all addresses
2350 * on the association are effected.
2351 *
2352 * SPP_PMTUD_DISABLE - This field will disable PMTU
2353 * discovery upon the specified address. Note that
2354 * if the address feild is empty then all addresses
2355 * on the association are effected. Not also that
2356 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2357 * exclusive. Enabling both will have undetermined
2358 * results.
2359 *
2360 * SPP_SACKDELAY_ENABLE - Setting this flag turns
2361 * on delayed sack. The time specified in spp_sackdelay
2362 * is used to specify the sack delay for this address. Note
2363 * that if spp_address is empty then all addresses will
2364 * enable delayed sack and take on the sack delay
2365 * value specified in spp_sackdelay.
2366 * SPP_SACKDELAY_DISABLE - Setting this flag turns
2367 * off delayed sack. If the spp_address field is blank then
2368 * delayed sack is disabled for the entire association. Note
2369 * also that this field is mutually exclusive to
2370 * SPP_SACKDELAY_ENABLE, setting both will have undefined
2371 * results.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 */
Adrian Bunk16164362006-09-18 00:40:38 -07002373static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2374 struct sctp_transport *trans,
2375 struct sctp_association *asoc,
2376 struct sctp_sock *sp,
2377 int hb_change,
2378 int pmtud_change,
2379 int sackdelay_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 int error;
2382
Frank Filz52ccb8e2005-12-22 11:36:46 -08002383 if (params->spp_flags & SPP_HB_DEMAND && trans) {
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00002384 struct net *net = sock_net(trans->asoc->base.sk);
2385
2386 error = sctp_primitive_REQUESTHEARTBEAT(net, trans->asoc, trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 if (error)
2388 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 }
2390
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002391 /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2392 * this field is ignored. Note also that a value of zero indicates
2393 * the current setting should be left unchanged.
2394 */
2395 if (params->spp_flags & SPP_HB_ENABLE) {
2396
2397 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2398 * set. This lets us use 0 value when this flag
2399 * is set.
2400 */
2401 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2402 params->spp_hbinterval = 0;
2403
2404 if (params->spp_hbinterval ||
2405 (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2406 if (trans) {
2407 trans->hbinterval =
2408 msecs_to_jiffies(params->spp_hbinterval);
2409 } else if (asoc) {
2410 asoc->hbinterval =
2411 msecs_to_jiffies(params->spp_hbinterval);
2412 } else {
2413 sp->hbinterval = params->spp_hbinterval;
2414 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08002415 }
2416 }
2417
2418 if (hb_change) {
2419 if (trans) {
2420 trans->param_flags =
2421 (trans->param_flags & ~SPP_HB) | hb_change;
2422 } else if (asoc) {
2423 asoc->param_flags =
2424 (asoc->param_flags & ~SPP_HB) | hb_change;
2425 } else {
2426 sp->param_flags =
2427 (sp->param_flags & ~SPP_HB) | hb_change;
2428 }
2429 }
2430
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002431 /* When Path MTU discovery is disabled the value specified here will
2432 * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2433 * include the flag SPP_PMTUD_DISABLE for this field to have any
2434 * effect).
2435 */
2436 if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002437 if (trans) {
2438 trans->pathmtu = params->spp_pathmtu;
Xin Long3ebfdf02017-04-04 13:39:55 +08002439 sctp_assoc_sync_pmtu(asoc);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002440 } else if (asoc) {
2441 asoc->pathmtu = params->spp_pathmtu;
Frank Filz52ccb8e2005-12-22 11:36:46 -08002442 } else {
2443 sp->pathmtu = params->spp_pathmtu;
2444 }
2445 }
2446
2447 if (pmtud_change) {
2448 if (trans) {
2449 int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2450 (params->spp_flags & SPP_PMTUD_ENABLE);
2451 trans->param_flags =
2452 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2453 if (update) {
Vlad Yasevich9914ae32011-04-26 21:51:31 +00002454 sctp_transport_pmtu(trans, sctp_opt2sk(sp));
Xin Long3ebfdf02017-04-04 13:39:55 +08002455 sctp_assoc_sync_pmtu(asoc);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002456 }
2457 } else if (asoc) {
2458 asoc->param_flags =
2459 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2460 } else {
2461 sp->param_flags =
2462 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2463 }
2464 }
2465
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002466 /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2467 * value of this field is ignored. Note also that a value of zero
2468 * indicates the current setting should be left unchanged.
2469 */
2470 if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002471 if (trans) {
2472 trans->sackdelay =
2473 msecs_to_jiffies(params->spp_sackdelay);
2474 } else if (asoc) {
2475 asoc->sackdelay =
2476 msecs_to_jiffies(params->spp_sackdelay);
2477 } else {
2478 sp->sackdelay = params->spp_sackdelay;
2479 }
2480 }
2481
2482 if (sackdelay_change) {
2483 if (trans) {
2484 trans->param_flags =
2485 (trans->param_flags & ~SPP_SACKDELAY) |
2486 sackdelay_change;
2487 } else if (asoc) {
2488 asoc->param_flags =
2489 (asoc->param_flags & ~SPP_SACKDELAY) |
2490 sackdelay_change;
2491 } else {
2492 sp->param_flags =
2493 (sp->param_flags & ~SPP_SACKDELAY) |
2494 sackdelay_change;
2495 }
2496 }
2497
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002498 /* Note that a value of zero indicates the current setting should be
2499 left unchanged.
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002500 */
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002501 if (params->spp_pathmaxrxt) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002502 if (trans) {
2503 trans->pathmaxrxt = params->spp_pathmaxrxt;
2504 } else if (asoc) {
2505 asoc->pathmaxrxt = params->spp_pathmaxrxt;
2506 } else {
2507 sp->pathmaxrxt = params->spp_pathmaxrxt;
2508 }
2509 }
2510
2511 return 0;
2512}
2513
2514static int sctp_setsockopt_peer_addr_params(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002515 char __user *optval,
2516 unsigned int optlen)
Frank Filz52ccb8e2005-12-22 11:36:46 -08002517{
2518 struct sctp_paddrparams params;
2519 struct sctp_transport *trans = NULL;
2520 struct sctp_association *asoc = NULL;
2521 struct sctp_sock *sp = sctp_sk(sk);
2522 int error;
2523 int hb_change, pmtud_change, sackdelay_change;
2524
2525 if (optlen != sizeof(struct sctp_paddrparams))
wangweidongcb3f8372013-12-23 12:16:50 +08002526 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08002527
2528 if (copy_from_user(&params, optval, optlen))
2529 return -EFAULT;
2530
2531 /* Validate flags and value parameters. */
2532 hb_change = params.spp_flags & SPP_HB;
2533 pmtud_change = params.spp_flags & SPP_PMTUD;
2534 sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2535
2536 if (hb_change == SPP_HB ||
2537 pmtud_change == SPP_PMTUD ||
2538 sackdelay_change == SPP_SACKDELAY ||
2539 params.spp_sackdelay > 500 ||
Joe Perchesf64f9e72009-11-29 16:55:45 -08002540 (params.spp_pathmtu &&
2541 params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
Frank Filz52ccb8e2005-12-22 11:36:46 -08002542 return -EINVAL;
2543
2544 /* If an address other than INADDR_ANY is specified, and
2545 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 */
wangweidongcb3f8372013-12-23 12:16:50 +08002547 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002548 trans = sctp_addr_id2transport(sk, &params.spp_address,
2549 params.spp_assoc_id);
2550 if (!trans)
2551 return -EINVAL;
2552 }
2553
2554 /* Get association, if assoc_id != 0 and the socket is a one
2555 * to many style socket, and an association was not found, then
2556 * the id was invalid.
2557 */
2558 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
2559 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP))
2560 return -EINVAL;
2561
2562 /* Heartbeat demand can only be sent on a transport or
2563 * association, but not a socket.
2564 */
2565 if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2566 return -EINVAL;
2567
2568 /* Process parameters. */
2569 error = sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2570 hb_change, pmtud_change,
2571 sackdelay_change);
2572
2573 if (error)
2574 return error;
2575
2576 /* If changes are for association, also apply parameters to each
2577 * transport.
2578 */
2579 if (!trans && asoc) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002580 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2581 transports) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002582 sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2583 hb_change, pmtud_change,
2584 sackdelay_change);
2585 }
2586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
2588 return 0;
2589}
2590
wangweidong0ea5e4d2014-01-15 17:24:01 +08002591static inline __u32 sctp_spp_sackdelay_enable(__u32 param_flags)
2592{
2593 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_ENABLE;
2594}
2595
2596static inline __u32 sctp_spp_sackdelay_disable(__u32 param_flags)
2597{
2598 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_DISABLE;
2599}
2600
Wei Yongjund364d922008-05-09 15:13:26 -07002601/*
2602 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08002603 *
Wei Yongjund364d922008-05-09 15:13:26 -07002604 * This option will effect the way delayed acks are performed. This
2605 * option allows you to get or set the delayed ack time, in
2606 * milliseconds. It also allows changing the delayed ack frequency.
2607 * Changing the frequency to 1 disables the delayed sack algorithm. If
2608 * the assoc_id is 0, then this sets or gets the endpoints default
2609 * values. If the assoc_id field is non-zero, then the set or get
2610 * effects the specified association for the one to many model (the
2611 * assoc_id field is ignored by the one to one model). Note that if
2612 * sack_delay or sack_freq are 0 when setting this option, then the
2613 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08002614 *
Wei Yongjund364d922008-05-09 15:13:26 -07002615 * struct sctp_sack_info {
2616 * sctp_assoc_t sack_assoc_id;
2617 * uint32_t sack_delay;
2618 * uint32_t sack_freq;
2619 * };
Frank Filz77086102005-12-22 11:37:30 -08002620 *
Wei Yongjund364d922008-05-09 15:13:26 -07002621 * sack_assoc_id - This parameter, indicates which association the user
2622 * is performing an action upon. Note that if this field's value is
2623 * zero then the endpoints default value is changed (effecting future
2624 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08002625 *
Wei Yongjund364d922008-05-09 15:13:26 -07002626 * sack_delay - This parameter contains the number of milliseconds that
2627 * the user is requesting the delayed ACK timer be set to. Note that
2628 * this value is defined in the standard to be between 200 and 500
2629 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08002630 *
Wei Yongjund364d922008-05-09 15:13:26 -07002631 * sack_freq - This parameter contains the number of packets that must
2632 * be received before a sack is sent without waiting for the delay
2633 * timer to expire. The default value for this is 2, setting this
2634 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08002635 */
2636
Wei Yongjund364d922008-05-09 15:13:26 -07002637static int sctp_setsockopt_delayed_ack(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002638 char __user *optval, unsigned int optlen)
Frank Filz77086102005-12-22 11:37:30 -08002639{
Wei Yongjund364d922008-05-09 15:13:26 -07002640 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08002641 struct sctp_transport *trans = NULL;
2642 struct sctp_association *asoc = NULL;
2643 struct sctp_sock *sp = sctp_sk(sk);
2644
Wei Yongjund364d922008-05-09 15:13:26 -07002645 if (optlen == sizeof(struct sctp_sack_info)) {
2646 if (copy_from_user(&params, optval, optlen))
2647 return -EFAULT;
2648
2649 if (params.sack_delay == 0 && params.sack_freq == 0)
2650 return 0;
2651 } else if (optlen == sizeof(struct sctp_assoc_value)) {
Neil Horman94f65192013-12-23 08:29:43 -05002652 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05002653 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05002654 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05002655 "Use struct sctp_sack_info instead\n",
2656 current->comm, task_pid_nr(current));
Wei Yongjund364d922008-05-09 15:13:26 -07002657 if (copy_from_user(&params, optval, optlen))
2658 return -EFAULT;
2659
2660 if (params.sack_delay == 0)
2661 params.sack_freq = 1;
2662 else
2663 params.sack_freq = 0;
2664 } else
wangweidongcb3f8372013-12-23 12:16:50 +08002665 return -EINVAL;
Frank Filz77086102005-12-22 11:37:30 -08002666
Frank Filz77086102005-12-22 11:37:30 -08002667 /* Validate value parameter. */
Wei Yongjund364d922008-05-09 15:13:26 -07002668 if (params.sack_delay > 500)
Frank Filz77086102005-12-22 11:37:30 -08002669 return -EINVAL;
2670
Wei Yongjund364d922008-05-09 15:13:26 -07002671 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08002672 * to many style socket, and an association was not found, then
2673 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002674 */
Wei Yongjund364d922008-05-09 15:13:26 -07002675 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
2676 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08002677 return -EINVAL;
2678
Wei Yongjund364d922008-05-09 15:13:26 -07002679 if (params.sack_delay) {
Frank Filz77086102005-12-22 11:37:30 -08002680 if (asoc) {
2681 asoc->sackdelay =
Wei Yongjund364d922008-05-09 15:13:26 -07002682 msecs_to_jiffies(params.sack_delay);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002683 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002684 sctp_spp_sackdelay_enable(asoc->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002685 } else {
Wei Yongjund364d922008-05-09 15:13:26 -07002686 sp->sackdelay = params.sack_delay;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002687 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002688 sctp_spp_sackdelay_enable(sp->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002689 }
Wei Yongjund364d922008-05-09 15:13:26 -07002690 }
2691
2692 if (params.sack_freq == 1) {
Frank Filz77086102005-12-22 11:37:30 -08002693 if (asoc) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002694 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002695 sctp_spp_sackdelay_disable(asoc->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002696 } else {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002697 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002698 sctp_spp_sackdelay_disable(sp->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002699 }
Wei Yongjund364d922008-05-09 15:13:26 -07002700 } else if (params.sack_freq > 1) {
2701 if (asoc) {
2702 asoc->sackfreq = params.sack_freq;
2703 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002704 sctp_spp_sackdelay_enable(asoc->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002705 } else {
2706 sp->sackfreq = params.sack_freq;
2707 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002708 sctp_spp_sackdelay_enable(sp->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002709 }
Frank Filz77086102005-12-22 11:37:30 -08002710 }
2711
2712 /* If change is for association, also apply to each transport. */
2713 if (asoc) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002714 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2715 transports) {
Wei Yongjund364d922008-05-09 15:13:26 -07002716 if (params.sack_delay) {
Frank Filz77086102005-12-22 11:37:30 -08002717 trans->sackdelay =
Wei Yongjund364d922008-05-09 15:13:26 -07002718 msecs_to_jiffies(params.sack_delay);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002719 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002720 sctp_spp_sackdelay_enable(trans->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002721 }
Vlad Yasevich7bfe8bdb2008-06-09 15:45:05 -07002722 if (params.sack_freq == 1) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002723 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002724 sctp_spp_sackdelay_disable(trans->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002725 } else if (params.sack_freq > 1) {
2726 trans->sackfreq = params.sack_freq;
2727 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002728 sctp_spp_sackdelay_enable(trans->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002729 }
2730 }
2731 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002732
Frank Filz77086102005-12-22 11:37:30 -08002733 return 0;
2734}
2735
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2737 *
2738 * Applications can specify protocol parameters for the default association
2739 * initialization. The option name argument to setsockopt() and getsockopt()
2740 * is SCTP_INITMSG.
2741 *
2742 * Setting initialization parameters is effective only on an unconnected
2743 * socket (for UDP-style sockets only future associations are effected
2744 * by the change). With TCP-style sockets, this option is inherited by
2745 * sockets derived from a listener socket.
2746 */
David S. Millerb7058842009-09-30 16:12:20 -07002747static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748{
2749 struct sctp_initmsg sinit;
2750 struct sctp_sock *sp = sctp_sk(sk);
2751
2752 if (optlen != sizeof(struct sctp_initmsg))
2753 return -EINVAL;
2754 if (copy_from_user(&sinit, optval, optlen))
2755 return -EFAULT;
2756
2757 if (sinit.sinit_num_ostreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002758 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 if (sinit.sinit_max_instreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002760 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 if (sinit.sinit_max_attempts)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002762 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 if (sinit.sinit_max_init_timeo)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002764 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
2766 return 0;
2767}
2768
2769/*
2770 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2771 *
2772 * Applications that wish to use the sendto() system call may wish to
2773 * specify a default set of parameters that would normally be supplied
2774 * through the inclusion of ancillary data. This socket option allows
2775 * such an application to set the default sctp_sndrcvinfo structure.
2776 * The application that wishes to use this socket option simply passes
2777 * in to this call the sctp_sndrcvinfo structure defined in Section
2778 * 5.2.2) The input parameters accepted by this call include
2779 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2780 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
2781 * to this call if the caller is using the UDP model.
2782 */
2783static int sctp_setsockopt_default_send_param(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002784 char __user *optval,
2785 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 struct sctp_sock *sp = sctp_sk(sk);
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002788 struct sctp_association *asoc;
2789 struct sctp_sndrcvinfo info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002791 if (optlen != sizeof(info))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 return -EINVAL;
2793 if (copy_from_user(&info, optval, optlen))
2794 return -EFAULT;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002795 if (info.sinfo_flags &
2796 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2797 SCTP_ABORT | SCTP_EOF))
2798 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
2800 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
2801 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
2802 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 if (asoc) {
2804 asoc->default_stream = info.sinfo_stream;
2805 asoc->default_flags = info.sinfo_flags;
2806 asoc->default_ppid = info.sinfo_ppid;
2807 asoc->default_context = info.sinfo_context;
2808 asoc->default_timetolive = info.sinfo_timetolive;
2809 } else {
2810 sp->default_stream = info.sinfo_stream;
2811 sp->default_flags = info.sinfo_flags;
2812 sp->default_ppid = info.sinfo_ppid;
2813 sp->default_context = info.sinfo_context;
2814 sp->default_timetolive = info.sinfo_timetolive;
2815 }
2816
2817 return 0;
2818}
2819
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002820/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
2821 * (SCTP_DEFAULT_SNDINFO)
2822 */
2823static int sctp_setsockopt_default_sndinfo(struct sock *sk,
2824 char __user *optval,
2825 unsigned int optlen)
2826{
2827 struct sctp_sock *sp = sctp_sk(sk);
2828 struct sctp_association *asoc;
2829 struct sctp_sndinfo info;
2830
2831 if (optlen != sizeof(info))
2832 return -EINVAL;
2833 if (copy_from_user(&info, optval, optlen))
2834 return -EFAULT;
2835 if (info.snd_flags &
2836 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2837 SCTP_ABORT | SCTP_EOF))
2838 return -EINVAL;
2839
2840 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
2841 if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
2842 return -EINVAL;
2843 if (asoc) {
2844 asoc->default_stream = info.snd_sid;
2845 asoc->default_flags = info.snd_flags;
2846 asoc->default_ppid = info.snd_ppid;
2847 asoc->default_context = info.snd_context;
2848 } else {
2849 sp->default_stream = info.snd_sid;
2850 sp->default_flags = info.snd_flags;
2851 sp->default_ppid = info.snd_ppid;
2852 sp->default_context = info.snd_context;
2853 }
2854
2855 return 0;
2856}
2857
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
2859 *
2860 * Requests that the local SCTP stack use the enclosed peer address as
2861 * the association primary. The enclosed address must be one of the
2862 * association peer's addresses.
2863 */
2864static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002865 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866{
2867 struct sctp_prim prim;
2868 struct sctp_transport *trans;
2869
2870 if (optlen != sizeof(struct sctp_prim))
2871 return -EINVAL;
2872
2873 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
2874 return -EFAULT;
2875
2876 trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
2877 if (!trans)
2878 return -EINVAL;
2879
2880 sctp_assoc_set_primary(trans->asoc, trans);
2881
2882 return 0;
2883}
2884
2885/*
2886 * 7.1.5 SCTP_NODELAY
2887 *
2888 * Turn on/off any Nagle-like algorithm. This means that packets are
2889 * generally sent as soon as possible and no unnecessary delays are
2890 * introduced, at the cost of more packets in the network. Expects an
2891 * integer boolean flag.
2892 */
2893static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002894 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895{
2896 int val;
2897
2898 if (optlen < sizeof(int))
2899 return -EINVAL;
2900 if (get_user(val, (int __user *)optval))
2901 return -EFAULT;
2902
2903 sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
2904 return 0;
2905}
2906
2907/*
2908 *
2909 * 7.1.1 SCTP_RTOINFO
2910 *
2911 * The protocol parameters used to initialize and bound retransmission
2912 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
2913 * and modify these parameters.
2914 * All parameters are time values, in milliseconds. A value of 0, when
2915 * modifying the parameters, indicates that the current value should not
2916 * be changed.
2917 *
2918 */
David S. Millerb7058842009-09-30 16:12:20 -07002919static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, unsigned int optlen)
2920{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 struct sctp_rtoinfo rtoinfo;
2922 struct sctp_association *asoc;
wangweidong85f935d2013-12-11 09:50:38 +08002923 unsigned long rto_min, rto_max;
2924 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925
2926 if (optlen != sizeof (struct sctp_rtoinfo))
2927 return -EINVAL;
2928
2929 if (copy_from_user(&rtoinfo, optval, optlen))
2930 return -EFAULT;
2931
2932 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
2933
2934 /* Set the values to the specific association */
2935 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
2936 return -EINVAL;
2937
wangweidong85f935d2013-12-11 09:50:38 +08002938 rto_max = rtoinfo.srto_max;
2939 rto_min = rtoinfo.srto_min;
2940
2941 if (rto_max)
2942 rto_max = asoc ? msecs_to_jiffies(rto_max) : rto_max;
2943 else
2944 rto_max = asoc ? asoc->rto_max : sp->rtoinfo.srto_max;
2945
2946 if (rto_min)
2947 rto_min = asoc ? msecs_to_jiffies(rto_min) : rto_min;
2948 else
2949 rto_min = asoc ? asoc->rto_min : sp->rtoinfo.srto_min;
2950
2951 if (rto_min > rto_max)
2952 return -EINVAL;
2953
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 if (asoc) {
2955 if (rtoinfo.srto_initial != 0)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002956 asoc->rto_initial =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 msecs_to_jiffies(rtoinfo.srto_initial);
wangweidong85f935d2013-12-11 09:50:38 +08002958 asoc->rto_max = rto_max;
2959 asoc->rto_min = rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 } else {
2961 /* If there is no association or the association-id = 0
2962 * set the values to the endpoint.
2963 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 if (rtoinfo.srto_initial != 0)
2965 sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
wangweidong85f935d2013-12-11 09:50:38 +08002966 sp->rtoinfo.srto_max = rto_max;
2967 sp->rtoinfo.srto_min = rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 }
2969
2970 return 0;
2971}
2972
2973/*
2974 *
2975 * 7.1.2 SCTP_ASSOCINFO
2976 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02002977 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 * of the association.
2979 * Returns an error if the new association retransmission value is
2980 * greater than the sum of the retransmission value of the peer.
2981 * See [SCTP] for more information.
2982 *
2983 */
David S. Millerb7058842009-09-30 16:12:20 -07002984static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985{
2986
2987 struct sctp_assocparams assocparams;
2988 struct sctp_association *asoc;
2989
2990 if (optlen != sizeof(struct sctp_assocparams))
2991 return -EINVAL;
2992 if (copy_from_user(&assocparams, optval, optlen))
2993 return -EFAULT;
2994
2995 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
2996
2997 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
2998 return -EINVAL;
2999
3000 /* Set the values to the specific association */
3001 if (asoc) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003002 if (assocparams.sasoc_asocmaxrxt != 0) {
3003 __u32 path_sum = 0;
3004 int paths = 0;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003005 struct sctp_transport *peer_addr;
3006
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07003007 list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
3008 transports) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003009 path_sum += peer_addr->pathmaxrxt;
3010 paths++;
3011 }
3012
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003013 /* Only validate asocmaxrxt if we have more than
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003014 * one path/transport. We do this because path
3015 * retransmissions are only counted when we have more
3016 * then one path.
3017 */
3018 if (paths > 1 &&
3019 assocparams.sasoc_asocmaxrxt > path_sum)
3020 return -EINVAL;
3021
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003023 }
3024
Daniel Borkmann52db8822013-06-25 18:17:27 +02003025 if (assocparams.sasoc_cookie_life != 0)
3026 asoc->cookie_life = ms_to_ktime(assocparams.sasoc_cookie_life);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 } else {
3028 /* Set the values to the endpoint */
3029 struct sctp_sock *sp = sctp_sk(sk);
3030
3031 if (assocparams.sasoc_asocmaxrxt != 0)
3032 sp->assocparams.sasoc_asocmaxrxt =
3033 assocparams.sasoc_asocmaxrxt;
3034 if (assocparams.sasoc_cookie_life != 0)
3035 sp->assocparams.sasoc_cookie_life =
3036 assocparams.sasoc_cookie_life;
3037 }
3038 return 0;
3039}
3040
3041/*
3042 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
3043 *
3044 * This socket option is a boolean flag which turns on or off mapped V4
3045 * addresses. If this option is turned on and the socket is type
3046 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
3047 * If this option is turned off, then no mapping will be done of V4
3048 * addresses and a user will receive both PF_INET6 and PF_INET type
3049 * addresses on the socket.
3050 */
David S. Millerb7058842009-09-30 16:12:20 -07003051static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052{
3053 int val;
3054 struct sctp_sock *sp = sctp_sk(sk);
3055
3056 if (optlen < sizeof(int))
3057 return -EINVAL;
3058 if (get_user(val, (int __user *)optval))
3059 return -EFAULT;
3060 if (val)
3061 sp->v4mapped = 1;
3062 else
3063 sp->v4mapped = 0;
3064
3065 return 0;
3066}
3067
3068/*
Wei Yongjune89c2092008-12-25 16:54:58 -08003069 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
3070 * This option will get or set the maximum size to put in any outgoing
3071 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 * fragmented by SCTP into the specified size. Note that the underlying
3073 * SCTP implementation may fragment into smaller sized chunks when the
3074 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08003075 * the user. The default value for this option is '0' which indicates
3076 * the user is NOT limiting fragmentation and only the PMTU will effect
3077 * SCTP's choice of DATA chunk size. Note also that values set larger
3078 * than the maximum size of an IP datagram will effectively let SCTP
3079 * control fragmentation (i.e. the same as setting this option to 0).
3080 *
3081 * The following structure is used to access and modify this parameter:
3082 *
3083 * struct sctp_assoc_value {
3084 * sctp_assoc_t assoc_id;
3085 * uint32_t assoc_value;
3086 * };
3087 *
3088 * assoc_id: This parameter is ignored for one-to-one style sockets.
3089 * For one-to-many style sockets this parameter indicates which
3090 * association the user is performing an action upon. Note that if
3091 * this field's value is zero then the endpoints default value is
3092 * changed (effecting future associations only).
3093 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 */
David S. Millerb7058842009-09-30 16:12:20 -07003095static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096{
Wei Yongjune89c2092008-12-25 16:54:58 -08003097 struct sctp_assoc_value params;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 struct sctp_sock *sp = sctp_sk(sk);
3100 int val;
3101
Wei Yongjune89c2092008-12-25 16:54:58 -08003102 if (optlen == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05003103 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05003104 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05003105 "Use of int in maxseg socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05003106 "Use struct sctp_assoc_value instead\n",
3107 current->comm, task_pid_nr(current));
Wei Yongjune89c2092008-12-25 16:54:58 -08003108 if (copy_from_user(&val, optval, optlen))
3109 return -EFAULT;
3110 params.assoc_id = 0;
3111 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3112 if (copy_from_user(&params, optval, optlen))
3113 return -EFAULT;
3114 val = params.assoc_value;
3115 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 return -EINVAL;
Wei Yongjune89c2092008-12-25 16:54:58 -08003117
Ivan Skytte Jorgensen96a33992005-10-28 15:36:12 -07003118 if ((val != 0) && ((val < 8) || (val > SCTP_MAX_CHUNK_LEN)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
Wei Yongjune89c2092008-12-25 16:54:58 -08003121 asoc = sctp_id2assoc(sk, params.assoc_id);
3122 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
3123 return -EINVAL;
3124
3125 if (asoc) {
3126 if (val == 0) {
3127 val = asoc->pathmtu;
3128 val -= sp->pf->af->net_header_len;
3129 val -= sizeof(struct sctphdr) +
3130 sizeof(struct sctp_data_chunk);
3131 }
Vlad Yasevichf68b2e02009-09-04 18:21:00 -04003132 asoc->user_frag = val;
3133 asoc->frag_point = sctp_frag_point(asoc, asoc->pathmtu);
Wei Yongjune89c2092008-12-25 16:54:58 -08003134 } else {
3135 sp->user_frag = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 }
3137
3138 return 0;
3139}
3140
3141
3142/*
3143 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3144 *
3145 * Requests that the peer mark the enclosed address as the association
3146 * primary. The enclosed address must be one of the association's
3147 * locally bound addresses. The following structure is used to make a
3148 * set primary request:
3149 */
3150static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003151 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003153 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 struct sctp_association *asoc = NULL;
3156 struct sctp_setpeerprim prim;
3157 struct sctp_chunk *chunk;
Wei Yongjun40a01032010-12-07 17:11:09 +00003158 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 int err;
3160
3161 sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003163 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 return -EPERM;
3165
3166 if (optlen != sizeof(struct sctp_setpeerprim))
3167 return -EINVAL;
3168
3169 if (copy_from_user(&prim, optval, optlen))
3170 return -EFAULT;
3171
3172 asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003173 if (!asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 return -EINVAL;
3175
3176 if (!asoc->peer.asconf_capable)
3177 return -EPERM;
3178
3179 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
3180 return -EPERM;
3181
3182 if (!sctp_state(asoc, ESTABLISHED))
3183 return -ENOTCONN;
3184
Wei Yongjun40a01032010-12-07 17:11:09 +00003185 af = sctp_get_af_specific(prim.sspp_addr.ss_family);
3186 if (!af)
3187 return -EINVAL;
3188
3189 if (!af->addr_valid((union sctp_addr *)&prim.sspp_addr, sp, NULL))
3190 return -EADDRNOTAVAIL;
3191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
3193 return -EADDRNOTAVAIL;
3194
3195 /* Create an ASCONF chunk with SET_PRIMARY parameter */
3196 chunk = sctp_make_asconf_set_prim(asoc,
3197 (union sctp_addr *)&prim.sspp_addr);
3198 if (!chunk)
3199 return -ENOMEM;
3200
3201 err = sctp_send_asconf(asoc, chunk);
3202
Daniel Borkmannbb333812013-06-28 19:49:40 +02003203 pr_debug("%s: we set peer primary addr primitively\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204
3205 return err;
3206}
3207
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003208static int sctp_setsockopt_adaptation_layer(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003209 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003211 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003213 if (optlen != sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 return -EINVAL;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003215 if (copy_from_user(&adaptation, optval, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 return -EFAULT;
3217
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003218 sctp_sk(sk)->adaptation_ind = adaptation.ssb_adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219
3220 return 0;
3221}
3222
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003223/*
3224 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
3225 *
3226 * The context field in the sctp_sndrcvinfo structure is normally only
3227 * used when a failed message is retrieved holding the value that was
3228 * sent down on the actual send call. This option allows the setting of
3229 * a default context on an association basis that will be received on
3230 * reading messages from the peer. This is especially helpful in the
3231 * one-2-many model for an application to keep some reference to an
3232 * internal state machine that is processing messages on the
3233 * association. Note that the setting of this value only effects
3234 * received messages from the peer and does not effect the value that is
3235 * saved with outbound messages.
3236 */
3237static int sctp_setsockopt_context(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003238 unsigned int optlen)
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003239{
3240 struct sctp_assoc_value params;
3241 struct sctp_sock *sp;
3242 struct sctp_association *asoc;
3243
3244 if (optlen != sizeof(struct sctp_assoc_value))
3245 return -EINVAL;
3246 if (copy_from_user(&params, optval, optlen))
3247 return -EFAULT;
3248
3249 sp = sctp_sk(sk);
3250
3251 if (params.assoc_id != 0) {
3252 asoc = sctp_id2assoc(sk, params.assoc_id);
3253 if (!asoc)
3254 return -EINVAL;
3255 asoc->default_rcv_context = params.assoc_value;
3256 } else {
3257 sp->default_rcv_context = params.assoc_value;
3258 }
3259
3260 return 0;
3261}
3262
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003263/*
3264 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
3265 *
3266 * This options will at a minimum specify if the implementation is doing
3267 * fragmented interleave. Fragmented interleave, for a one to many
3268 * socket, is when subsequent calls to receive a message may return
3269 * parts of messages from different associations. Some implementations
3270 * may allow you to turn this value on or off. If so, when turned off,
3271 * no fragment interleave will occur (which will cause a head of line
3272 * blocking amongst multiple associations sharing the same one to many
3273 * socket). When this option is turned on, then each receive call may
3274 * come from a different association (thus the user must receive data
3275 * with the extended calls (e.g. sctp_recvmsg) to keep track of which
3276 * association each receive belongs to.
3277 *
3278 * This option takes a boolean value. A non-zero value indicates that
3279 * fragmented interleave is on. A value of zero indicates that
3280 * fragmented interleave is off.
3281 *
3282 * Note that it is important that an implementation that allows this
3283 * option to be turned on, have it off by default. Otherwise an unaware
3284 * application using the one to many model may become confused and act
3285 * incorrectly.
3286 */
3287static int sctp_setsockopt_fragment_interleave(struct sock *sk,
3288 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003289 unsigned int optlen)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003290{
3291 int val;
3292
3293 if (optlen != sizeof(int))
3294 return -EINVAL;
3295 if (get_user(val, (int __user *)optval))
3296 return -EFAULT;
3297
3298 sctp_sk(sk)->frag_interleave = (val == 0) ? 0 : 1;
3299
3300 return 0;
3301}
3302
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003303/*
Wei Yongjun8510b932008-12-25 16:59:03 -08003304 * 8.1.21. Set or Get the SCTP Partial Delivery Point
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003305 * (SCTP_PARTIAL_DELIVERY_POINT)
Wei Yongjun8510b932008-12-25 16:59:03 -08003306 *
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003307 * This option will set or get the SCTP partial delivery point. This
3308 * point is the size of a message where the partial delivery API will be
3309 * invoked to help free up rwnd space for the peer. Setting this to a
Wei Yongjun8510b932008-12-25 16:59:03 -08003310 * lower value will cause partial deliveries to happen more often. The
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003311 * calls argument is an integer that sets or gets the partial delivery
Wei Yongjun8510b932008-12-25 16:59:03 -08003312 * point. Note also that the call will fail if the user attempts to set
3313 * this value larger than the socket receive buffer size.
3314 *
3315 * Note that any single message having a length smaller than or equal to
3316 * the SCTP partial delivery point will be delivered in one single read
3317 * call as long as the user provided buffer is large enough to hold the
3318 * message.
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003319 */
3320static int sctp_setsockopt_partial_delivery_point(struct sock *sk,
3321 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003322 unsigned int optlen)
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003323{
3324 u32 val;
3325
3326 if (optlen != sizeof(u32))
3327 return -EINVAL;
3328 if (get_user(val, (int __user *)optval))
3329 return -EFAULT;
3330
Wei Yongjun8510b932008-12-25 16:59:03 -08003331 /* Note: We double the receive buffer from what the user sets
3332 * it to be, also initial rwnd is based on rcvbuf/2.
3333 */
3334 if (val > (sk->sk_rcvbuf >> 1))
3335 return -EINVAL;
3336
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003337 sctp_sk(sk)->pd_point = val;
3338
3339 return 0; /* is this the right error code? */
3340}
3341
Vlad Yasevich70331572007-03-23 11:34:36 -07003342/*
3343 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
3344 *
3345 * This option will allow a user to change the maximum burst of packets
3346 * that can be emitted by this association. Note that the default value
3347 * is 4, and some implementations may restrict this setting so that it
3348 * can only be lowered.
3349 *
3350 * NOTE: This text doesn't seem right. Do this on a socket basis with
3351 * future associations inheriting the socket value.
3352 */
3353static int sctp_setsockopt_maxburst(struct sock *sk,
3354 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003355 unsigned int optlen)
Vlad Yasevich70331572007-03-23 11:34:36 -07003356{
Neil Horman219b99a2008-03-05 13:44:46 -08003357 struct sctp_assoc_value params;
3358 struct sctp_sock *sp;
3359 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07003360 int val;
Neil Horman219b99a2008-03-05 13:44:46 -08003361 int assoc_id = 0;
Vlad Yasevich70331572007-03-23 11:34:36 -07003362
Neil Horman219b99a2008-03-05 13:44:46 -08003363 if (optlen == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05003364 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05003365 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05003366 "Use of int in max_burst socket option deprecated.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05003367 "Use struct sctp_assoc_value instead\n",
3368 current->comm, task_pid_nr(current));
Neil Horman219b99a2008-03-05 13:44:46 -08003369 if (copy_from_user(&val, optval, optlen))
3370 return -EFAULT;
3371 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3372 if (copy_from_user(&params, optval, optlen))
3373 return -EFAULT;
3374 val = params.assoc_value;
3375 assoc_id = params.assoc_id;
3376 } else
3377 return -EINVAL;
3378
3379 sp = sctp_sk(sk);
3380
3381 if (assoc_id != 0) {
3382 asoc = sctp_id2assoc(sk, assoc_id);
3383 if (!asoc)
3384 return -EINVAL;
3385 asoc->max_burst = val;
3386 } else
3387 sp->max_burst = val;
Vlad Yasevich70331572007-03-23 11:34:36 -07003388
3389 return 0;
3390}
3391
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003392/*
3393 * 7.1.18. Add a chunk that must be authenticated (SCTP_AUTH_CHUNK)
3394 *
3395 * This set option adds a chunk type that the user is requesting to be
3396 * received only in an authenticated way. Changes to the list of chunks
3397 * will only effect future associations on the socket.
3398 */
3399static int sctp_setsockopt_auth_chunk(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{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003403 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003404 struct sctp_authchunk val;
3405
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003406 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003407 return -EACCES;
3408
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003409 if (optlen != sizeof(struct sctp_authchunk))
3410 return -EINVAL;
3411 if (copy_from_user(&val, optval, optlen))
3412 return -EFAULT;
3413
3414 switch (val.sauth_chunk) {
Joe Perches7fd71b12011-07-01 09:43:11 +00003415 case SCTP_CID_INIT:
3416 case SCTP_CID_INIT_ACK:
3417 case SCTP_CID_SHUTDOWN_COMPLETE:
3418 case SCTP_CID_AUTH:
3419 return -EINVAL;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003420 }
3421
3422 /* add this chunk id to the endpoint */
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003423 return sctp_auth_ep_add_chunkid(ep, val.sauth_chunk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003424}
3425
3426/*
3427 * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
3428 *
3429 * This option gets or sets the list of HMAC algorithms that the local
3430 * endpoint requires the peer to use.
3431 */
3432static int sctp_setsockopt_hmac_ident(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003433 char __user *optval,
3434 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003435{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003436 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003437 struct sctp_hmacalgo *hmacs;
Vlad Yasevichd9724052008-08-27 16:09:49 -07003438 u32 idents;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003439 int err;
3440
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003441 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003442 return -EACCES;
3443
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003444 if (optlen < sizeof(struct sctp_hmacalgo))
3445 return -EINVAL;
3446
wangweidongcb3f8372013-12-23 12:16:50 +08003447 hmacs = memdup_user(optval, optlen);
Shan Wei934253a2011-04-18 19:13:18 +00003448 if (IS_ERR(hmacs))
3449 return PTR_ERR(hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003450
Vlad Yasevichd9724052008-08-27 16:09:49 -07003451 idents = hmacs->shmac_num_idents;
3452 if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS ||
3453 (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo))) {
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003454 err = -EINVAL;
3455 goto out;
3456 }
3457
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003458 err = sctp_auth_ep_set_hmacs(ep, hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003459out:
3460 kfree(hmacs);
3461 return err;
3462}
3463
3464/*
3465 * 7.1.20. Set a shared key (SCTP_AUTH_KEY)
3466 *
3467 * This option will set a shared secret key which is used to build an
3468 * association shared key.
3469 */
3470static int sctp_setsockopt_auth_key(struct sock *sk,
3471 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003472 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003473{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003474 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003475 struct sctp_authkey *authkey;
3476 struct sctp_association *asoc;
3477 int ret;
3478
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003479 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003480 return -EACCES;
3481
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003482 if (optlen <= sizeof(struct sctp_authkey))
3483 return -EINVAL;
3484
wangweidongcb3f8372013-12-23 12:16:50 +08003485 authkey = memdup_user(optval, optlen);
Shan Wei934253a2011-04-18 19:13:18 +00003486 if (IS_ERR(authkey))
3487 return PTR_ERR(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003488
Vlad Yasevich328fc472008-08-27 16:08:54 -07003489 if (authkey->sca_keylength > optlen - sizeof(struct sctp_authkey)) {
Vlad Yasevich30c22352008-08-25 15:16:19 -07003490 ret = -EINVAL;
3491 goto out;
3492 }
3493
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003494 asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
3495 if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) {
3496 ret = -EINVAL;
3497 goto out;
3498 }
3499
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003500 ret = sctp_auth_set_key(ep, asoc, authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003501out:
Daniel Borkmann6ba542a2013-02-08 03:04:34 +00003502 kzfree(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003503 return ret;
3504}
3505
3506/*
3507 * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
3508 *
3509 * This option will get or set the active shared key to be used to build
3510 * the association shared key.
3511 */
3512static int sctp_setsockopt_active_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003513 char __user *optval,
3514 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003515{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003516 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003517 struct sctp_authkeyid val;
3518 struct sctp_association *asoc;
3519
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003520 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003521 return -EACCES;
3522
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003523 if (optlen != sizeof(struct sctp_authkeyid))
3524 return -EINVAL;
3525 if (copy_from_user(&val, optval, optlen))
3526 return -EFAULT;
3527
3528 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3529 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3530 return -EINVAL;
3531
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003532 return sctp_auth_set_active_key(ep, asoc, val.scact_keynumber);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003533}
3534
3535/*
3536 * 7.1.22. Delete a shared key (SCTP_AUTH_DELETE_KEY)
3537 *
3538 * This set option will delete a shared secret key from use.
3539 */
3540static int sctp_setsockopt_del_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003541 char __user *optval,
3542 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003543{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003544 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003545 struct sctp_authkeyid val;
3546 struct sctp_association *asoc;
3547
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003548 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003549 return -EACCES;
3550
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003551 if (optlen != sizeof(struct sctp_authkeyid))
3552 return -EINVAL;
3553 if (copy_from_user(&val, optval, optlen))
3554 return -EFAULT;
3555
3556 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3557 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3558 return -EINVAL;
3559
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003560 return sctp_auth_del_key_id(ep, asoc, val.scact_keynumber);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003561
3562}
3563
Michio Honda7dc04d72011-04-26 20:16:31 +09003564/*
3565 * 8.1.23 SCTP_AUTO_ASCONF
3566 *
3567 * This option will enable or disable the use of the automatic generation of
3568 * ASCONF chunks to add and delete addresses to an existing association. Note
3569 * that this option has two caveats namely: a) it only affects sockets that
3570 * are bound to all addresses available to the SCTP stack, and b) the system
3571 * administrator may have an overriding control that turns the ASCONF feature
3572 * off no matter what setting the socket option may have.
3573 * This option expects an integer boolean flag, where a non-zero value turns on
3574 * the option, and a zero value turns off the option.
3575 * Note. In this implementation, socket operation overrides default parameter
3576 * being set by sysctl as well as FreeBSD implementation
3577 */
3578static int sctp_setsockopt_auto_asconf(struct sock *sk, char __user *optval,
3579 unsigned int optlen)
3580{
3581 int val;
3582 struct sctp_sock *sp = sctp_sk(sk);
3583
3584 if (optlen < sizeof(int))
3585 return -EINVAL;
3586 if (get_user(val, (int __user *)optval))
3587 return -EFAULT;
3588 if (!sctp_is_ep_boundall(sk) && val)
3589 return -EINVAL;
3590 if ((val && sp->do_auto_asconf) || (!val && !sp->do_auto_asconf))
3591 return 0;
3592
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03003593 spin_lock_bh(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda7dc04d72011-04-26 20:16:31 +09003594 if (val == 0 && sp->do_auto_asconf) {
3595 list_del(&sp->auto_asconf_list);
3596 sp->do_auto_asconf = 0;
3597 } else if (val && !sp->do_auto_asconf) {
3598 list_add_tail(&sp->auto_asconf_list,
Eric W. Biederman4db67e82012-08-06 08:42:04 +00003599 &sock_net(sk)->sctp.auto_asconf_splist);
Michio Honda7dc04d72011-04-26 20:16:31 +09003600 sp->do_auto_asconf = 1;
3601 }
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03003602 spin_unlock_bh(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda7dc04d72011-04-26 20:16:31 +09003603 return 0;
3604}
3605
Neil Horman5aa93bc2012-07-21 07:56:07 +00003606/*
3607 * SCTP_PEER_ADDR_THLDS
3608 *
3609 * This option allows us to alter the partially failed threshold for one or all
3610 * transports in an association. See Section 6.1 of:
3611 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
3612 */
3613static int sctp_setsockopt_paddr_thresholds(struct sock *sk,
3614 char __user *optval,
3615 unsigned int optlen)
3616{
3617 struct sctp_paddrthlds val;
3618 struct sctp_transport *trans;
3619 struct sctp_association *asoc;
3620
3621 if (optlen < sizeof(struct sctp_paddrthlds))
3622 return -EINVAL;
3623 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval,
3624 sizeof(struct sctp_paddrthlds)))
3625 return -EFAULT;
3626
3627
3628 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
3629 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
3630 if (!asoc)
3631 return -ENOENT;
3632 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
3633 transports) {
3634 if (val.spt_pathmaxrxt)
3635 trans->pathmaxrxt = val.spt_pathmaxrxt;
3636 trans->pf_retrans = val.spt_pathpfthld;
3637 }
3638
3639 if (val.spt_pathmaxrxt)
3640 asoc->pathmaxrxt = val.spt_pathmaxrxt;
3641 asoc->pf_retrans = val.spt_pathpfthld;
3642 } else {
3643 trans = sctp_addr_id2transport(sk, &val.spt_address,
3644 val.spt_assoc_id);
3645 if (!trans)
3646 return -ENOENT;
3647
3648 if (val.spt_pathmaxrxt)
3649 trans->pathmaxrxt = val.spt_pathmaxrxt;
3650 trans->pf_retrans = val.spt_pathpfthld;
3651 }
3652
3653 return 0;
3654}
3655
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02003656static int sctp_setsockopt_recvrcvinfo(struct sock *sk,
3657 char __user *optval,
3658 unsigned int optlen)
3659{
3660 int val;
3661
3662 if (optlen < sizeof(int))
3663 return -EINVAL;
3664 if (get_user(val, (int __user *) optval))
3665 return -EFAULT;
3666
3667 sctp_sk(sk)->recvrcvinfo = (val == 0) ? 0 : 1;
3668
3669 return 0;
3670}
3671
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02003672static int sctp_setsockopt_recvnxtinfo(struct sock *sk,
3673 char __user *optval,
3674 unsigned int optlen)
3675{
3676 int val;
3677
3678 if (optlen < sizeof(int))
3679 return -EINVAL;
3680 if (get_user(val, (int __user *) optval))
3681 return -EFAULT;
3682
3683 sctp_sk(sk)->recvnxtinfo = (val == 0) ? 0 : 1;
3684
3685 return 0;
3686}
3687
Xin Long28aa4c22016-07-09 19:47:40 +08003688static int sctp_setsockopt_pr_supported(struct sock *sk,
3689 char __user *optval,
3690 unsigned int optlen)
3691{
3692 struct sctp_assoc_value params;
3693 struct sctp_association *asoc;
3694 int retval = -EINVAL;
3695
3696 if (optlen != sizeof(params))
3697 goto out;
3698
3699 if (copy_from_user(&params, optval, optlen)) {
3700 retval = -EFAULT;
3701 goto out;
3702 }
3703
3704 asoc = sctp_id2assoc(sk, params.assoc_id);
3705 if (asoc) {
3706 asoc->prsctp_enable = !!params.assoc_value;
3707 } else if (!params.assoc_id) {
3708 struct sctp_sock *sp = sctp_sk(sk);
3709
3710 sp->ep->prsctp_enable = !!params.assoc_value;
3711 } else {
3712 goto out;
3713 }
3714
3715 retval = 0;
3716
3717out:
3718 return retval;
3719}
3720
Xin Longf959fb42016-07-09 19:47:41 +08003721static int sctp_setsockopt_default_prinfo(struct sock *sk,
3722 char __user *optval,
3723 unsigned int optlen)
3724{
3725 struct sctp_default_prinfo info;
3726 struct sctp_association *asoc;
3727 int retval = -EINVAL;
3728
3729 if (optlen != sizeof(info))
3730 goto out;
3731
3732 if (copy_from_user(&info, optval, sizeof(info))) {
3733 retval = -EFAULT;
3734 goto out;
3735 }
3736
3737 if (info.pr_policy & ~SCTP_PR_SCTP_MASK)
3738 goto out;
3739
3740 if (info.pr_policy == SCTP_PR_SCTP_NONE)
3741 info.pr_value = 0;
3742
3743 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
3744 if (asoc) {
3745 SCTP_PR_SET_POLICY(asoc->default_flags, info.pr_policy);
3746 asoc->default_timetolive = info.pr_value;
3747 } else if (!info.pr_assoc_id) {
3748 struct sctp_sock *sp = sctp_sk(sk);
3749
3750 SCTP_PR_SET_POLICY(sp->default_flags, info.pr_policy);
3751 sp->default_timetolive = info.pr_value;
3752 } else {
3753 goto out;
3754 }
3755
3756 retval = 0;
3757
3758out:
3759 return retval;
3760}
3761
Xin Longc0d8bab2017-03-10 12:11:12 +08003762static int sctp_setsockopt_reconfig_supported(struct sock *sk,
3763 char __user *optval,
3764 unsigned int optlen)
3765{
3766 struct sctp_assoc_value params;
3767 struct sctp_association *asoc;
3768 int retval = -EINVAL;
3769
3770 if (optlen != sizeof(params))
3771 goto out;
3772
3773 if (copy_from_user(&params, optval, optlen)) {
3774 retval = -EFAULT;
3775 goto out;
3776 }
3777
3778 asoc = sctp_id2assoc(sk, params.assoc_id);
3779 if (asoc) {
3780 asoc->reconf_enable = !!params.assoc_value;
3781 } else if (!params.assoc_id) {
3782 struct sctp_sock *sp = sctp_sk(sk);
3783
3784 sp->ep->reconf_enable = !!params.assoc_value;
3785 } else {
3786 goto out;
3787 }
3788
3789 retval = 0;
3790
3791out:
3792 return retval;
3793}
3794
Xin Long9fb657a2017-01-18 00:44:46 +08003795static int sctp_setsockopt_enable_strreset(struct sock *sk,
3796 char __user *optval,
3797 unsigned int optlen)
3798{
3799 struct sctp_assoc_value params;
3800 struct sctp_association *asoc;
3801 int retval = -EINVAL;
3802
3803 if (optlen != sizeof(params))
3804 goto out;
3805
3806 if (copy_from_user(&params, optval, optlen)) {
3807 retval = -EFAULT;
3808 goto out;
3809 }
3810
3811 if (params.assoc_value & (~SCTP_ENABLE_STRRESET_MASK))
3812 goto out;
3813
3814 asoc = sctp_id2assoc(sk, params.assoc_id);
3815 if (asoc) {
3816 asoc->strreset_enable = params.assoc_value;
3817 } else if (!params.assoc_id) {
3818 struct sctp_sock *sp = sctp_sk(sk);
3819
3820 sp->ep->strreset_enable = params.assoc_value;
3821 } else {
3822 goto out;
3823 }
3824
3825 retval = 0;
3826
3827out:
3828 return retval;
3829}
3830
Xin Long7f9d68a2017-01-18 00:44:47 +08003831static int sctp_setsockopt_reset_streams(struct sock *sk,
3832 char __user *optval,
3833 unsigned int optlen)
3834{
3835 struct sctp_reset_streams *params;
3836 struct sctp_association *asoc;
3837 int retval = -EINVAL;
3838
3839 if (optlen < sizeof(struct sctp_reset_streams))
3840 return -EINVAL;
3841
3842 params = memdup_user(optval, optlen);
3843 if (IS_ERR(params))
3844 return PTR_ERR(params);
3845
3846 asoc = sctp_id2assoc(sk, params->srs_assoc_id);
3847 if (!asoc)
3848 goto out;
3849
3850 retval = sctp_send_reset_streams(asoc, params);
3851
3852out:
3853 kfree(params);
3854 return retval;
3855}
3856
Xin Longa92ce1a2017-02-09 01:18:18 +08003857static int sctp_setsockopt_reset_assoc(struct sock *sk,
3858 char __user *optval,
3859 unsigned int optlen)
3860{
3861 struct sctp_association *asoc;
3862 sctp_assoc_t associd;
3863 int retval = -EINVAL;
3864
3865 if (optlen != sizeof(associd))
3866 goto out;
3867
3868 if (copy_from_user(&associd, optval, optlen)) {
3869 retval = -EFAULT;
3870 goto out;
3871 }
3872
3873 asoc = sctp_id2assoc(sk, associd);
3874 if (!asoc)
3875 goto out;
3876
3877 retval = sctp_send_reset_assoc(asoc);
3878
3879out:
3880 return retval;
3881}
3882
Xin Long242bd2d2017-02-09 01:18:20 +08003883static int sctp_setsockopt_add_streams(struct sock *sk,
3884 char __user *optval,
3885 unsigned int optlen)
3886{
3887 struct sctp_association *asoc;
3888 struct sctp_add_streams params;
3889 int retval = -EINVAL;
3890
3891 if (optlen != sizeof(params))
3892 goto out;
3893
3894 if (copy_from_user(&params, optval, optlen)) {
3895 retval = -EFAULT;
3896 goto out;
3897 }
3898
3899 asoc = sctp_id2assoc(sk, params.sas_assoc_id);
3900 if (!asoc)
3901 goto out;
3902
3903 retval = sctp_send_add_streams(asoc, &params);
3904
3905out:
3906 return retval;
3907}
3908
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909/* API 6.2 setsockopt(), getsockopt()
3910 *
3911 * Applications use setsockopt() and getsockopt() to set or retrieve
3912 * socket options. Socket options are used to change the default
3913 * behavior of sockets calls. They are described in Section 7.
3914 *
3915 * The syntax is:
3916 *
3917 * ret = getsockopt(int sd, int level, int optname, void __user *optval,
3918 * int __user *optlen);
3919 * ret = setsockopt(int sd, int level, int optname, const void __user *optval,
3920 * int optlen);
3921 *
3922 * sd - the socket descript.
3923 * level - set to IPPROTO_SCTP for all SCTP options.
3924 * optname - the option name.
3925 * optval - the buffer to store the value of the option.
3926 * optlen - the size of the buffer.
3927 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02003928static int sctp_setsockopt(struct sock *sk, int level, int optname,
3929 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930{
3931 int retval = 0;
3932
Daniel Borkmannbb333812013-06-28 19:49:40 +02003933 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934
3935 /* I can hardly begin to describe how wrong this is. This is
3936 * so broken as to be worse than useless. The API draft
3937 * REALLY is NOT helpful here... I am not convinced that the
3938 * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
3939 * are at all well-founded.
3940 */
3941 if (level != SOL_SCTP) {
3942 struct sctp_af *af = sctp_sk(sk)->pf->af;
3943 retval = af->setsockopt(sk, level, optname, optval, optlen);
3944 goto out_nounlock;
3945 }
3946
wangweidong048ed4b2014-01-21 15:44:11 +08003947 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
3949 switch (optname) {
3950 case SCTP_SOCKOPT_BINDX_ADD:
3951 /* 'optlen' is the size of the addresses buffer. */
3952 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
3953 optlen, SCTP_BINDX_ADD_ADDR);
3954 break;
3955
3956 case SCTP_SOCKOPT_BINDX_REM:
3957 /* 'optlen' is the size of the addresses buffer. */
3958 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
3959 optlen, SCTP_BINDX_REM_ADDR);
3960 break;
3961
Vlad Yasevich88a0a942008-05-09 15:14:11 -07003962 case SCTP_SOCKOPT_CONNECTX_OLD:
3963 /* 'optlen' is the size of the addresses buffer. */
3964 retval = sctp_setsockopt_connectx_old(sk,
3965 (struct sockaddr __user *)optval,
3966 optlen);
3967 break;
3968
Frank Filz3f7a87d2005-06-20 13:14:57 -07003969 case SCTP_SOCKOPT_CONNECTX:
3970 /* 'optlen' is the size of the addresses buffer. */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07003971 retval = sctp_setsockopt_connectx(sk,
3972 (struct sockaddr __user *)optval,
3973 optlen);
Frank Filz3f7a87d2005-06-20 13:14:57 -07003974 break;
3975
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976 case SCTP_DISABLE_FRAGMENTS:
3977 retval = sctp_setsockopt_disable_fragments(sk, optval, optlen);
3978 break;
3979
3980 case SCTP_EVENTS:
3981 retval = sctp_setsockopt_events(sk, optval, optlen);
3982 break;
3983
3984 case SCTP_AUTOCLOSE:
3985 retval = sctp_setsockopt_autoclose(sk, optval, optlen);
3986 break;
3987
3988 case SCTP_PEER_ADDR_PARAMS:
3989 retval = sctp_setsockopt_peer_addr_params(sk, optval, optlen);
3990 break;
3991
Shan Wei4580ccc2011-01-18 22:39:00 +00003992 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07003993 retval = sctp_setsockopt_delayed_ack(sk, optval, optlen);
Frank Filz77086102005-12-22 11:37:30 -08003994 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003995 case SCTP_PARTIAL_DELIVERY_POINT:
3996 retval = sctp_setsockopt_partial_delivery_point(sk, optval, optlen);
3997 break;
Frank Filz77086102005-12-22 11:37:30 -08003998
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999 case SCTP_INITMSG:
4000 retval = sctp_setsockopt_initmsg(sk, optval, optlen);
4001 break;
4002 case SCTP_DEFAULT_SEND_PARAM:
4003 retval = sctp_setsockopt_default_send_param(sk, optval,
4004 optlen);
4005 break;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02004006 case SCTP_DEFAULT_SNDINFO:
4007 retval = sctp_setsockopt_default_sndinfo(sk, optval, optlen);
4008 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009 case SCTP_PRIMARY_ADDR:
4010 retval = sctp_setsockopt_primary_addr(sk, optval, optlen);
4011 break;
4012 case SCTP_SET_PEER_PRIMARY_ADDR:
4013 retval = sctp_setsockopt_peer_primary_addr(sk, optval, optlen);
4014 break;
4015 case SCTP_NODELAY:
4016 retval = sctp_setsockopt_nodelay(sk, optval, optlen);
4017 break;
4018 case SCTP_RTOINFO:
4019 retval = sctp_setsockopt_rtoinfo(sk, optval, optlen);
4020 break;
4021 case SCTP_ASSOCINFO:
4022 retval = sctp_setsockopt_associnfo(sk, optval, optlen);
4023 break;
4024 case SCTP_I_WANT_MAPPED_V4_ADDR:
4025 retval = sctp_setsockopt_mappedv4(sk, optval, optlen);
4026 break;
4027 case SCTP_MAXSEG:
4028 retval = sctp_setsockopt_maxseg(sk, optval, optlen);
4029 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004030 case SCTP_ADAPTATION_LAYER:
4031 retval = sctp_setsockopt_adaptation_layer(sk, optval, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004033 case SCTP_CONTEXT:
4034 retval = sctp_setsockopt_context(sk, optval, optlen);
4035 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004036 case SCTP_FRAGMENT_INTERLEAVE:
4037 retval = sctp_setsockopt_fragment_interleave(sk, optval, optlen);
4038 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07004039 case SCTP_MAX_BURST:
4040 retval = sctp_setsockopt_maxburst(sk, optval, optlen);
4041 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07004042 case SCTP_AUTH_CHUNK:
4043 retval = sctp_setsockopt_auth_chunk(sk, optval, optlen);
4044 break;
4045 case SCTP_HMAC_IDENT:
4046 retval = sctp_setsockopt_hmac_ident(sk, optval, optlen);
4047 break;
4048 case SCTP_AUTH_KEY:
4049 retval = sctp_setsockopt_auth_key(sk, optval, optlen);
4050 break;
4051 case SCTP_AUTH_ACTIVE_KEY:
4052 retval = sctp_setsockopt_active_key(sk, optval, optlen);
4053 break;
4054 case SCTP_AUTH_DELETE_KEY:
4055 retval = sctp_setsockopt_del_key(sk, optval, optlen);
4056 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09004057 case SCTP_AUTO_ASCONF:
4058 retval = sctp_setsockopt_auto_asconf(sk, optval, optlen);
4059 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00004060 case SCTP_PEER_ADDR_THLDS:
4061 retval = sctp_setsockopt_paddr_thresholds(sk, optval, optlen);
4062 break;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004063 case SCTP_RECVRCVINFO:
4064 retval = sctp_setsockopt_recvrcvinfo(sk, optval, optlen);
4065 break;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02004066 case SCTP_RECVNXTINFO:
4067 retval = sctp_setsockopt_recvnxtinfo(sk, optval, optlen);
4068 break;
Xin Long28aa4c22016-07-09 19:47:40 +08004069 case SCTP_PR_SUPPORTED:
4070 retval = sctp_setsockopt_pr_supported(sk, optval, optlen);
4071 break;
Xin Longf959fb42016-07-09 19:47:41 +08004072 case SCTP_DEFAULT_PRINFO:
4073 retval = sctp_setsockopt_default_prinfo(sk, optval, optlen);
4074 break;
Xin Longc0d8bab2017-03-10 12:11:12 +08004075 case SCTP_RECONFIG_SUPPORTED:
4076 retval = sctp_setsockopt_reconfig_supported(sk, optval, optlen);
4077 break;
Xin Long9fb657a2017-01-18 00:44:46 +08004078 case SCTP_ENABLE_STREAM_RESET:
4079 retval = sctp_setsockopt_enable_strreset(sk, optval, optlen);
4080 break;
Xin Long7f9d68a2017-01-18 00:44:47 +08004081 case SCTP_RESET_STREAMS:
4082 retval = sctp_setsockopt_reset_streams(sk, optval, optlen);
4083 break;
Xin Longa92ce1a2017-02-09 01:18:18 +08004084 case SCTP_RESET_ASSOC:
4085 retval = sctp_setsockopt_reset_assoc(sk, optval, optlen);
4086 break;
Xin Long242bd2d2017-02-09 01:18:20 +08004087 case SCTP_ADD_STREAMS:
4088 retval = sctp_setsockopt_add_streams(sk, optval, optlen);
4089 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090 default:
4091 retval = -ENOPROTOOPT;
4092 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07004093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094
wangweidong048ed4b2014-01-21 15:44:11 +08004095 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096
4097out_nounlock:
4098 return retval;
4099}
4100
4101/* API 3.1.6 connect() - UDP Style Syntax
4102 *
4103 * An application may use the connect() call in the UDP model to initiate an
4104 * association without sending data.
4105 *
4106 * The syntax is:
4107 *
4108 * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
4109 *
4110 * sd: the socket descriptor to have a new association added to.
4111 *
4112 * nam: the address structure (either struct sockaddr_in or struct
4113 * sockaddr_in6 defined in RFC2553 [7]).
4114 *
4115 * len: the size of the address.
4116 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004117static int sctp_connect(struct sock *sk, struct sockaddr *addr,
4118 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 int err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07004121 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122
wangweidong048ed4b2014-01-21 15:44:11 +08004123 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124
Daniel Borkmannbb333812013-06-28 19:49:40 +02004125 pr_debug("%s: sk:%p, sockaddr:%p, addr_len:%d\n", __func__, sk,
4126 addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127
Frank Filz3f7a87d2005-06-20 13:14:57 -07004128 /* Validate addr_len before calling common connect/connectx routine. */
4129 af = sctp_get_af_specific(addr->sa_family);
4130 if (!af || addr_len < af->sockaddr_len) {
4131 err = -EINVAL;
4132 } else {
4133 /* Pass correct addr len to common routine (so it knows there
4134 * is only one address being passed.
4135 */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07004136 err = __sctp_connect(sk, addr, af->sockaddr_len, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 }
4138
wangweidong048ed4b2014-01-21 15:44:11 +08004139 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 return err;
4141}
4142
4143/* FIXME: Write comments. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004144static int sctp_disconnect(struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145{
4146 return -EOPNOTSUPP; /* STUB */
4147}
4148
4149/* 4.1.4 accept() - TCP Style Syntax
4150 *
4151 * Applications use accept() call to remove an established SCTP
4152 * association from the accept queue of the endpoint. A new socket
4153 * descriptor will be returned from accept() to represent the newly
4154 * formed association.
4155 */
David Howellscdfbabf2017-03-09 08:09:05 +00004156static struct sock *sctp_accept(struct sock *sk, int flags, int *err, bool kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157{
4158 struct sctp_sock *sp;
4159 struct sctp_endpoint *ep;
4160 struct sock *newsk = NULL;
4161 struct sctp_association *asoc;
4162 long timeo;
4163 int error = 0;
4164
wangweidong048ed4b2014-01-21 15:44:11 +08004165 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166
4167 sp = sctp_sk(sk);
4168 ep = sp->ep;
4169
4170 if (!sctp_style(sk, TCP)) {
4171 error = -EOPNOTSUPP;
4172 goto out;
4173 }
4174
4175 if (!sctp_sstate(sk, LISTENING)) {
4176 error = -EINVAL;
4177 goto out;
4178 }
4179
Sridhar Samudrala8abfedd2006-08-22 00:24:09 -07004180 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181
4182 error = sctp_wait_for_accept(sk, timeo);
4183 if (error)
4184 goto out;
4185
4186 /* We treat the list of associations on the endpoint as the accept
4187 * queue and pick the first association on the list.
4188 */
4189 asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
4190
David Howellscdfbabf2017-03-09 08:09:05 +00004191 newsk = sp->pf->create_accept_sk(sk, asoc, kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192 if (!newsk) {
4193 error = -ENOMEM;
4194 goto out;
4195 }
4196
4197 /* Populate the fields of the newsk from the oldsk and migrate the
4198 * asoc to the newsk.
4199 */
4200 sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
4201
4202out:
wangweidong048ed4b2014-01-21 15:44:11 +08004203 release_sock(sk);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004204 *err = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205 return newsk;
4206}
4207
4208/* The SCTP ioctl handler. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004209static int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210{
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004211 int rc = -ENOTCONN;
4212
wangweidong048ed4b2014-01-21 15:44:11 +08004213 lock_sock(sk);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004214
4215 /*
4216 * SEQPACKET-style sockets in LISTENING state are valid, for
4217 * SCTP, so only discard TCP-style sockets in LISTENING state.
4218 */
4219 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
4220 goto out;
4221
4222 switch (cmd) {
4223 case SIOCINQ: {
4224 struct sk_buff *skb;
4225 unsigned int amount = 0;
4226
4227 skb = skb_peek(&sk->sk_receive_queue);
4228 if (skb != NULL) {
4229 /*
4230 * We will only return the amount of this packet since
4231 * that is all that will be read.
4232 */
4233 amount = skb->len;
4234 }
4235 rc = put_user(amount, (int __user *)arg);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004236 break;
David S. Miller9a7241c2010-10-03 22:14:37 -07004237 }
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004238 default:
4239 rc = -ENOIOCTLCMD;
4240 break;
4241 }
4242out:
wangweidong048ed4b2014-01-21 15:44:11 +08004243 release_sock(sk);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004244 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245}
4246
4247/* This is the function which gets called during socket creation to
4248 * initialized the SCTP-specific portion of the sock.
4249 * The sock structure should already be zero-filled memory.
4250 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004251static int sctp_init_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004253 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254 struct sctp_sock *sp;
4255
Daniel Borkmannbb333812013-06-28 19:49:40 +02004256 pr_debug("%s: sk:%p\n", __func__, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257
4258 sp = sctp_sk(sk);
4259
4260 /* Initialize the SCTP per socket area. */
4261 switch (sk->sk_type) {
4262 case SOCK_SEQPACKET:
4263 sp->type = SCTP_SOCKET_UDP;
4264 break;
4265 case SOCK_STREAM:
4266 sp->type = SCTP_SOCKET_TCP;
4267 break;
4268 default:
4269 return -ESOCKTNOSUPPORT;
4270 }
4271
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -03004272 sk->sk_gso_type = SKB_GSO_SCTP;
4273
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274 /* Initialize default send parameters. These parameters can be
4275 * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
4276 */
4277 sp->default_stream = 0;
4278 sp->default_ppid = 0;
4279 sp->default_flags = 0;
4280 sp->default_context = 0;
4281 sp->default_timetolive = 0;
4282
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004283 sp->default_rcv_context = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004284 sp->max_burst = net->sctp.max_burst;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004285
Neil Horman3c681982012-10-24 09:20:03 +00004286 sp->sctp_hmac_alg = net->sctp.sctp_hmac_alg;
4287
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 /* Initialize default setup parameters. These parameters
4289 * can be modified with the SCTP_INITMSG socket option or
4290 * overridden by the SCTP_INIT CMSG.
4291 */
4292 sp->initmsg.sinit_num_ostreams = sctp_max_outstreams;
4293 sp->initmsg.sinit_max_instreams = sctp_max_instreams;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004294 sp->initmsg.sinit_max_attempts = net->sctp.max_retrans_init;
4295 sp->initmsg.sinit_max_init_timeo = net->sctp.rto_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296
4297 /* Initialize default RTO related parameters. These parameters can
4298 * be modified for with the SCTP_RTOINFO socket option.
4299 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004300 sp->rtoinfo.srto_initial = net->sctp.rto_initial;
4301 sp->rtoinfo.srto_max = net->sctp.rto_max;
4302 sp->rtoinfo.srto_min = net->sctp.rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303
4304 /* Initialize default association related parameters. These parameters
4305 * can be modified with the SCTP_ASSOCINFO socket option.
4306 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004307 sp->assocparams.sasoc_asocmaxrxt = net->sctp.max_retrans_association;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308 sp->assocparams.sasoc_number_peer_destinations = 0;
4309 sp->assocparams.sasoc_peer_rwnd = 0;
4310 sp->assocparams.sasoc_local_rwnd = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004311 sp->assocparams.sasoc_cookie_life = net->sctp.valid_cookie_life;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312
4313 /* Initialize default event subscriptions. By default, all the
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004314 * options are off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315 */
4316 memset(&sp->subscribe, 0, sizeof(struct sctp_event_subscribe));
4317
4318 /* Default Peer Address Parameters. These defaults can
4319 * be modified via SCTP_PEER_ADDR_PARAMS
4320 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004321 sp->hbinterval = net->sctp.hb_interval;
4322 sp->pathmaxrxt = net->sctp.max_retrans_path;
wangweidong4e2d52b2013-12-23 12:16:54 +08004323 sp->pathmtu = 0; /* allow default discovery */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004324 sp->sackdelay = net->sctp.sack_timeout;
Vlad Yasevich7bfe8bdb2008-06-09 15:45:05 -07004325 sp->sackfreq = 2;
Frank Filz52ccb8e2005-12-22 11:36:46 -08004326 sp->param_flags = SPP_HB_ENABLE |
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004327 SPP_PMTUD_ENABLE |
4328 SPP_SACKDELAY_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329
4330 /* If enabled no SCTP message fragmentation will be performed.
4331 * Configure through SCTP_DISABLE_FRAGMENTS socket option.
4332 */
4333 sp->disable_fragments = 0;
4334
Sridhar Samudrala208edef2006-09-29 17:08:01 -07004335 /* Enable Nagle algorithm by default. */
4336 sp->nodelay = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004338 sp->recvrcvinfo = 0;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02004339 sp->recvnxtinfo = 0;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004340
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 /* Enable by default. */
4342 sp->v4mapped = 1;
4343
4344 /* Auto-close idle associations after the configured
4345 * number of seconds. A value of 0 disables this
4346 * feature. Configure through the SCTP_AUTOCLOSE socket option,
4347 * for UDP-style sockets only.
4348 */
4349 sp->autoclose = 0;
4350
4351 /* User specified fragmentation limit. */
4352 sp->user_frag = 0;
4353
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004354 sp->adaptation_ind = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355
4356 sp->pf = sctp_get_pf_specific(sk->sk_family);
4357
4358 /* Control variables for partial data delivery. */
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004359 atomic_set(&sp->pd_mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360 skb_queue_head_init(&sp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004361 sp->frag_interleave = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362
4363 /* Create a per socket endpoint structure. Even if we
4364 * change the data structure relationships, this may still
4365 * be useful for storing pre-connect address information.
4366 */
Daniel Borkmannc164b832013-06-14 18:24:06 +02004367 sp->ep = sctp_endpoint_new(sk, GFP_KERNEL);
4368 if (!sp->ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369 return -ENOMEM;
4370
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 sp->hmac = NULL;
4372
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004373 sk->sk_destruct = sctp_destruct_sock;
4374
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 SCTP_DBG_OBJCNT_INC(sock);
David S. Miller6f756a82008-11-23 17:34:03 -08004376
4377 local_bh_disable();
Vlad Yasevich81419d82010-04-28 08:47:20 +00004378 percpu_counter_inc(&sctp_sockets_allocated);
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004379 sock_prot_inuse_add(net, sk->sk_prot, 1);
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004380
4381 /* Nothing can fail after this block, otherwise
4382 * sctp_destroy_sock() will be called without addr_wq_lock held
4383 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004384 if (net->sctp.default_auto_asconf) {
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004385 spin_lock(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda9f7d6532011-04-26 19:32:51 +09004386 list_add_tail(&sp->auto_asconf_list,
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004387 &net->sctp.auto_asconf_splist);
Michio Honda9f7d6532011-04-26 19:32:51 +09004388 sp->do_auto_asconf = 1;
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004389 spin_unlock(&sock_net(sk)->sctp.addr_wq_lock);
4390 } else {
Michio Honda9f7d6532011-04-26 19:32:51 +09004391 sp->do_auto_asconf = 0;
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004392 }
4393
David S. Miller6f756a82008-11-23 17:34:03 -08004394 local_bh_enable();
4395
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396 return 0;
4397}
4398
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004399/* Cleanup any SCTP per socket resources. Must be called with
4400 * sock_net(sk)->sctp.addr_wq_lock held if sp->do_auto_asconf is true
4401 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004402static void sctp_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403{
Michio Honda9f7d6532011-04-26 19:32:51 +09004404 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405
Daniel Borkmannbb333812013-06-28 19:49:40 +02004406 pr_debug("%s: sk:%p\n", __func__, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407
4408 /* Release our hold on the endpoint. */
Michio Honda9f7d6532011-04-26 19:32:51 +09004409 sp = sctp_sk(sk);
Daniel Borkmann1abd1652013-06-06 15:53:47 +02004410 /* This could happen during socket init, thus we bail out
4411 * early, since the rest of the below is not setup either.
4412 */
4413 if (sp->ep == NULL)
4414 return;
4415
Michio Honda9f7d6532011-04-26 19:32:51 +09004416 if (sp->do_auto_asconf) {
4417 sp->do_auto_asconf = 0;
4418 list_del(&sp->auto_asconf_list);
4419 }
4420 sctp_endpoint_free(sp->ep);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004421 local_bh_disable();
Vlad Yasevich81419d82010-04-28 08:47:20 +00004422 percpu_counter_dec(&sctp_sockets_allocated);
Eric Dumazet9a57f7f2008-11-17 02:41:00 -08004423 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004424 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425}
4426
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004427/* Triggered when there are no references on the socket anymore */
4428static void sctp_destruct_sock(struct sock *sk)
4429{
4430 struct sctp_sock *sp = sctp_sk(sk);
4431
4432 /* Free up the HMAC transform. */
Herbert Xu5821c762016-01-24 21:20:12 +08004433 crypto_free_shash(sp->hmac);
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004434
4435 inet_sock_destruct(sk);
4436}
4437
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438/* API 4.1.7 shutdown() - TCP Style Syntax
4439 * int shutdown(int socket, int how);
4440 *
4441 * sd - the socket descriptor of the association to be closed.
4442 * how - Specifies the type of shutdown. The values are
4443 * as follows:
4444 * SHUT_RD
4445 * Disables further receive operations. No SCTP
4446 * protocol action is taken.
4447 * SHUT_WR
4448 * Disables further send operations, and initiates
4449 * the SCTP shutdown sequence.
4450 * SHUT_RDWR
4451 * Disables further send and receive operations
4452 * and initiates the SCTP shutdown sequence.
4453 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004454static void sctp_shutdown(struct sock *sk, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00004456 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457 struct sctp_endpoint *ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458
4459 if (!sctp_style(sk, TCP))
4460 return;
4461
Xin Long5bf35dd2016-11-13 21:44:37 +08004462 ep = sctp_sk(sk)->ep;
4463 if (how & SEND_SHUTDOWN && !list_empty(&ep->asocs)) {
4464 struct sctp_association *asoc;
4465
Xin Longd46e4162016-06-09 22:48:18 +08004466 sk->sk_state = SCTP_SS_CLOSING;
Xin Long5bf35dd2016-11-13 21:44:37 +08004467 asoc = list_entry(ep->asocs.next,
4468 struct sctp_association, asocs);
4469 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470 }
4471}
4472
Xin Long52c52a62016-04-14 15:35:30 +08004473int sctp_get_sctp_info(struct sock *sk, struct sctp_association *asoc,
4474 struct sctp_info *info)
4475{
4476 struct sctp_transport *prim;
4477 struct list_head *pos;
4478 int mask;
4479
4480 memset(info, 0, sizeof(*info));
4481 if (!asoc) {
4482 struct sctp_sock *sp = sctp_sk(sk);
4483
4484 info->sctpi_s_autoclose = sp->autoclose;
4485 info->sctpi_s_adaptation_ind = sp->adaptation_ind;
4486 info->sctpi_s_pd_point = sp->pd_point;
4487 info->sctpi_s_nodelay = sp->nodelay;
4488 info->sctpi_s_disable_fragments = sp->disable_fragments;
4489 info->sctpi_s_v4mapped = sp->v4mapped;
4490 info->sctpi_s_frag_interleave = sp->frag_interleave;
Xin Long40eb90e92016-05-29 17:42:13 +08004491 info->sctpi_s_type = sp->type;
Xin Long52c52a62016-04-14 15:35:30 +08004492
4493 return 0;
4494 }
4495
4496 info->sctpi_tag = asoc->c.my_vtag;
4497 info->sctpi_state = asoc->state;
4498 info->sctpi_rwnd = asoc->a_rwnd;
4499 info->sctpi_unackdata = asoc->unack_data;
4500 info->sctpi_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
Xin Longcee360a2017-05-31 16:36:31 +08004501 info->sctpi_instrms = asoc->stream.incnt;
4502 info->sctpi_outstrms = asoc->stream.outcnt;
Xin Long52c52a62016-04-14 15:35:30 +08004503 list_for_each(pos, &asoc->base.inqueue.in_chunk_list)
4504 info->sctpi_inqueue++;
4505 list_for_each(pos, &asoc->outqueue.out_chunk_list)
4506 info->sctpi_outqueue++;
4507 info->sctpi_overall_error = asoc->overall_error_count;
4508 info->sctpi_max_burst = asoc->max_burst;
4509 info->sctpi_maxseg = asoc->frag_point;
4510 info->sctpi_peer_rwnd = asoc->peer.rwnd;
4511 info->sctpi_peer_tag = asoc->c.peer_vtag;
4512
4513 mask = asoc->peer.ecn_capable << 1;
4514 mask = (mask | asoc->peer.ipv4_address) << 1;
4515 mask = (mask | asoc->peer.ipv6_address) << 1;
4516 mask = (mask | asoc->peer.hostname_address) << 1;
4517 mask = (mask | asoc->peer.asconf_capable) << 1;
4518 mask = (mask | asoc->peer.prsctp_capable) << 1;
4519 mask = (mask | asoc->peer.auth_capable);
4520 info->sctpi_peer_capable = mask;
4521 mask = asoc->peer.sack_needed << 1;
4522 mask = (mask | asoc->peer.sack_generation) << 1;
4523 mask = (mask | asoc->peer.zero_window_announced);
4524 info->sctpi_peer_sack = mask;
4525
4526 info->sctpi_isacks = asoc->stats.isacks;
4527 info->sctpi_osacks = asoc->stats.osacks;
4528 info->sctpi_opackets = asoc->stats.opackets;
4529 info->sctpi_ipackets = asoc->stats.ipackets;
4530 info->sctpi_rtxchunks = asoc->stats.rtxchunks;
4531 info->sctpi_outofseqtsns = asoc->stats.outofseqtsns;
4532 info->sctpi_idupchunks = asoc->stats.idupchunks;
4533 info->sctpi_gapcnt = asoc->stats.gapcnt;
4534 info->sctpi_ouodchunks = asoc->stats.ouodchunks;
4535 info->sctpi_iuodchunks = asoc->stats.iuodchunks;
4536 info->sctpi_oodchunks = asoc->stats.oodchunks;
4537 info->sctpi_iodchunks = asoc->stats.iodchunks;
4538 info->sctpi_octrlchunks = asoc->stats.octrlchunks;
4539 info->sctpi_ictrlchunks = asoc->stats.ictrlchunks;
4540
4541 prim = asoc->peer.primary_path;
4542 memcpy(&info->sctpi_p_address, &prim->ipaddr,
4543 sizeof(struct sockaddr_storage));
4544 info->sctpi_p_state = prim->state;
4545 info->sctpi_p_cwnd = prim->cwnd;
4546 info->sctpi_p_srtt = prim->srtt;
4547 info->sctpi_p_rto = jiffies_to_msecs(prim->rto);
4548 info->sctpi_p_hbinterval = prim->hbinterval;
4549 info->sctpi_p_pathmaxrxt = prim->pathmaxrxt;
4550 info->sctpi_p_sackdelay = jiffies_to_msecs(prim->sackdelay);
4551 info->sctpi_p_ssthresh = prim->ssthresh;
4552 info->sctpi_p_partial_bytes_acked = prim->partial_bytes_acked;
4553 info->sctpi_p_flight_size = prim->flight_size;
4554 info->sctpi_p_error = prim->error_count;
4555
4556 return 0;
4557}
4558EXPORT_SYMBOL_GPL(sctp_get_sctp_info);
4559
Xin Long626d16f2016-04-14 15:35:31 +08004560/* use callback to avoid exporting the core structure */
4561int sctp_transport_walk_start(struct rhashtable_iter *iter)
4562{
4563 int err;
4564
Xin Long7fda702f2016-11-15 23:23:11 +08004565 rhltable_walk_enter(&sctp_transport_hashtable, iter);
Xin Long626d16f2016-04-14 15:35:31 +08004566
4567 err = rhashtable_walk_start(iter);
Xin Long53fa1032016-04-14 15:35:35 +08004568 if (err && err != -EAGAIN) {
Vegard Nossum5fc382d2016-07-23 09:42:35 +02004569 rhashtable_walk_stop(iter);
Xin Long53fa1032016-04-14 15:35:35 +08004570 rhashtable_walk_exit(iter);
4571 return err;
4572 }
Xin Long626d16f2016-04-14 15:35:31 +08004573
Xin Long53fa1032016-04-14 15:35:35 +08004574 return 0;
Xin Long626d16f2016-04-14 15:35:31 +08004575}
4576
4577void sctp_transport_walk_stop(struct rhashtable_iter *iter)
4578{
4579 rhashtable_walk_stop(iter);
4580 rhashtable_walk_exit(iter);
4581}
4582
4583struct sctp_transport *sctp_transport_get_next(struct net *net,
4584 struct rhashtable_iter *iter)
4585{
4586 struct sctp_transport *t;
4587
4588 t = rhashtable_walk_next(iter);
4589 for (; t; t = rhashtable_walk_next(iter)) {
4590 if (IS_ERR(t)) {
4591 if (PTR_ERR(t) == -EAGAIN)
4592 continue;
4593 break;
4594 }
4595
4596 if (net_eq(sock_net(t->asoc->base.sk), net) &&
4597 t->asoc->peer.primary_path == t)
4598 break;
4599 }
4600
4601 return t;
4602}
4603
4604struct sctp_transport *sctp_transport_get_idx(struct net *net,
4605 struct rhashtable_iter *iter,
4606 int pos)
4607{
4608 void *obj = SEQ_START_TOKEN;
4609
4610 while (pos && (obj = sctp_transport_get_next(net, iter)) &&
4611 !IS_ERR(obj))
4612 pos--;
4613
4614 return obj;
4615}
4616
4617int sctp_for_each_endpoint(int (*cb)(struct sctp_endpoint *, void *),
4618 void *p) {
4619 int err = 0;
4620 int hash = 0;
4621 struct sctp_ep_common *epb;
4622 struct sctp_hashbucket *head;
4623
4624 for (head = sctp_ep_hashtable; hash < sctp_ep_hashsize;
4625 hash++, head++) {
Xin Long581409d2017-06-10 14:48:14 +08004626 read_lock_bh(&head->lock);
Xin Long626d16f2016-04-14 15:35:31 +08004627 sctp_for_each_hentry(epb, &head->chain) {
4628 err = cb(sctp_ep(epb), p);
4629 if (err)
4630 break;
4631 }
Xin Long581409d2017-06-10 14:48:14 +08004632 read_unlock_bh(&head->lock);
Xin Long626d16f2016-04-14 15:35:31 +08004633 }
4634
4635 return err;
4636}
4637EXPORT_SYMBOL_GPL(sctp_for_each_endpoint);
4638
4639int sctp_transport_lookup_process(int (*cb)(struct sctp_transport *, void *),
4640 struct net *net,
4641 const union sctp_addr *laddr,
4642 const union sctp_addr *paddr, void *p)
4643{
4644 struct sctp_transport *transport;
Xin Long08abb792016-12-15 23:05:52 +08004645 int err;
Xin Long626d16f2016-04-14 15:35:31 +08004646
4647 rcu_read_lock();
4648 transport = sctp_addrs_lookup_transport(net, laddr, paddr);
Xin Long626d16f2016-04-14 15:35:31 +08004649 rcu_read_unlock();
Xin Long08abb792016-12-15 23:05:52 +08004650 if (!transport)
4651 return -ENOENT;
4652
Xin Long1cceda782016-09-29 02:55:44 +08004653 err = cb(transport, p);
Xin Longcd26da42016-10-31 20:32:31 +08004654 sctp_transport_put(transport);
Xin Long1cceda782016-09-29 02:55:44 +08004655
Xin Long626d16f2016-04-14 15:35:31 +08004656 return err;
4657}
4658EXPORT_SYMBOL_GPL(sctp_transport_lookup_process);
4659
4660int sctp_for_each_transport(int (*cb)(struct sctp_transport *, void *),
4661 struct net *net, int pos, void *p) {
4662 struct rhashtable_iter hti;
Xin Long626d16f2016-04-14 15:35:31 +08004663 void *obj;
Xin Long53fa1032016-04-14 15:35:35 +08004664 int err;
Xin Long626d16f2016-04-14 15:35:31 +08004665
Xin Long53fa1032016-04-14 15:35:35 +08004666 err = sctp_transport_walk_start(&hti);
4667 if (err)
4668 return err;
Xin Long626d16f2016-04-14 15:35:31 +08004669
Xin Long988c7322017-06-15 17:49:08 +08004670 obj = sctp_transport_get_idx(net, &hti, pos + 1);
4671 for (; !IS_ERR_OR_NULL(obj); obj = sctp_transport_get_next(net, &hti)) {
Xin Long626d16f2016-04-14 15:35:31 +08004672 struct sctp_transport *transport = obj;
4673
4674 if (!sctp_transport_hold(transport))
4675 continue;
4676 err = cb(transport, p);
4677 sctp_transport_put(transport);
4678 if (err)
4679 break;
4680 }
Xin Long626d16f2016-04-14 15:35:31 +08004681 sctp_transport_walk_stop(&hti);
Xin Long53fa1032016-04-14 15:35:35 +08004682
Xin Long626d16f2016-04-14 15:35:31 +08004683 return err;
4684}
4685EXPORT_SYMBOL_GPL(sctp_for_each_transport);
4686
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687/* 7.2.1 Association Status (SCTP_STATUS)
4688
4689 * Applications can retrieve current status information about an
4690 * association, including association state, peer receiver window size,
4691 * number of unacked data chunks, and number of data chunks pending
4692 * receipt. This information is read-only.
4693 */
4694static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
4695 char __user *optval,
4696 int __user *optlen)
4697{
4698 struct sctp_status status;
4699 struct sctp_association *asoc = NULL;
4700 struct sctp_transport *transport;
4701 sctp_assoc_t associd;
4702 int retval = 0;
4703
Neil Horman408f22e2007-06-16 14:03:45 -04004704 if (len < sizeof(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705 retval = -EINVAL;
4706 goto out;
4707 }
4708
Neil Horman408f22e2007-06-16 14:03:45 -04004709 len = sizeof(status);
4710 if (copy_from_user(&status, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711 retval = -EFAULT;
4712 goto out;
4713 }
4714
4715 associd = status.sstat_assoc_id;
4716 asoc = sctp_id2assoc(sk, associd);
4717 if (!asoc) {
4718 retval = -EINVAL;
4719 goto out;
4720 }
4721
4722 transport = asoc->peer.primary_path;
4723
4724 status.sstat_assoc_id = sctp_assoc2id(asoc);
Daniel Borkmann38ab1fa2014-08-28 15:28:26 +02004725 status.sstat_state = sctp_assoc_to_state(asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726 status.sstat_rwnd = asoc->peer.rwnd;
4727 status.sstat_unackdata = asoc->unack_data;
4728
4729 status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
Xin Longcee360a2017-05-31 16:36:31 +08004730 status.sstat_instrms = asoc->stream.incnt;
4731 status.sstat_outstrms = asoc->stream.outcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732 status.sstat_fragmentation_point = asoc->frag_point;
4733 status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Al Viro8cec6b82006-11-20 17:23:01 -08004734 memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
4735 transport->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736 /* Map ipv4 address into v4-mapped-on-v6 address. */
Jason Gunthorpe299ee122014-07-30 12:40:53 -06004737 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738 (union sctp_addr *)&status.sstat_primary.spinfo_address);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004739 status.sstat_primary.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740 status.sstat_primary.spinfo_cwnd = transport->cwnd;
4741 status.sstat_primary.spinfo_srtt = transport->srtt;
4742 status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08004743 status.sstat_primary.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744
Frank Filz3f7a87d2005-06-20 13:14:57 -07004745 if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
4746 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
4747
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748 if (put_user(len, optlen)) {
4749 retval = -EFAULT;
4750 goto out;
4751 }
4752
Daniel Borkmannbb333812013-06-28 19:49:40 +02004753 pr_debug("%s: len:%d, state:%d, rwnd:%d, assoc_id:%d\n",
4754 __func__, len, status.sstat_state, status.sstat_rwnd,
4755 status.sstat_assoc_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756
4757 if (copy_to_user(optval, &status, len)) {
4758 retval = -EFAULT;
4759 goto out;
4760 }
4761
4762out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00004763 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764}
4765
4766
4767/* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
4768 *
4769 * Applications can retrieve information about a specific peer address
4770 * of an association, including its reachability state, congestion
4771 * window, and retransmission timer values. This information is
4772 * read-only.
4773 */
4774static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
4775 char __user *optval,
4776 int __user *optlen)
4777{
4778 struct sctp_paddrinfo pinfo;
4779 struct sctp_transport *transport;
4780 int retval = 0;
4781
Neil Horman408f22e2007-06-16 14:03:45 -04004782 if (len < sizeof(pinfo)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783 retval = -EINVAL;
4784 goto out;
4785 }
4786
Neil Horman408f22e2007-06-16 14:03:45 -04004787 len = sizeof(pinfo);
4788 if (copy_from_user(&pinfo, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789 retval = -EFAULT;
4790 goto out;
4791 }
4792
4793 transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
4794 pinfo.spinfo_assoc_id);
4795 if (!transport)
4796 return -EINVAL;
4797
4798 pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004799 pinfo.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800 pinfo.spinfo_cwnd = transport->cwnd;
4801 pinfo.spinfo_srtt = transport->srtt;
4802 pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08004803 pinfo.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804
Frank Filz3f7a87d2005-06-20 13:14:57 -07004805 if (pinfo.spinfo_state == SCTP_UNKNOWN)
4806 pinfo.spinfo_state = SCTP_ACTIVE;
4807
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 if (put_user(len, optlen)) {
4809 retval = -EFAULT;
4810 goto out;
4811 }
4812
4813 if (copy_to_user(optval, &pinfo, len)) {
4814 retval = -EFAULT;
4815 goto out;
4816 }
4817
4818out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00004819 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820}
4821
4822/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
4823 *
4824 * This option is a on/off flag. If enabled no SCTP message
4825 * fragmentation will be performed. Instead if a message being sent
4826 * exceeds the current PMTU size, the message will NOT be sent and
4827 * instead a error will be indicated to the user.
4828 */
4829static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
4830 char __user *optval, int __user *optlen)
4831{
4832 int val;
4833
4834 if (len < sizeof(int))
4835 return -EINVAL;
4836
4837 len = sizeof(int);
4838 val = (sctp_sk(sk)->disable_fragments == 1);
4839 if (put_user(len, optlen))
4840 return -EFAULT;
4841 if (copy_to_user(optval, &val, len))
4842 return -EFAULT;
4843 return 0;
4844}
4845
4846/* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
4847 *
4848 * This socket option is used to specify various notifications and
4849 * ancillary data the user wishes to receive.
4850 */
4851static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
4852 int __user *optlen)
4853{
Jiri Slabya4b8e712016-10-21 14:13:24 +02004854 if (len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855 return -EINVAL;
Thomas Grafacdd5982012-04-03 22:17:53 +00004856 if (len > sizeof(struct sctp_event_subscribe))
4857 len = sizeof(struct sctp_event_subscribe);
Neil Horman408f22e2007-06-16 14:03:45 -04004858 if (put_user(len, optlen))
4859 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860 if (copy_to_user(optval, &sctp_sk(sk)->subscribe, len))
4861 return -EFAULT;
4862 return 0;
4863}
4864
4865/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
4866 *
4867 * This socket option is applicable to the UDP-style socket only. When
4868 * set it will cause associations that are idle for more than the
4869 * specified number of seconds to automatically close. An association
4870 * being idle is defined an association that has NOT sent or received
4871 * user data. The special value of '0' indicates that no automatic
4872 * close of any associations should be performed. The option expects an
4873 * integer defining the number of seconds of idle time before an
4874 * association is closed.
4875 */
4876static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
4877{
4878 /* Applicable to UDP-style socket only */
4879 if (sctp_style(sk, TCP))
4880 return -EOPNOTSUPP;
Neil Horman408f22e2007-06-16 14:03:45 -04004881 if (len < sizeof(int))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004883 len = sizeof(int);
4884 if (put_user(len, optlen))
4885 return -EFAULT;
4886 if (copy_to_user(optval, &sctp_sk(sk)->autoclose, sizeof(int)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887 return -EFAULT;
4888 return 0;
4889}
4890
4891/* Helper routine to branch off an association to a new socket. */
Benjamin Poirier0343c552012-03-08 05:55:58 +00004892int sctp_do_peeloff(struct sock *sk, sctp_assoc_t id, struct socket **sockp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893{
Benjamin Poirier0343c552012-03-08 05:55:58 +00004894 struct sctp_association *asoc = sctp_id2assoc(sk, id);
Jason Gunthorpe299ee122014-07-30 12:40:53 -06004895 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896 struct socket *sock;
4897 int err = 0;
4898
Benjamin Poirier0343c552012-03-08 05:55:58 +00004899 if (!asoc)
4900 return -EINVAL;
4901
Marcelo Ricardo Leitnerdfcb9f42017-02-23 09:31:18 -03004902 /* If there is a thread waiting on more sndbuf space for
4903 * sending on this asoc, it cannot be peeled.
4904 */
4905 if (waitqueue_active(&asoc->wait))
4906 return -EBUSY;
4907
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908 /* An association cannot be branched off from an already peeled-off
4909 * socket, nor is this supported for tcp style sockets.
4910 */
4911 if (!sctp_style(sk, UDP))
4912 return -EINVAL;
4913
4914 /* Create a new socket. */
4915 err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
4916 if (err < 0)
4917 return err;
4918
Vlad Yasevich914e1c82009-02-13 08:33:44 +00004919 sctp_copy_sock(sock->sk, sk, asoc);
Vlad Yasevich4f444302006-10-30 18:54:32 -08004920
4921 /* Make peeled-off sockets more like 1-1 accepted sockets.
4922 * Set the daddr and initialize id to something more random
4923 */
Jason Gunthorpe299ee122014-07-30 12:40:53 -06004924 sp->pf->to_sk_daddr(&asoc->peer.primary_addr, sk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00004925
4926 /* Populate the fields of the newsk from the oldsk and migrate the
4927 * asoc to the newsk.
4928 */
4929 sctp_sock_migrate(sk, sock->sk, asoc, SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
Vlad Yasevich4f444302006-10-30 18:54:32 -08004930
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 *sockp = sock;
4932
4933 return err;
4934}
Benjamin Poirier0343c552012-03-08 05:55:58 +00004935EXPORT_SYMBOL(sctp_do_peeloff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936
Neil Horman2cb5c8e2017-06-30 13:32:57 -04004937static int sctp_getsockopt_peeloff_common(struct sock *sk, sctp_peeloff_arg_t *peeloff,
4938 struct file **newfile, unsigned flags)
4939{
4940 struct socket *newsock;
4941 int retval;
4942
4943 retval = sctp_do_peeloff(sk, peeloff->associd, &newsock);
4944 if (retval < 0)
4945 goto out;
4946
4947 /* Map the socket to an unused fd that can be returned to the user. */
4948 retval = get_unused_fd_flags(flags & SOCK_CLOEXEC);
4949 if (retval < 0) {
4950 sock_release(newsock);
4951 goto out;
4952 }
4953
4954 *newfile = sock_alloc_file(newsock, 0, NULL);
4955 if (IS_ERR(*newfile)) {
4956 put_unused_fd(retval);
4957 sock_release(newsock);
4958 retval = PTR_ERR(*newfile);
4959 *newfile = NULL;
4960 return retval;
4961 }
4962
4963 pr_debug("%s: sk:%p, newsk:%p, sd:%d\n", __func__, sk, newsock->sk,
4964 retval);
4965
4966 peeloff->sd = retval;
4967
4968 if (flags & SOCK_NONBLOCK)
4969 (*newfile)->f_flags |= O_NONBLOCK;
4970out:
4971 return retval;
4972}
4973
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
4975{
4976 sctp_peeloff_arg_t peeloff;
Neil Horman2cb5c8e2017-06-30 13:32:57 -04004977 struct file *newfile = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979
Neil Horman408f22e2007-06-16 14:03:45 -04004980 if (len < sizeof(sctp_peeloff_arg_t))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004982 len = sizeof(sctp_peeloff_arg_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983 if (copy_from_user(&peeloff, optval, len))
4984 return -EFAULT;
4985
Neil Horman2cb5c8e2017-06-30 13:32:57 -04004986 retval = sctp_getsockopt_peeloff_common(sk, &peeloff, &newfile, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987 if (retval < 0)
4988 goto out;
4989
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990 /* Return the fd mapped to the new socket. */
Al Viro56b31d12012-08-18 00:25:51 -04004991 if (put_user(len, optlen)) {
4992 fput(newfile);
4993 put_unused_fd(retval);
Neil Horman408f22e2007-06-16 14:03:45 -04004994 return -EFAULT;
Al Viro56b31d12012-08-18 00:25:51 -04004995 }
Neil Horman2cb5c8e2017-06-30 13:32:57 -04004996
4997 if (copy_to_user(optval, &peeloff, len)) {
4998 fput(newfile);
4999 put_unused_fd(retval);
5000 return -EFAULT;
5001 }
5002 fd_install(retval, newfile);
5003out:
5004 return retval;
5005}
5006
5007static int sctp_getsockopt_peeloff_flags(struct sock *sk, int len,
5008 char __user *optval, int __user *optlen)
5009{
5010 sctp_peeloff_flags_arg_t peeloff;
5011 struct file *newfile = NULL;
5012 int retval = 0;
5013
5014 if (len < sizeof(sctp_peeloff_flags_arg_t))
5015 return -EINVAL;
5016 len = sizeof(sctp_peeloff_flags_arg_t);
5017 if (copy_from_user(&peeloff, optval, len))
5018 return -EFAULT;
5019
5020 retval = sctp_getsockopt_peeloff_common(sk, &peeloff.p_arg,
5021 &newfile, peeloff.flags);
5022 if (retval < 0)
5023 goto out;
5024
5025 /* Return the fd mapped to the new socket. */
5026 if (put_user(len, optlen)) {
5027 fput(newfile);
5028 put_unused_fd(retval);
5029 return -EFAULT;
5030 }
5031
Al Viro56b31d12012-08-18 00:25:51 -04005032 if (copy_to_user(optval, &peeloff, len)) {
5033 fput(newfile);
5034 put_unused_fd(retval);
5035 return -EFAULT;
5036 }
5037 fd_install(retval, newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038out:
5039 return retval;
5040}
5041
5042/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
5043 *
5044 * Applications can enable or disable heartbeats for any peer address of
5045 * an association, modify an address's heartbeat interval, force a
5046 * heartbeat to be sent immediately, and adjust the address's maximum
5047 * number of retransmissions sent before an address is considered
5048 * unreachable. The following structure is used to access and modify an
5049 * address's parameters:
5050 *
5051 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08005052 * sctp_assoc_t spp_assoc_id;
5053 * struct sockaddr_storage spp_address;
5054 * uint32_t spp_hbinterval;
5055 * uint16_t spp_pathmaxrxt;
5056 * uint32_t spp_pathmtu;
5057 * uint32_t spp_sackdelay;
5058 * uint32_t spp_flags;
5059 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08005061 * spp_assoc_id - (one-to-many style socket) This is filled in the
5062 * application, and identifies the association for
5063 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064 * spp_address - This specifies which address is of interest.
5065 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08005066 * in milliseconds. If a value of zero
5067 * is present in this field then no changes are to
5068 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069 * spp_pathmaxrxt - This contains the maximum number of
5070 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08005071 * considered unreachable. If a value of zero
5072 * is present in this field then no changes are to
5073 * be made to this parameter.
5074 * spp_pathmtu - When Path MTU discovery is disabled the value
5075 * specified here will be the "fixed" path mtu.
5076 * Note that if the spp_address field is empty
5077 * then all associations on this address will
5078 * have this fixed path mtu set upon them.
5079 *
5080 * spp_sackdelay - When delayed sack is enabled, this value specifies
5081 * the number of milliseconds that sacks will be delayed
5082 * for. This value will apply to all addresses of an
5083 * association if the spp_address field is empty. Note
5084 * also, that if delayed sack is enabled and this
5085 * value is set to 0, no change is made to the last
5086 * recorded delayed sack timer value.
5087 *
5088 * spp_flags - These flags are used to control various features
5089 * on an association. The flag field may contain
5090 * zero or more of the following options.
5091 *
5092 * SPP_HB_ENABLE - Enable heartbeats on the
5093 * specified address. Note that if the address
5094 * field is empty all addresses for the association
5095 * have heartbeats enabled upon them.
5096 *
5097 * SPP_HB_DISABLE - Disable heartbeats on the
5098 * speicifed address. Note that if the address
5099 * field is empty all addresses for the association
5100 * will have their heartbeats disabled. Note also
5101 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
5102 * mutually exclusive, only one of these two should
5103 * be specified. Enabling both fields will have
5104 * undetermined results.
5105 *
5106 * SPP_HB_DEMAND - Request a user initiated heartbeat
5107 * to be made immediately.
5108 *
5109 * SPP_PMTUD_ENABLE - This field will enable PMTU
5110 * discovery upon the specified address. Note that
5111 * if the address feild is empty then all addresses
5112 * on the association are effected.
5113 *
5114 * SPP_PMTUD_DISABLE - This field will disable PMTU
5115 * discovery upon the specified address. Note that
5116 * if the address feild is empty then all addresses
5117 * on the association are effected. Not also that
5118 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
5119 * exclusive. Enabling both will have undetermined
5120 * results.
5121 *
5122 * SPP_SACKDELAY_ENABLE - Setting this flag turns
5123 * on delayed sack. The time specified in spp_sackdelay
5124 * is used to specify the sack delay for this address. Note
5125 * that if spp_address is empty then all addresses will
5126 * enable delayed sack and take on the sack delay
5127 * value specified in spp_sackdelay.
5128 * SPP_SACKDELAY_DISABLE - Setting this flag turns
5129 * off delayed sack. If the spp_address field is blank then
5130 * delayed sack is disabled for the entire association. Note
5131 * also that this field is mutually exclusive to
5132 * SPP_SACKDELAY_ENABLE, setting both will have undefined
5133 * results.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134 */
5135static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
Frank Filz52ccb8e2005-12-22 11:36:46 -08005136 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137{
Frank Filz52ccb8e2005-12-22 11:36:46 -08005138 struct sctp_paddrparams params;
5139 struct sctp_transport *trans = NULL;
5140 struct sctp_association *asoc = NULL;
5141 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142
Neil Horman408f22e2007-06-16 14:03:45 -04005143 if (len < sizeof(struct sctp_paddrparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005145 len = sizeof(struct sctp_paddrparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146 if (copy_from_user(&params, optval, len))
5147 return -EFAULT;
5148
Frank Filz52ccb8e2005-12-22 11:36:46 -08005149 /* If an address other than INADDR_ANY is specified, and
5150 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151 */
wangweidongcb3f8372013-12-23 12:16:50 +08005152 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08005153 trans = sctp_addr_id2transport(sk, &params.spp_address,
5154 params.spp_assoc_id);
5155 if (!trans) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02005156 pr_debug("%s: failed no transport\n", __func__);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005157 return -EINVAL;
5158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159 }
5160
Frank Filz52ccb8e2005-12-22 11:36:46 -08005161 /* Get association, if assoc_id != 0 and the socket is a one
5162 * to many style socket, and an association was not found, then
5163 * the id was invalid.
5164 */
5165 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
5166 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP)) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02005167 pr_debug("%s: failed no association\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08005169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170
Frank Filz52ccb8e2005-12-22 11:36:46 -08005171 if (trans) {
5172 /* Fetch transport values. */
5173 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
5174 params.spp_pathmtu = trans->pathmtu;
5175 params.spp_pathmaxrxt = trans->pathmaxrxt;
5176 params.spp_sackdelay = jiffies_to_msecs(trans->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177
Frank Filz52ccb8e2005-12-22 11:36:46 -08005178 /*draft-11 doesn't say what to return in spp_flags*/
5179 params.spp_flags = trans->param_flags;
5180 } else if (asoc) {
5181 /* Fetch association values. */
5182 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
5183 params.spp_pathmtu = asoc->pathmtu;
5184 params.spp_pathmaxrxt = asoc->pathmaxrxt;
5185 params.spp_sackdelay = jiffies_to_msecs(asoc->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186
Frank Filz52ccb8e2005-12-22 11:36:46 -08005187 /*draft-11 doesn't say what to return in spp_flags*/
5188 params.spp_flags = asoc->param_flags;
5189 } else {
5190 /* Fetch socket values. */
5191 params.spp_hbinterval = sp->hbinterval;
5192 params.spp_pathmtu = sp->pathmtu;
5193 params.spp_sackdelay = sp->sackdelay;
5194 params.spp_pathmaxrxt = sp->pathmaxrxt;
5195
5196 /*draft-11 doesn't say what to return in spp_flags*/
5197 params.spp_flags = sp->param_flags;
5198 }
5199
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200 if (copy_to_user(optval, &params, len))
5201 return -EFAULT;
5202
5203 if (put_user(len, optlen))
5204 return -EFAULT;
5205
5206 return 0;
5207}
5208
Wei Yongjund364d922008-05-09 15:13:26 -07005209/*
5210 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08005211 *
Wei Yongjund364d922008-05-09 15:13:26 -07005212 * This option will effect the way delayed acks are performed. This
5213 * option allows you to get or set the delayed ack time, in
5214 * milliseconds. It also allows changing the delayed ack frequency.
5215 * Changing the frequency to 1 disables the delayed sack algorithm. If
5216 * the assoc_id is 0, then this sets or gets the endpoints default
5217 * values. If the assoc_id field is non-zero, then the set or get
5218 * effects the specified association for the one to many model (the
5219 * assoc_id field is ignored by the one to one model). Note that if
5220 * sack_delay or sack_freq are 0 when setting this option, then the
5221 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08005222 *
Wei Yongjund364d922008-05-09 15:13:26 -07005223 * struct sctp_sack_info {
5224 * sctp_assoc_t sack_assoc_id;
5225 * uint32_t sack_delay;
5226 * uint32_t sack_freq;
5227 * };
Frank Filz77086102005-12-22 11:37:30 -08005228 *
Wei Yongjund364d922008-05-09 15:13:26 -07005229 * sack_assoc_id - This parameter, indicates which association the user
5230 * is performing an action upon. Note that if this field's value is
5231 * zero then the endpoints default value is changed (effecting future
5232 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08005233 *
Wei Yongjund364d922008-05-09 15:13:26 -07005234 * sack_delay - This parameter contains the number of milliseconds that
5235 * the user is requesting the delayed ACK timer be set to. Note that
5236 * this value is defined in the standard to be between 200 and 500
5237 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08005238 *
Wei Yongjund364d922008-05-09 15:13:26 -07005239 * sack_freq - This parameter contains the number of packets that must
5240 * be received before a sack is sent without waiting for the delay
5241 * timer to expire. The default value for this is 2, setting this
5242 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08005243 */
Wei Yongjund364d922008-05-09 15:13:26 -07005244static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
Frank Filz77086102005-12-22 11:37:30 -08005245 char __user *optval,
5246 int __user *optlen)
5247{
Wei Yongjund364d922008-05-09 15:13:26 -07005248 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08005249 struct sctp_association *asoc = NULL;
5250 struct sctp_sock *sp = sctp_sk(sk);
5251
Wei Yongjund364d922008-05-09 15:13:26 -07005252 if (len >= sizeof(struct sctp_sack_info)) {
5253 len = sizeof(struct sctp_sack_info);
5254
5255 if (copy_from_user(&params, optval, len))
5256 return -EFAULT;
5257 } else if (len == sizeof(struct sctp_assoc_value)) {
Neil Horman94f65192013-12-23 08:29:43 -05005258 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05005259 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05005260 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05005261 "Use struct sctp_sack_info instead\n",
5262 current->comm, task_pid_nr(current));
Wei Yongjund364d922008-05-09 15:13:26 -07005263 if (copy_from_user(&params, optval, len))
5264 return -EFAULT;
5265 } else
wangweidongcb3f8372013-12-23 12:16:50 +08005266 return -EINVAL;
Frank Filz77086102005-12-22 11:37:30 -08005267
Wei Yongjund364d922008-05-09 15:13:26 -07005268 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08005269 * to many style socket, and an association was not found, then
5270 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005271 */
Wei Yongjund364d922008-05-09 15:13:26 -07005272 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
5273 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08005274 return -EINVAL;
5275
5276 if (asoc) {
5277 /* Fetch association values. */
Wei Yongjund364d922008-05-09 15:13:26 -07005278 if (asoc->param_flags & SPP_SACKDELAY_ENABLE) {
5279 params.sack_delay = jiffies_to_msecs(
Frank Filz77086102005-12-22 11:37:30 -08005280 asoc->sackdelay);
Wei Yongjund364d922008-05-09 15:13:26 -07005281 params.sack_freq = asoc->sackfreq;
5282
5283 } else {
5284 params.sack_delay = 0;
5285 params.sack_freq = 1;
5286 }
Frank Filz77086102005-12-22 11:37:30 -08005287 } else {
5288 /* Fetch socket values. */
Wei Yongjund364d922008-05-09 15:13:26 -07005289 if (sp->param_flags & SPP_SACKDELAY_ENABLE) {
5290 params.sack_delay = sp->sackdelay;
5291 params.sack_freq = sp->sackfreq;
5292 } else {
5293 params.sack_delay = 0;
5294 params.sack_freq = 1;
5295 }
Frank Filz77086102005-12-22 11:37:30 -08005296 }
5297
5298 if (copy_to_user(optval, &params, len))
5299 return -EFAULT;
5300
5301 if (put_user(len, optlen))
5302 return -EFAULT;
5303
5304 return 0;
5305}
5306
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
5308 *
5309 * Applications can specify protocol parameters for the default association
5310 * initialization. The option name argument to setsockopt() and getsockopt()
5311 * is SCTP_INITMSG.
5312 *
5313 * Setting initialization parameters is effective only on an unconnected
5314 * socket (for UDP-style sockets only future associations are effected
5315 * by the change). With TCP-style sockets, this option is inherited by
5316 * sockets derived from a listener socket.
5317 */
5318static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
5319{
Neil Horman408f22e2007-06-16 14:03:45 -04005320 if (len < sizeof(struct sctp_initmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005322 len = sizeof(struct sctp_initmsg);
5323 if (put_user(len, optlen))
5324 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325 if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
5326 return -EFAULT;
5327 return 0;
5328}
5329
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005331static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
5332 char __user *optval, int __user *optlen)
5333{
5334 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005335 int cnt = 0;
5336 struct sctp_getaddrs getaddrs;
5337 struct sctp_transport *from;
5338 void __user *to;
5339 union sctp_addr temp;
5340 struct sctp_sock *sp = sctp_sk(sk);
5341 int addrlen;
5342 size_t space_left;
5343 int bytes_copied;
5344
5345 if (len < sizeof(struct sctp_getaddrs))
5346 return -EINVAL;
5347
5348 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
5349 return -EFAULT;
5350
5351 /* For UDP-style sockets, id specifies the association to query. */
5352 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
5353 if (!asoc)
5354 return -EINVAL;
5355
wangweidongcb3f8372013-12-23 12:16:50 +08005356 to = optval + offsetof(struct sctp_getaddrs, addrs);
5357 space_left = len - offsetof(struct sctp_getaddrs, addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005358
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07005359 list_for_each_entry(from, &asoc->peer.transport_addr_list,
5360 transports) {
Al Virob3f5b3b2006-11-20 17:22:43 -08005361 memcpy(&temp, &from->ipaddr, sizeof(temp));
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005362 addrlen = sctp_get_pf_specific(sk->sk_family)
5363 ->addr_to_user(sp, &temp);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005364 if (space_left < addrlen)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005365 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005366 if (copy_to_user(to, &temp, addrlen))
5367 return -EFAULT;
5368 to += addrlen;
5369 cnt++;
5370 space_left -= addrlen;
5371 }
5372
5373 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
5374 return -EFAULT;
5375 bytes_copied = ((char __user *)to) - optval;
5376 if (put_user(bytes_copied, optlen))
5377 return -EFAULT;
5378
5379 return 0;
5380}
5381
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005382static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to,
5383 size_t space_left, int *bytes_copied)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005384{
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005385 struct sctp_sockaddr_entry *addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005386 union sctp_addr temp;
5387 int cnt = 0;
5388 int addrlen;
Eric W. Biederman4db67e82012-08-06 08:42:04 +00005389 struct net *net = sock_net(sk);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005390
Vlad Yasevich29303542007-09-16 16:02:12 -07005391 rcu_read_lock();
Eric W. Biederman4db67e82012-08-06 08:42:04 +00005392 list_for_each_entry_rcu(addr, &net->sctp.local_addr_list, list) {
Vlad Yasevich29303542007-09-16 16:02:12 -07005393 if (!addr->valid)
5394 continue;
5395
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005396 if ((PF_INET == sk->sk_family) &&
Al Viro6244be42006-11-20 17:21:44 -08005397 (AF_INET6 == addr->a.sa.sa_family))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005398 continue;
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07005399 if ((PF_INET6 == sk->sk_family) &&
5400 inet_v6_ipv6only(sk) &&
5401 (AF_INET == addr->a.sa.sa_family))
5402 continue;
Al Viro6244be42006-11-20 17:21:44 -08005403 memcpy(&temp, &addr->a, sizeof(temp));
Vlad Yasevichb46ae362008-01-28 14:25:36 -05005404 if (!temp.v4.sin_port)
5405 temp.v4.sin_port = htons(port);
5406
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005407 addrlen = sctp_get_pf_specific(sk->sk_family)
5408 ->addr_to_user(sctp_sk(sk), &temp);
5409
Vlad Yasevich29303542007-09-16 16:02:12 -07005410 if (space_left < addrlen) {
5411 cnt = -ENOMEM;
5412 break;
5413 }
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005414 memcpy(to, &temp, addrlen);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08005415
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005416 to += addrlen;
wangweidongcb3f8372013-12-23 12:16:50 +08005417 cnt++;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005418 space_left -= addrlen;
Vlad Yasevich3663c302007-07-03 12:43:12 -04005419 *bytes_copied += addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005420 }
Vlad Yasevich29303542007-09-16 16:02:12 -07005421 rcu_read_unlock();
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005422
5423 return cnt;
5424}
5425
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005427static int sctp_getsockopt_local_addrs(struct sock *sk, int len,
5428 char __user *optval, int __user *optlen)
5429{
5430 struct sctp_bind_addr *bp;
5431 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005432 int cnt = 0;
5433 struct sctp_getaddrs getaddrs;
5434 struct sctp_sockaddr_entry *addr;
5435 void __user *to;
5436 union sctp_addr temp;
5437 struct sctp_sock *sp = sctp_sk(sk);
5438 int addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005439 int err = 0;
5440 size_t space_left;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005441 int bytes_copied = 0;
5442 void *addrs;
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005443 void *buf;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005444
Neil Horman408f22e2007-06-16 14:03:45 -04005445 if (len < sizeof(struct sctp_getaddrs))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005446 return -EINVAL;
5447
5448 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
5449 return -EFAULT;
5450
5451 /*
5452 * For UDP-style sockets, id specifies the association to query.
5453 * If the id field is set to the value '0' then the locally bound
5454 * addresses are returned without regard to any particular
5455 * association.
5456 */
5457 if (0 == getaddrs.assoc_id) {
5458 bp = &sctp_sk(sk)->ep->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005459 } else {
5460 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
5461 if (!asoc)
5462 return -EINVAL;
5463 bp = &asoc->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005464 }
5465
wangweidongcb3f8372013-12-23 12:16:50 +08005466 to = optval + offsetof(struct sctp_getaddrs, addrs);
5467 space_left = len - offsetof(struct sctp_getaddrs, addrs);
Neil Horman186e2342007-06-18 19:59:16 -04005468
Marcelo Ricardo Leitnercacc0622015-11-30 14:32:54 -02005469 addrs = kmalloc(space_left, GFP_USER | __GFP_NOWARN);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005470 if (!addrs)
5471 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005472
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005473 /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
5474 * addresses from the global local address list.
5475 */
5476 if (sctp_list_single_entry(&bp->address_list)) {
5477 addr = list_entry(bp->address_list.next,
5478 struct sctp_sockaddr_entry, list);
Vlad Yasevich52cae8f2008-08-18 10:34:34 -04005479 if (sctp_is_any(sk, &addr->a)) {
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005480 cnt = sctp_copy_laddrs(sk, bp->port, addrs,
5481 space_left, &bytes_copied);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005482 if (cnt < 0) {
5483 err = cnt;
Vlad Yasevich559cf712007-09-16 16:03:28 -07005484 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005485 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005486 goto copy_getaddrs;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005487 }
5488 }
5489
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005490 buf = addrs;
Vlad Yasevich559cf712007-09-16 16:03:28 -07005491 /* Protection on the bound address list is not needed since
5492 * in the socket option context we hold a socket lock and
5493 * thus the bound address list can't change.
5494 */
5495 list_for_each_entry(addr, &bp->address_list, list) {
Al Viro6244be42006-11-20 17:21:44 -08005496 memcpy(&temp, &addr->a, sizeof(temp));
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005497 addrlen = sctp_get_pf_specific(sk->sk_family)
5498 ->addr_to_user(sp, &temp);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005499 if (space_left < addrlen) {
5500 err = -ENOMEM; /*fixme: right error?*/
Vlad Yasevich559cf712007-09-16 16:03:28 -07005501 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005502 }
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005503 memcpy(buf, &temp, addrlen);
5504 buf += addrlen;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005505 bytes_copied += addrlen;
wangweidongcb3f8372013-12-23 12:16:50 +08005506 cnt++;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005507 space_left -= addrlen;
5508 }
5509
5510copy_getaddrs:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005511 if (copy_to_user(to, addrs, bytes_copied)) {
5512 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02005513 goto out;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005514 }
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04005515 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num)) {
5516 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02005517 goto out;
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04005518 }
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005519 if (put_user(bytes_copied, optlen))
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04005520 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02005521out:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005522 kfree(addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005523 return err;
5524}
5525
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
5527 *
5528 * Requests that the local SCTP stack use the enclosed peer address as
5529 * the association primary. The enclosed address must be one of the
5530 * association peer's addresses.
5531 */
5532static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
5533 char __user *optval, int __user *optlen)
5534{
5535 struct sctp_prim prim;
5536 struct sctp_association *asoc;
5537 struct sctp_sock *sp = sctp_sk(sk);
5538
Neil Horman408f22e2007-06-16 14:03:45 -04005539 if (len < sizeof(struct sctp_prim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540 return -EINVAL;
5541
Neil Horman408f22e2007-06-16 14:03:45 -04005542 len = sizeof(struct sctp_prim);
5543
5544 if (copy_from_user(&prim, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545 return -EFAULT;
5546
5547 asoc = sctp_id2assoc(sk, prim.ssp_assoc_id);
5548 if (!asoc)
5549 return -EINVAL;
5550
5551 if (!asoc->peer.primary_path)
5552 return -ENOTCONN;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005553
Al Viro8cec6b82006-11-20 17:23:01 -08005554 memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr,
5555 asoc->peer.primary_path->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005557 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005558 (union sctp_addr *)&prim.ssp_addr);
5559
Neil Horman408f22e2007-06-16 14:03:45 -04005560 if (put_user(len, optlen))
5561 return -EFAULT;
5562 if (copy_to_user(optval, &prim, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563 return -EFAULT;
5564
5565 return 0;
5566}
5567
5568/*
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005569 * 7.1.11 Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570 *
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005571 * Requests that the local endpoint set the specified Adaptation Layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572 * Indication parameter for all future INIT and INIT-ACK exchanges.
5573 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005574static int sctp_getsockopt_adaptation_layer(struct sock *sk, int len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005575 char __user *optval, int __user *optlen)
5576{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005577 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578
Neil Horman408f22e2007-06-16 14:03:45 -04005579 if (len < sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005580 return -EINVAL;
5581
Neil Horman408f22e2007-06-16 14:03:45 -04005582 len = sizeof(struct sctp_setadaptation);
5583
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005584 adaptation.ssb_adaptation_ind = sctp_sk(sk)->adaptation_ind;
Neil Horman408f22e2007-06-16 14:03:45 -04005585
5586 if (put_user(len, optlen))
5587 return -EFAULT;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005588 if (copy_to_user(optval, &adaptation, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589 return -EFAULT;
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07005590
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591 return 0;
5592}
5593
5594/*
5595 *
5596 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
5597 *
5598 * Applications that wish to use the sendto() system call may wish to
5599 * specify a default set of parameters that would normally be supplied
5600 * through the inclusion of ancillary data. This socket option allows
5601 * such an application to set the default sctp_sndrcvinfo structure.
5602
5603
5604 * The application that wishes to use this socket option simply passes
5605 * in to this call the sctp_sndrcvinfo structure defined in Section
5606 * 5.2.2) The input parameters accepted by this call include
5607 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
5608 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
5609 * to this call if the caller is using the UDP model.
5610 *
5611 * For getsockopt, it get the default sctp_sndrcvinfo structure.
5612 */
5613static int sctp_getsockopt_default_send_param(struct sock *sk,
5614 int len, char __user *optval,
5615 int __user *optlen)
5616{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617 struct sctp_sock *sp = sctp_sk(sk);
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005618 struct sctp_association *asoc;
5619 struct sctp_sndrcvinfo info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005621 if (len < sizeof(info))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005623
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005624 len = sizeof(info);
Neil Horman408f22e2007-06-16 14:03:45 -04005625
5626 if (copy_from_user(&info, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627 return -EFAULT;
5628
5629 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
5630 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
5631 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005632 if (asoc) {
5633 info.sinfo_stream = asoc->default_stream;
5634 info.sinfo_flags = asoc->default_flags;
5635 info.sinfo_ppid = asoc->default_ppid;
5636 info.sinfo_context = asoc->default_context;
5637 info.sinfo_timetolive = asoc->default_timetolive;
5638 } else {
5639 info.sinfo_stream = sp->default_stream;
5640 info.sinfo_flags = sp->default_flags;
5641 info.sinfo_ppid = sp->default_ppid;
5642 info.sinfo_context = sp->default_context;
5643 info.sinfo_timetolive = sp->default_timetolive;
5644 }
5645
Neil Horman408f22e2007-06-16 14:03:45 -04005646 if (put_user(len, optlen))
5647 return -EFAULT;
5648 if (copy_to_user(optval, &info, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005649 return -EFAULT;
5650
5651 return 0;
5652}
5653
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005654/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
5655 * (SCTP_DEFAULT_SNDINFO)
5656 */
5657static int sctp_getsockopt_default_sndinfo(struct sock *sk, int len,
5658 char __user *optval,
5659 int __user *optlen)
5660{
5661 struct sctp_sock *sp = sctp_sk(sk);
5662 struct sctp_association *asoc;
5663 struct sctp_sndinfo info;
5664
5665 if (len < sizeof(info))
5666 return -EINVAL;
5667
5668 len = sizeof(info);
5669
5670 if (copy_from_user(&info, optval, len))
5671 return -EFAULT;
5672
5673 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
5674 if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
5675 return -EINVAL;
5676 if (asoc) {
5677 info.snd_sid = asoc->default_stream;
5678 info.snd_flags = asoc->default_flags;
5679 info.snd_ppid = asoc->default_ppid;
5680 info.snd_context = asoc->default_context;
5681 } else {
5682 info.snd_sid = sp->default_stream;
5683 info.snd_flags = sp->default_flags;
5684 info.snd_ppid = sp->default_ppid;
5685 info.snd_context = sp->default_context;
5686 }
5687
5688 if (put_user(len, optlen))
5689 return -EFAULT;
5690 if (copy_to_user(optval, &info, len))
5691 return -EFAULT;
5692
5693 return 0;
5694}
5695
Linus Torvalds1da177e2005-04-16 15:20:36 -07005696/*
5697 *
5698 * 7.1.5 SCTP_NODELAY
5699 *
5700 * Turn on/off any Nagle-like algorithm. This means that packets are
5701 * generally sent as soon as possible and no unnecessary delays are
5702 * introduced, at the cost of more packets in the network. Expects an
5703 * integer boolean flag.
5704 */
5705
5706static int sctp_getsockopt_nodelay(struct sock *sk, int len,
5707 char __user *optval, int __user *optlen)
5708{
5709 int val;
5710
5711 if (len < sizeof(int))
5712 return -EINVAL;
5713
5714 len = sizeof(int);
5715 val = (sctp_sk(sk)->nodelay == 1);
5716 if (put_user(len, optlen))
5717 return -EFAULT;
5718 if (copy_to_user(optval, &val, len))
5719 return -EFAULT;
5720 return 0;
5721}
5722
5723/*
5724 *
5725 * 7.1.1 SCTP_RTOINFO
5726 *
5727 * The protocol parameters used to initialize and bound retransmission
5728 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
5729 * and modify these parameters.
5730 * All parameters are time values, in milliseconds. A value of 0, when
5731 * modifying the parameters, indicates that the current value should not
5732 * be changed.
5733 *
5734 */
5735static int sctp_getsockopt_rtoinfo(struct sock *sk, int len,
5736 char __user *optval,
5737 int __user *optlen) {
5738 struct sctp_rtoinfo rtoinfo;
5739 struct sctp_association *asoc;
5740
Neil Horman408f22e2007-06-16 14:03:45 -04005741 if (len < sizeof (struct sctp_rtoinfo))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742 return -EINVAL;
5743
Neil Horman408f22e2007-06-16 14:03:45 -04005744 len = sizeof(struct sctp_rtoinfo);
5745
5746 if (copy_from_user(&rtoinfo, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747 return -EFAULT;
5748
5749 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
5750
5751 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
5752 return -EINVAL;
5753
5754 /* Values corresponding to the specific association. */
5755 if (asoc) {
5756 rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial);
5757 rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max);
5758 rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min);
5759 } else {
5760 /* Values corresponding to the endpoint. */
5761 struct sctp_sock *sp = sctp_sk(sk);
5762
5763 rtoinfo.srto_initial = sp->rtoinfo.srto_initial;
5764 rtoinfo.srto_max = sp->rtoinfo.srto_max;
5765 rtoinfo.srto_min = sp->rtoinfo.srto_min;
5766 }
5767
5768 if (put_user(len, optlen))
5769 return -EFAULT;
5770
5771 if (copy_to_user(optval, &rtoinfo, len))
5772 return -EFAULT;
5773
5774 return 0;
5775}
5776
5777/*
5778 *
5779 * 7.1.2 SCTP_ASSOCINFO
5780 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02005781 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782 * of the association.
5783 * Returns an error if the new association retransmission value is
5784 * greater than the sum of the retransmission value of the peer.
5785 * See [SCTP] for more information.
5786 *
5787 */
5788static int sctp_getsockopt_associnfo(struct sock *sk, int len,
5789 char __user *optval,
5790 int __user *optlen)
5791{
5792
5793 struct sctp_assocparams assocparams;
5794 struct sctp_association *asoc;
5795 struct list_head *pos;
5796 int cnt = 0;
5797
Neil Horman408f22e2007-06-16 14:03:45 -04005798 if (len < sizeof (struct sctp_assocparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005799 return -EINVAL;
5800
Neil Horman408f22e2007-06-16 14:03:45 -04005801 len = sizeof(struct sctp_assocparams);
5802
5803 if (copy_from_user(&assocparams, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005804 return -EFAULT;
5805
5806 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
5807
5808 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
5809 return -EINVAL;
5810
5811 /* Values correspoinding to the specific association */
Vladislav Yasevich17337212005-04-28 11:57:54 -07005812 if (asoc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813 assocparams.sasoc_asocmaxrxt = asoc->max_retrans;
5814 assocparams.sasoc_peer_rwnd = asoc->peer.rwnd;
5815 assocparams.sasoc_local_rwnd = asoc->a_rwnd;
Daniel Borkmann52db8822013-06-25 18:17:27 +02005816 assocparams.sasoc_cookie_life = ktime_to_ms(asoc->cookie_life);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005817
5818 list_for_each(pos, &asoc->peer.transport_addr_list) {
wangweidongcb3f8372013-12-23 12:16:50 +08005819 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005820 }
5821
5822 assocparams.sasoc_number_peer_destinations = cnt;
5823 } else {
5824 /* Values corresponding to the endpoint */
5825 struct sctp_sock *sp = sctp_sk(sk);
5826
5827 assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt;
5828 assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd;
5829 assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd;
5830 assocparams.sasoc_cookie_life =
5831 sp->assocparams.sasoc_cookie_life;
5832 assocparams.sasoc_number_peer_destinations =
5833 sp->assocparams.
5834 sasoc_number_peer_destinations;
5835 }
5836
5837 if (put_user(len, optlen))
5838 return -EFAULT;
5839
5840 if (copy_to_user(optval, &assocparams, len))
5841 return -EFAULT;
5842
5843 return 0;
5844}
5845
5846/*
5847 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
5848 *
5849 * This socket option is a boolean flag which turns on or off mapped V4
5850 * addresses. If this option is turned on and the socket is type
5851 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
5852 * If this option is turned off, then no mapping will be done of V4
5853 * addresses and a user will receive both PF_INET6 and PF_INET type
5854 * addresses on the socket.
5855 */
5856static int sctp_getsockopt_mappedv4(struct sock *sk, int len,
5857 char __user *optval, int __user *optlen)
5858{
5859 int val;
5860 struct sctp_sock *sp = sctp_sk(sk);
5861
5862 if (len < sizeof(int))
5863 return -EINVAL;
5864
5865 len = sizeof(int);
5866 val = sp->v4mapped;
5867 if (put_user(len, optlen))
5868 return -EFAULT;
5869 if (copy_to_user(optval, &val, len))
5870 return -EFAULT;
5871
5872 return 0;
5873}
5874
5875/*
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005876 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
5877 * (chapter and verse is quoted at sctp_setsockopt_context())
5878 */
5879static int sctp_getsockopt_context(struct sock *sk, int len,
5880 char __user *optval, int __user *optlen)
5881{
5882 struct sctp_assoc_value params;
5883 struct sctp_sock *sp;
5884 struct sctp_association *asoc;
5885
Neil Horman408f22e2007-06-16 14:03:45 -04005886 if (len < sizeof(struct sctp_assoc_value))
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005887 return -EINVAL;
5888
Neil Horman408f22e2007-06-16 14:03:45 -04005889 len = sizeof(struct sctp_assoc_value);
5890
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005891 if (copy_from_user(&params, optval, len))
5892 return -EFAULT;
5893
5894 sp = sctp_sk(sk);
5895
5896 if (params.assoc_id != 0) {
5897 asoc = sctp_id2assoc(sk, params.assoc_id);
5898 if (!asoc)
5899 return -EINVAL;
5900 params.assoc_value = asoc->default_rcv_context;
5901 } else {
5902 params.assoc_value = sp->default_rcv_context;
5903 }
5904
5905 if (put_user(len, optlen))
5906 return -EFAULT;
5907 if (copy_to_user(optval, &params, len))
5908 return -EFAULT;
5909
5910 return 0;
5911}
5912
5913/*
Wei Yongjune89c2092008-12-25 16:54:58 -08005914 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
5915 * This option will get or set the maximum size to put in any outgoing
5916 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917 * fragmented by SCTP into the specified size. Note that the underlying
5918 * SCTP implementation may fragment into smaller sized chunks when the
5919 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08005920 * the user. The default value for this option is '0' which indicates
5921 * the user is NOT limiting fragmentation and only the PMTU will effect
5922 * SCTP's choice of DATA chunk size. Note also that values set larger
5923 * than the maximum size of an IP datagram will effectively let SCTP
5924 * control fragmentation (i.e. the same as setting this option to 0).
5925 *
5926 * The following structure is used to access and modify this parameter:
5927 *
5928 * struct sctp_assoc_value {
5929 * sctp_assoc_t assoc_id;
5930 * uint32_t assoc_value;
5931 * };
5932 *
5933 * assoc_id: This parameter is ignored for one-to-one style sockets.
5934 * For one-to-many style sockets this parameter indicates which
5935 * association the user is performing an action upon. Note that if
5936 * this field's value is zero then the endpoints default value is
5937 * changed (effecting future associations only).
5938 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005939 */
5940static int sctp_getsockopt_maxseg(struct sock *sk, int len,
5941 char __user *optval, int __user *optlen)
5942{
Wei Yongjune89c2092008-12-25 16:54:58 -08005943 struct sctp_assoc_value params;
5944 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945
Wei Yongjune89c2092008-12-25 16:54:58 -08005946 if (len == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05005947 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05005948 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05005949 "Use of int in maxseg socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05005950 "Use struct sctp_assoc_value instead\n",
5951 current->comm, task_pid_nr(current));
Wei Yongjune89c2092008-12-25 16:54:58 -08005952 params.assoc_id = 0;
5953 } else if (len >= sizeof(struct sctp_assoc_value)) {
5954 len = sizeof(struct sctp_assoc_value);
5955 if (copy_from_user(&params, optval, sizeof(params)))
5956 return -EFAULT;
5957 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958 return -EINVAL;
5959
Wei Yongjune89c2092008-12-25 16:54:58 -08005960 asoc = sctp_id2assoc(sk, params.assoc_id);
5961 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
5962 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963
Wei Yongjune89c2092008-12-25 16:54:58 -08005964 if (asoc)
5965 params.assoc_value = asoc->frag_point;
5966 else
5967 params.assoc_value = sctp_sk(sk)->user_frag;
5968
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969 if (put_user(len, optlen))
5970 return -EFAULT;
Wei Yongjune89c2092008-12-25 16:54:58 -08005971 if (len == sizeof(int)) {
5972 if (copy_to_user(optval, &params.assoc_value, len))
5973 return -EFAULT;
5974 } else {
5975 if (copy_to_user(optval, &params, len))
5976 return -EFAULT;
5977 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978
5979 return 0;
5980}
5981
Vlad Yasevichb6e13312007-04-20 12:23:15 -07005982/*
5983 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
5984 * (chapter and verse is quoted at sctp_setsockopt_fragment_interleave())
5985 */
5986static int sctp_getsockopt_fragment_interleave(struct sock *sk, int len,
5987 char __user *optval, int __user *optlen)
5988{
5989 int val;
5990
5991 if (len < sizeof(int))
5992 return -EINVAL;
5993
5994 len = sizeof(int);
5995
5996 val = sctp_sk(sk)->frag_interleave;
5997 if (put_user(len, optlen))
5998 return -EFAULT;
5999 if (copy_to_user(optval, &val, len))
6000 return -EFAULT;
6001
6002 return 0;
6003}
6004
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006005/*
6006 * 7.1.25. Set or Get the sctp partial delivery point
6007 * (chapter and verse is quoted at sctp_setsockopt_partial_delivery_point())
6008 */
6009static int sctp_getsockopt_partial_delivery_point(struct sock *sk, int len,
6010 char __user *optval,
6011 int __user *optlen)
6012{
YOSHIFUJI Hideaki9cbcbf42007-07-19 10:44:50 +09006013 u32 val;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006014
6015 if (len < sizeof(u32))
6016 return -EINVAL;
6017
6018 len = sizeof(u32);
6019
6020 val = sctp_sk(sk)->pd_point;
6021 if (put_user(len, optlen))
6022 return -EFAULT;
6023 if (copy_to_user(optval, &val, len))
6024 return -EFAULT;
6025
Wei Yongjun7d743b72010-12-14 16:10:41 +00006026 return 0;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006027}
6028
Vlad Yasevich70331572007-03-23 11:34:36 -07006029/*
6030 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
6031 * (chapter and verse is quoted at sctp_setsockopt_maxburst())
6032 */
6033static int sctp_getsockopt_maxburst(struct sock *sk, int len,
6034 char __user *optval,
6035 int __user *optlen)
6036{
Neil Horman219b99a2008-03-05 13:44:46 -08006037 struct sctp_assoc_value params;
6038 struct sctp_sock *sp;
6039 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07006040
Neil Horman219b99a2008-03-05 13:44:46 -08006041 if (len == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05006042 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05006043 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05006044 "Use of int in max_burst socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05006045 "Use struct sctp_assoc_value instead\n",
6046 current->comm, task_pid_nr(current));
Neil Horman219b99a2008-03-05 13:44:46 -08006047 params.assoc_id = 0;
Wei Yongjunc6db93a2009-03-02 09:46:12 +00006048 } else if (len >= sizeof(struct sctp_assoc_value)) {
6049 len = sizeof(struct sctp_assoc_value);
Neil Horman219b99a2008-03-05 13:44:46 -08006050 if (copy_from_user(&params, optval, len))
6051 return -EFAULT;
6052 } else
6053 return -EINVAL;
Vlad Yasevich70331572007-03-23 11:34:36 -07006054
Neil Horman219b99a2008-03-05 13:44:46 -08006055 sp = sctp_sk(sk);
Vlad Yasevich70331572007-03-23 11:34:36 -07006056
Neil Horman219b99a2008-03-05 13:44:46 -08006057 if (params.assoc_id != 0) {
6058 asoc = sctp_id2assoc(sk, params.assoc_id);
6059 if (!asoc)
6060 return -EINVAL;
6061 params.assoc_value = asoc->max_burst;
6062 } else
6063 params.assoc_value = sp->max_burst;
6064
6065 if (len == sizeof(int)) {
6066 if (copy_to_user(optval, &params.assoc_value, len))
6067 return -EFAULT;
6068 } else {
6069 if (copy_to_user(optval, &params, len))
6070 return -EFAULT;
6071 }
6072
6073 return 0;
6074
Vlad Yasevich70331572007-03-23 11:34:36 -07006075}
6076
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006077static int sctp_getsockopt_hmac_ident(struct sock *sk, int len,
6078 char __user *optval, int __user *optlen)
6079{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006080 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006081 struct sctp_hmacalgo __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006082 struct sctp_hmac_algo_param *hmacs;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006083 __u16 data_len = 0;
6084 u32 num_idents;
Xin Long7a84bd42016-02-03 23:33:30 +08006085 int i;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006086
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006087 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006088 return -EACCES;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006089
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006090 hmacs = ep->auth_hmacs_list;
Xin Long3c918702017-06-30 11:52:16 +08006091 data_len = ntohs(hmacs->param_hdr.length) -
6092 sizeof(struct sctp_paramhdr);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006093
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006094 if (len < sizeof(struct sctp_hmacalgo) + data_len)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006095 return -EINVAL;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006096
6097 len = sizeof(struct sctp_hmacalgo) + data_len;
6098 num_idents = data_len / sizeof(u16);
6099
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006100 if (put_user(len, optlen))
6101 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006102 if (put_user(num_idents, &p->shmac_num_idents))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006103 return -EFAULT;
Xin Long7a84bd42016-02-03 23:33:30 +08006104 for (i = 0; i < num_idents; i++) {
6105 __u16 hmacid = ntohs(hmacs->hmac_ids[i]);
6106
6107 if (copy_to_user(&p->shmac_idents[i], &hmacid, sizeof(__u16)))
6108 return -EFAULT;
6109 }
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006110 return 0;
6111}
6112
6113static int sctp_getsockopt_active_key(struct sock *sk, int len,
6114 char __user *optval, int __user *optlen)
6115{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006116 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006117 struct sctp_authkeyid val;
6118 struct sctp_association *asoc;
6119
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006120 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006121 return -EACCES;
6122
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006123 if (len < sizeof(struct sctp_authkeyid))
6124 return -EINVAL;
6125 if (copy_from_user(&val, optval, sizeof(struct sctp_authkeyid)))
6126 return -EFAULT;
6127
6128 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
6129 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
6130 return -EINVAL;
6131
6132 if (asoc)
6133 val.scact_keynumber = asoc->active_key_id;
6134 else
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006135 val.scact_keynumber = ep->active_key_id;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006136
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006137 len = sizeof(struct sctp_authkeyid);
6138 if (put_user(len, optlen))
6139 return -EFAULT;
6140 if (copy_to_user(optval, &val, len))
6141 return -EFAULT;
6142
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006143 return 0;
6144}
6145
6146static int sctp_getsockopt_peer_auth_chunks(struct sock *sk, int len,
6147 char __user *optval, int __user *optlen)
6148{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006149 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Al Viro411223c2007-10-14 19:21:20 +01006150 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006151 struct sctp_authchunks val;
6152 struct sctp_association *asoc;
6153 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006154 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006155 char __user *to;
6156
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006157 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006158 return -EACCES;
6159
6160 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006161 return -EINVAL;
6162
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006163 if (copy_from_user(&val, optval, sizeof(struct sctp_authchunks)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006164 return -EFAULT;
6165
Al Viro411223c2007-10-14 19:21:20 +01006166 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006167 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6168 if (!asoc)
6169 return -EINVAL;
6170
6171 ch = asoc->peer.peer_chunks;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006172 if (!ch)
6173 goto num;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006174
6175 /* See if the user provided enough room for all the data */
Xin Long3c918702017-06-30 11:52:16 +08006176 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
Vlad Yasevichb40db682008-02-27 14:40:37 -05006177 if (len < num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006178 return -EINVAL;
6179
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006180 if (copy_to_user(to, ch->chunks, num_chunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006181 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006182num:
6183 len = sizeof(struct sctp_authchunks) + num_chunks;
wangweidong8d726512013-12-23 12:16:53 +08006184 if (put_user(len, optlen))
6185 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05006186 if (put_user(num_chunks, &p->gauth_number_of_chunks))
6187 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006188 return 0;
6189}
6190
6191static int sctp_getsockopt_local_auth_chunks(struct sock *sk, int len,
6192 char __user *optval, int __user *optlen)
6193{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006194 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Al Viro411223c2007-10-14 19:21:20 +01006195 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006196 struct sctp_authchunks val;
6197 struct sctp_association *asoc;
6198 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006199 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006200 char __user *to;
6201
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006202 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006203 return -EACCES;
6204
6205 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006206 return -EINVAL;
6207
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006208 if (copy_from_user(&val, optval, sizeof(struct sctp_authchunks)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006209 return -EFAULT;
6210
Al Viro411223c2007-10-14 19:21:20 +01006211 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006212 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6213 if (!asoc && val.gauth_assoc_id && sctp_style(sk, UDP))
6214 return -EINVAL;
6215
6216 if (asoc)
wangweidong26ac8e52013-12-23 12:16:51 +08006217 ch = (struct sctp_chunks_param *)asoc->c.auth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006218 else
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006219 ch = ep->auth_chunk_list;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006220
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006221 if (!ch)
6222 goto num;
6223
Xin Long3c918702017-06-30 11:52:16 +08006224 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006225 if (len < sizeof(struct sctp_authchunks) + num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006226 return -EINVAL;
6227
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006228 if (copy_to_user(to, ch->chunks, num_chunks))
6229 return -EFAULT;
6230num:
6231 len = sizeof(struct sctp_authchunks) + num_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006232 if (put_user(len, optlen))
6233 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05006234 if (put_user(num_chunks, &p->gauth_number_of_chunks))
6235 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006236
6237 return 0;
6238}
6239
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08006240/*
6241 * 8.2.5. Get the Current Number of Associations (SCTP_GET_ASSOC_NUMBER)
6242 * This option gets the current number of associations that are attached
6243 * to a one-to-many style socket. The option value is an uint32_t.
6244 */
6245static int sctp_getsockopt_assoc_number(struct sock *sk, int len,
6246 char __user *optval, int __user *optlen)
6247{
6248 struct sctp_sock *sp = sctp_sk(sk);
6249 struct sctp_association *asoc;
6250 u32 val = 0;
6251
6252 if (sctp_style(sk, TCP))
6253 return -EOPNOTSUPP;
6254
6255 if (len < sizeof(u32))
6256 return -EINVAL;
6257
6258 len = sizeof(u32);
6259
6260 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6261 val++;
6262 }
6263
6264 if (put_user(len, optlen))
6265 return -EFAULT;
6266 if (copy_to_user(optval, &val, len))
6267 return -EFAULT;
6268
6269 return 0;
6270}
6271
Wei Yongjun209ba422011-04-17 17:27:08 +00006272/*
Michio Honda7dc04d72011-04-26 20:16:31 +09006273 * 8.1.23 SCTP_AUTO_ASCONF
6274 * See the corresponding setsockopt entry as description
6275 */
6276static int sctp_getsockopt_auto_asconf(struct sock *sk, int len,
6277 char __user *optval, int __user *optlen)
6278{
6279 int val = 0;
6280
6281 if (len < sizeof(int))
6282 return -EINVAL;
6283
6284 len = sizeof(int);
6285 if (sctp_sk(sk)->do_auto_asconf && sctp_is_ep_boundall(sk))
6286 val = 1;
6287 if (put_user(len, optlen))
6288 return -EFAULT;
6289 if (copy_to_user(optval, &val, len))
6290 return -EFAULT;
6291 return 0;
6292}
6293
6294/*
Wei Yongjun209ba422011-04-17 17:27:08 +00006295 * 8.2.6. Get the Current Identifiers of Associations
6296 * (SCTP_GET_ASSOC_ID_LIST)
6297 *
6298 * This option gets the current list of SCTP association identifiers of
6299 * the SCTP associations handled by a one-to-many style socket.
6300 */
6301static int sctp_getsockopt_assoc_ids(struct sock *sk, int len,
6302 char __user *optval, int __user *optlen)
6303{
6304 struct sctp_sock *sp = sctp_sk(sk);
6305 struct sctp_association *asoc;
6306 struct sctp_assoc_ids *ids;
6307 u32 num = 0;
6308
6309 if (sctp_style(sk, TCP))
6310 return -EOPNOTSUPP;
6311
6312 if (len < sizeof(struct sctp_assoc_ids))
6313 return -EINVAL;
6314
6315 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6316 num++;
6317 }
6318
6319 if (len < sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num)
6320 return -EINVAL;
6321
6322 len = sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num;
6323
Marcelo Ricardo Leitner9ba0b962015-12-23 16:28:40 -02006324 ids = kmalloc(len, GFP_USER | __GFP_NOWARN);
Wei Yongjun209ba422011-04-17 17:27:08 +00006325 if (unlikely(!ids))
6326 return -ENOMEM;
6327
6328 ids->gaids_number_of_ids = num;
6329 num = 0;
6330 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6331 ids->gaids_assoc_id[num++] = asoc->assoc_id;
6332 }
6333
6334 if (put_user(len, optlen) || copy_to_user(optval, ids, len)) {
6335 kfree(ids);
6336 return -EFAULT;
6337 }
6338
6339 kfree(ids);
6340 return 0;
6341}
6342
Neil Horman5aa93bc2012-07-21 07:56:07 +00006343/*
6344 * SCTP_PEER_ADDR_THLDS
6345 *
6346 * This option allows us to fetch the partially failed threshold for one or all
6347 * transports in an association. See Section 6.1 of:
6348 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
6349 */
6350static int sctp_getsockopt_paddr_thresholds(struct sock *sk,
6351 char __user *optval,
6352 int len,
6353 int __user *optlen)
6354{
6355 struct sctp_paddrthlds val;
6356 struct sctp_transport *trans;
6357 struct sctp_association *asoc;
6358
6359 if (len < sizeof(struct sctp_paddrthlds))
6360 return -EINVAL;
6361 len = sizeof(struct sctp_paddrthlds);
6362 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval, len))
6363 return -EFAULT;
6364
6365 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
6366 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
6367 if (!asoc)
6368 return -ENOENT;
6369
6370 val.spt_pathpfthld = asoc->pf_retrans;
6371 val.spt_pathmaxrxt = asoc->pathmaxrxt;
6372 } else {
6373 trans = sctp_addr_id2transport(sk, &val.spt_address,
6374 val.spt_assoc_id);
6375 if (!trans)
6376 return -ENOENT;
6377
6378 val.spt_pathmaxrxt = trans->pathmaxrxt;
6379 val.spt_pathpfthld = trans->pf_retrans;
6380 }
6381
6382 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
6383 return -EFAULT;
6384
6385 return 0;
6386}
6387
Michele Baldessari196d6752012-12-01 04:49:42 +00006388/*
6389 * SCTP_GET_ASSOC_STATS
6390 *
6391 * This option retrieves local per endpoint statistics. It is modeled
6392 * after OpenSolaris' implementation
6393 */
6394static int sctp_getsockopt_assoc_stats(struct sock *sk, int len,
6395 char __user *optval,
6396 int __user *optlen)
6397{
6398 struct sctp_assoc_stats sas;
6399 struct sctp_association *asoc = NULL;
6400
6401 /* User must provide at least the assoc id */
6402 if (len < sizeof(sctp_assoc_t))
6403 return -EINVAL;
6404
Guenter Roeck726bc6b2013-02-27 10:57:31 +00006405 /* Allow the struct to grow and fill in as much as possible */
6406 len = min_t(size_t, len, sizeof(sas));
6407
Michele Baldessari196d6752012-12-01 04:49:42 +00006408 if (copy_from_user(&sas, optval, len))
6409 return -EFAULT;
6410
6411 asoc = sctp_id2assoc(sk, sas.sas_assoc_id);
6412 if (!asoc)
6413 return -EINVAL;
6414
6415 sas.sas_rtxchunks = asoc->stats.rtxchunks;
6416 sas.sas_gapcnt = asoc->stats.gapcnt;
6417 sas.sas_outofseqtsns = asoc->stats.outofseqtsns;
6418 sas.sas_osacks = asoc->stats.osacks;
6419 sas.sas_isacks = asoc->stats.isacks;
6420 sas.sas_octrlchunks = asoc->stats.octrlchunks;
6421 sas.sas_ictrlchunks = asoc->stats.ictrlchunks;
6422 sas.sas_oodchunks = asoc->stats.oodchunks;
6423 sas.sas_iodchunks = asoc->stats.iodchunks;
6424 sas.sas_ouodchunks = asoc->stats.ouodchunks;
6425 sas.sas_iuodchunks = asoc->stats.iuodchunks;
6426 sas.sas_idupchunks = asoc->stats.idupchunks;
6427 sas.sas_opackets = asoc->stats.opackets;
6428 sas.sas_ipackets = asoc->stats.ipackets;
6429
6430 /* New high max rto observed, will return 0 if not a single
6431 * RTO update took place. obs_rto_ipaddr will be bogus
6432 * in such a case
6433 */
6434 sas.sas_maxrto = asoc->stats.max_obs_rto;
6435 memcpy(&sas.sas_obs_rto_ipaddr, &asoc->stats.obs_rto_ipaddr,
6436 sizeof(struct sockaddr_storage));
6437
6438 /* Mark beginning of a new observation period */
6439 asoc->stats.max_obs_rto = asoc->rto_min;
6440
Michele Baldessari196d6752012-12-01 04:49:42 +00006441 if (put_user(len, optlen))
6442 return -EFAULT;
6443
Daniel Borkmannbb333812013-06-28 19:49:40 +02006444 pr_debug("%s: len:%d, assoc_id:%d\n", __func__, len, sas.sas_assoc_id);
Michele Baldessari196d6752012-12-01 04:49:42 +00006445
6446 if (copy_to_user(optval, &sas, len))
6447 return -EFAULT;
6448
6449 return 0;
6450}
6451
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02006452static int sctp_getsockopt_recvrcvinfo(struct sock *sk, int len,
6453 char __user *optval,
6454 int __user *optlen)
6455{
6456 int val = 0;
6457
6458 if (len < sizeof(int))
6459 return -EINVAL;
6460
6461 len = sizeof(int);
6462 if (sctp_sk(sk)->recvrcvinfo)
6463 val = 1;
6464 if (put_user(len, optlen))
6465 return -EFAULT;
6466 if (copy_to_user(optval, &val, len))
6467 return -EFAULT;
6468
6469 return 0;
6470}
6471
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02006472static int sctp_getsockopt_recvnxtinfo(struct sock *sk, int len,
6473 char __user *optval,
6474 int __user *optlen)
6475{
6476 int val = 0;
6477
6478 if (len < sizeof(int))
6479 return -EINVAL;
6480
6481 len = sizeof(int);
6482 if (sctp_sk(sk)->recvnxtinfo)
6483 val = 1;
6484 if (put_user(len, optlen))
6485 return -EFAULT;
6486 if (copy_to_user(optval, &val, len))
6487 return -EFAULT;
6488
6489 return 0;
6490}
6491
Xin Long28aa4c22016-07-09 19:47:40 +08006492static int sctp_getsockopt_pr_supported(struct sock *sk, int len,
6493 char __user *optval,
6494 int __user *optlen)
6495{
6496 struct sctp_assoc_value params;
6497 struct sctp_association *asoc;
6498 int retval = -EFAULT;
6499
6500 if (len < sizeof(params)) {
6501 retval = -EINVAL;
6502 goto out;
6503 }
6504
6505 len = sizeof(params);
6506 if (copy_from_user(&params, optval, len))
6507 goto out;
6508
6509 asoc = sctp_id2assoc(sk, params.assoc_id);
6510 if (asoc) {
6511 params.assoc_value = asoc->prsctp_enable;
6512 } else if (!params.assoc_id) {
6513 struct sctp_sock *sp = sctp_sk(sk);
6514
6515 params.assoc_value = sp->ep->prsctp_enable;
6516 } else {
6517 retval = -EINVAL;
6518 goto out;
6519 }
6520
6521 if (put_user(len, optlen))
6522 goto out;
6523
6524 if (copy_to_user(optval, &params, len))
6525 goto out;
6526
6527 retval = 0;
6528
6529out:
6530 return retval;
6531}
6532
Xin Longf959fb42016-07-09 19:47:41 +08006533static int sctp_getsockopt_default_prinfo(struct sock *sk, int len,
6534 char __user *optval,
6535 int __user *optlen)
6536{
6537 struct sctp_default_prinfo info;
6538 struct sctp_association *asoc;
6539 int retval = -EFAULT;
6540
6541 if (len < sizeof(info)) {
6542 retval = -EINVAL;
6543 goto out;
6544 }
6545
6546 len = sizeof(info);
6547 if (copy_from_user(&info, optval, len))
6548 goto out;
6549
6550 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
6551 if (asoc) {
6552 info.pr_policy = SCTP_PR_POLICY(asoc->default_flags);
6553 info.pr_value = asoc->default_timetolive;
6554 } else if (!info.pr_assoc_id) {
6555 struct sctp_sock *sp = sctp_sk(sk);
6556
6557 info.pr_policy = SCTP_PR_POLICY(sp->default_flags);
6558 info.pr_value = sp->default_timetolive;
6559 } else {
6560 retval = -EINVAL;
6561 goto out;
6562 }
6563
6564 if (put_user(len, optlen))
6565 goto out;
6566
6567 if (copy_to_user(optval, &info, len))
6568 goto out;
6569
6570 retval = 0;
6571
6572out:
6573 return retval;
6574}
6575
Xin Long826d2532016-07-09 19:47:42 +08006576static int sctp_getsockopt_pr_assocstatus(struct sock *sk, int len,
6577 char __user *optval,
6578 int __user *optlen)
6579{
6580 struct sctp_prstatus params;
6581 struct sctp_association *asoc;
6582 int policy;
6583 int retval = -EINVAL;
6584
6585 if (len < sizeof(params))
6586 goto out;
6587
6588 len = sizeof(params);
6589 if (copy_from_user(&params, optval, len)) {
6590 retval = -EFAULT;
6591 goto out;
6592 }
6593
6594 policy = params.sprstat_policy;
6595 if (policy & ~SCTP_PR_SCTP_MASK)
6596 goto out;
6597
6598 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
6599 if (!asoc)
6600 goto out;
6601
6602 if (policy == SCTP_PR_SCTP_NONE) {
6603 params.sprstat_abandoned_unsent = 0;
6604 params.sprstat_abandoned_sent = 0;
6605 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
6606 params.sprstat_abandoned_unsent +=
6607 asoc->abandoned_unsent[policy];
6608 params.sprstat_abandoned_sent +=
6609 asoc->abandoned_sent[policy];
6610 }
6611 } else {
6612 params.sprstat_abandoned_unsent =
6613 asoc->abandoned_unsent[__SCTP_PR_INDEX(policy)];
6614 params.sprstat_abandoned_sent =
6615 asoc->abandoned_sent[__SCTP_PR_INDEX(policy)];
6616 }
6617
6618 if (put_user(len, optlen)) {
6619 retval = -EFAULT;
6620 goto out;
6621 }
6622
6623 if (copy_to_user(optval, &params, len)) {
6624 retval = -EFAULT;
6625 goto out;
6626 }
6627
6628 retval = 0;
6629
6630out:
6631 return retval;
6632}
6633
Xin Longd229d482017-04-01 17:07:46 +08006634static int sctp_getsockopt_pr_streamstatus(struct sock *sk, int len,
6635 char __user *optval,
6636 int __user *optlen)
6637{
6638 struct sctp_stream_out *streamout;
6639 struct sctp_association *asoc;
6640 struct sctp_prstatus params;
6641 int retval = -EINVAL;
6642 int policy;
6643
6644 if (len < sizeof(params))
6645 goto out;
6646
6647 len = sizeof(params);
6648 if (copy_from_user(&params, optval, len)) {
6649 retval = -EFAULT;
6650 goto out;
6651 }
6652
6653 policy = params.sprstat_policy;
6654 if (policy & ~SCTP_PR_SCTP_MASK)
6655 goto out;
6656
6657 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
Xin Longcee360a2017-05-31 16:36:31 +08006658 if (!asoc || params.sprstat_sid >= asoc->stream.outcnt)
Xin Longd229d482017-04-01 17:07:46 +08006659 goto out;
6660
Xin Longcee360a2017-05-31 16:36:31 +08006661 streamout = &asoc->stream.out[params.sprstat_sid];
Xin Longd229d482017-04-01 17:07:46 +08006662 if (policy == SCTP_PR_SCTP_NONE) {
6663 params.sprstat_abandoned_unsent = 0;
6664 params.sprstat_abandoned_sent = 0;
6665 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
6666 params.sprstat_abandoned_unsent +=
6667 streamout->abandoned_unsent[policy];
6668 params.sprstat_abandoned_sent +=
6669 streamout->abandoned_sent[policy];
6670 }
6671 } else {
6672 params.sprstat_abandoned_unsent =
6673 streamout->abandoned_unsent[__SCTP_PR_INDEX(policy)];
6674 params.sprstat_abandoned_sent =
6675 streamout->abandoned_sent[__SCTP_PR_INDEX(policy)];
6676 }
6677
6678 if (put_user(len, optlen) || copy_to_user(optval, &params, len)) {
6679 retval = -EFAULT;
6680 goto out;
6681 }
6682
6683 retval = 0;
6684
6685out:
6686 return retval;
6687}
6688
Xin Longc0d8bab2017-03-10 12:11:12 +08006689static int sctp_getsockopt_reconfig_supported(struct sock *sk, int len,
6690 char __user *optval,
6691 int __user *optlen)
6692{
6693 struct sctp_assoc_value params;
6694 struct sctp_association *asoc;
6695 int retval = -EFAULT;
6696
6697 if (len < sizeof(params)) {
6698 retval = -EINVAL;
6699 goto out;
6700 }
6701
6702 len = sizeof(params);
6703 if (copy_from_user(&params, optval, len))
6704 goto out;
6705
6706 asoc = sctp_id2assoc(sk, params.assoc_id);
6707 if (asoc) {
6708 params.assoc_value = asoc->reconf_enable;
6709 } else if (!params.assoc_id) {
6710 struct sctp_sock *sp = sctp_sk(sk);
6711
6712 params.assoc_value = sp->ep->reconf_enable;
6713 } else {
6714 retval = -EINVAL;
6715 goto out;
6716 }
6717
6718 if (put_user(len, optlen))
6719 goto out;
6720
6721 if (copy_to_user(optval, &params, len))
6722 goto out;
6723
6724 retval = 0;
6725
6726out:
6727 return retval;
6728}
6729
Xin Long9fb657a2017-01-18 00:44:46 +08006730static int sctp_getsockopt_enable_strreset(struct sock *sk, int len,
6731 char __user *optval,
6732 int __user *optlen)
6733{
6734 struct sctp_assoc_value params;
6735 struct sctp_association *asoc;
6736 int retval = -EFAULT;
6737
6738 if (len < sizeof(params)) {
6739 retval = -EINVAL;
6740 goto out;
6741 }
6742
6743 len = sizeof(params);
6744 if (copy_from_user(&params, optval, len))
6745 goto out;
6746
6747 asoc = sctp_id2assoc(sk, params.assoc_id);
6748 if (asoc) {
6749 params.assoc_value = asoc->strreset_enable;
6750 } else if (!params.assoc_id) {
6751 struct sctp_sock *sp = sctp_sk(sk);
6752
6753 params.assoc_value = sp->ep->strreset_enable;
6754 } else {
6755 retval = -EINVAL;
6756 goto out;
6757 }
6758
6759 if (put_user(len, optlen))
6760 goto out;
6761
6762 if (copy_to_user(optval, &params, len))
6763 goto out;
6764
6765 retval = 0;
6766
6767out:
6768 return retval;
6769}
6770
Daniel Borkmanndda91922013-06-17 11:40:05 +02006771static int sctp_getsockopt(struct sock *sk, int level, int optname,
6772 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006773{
6774 int retval = 0;
6775 int len;
6776
Daniel Borkmannbb333812013-06-28 19:49:40 +02006777 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006778
6779 /* I can hardly begin to describe how wrong this is. This is
6780 * so broken as to be worse than useless. The API draft
6781 * REALLY is NOT helpful here... I am not convinced that the
6782 * semantics of getsockopt() with a level OTHER THAN SOL_SCTP
6783 * are at all well-founded.
6784 */
6785 if (level != SOL_SCTP) {
6786 struct sctp_af *af = sctp_sk(sk)->pf->af;
6787
6788 retval = af->getsockopt(sk, level, optname, optval, optlen);
6789 return retval;
6790 }
6791
6792 if (get_user(len, optlen))
6793 return -EFAULT;
6794
Jiri Slabya4b8e712016-10-21 14:13:24 +02006795 if (len < 0)
6796 return -EINVAL;
6797
wangweidong048ed4b2014-01-21 15:44:11 +08006798 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006799
6800 switch (optname) {
6801 case SCTP_STATUS:
6802 retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen);
6803 break;
6804 case SCTP_DISABLE_FRAGMENTS:
6805 retval = sctp_getsockopt_disable_fragments(sk, len, optval,
6806 optlen);
6807 break;
6808 case SCTP_EVENTS:
6809 retval = sctp_getsockopt_events(sk, len, optval, optlen);
6810 break;
6811 case SCTP_AUTOCLOSE:
6812 retval = sctp_getsockopt_autoclose(sk, len, optval, optlen);
6813 break;
6814 case SCTP_SOCKOPT_PEELOFF:
6815 retval = sctp_getsockopt_peeloff(sk, len, optval, optlen);
6816 break;
Neil Horman2cb5c8e2017-06-30 13:32:57 -04006817 case SCTP_SOCKOPT_PEELOFF_FLAGS:
6818 retval = sctp_getsockopt_peeloff_flags(sk, len, optval, optlen);
6819 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006820 case SCTP_PEER_ADDR_PARAMS:
6821 retval = sctp_getsockopt_peer_addr_params(sk, len, optval,
6822 optlen);
6823 break;
Shan Wei4580ccc2011-01-18 22:39:00 +00006824 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07006825 retval = sctp_getsockopt_delayed_ack(sk, len, optval,
Frank Filz77086102005-12-22 11:37:30 -08006826 optlen);
6827 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006828 case SCTP_INITMSG:
6829 retval = sctp_getsockopt_initmsg(sk, len, optval, optlen);
6830 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006831 case SCTP_GET_PEER_ADDRS:
6832 retval = sctp_getsockopt_peer_addrs(sk, len, optval,
6833 optlen);
6834 break;
6835 case SCTP_GET_LOCAL_ADDRS:
6836 retval = sctp_getsockopt_local_addrs(sk, len, optval,
6837 optlen);
6838 break;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04006839 case SCTP_SOCKOPT_CONNECTX3:
6840 retval = sctp_getsockopt_connectx3(sk, len, optval, optlen);
6841 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006842 case SCTP_DEFAULT_SEND_PARAM:
6843 retval = sctp_getsockopt_default_send_param(sk, len,
6844 optval, optlen);
6845 break;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006846 case SCTP_DEFAULT_SNDINFO:
6847 retval = sctp_getsockopt_default_sndinfo(sk, len,
6848 optval, optlen);
6849 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006850 case SCTP_PRIMARY_ADDR:
6851 retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen);
6852 break;
6853 case SCTP_NODELAY:
6854 retval = sctp_getsockopt_nodelay(sk, len, optval, optlen);
6855 break;
6856 case SCTP_RTOINFO:
6857 retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen);
6858 break;
6859 case SCTP_ASSOCINFO:
6860 retval = sctp_getsockopt_associnfo(sk, len, optval, optlen);
6861 break;
6862 case SCTP_I_WANT_MAPPED_V4_ADDR:
6863 retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen);
6864 break;
6865 case SCTP_MAXSEG:
6866 retval = sctp_getsockopt_maxseg(sk, len, optval, optlen);
6867 break;
6868 case SCTP_GET_PEER_ADDR_INFO:
6869 retval = sctp_getsockopt_peer_addr_info(sk, len, optval,
6870 optlen);
6871 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006872 case SCTP_ADAPTATION_LAYER:
6873 retval = sctp_getsockopt_adaptation_layer(sk, len, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006874 optlen);
6875 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006876 case SCTP_CONTEXT:
6877 retval = sctp_getsockopt_context(sk, len, optval, optlen);
6878 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07006879 case SCTP_FRAGMENT_INTERLEAVE:
6880 retval = sctp_getsockopt_fragment_interleave(sk, len, optval,
6881 optlen);
6882 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006883 case SCTP_PARTIAL_DELIVERY_POINT:
6884 retval = sctp_getsockopt_partial_delivery_point(sk, len, optval,
6885 optlen);
6886 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07006887 case SCTP_MAX_BURST:
6888 retval = sctp_getsockopt_maxburst(sk, len, optval, optlen);
6889 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006890 case SCTP_AUTH_KEY:
6891 case SCTP_AUTH_CHUNK:
6892 case SCTP_AUTH_DELETE_KEY:
6893 retval = -EOPNOTSUPP;
6894 break;
6895 case SCTP_HMAC_IDENT:
6896 retval = sctp_getsockopt_hmac_ident(sk, len, optval, optlen);
6897 break;
6898 case SCTP_AUTH_ACTIVE_KEY:
6899 retval = sctp_getsockopt_active_key(sk, len, optval, optlen);
6900 break;
6901 case SCTP_PEER_AUTH_CHUNKS:
6902 retval = sctp_getsockopt_peer_auth_chunks(sk, len, optval,
6903 optlen);
6904 break;
6905 case SCTP_LOCAL_AUTH_CHUNKS:
6906 retval = sctp_getsockopt_local_auth_chunks(sk, len, optval,
6907 optlen);
6908 break;
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08006909 case SCTP_GET_ASSOC_NUMBER:
6910 retval = sctp_getsockopt_assoc_number(sk, len, optval, optlen);
6911 break;
Wei Yongjun209ba422011-04-17 17:27:08 +00006912 case SCTP_GET_ASSOC_ID_LIST:
6913 retval = sctp_getsockopt_assoc_ids(sk, len, optval, optlen);
6914 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09006915 case SCTP_AUTO_ASCONF:
6916 retval = sctp_getsockopt_auto_asconf(sk, len, optval, optlen);
6917 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00006918 case SCTP_PEER_ADDR_THLDS:
6919 retval = sctp_getsockopt_paddr_thresholds(sk, optval, len, optlen);
6920 break;
Michele Baldessari196d6752012-12-01 04:49:42 +00006921 case SCTP_GET_ASSOC_STATS:
6922 retval = sctp_getsockopt_assoc_stats(sk, len, optval, optlen);
6923 break;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02006924 case SCTP_RECVRCVINFO:
6925 retval = sctp_getsockopt_recvrcvinfo(sk, len, optval, optlen);
6926 break;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02006927 case SCTP_RECVNXTINFO:
6928 retval = sctp_getsockopt_recvnxtinfo(sk, len, optval, optlen);
6929 break;
Xin Long28aa4c22016-07-09 19:47:40 +08006930 case SCTP_PR_SUPPORTED:
6931 retval = sctp_getsockopt_pr_supported(sk, len, optval, optlen);
6932 break;
Xin Longf959fb42016-07-09 19:47:41 +08006933 case SCTP_DEFAULT_PRINFO:
6934 retval = sctp_getsockopt_default_prinfo(sk, len, optval,
6935 optlen);
6936 break;
Xin Long826d2532016-07-09 19:47:42 +08006937 case SCTP_PR_ASSOC_STATUS:
6938 retval = sctp_getsockopt_pr_assocstatus(sk, len, optval,
6939 optlen);
6940 break;
Xin Longd229d482017-04-01 17:07:46 +08006941 case SCTP_PR_STREAM_STATUS:
6942 retval = sctp_getsockopt_pr_streamstatus(sk, len, optval,
6943 optlen);
6944 break;
Xin Longc0d8bab2017-03-10 12:11:12 +08006945 case SCTP_RECONFIG_SUPPORTED:
6946 retval = sctp_getsockopt_reconfig_supported(sk, len, optval,
6947 optlen);
6948 break;
Xin Long9fb657a2017-01-18 00:44:46 +08006949 case SCTP_ENABLE_STREAM_RESET:
6950 retval = sctp_getsockopt_enable_strreset(sk, len, optval,
6951 optlen);
6952 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006953 default:
6954 retval = -ENOPROTOOPT;
6955 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07006956 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006957
wangweidong048ed4b2014-01-21 15:44:11 +08006958 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006959 return retval;
6960}
6961
Craig Gallek086c6532016-02-10 11:50:35 -05006962static int sctp_hash(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006963{
6964 /* STUB */
Craig Gallek086c6532016-02-10 11:50:35 -05006965 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006966}
6967
6968static void sctp_unhash(struct sock *sk)
6969{
6970 /* STUB */
6971}
6972
6973/* Check if port is acceptable. Possibly find first available port.
6974 *
6975 * The port hash table (contained in the 'global' SCTP protocol storage
6976 * returned by struct sctp_protocol *sctp_get_protocol()). The hash
6977 * table is an array of 4096 lists (sctp_bind_hashbucket). Each
6978 * list (the list number is the port number hashed out, so as you
6979 * would expect from a hash function, all the ports in a given list have
6980 * such a number that hashes out to the same list number; you were
6981 * expecting that, right?); so each list has a set of ports, with a
6982 * link to the socket (struct sock) that uses it, the port number and
6983 * a fastreuse flag (FIXME: NPI ipg).
6984 */
6985static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00006986 struct sctp_bind_hashbucket *head, struct net *, unsigned short snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006987
6988static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
6989{
6990 struct sctp_bind_hashbucket *head; /* hash list */
Sasha Levinb67bfe02013-02-27 17:06:00 -08006991 struct sctp_bind_bucket *pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006992 unsigned short snum;
6993 int ret;
6994
Al Viro04afd8b2006-11-20 17:02:01 -08006995 snum = ntohs(addr->v4.sin_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006996
Daniel Borkmannbb333812013-06-28 19:49:40 +02006997 pr_debug("%s: begins, snum:%d\n", __func__, snum);
6998
wangweidong79b91132014-01-21 15:44:07 +08006999 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007000
7001 if (snum == 0) {
Stephen Hemminger06393002007-10-10 17:30:18 -07007002 /* Search for an available port. */
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007003 int low, high, remaining, index;
7004 unsigned int rover;
WANG Cong122ff242014-05-12 16:04:53 -07007005 struct net *net = sock_net(sk);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007006
WANG Cong122ff242014-05-12 16:04:53 -07007007 inet_get_local_port_range(net, &low, &high);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007008 remaining = (high - low) + 1;
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05007009 rover = prandom_u32() % remaining + low;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007010
Linus Torvalds1da177e2005-04-16 15:20:36 -07007011 do {
7012 rover++;
7013 if ((rover < low) || (rover > high))
7014 rover = low;
WANG Cong122ff242014-05-12 16:04:53 -07007015 if (inet_is_local_reserved_port(net, rover))
Amerigo Wange3826f12010-05-05 00:27:06 +00007016 continue;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007017 index = sctp_phashfn(sock_net(sk), rover);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007018 head = &sctp_port_hashtable[index];
wangweidong3c8e43b2014-01-21 15:44:08 +08007019 spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08007020 sctp_for_each_hentry(pp, &head->chain)
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007021 if ((pp->port == rover) &&
7022 net_eq(sock_net(sk), pp->net))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007023 goto next;
7024 break;
7025 next:
wangweidong3c8e43b2014-01-21 15:44:08 +08007026 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007027 } while (--remaining > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007028
7029 /* Exhausted local port range during search? */
7030 ret = 1;
7031 if (remaining <= 0)
7032 goto fail;
7033
7034 /* OK, here is the one we will use. HEAD (the port
7035 * hash table list entry) is non-NULL and we hold it's
7036 * mutex.
7037 */
7038 snum = rover;
7039 } else {
7040 /* We are given an specific port number; we verify
7041 * that it is not being used. If it is used, we will
7042 * exahust the search in the hash list corresponding
7043 * to the port number (snum) - we detect that with the
7044 * port iterator, pp being NULL.
7045 */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007046 head = &sctp_port_hashtable[sctp_phashfn(sock_net(sk), snum)];
wangweidong3c8e43b2014-01-21 15:44:08 +08007047 spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08007048 sctp_for_each_hentry(pp, &head->chain) {
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007049 if ((pp->port == snum) && net_eq(pp->net, sock_net(sk)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007050 goto pp_found;
7051 }
7052 }
7053 pp = NULL;
7054 goto pp_not_found;
7055pp_found:
7056 if (!hlist_empty(&pp->owner)) {
7057 /* We had a port hash table hit - there is an
7058 * available port (pp != NULL) and it is being
7059 * used by other socket (pp->owner not empty); that other
7060 * socket is going to be sk2.
7061 */
7062 int reuse = sk->sk_reuse;
7063 struct sock *sk2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064
Daniel Borkmannbb333812013-06-28 19:49:40 +02007065 pr_debug("%s: found a possible match\n", __func__);
7066
Vlad Yasevichce5325c2007-05-04 13:34:49 -07007067 if (pp->fastreuse && sk->sk_reuse &&
7068 sk->sk_state != SCTP_SS_LISTENING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069 goto success;
7070
7071 /* Run through the list of sockets bound to the port
7072 * (pp->port) [via the pointers bind_next and
7073 * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one,
7074 * we get the endpoint they describe and run through
7075 * the endpoint's list of IP (v4 or v6) addresses,
7076 * comparing each of the addresses with the address of
7077 * the socket sk. If we find a match, then that means
7078 * that this port/socket (sk) combination are already
7079 * in an endpoint.
7080 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08007081 sk_for_each_bound(sk2, &pp->owner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007082 struct sctp_endpoint *ep2;
7083 ep2 = sctp_sk(sk2)->ep;
7084
Vlad Yasevich4e540642008-07-18 23:06:32 -07007085 if (sk == sk2 ||
7086 (reuse && sk2->sk_reuse &&
7087 sk2->sk_state != SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007088 continue;
7089
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07007090 if (sctp_bind_addr_conflict(&ep2->base.bind_addr, addr,
7091 sctp_sk(sk2), sctp_sk(sk))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007092 ret = (long)sk2;
7093 goto fail_unlock;
7094 }
7095 }
Daniel Borkmannbb333812013-06-28 19:49:40 +02007096
7097 pr_debug("%s: found a match\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007098 }
7099pp_not_found:
7100 /* If there was a hash table miss, create a new port. */
7101 ret = 1;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007102 if (!pp && !(pp = sctp_bucket_create(head, sock_net(sk), snum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007103 goto fail_unlock;
7104
7105 /* In either case (hit or miss), make sure fastreuse is 1 only
7106 * if sk->sk_reuse is too (that is, if the caller requested
7107 * SO_REUSEADDR on this socket -sk-).
7108 */
Vlad Yasevichce5325c2007-05-04 13:34:49 -07007109 if (hlist_empty(&pp->owner)) {
7110 if (sk->sk_reuse && sk->sk_state != SCTP_SS_LISTENING)
7111 pp->fastreuse = 1;
7112 else
7113 pp->fastreuse = 0;
7114 } else if (pp->fastreuse &&
7115 (!sk->sk_reuse || sk->sk_state == SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007116 pp->fastreuse = 0;
7117
7118 /* We are set, so fill up all the data in the hash table
7119 * entry, tie the socket list information with the rest of the
7120 * sockets FIXME: Blurry, NPI (ipg).
7121 */
7122success:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007123 if (!sctp_sk(sk)->bind_hash) {
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007124 inet_sk(sk)->inet_num = snum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007125 sk_add_bind_node(sk, &pp->owner);
7126 sctp_sk(sk)->bind_hash = pp;
7127 }
7128 ret = 0;
7129
7130fail_unlock:
wangweidong3c8e43b2014-01-21 15:44:08 +08007131 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007132
7133fail:
wangweidong79b91132014-01-21 15:44:07 +08007134 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007135 return ret;
7136}
7137
7138/* Assign a 'snum' port to the socket. If snum == 0, an ephemeral
7139 * port is requested.
7140 */
7141static int sctp_get_port(struct sock *sk, unsigned short snum)
7142{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007143 union sctp_addr addr;
7144 struct sctp_af *af = sctp_sk(sk)->pf->af;
7145
7146 /* Set up a dummy address struct from the sk. */
7147 af->from_sk(&addr, sk);
7148 addr.v4.sin_port = htons(snum);
7149
7150 /* Note: sk->sk_num gets filled in if ephemeral port request. */
Daniel Borkmann62208f12013-06-25 18:17:30 +02007151 return !!sctp_get_port_local(sk, &addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007152}
7153
7154/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007155 * Move a socket to LISTENING state.
7156 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02007157static int sctp_listen_start(struct sock *sk, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007158{
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007159 struct sctp_sock *sp = sctp_sk(sk);
7160 struct sctp_endpoint *ep = sp->ep;
Herbert Xu5821c762016-01-24 21:20:12 +08007161 struct crypto_shash *tfm = NULL;
Neil Horman3c681982012-10-24 09:20:03 +00007162 char alg[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007163
7164 /* Allocate HMAC for generating cookie. */
Neil Horman3c681982012-10-24 09:20:03 +00007165 if (!sp->hmac && sp->sctp_hmac_alg) {
7166 sprintf(alg, "hmac(%s)", sp->sctp_hmac_alg);
Herbert Xu5821c762016-01-24 21:20:12 +08007167 tfm = crypto_alloc_shash(alg, 0, 0);
Vlad Yasevich8dc49842007-05-09 13:50:20 -07007168 if (IS_ERR(tfm)) {
Joe Perchese87cc472012-05-13 21:56:26 +00007169 net_info_ratelimited("failed to load transform for %s: %ld\n",
Neil Horman3c681982012-10-24 09:20:03 +00007170 sp->sctp_hmac_alg, PTR_ERR(tfm));
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007171 return -ENOSYS;
7172 }
7173 sctp_sk(sk)->hmac = tfm;
7174 }
7175
7176 /*
7177 * If a bind() or sctp_bindx() is not called prior to a listen()
7178 * call that allows new associations to be accepted, the system
7179 * picks an ephemeral port and will choose an address set equivalent
7180 * to binding with a wildcard address.
7181 *
7182 * This is not currently spelled out in the SCTP sockets
7183 * extensions draft, but follows the practice as seen in TCP
7184 * sockets.
7185 *
7186 */
7187 sk->sk_state = SCTP_SS_LISTENING;
7188 if (!ep->base.bind_addr.port) {
7189 if (sctp_autobind(sk))
7190 return -EAGAIN;
7191 } else {
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007192 if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007193 sk->sk_state = SCTP_SS_CLOSED;
7194 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007195 }
7196 }
7197
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007198 sk->sk_max_ack_backlog = backlog;
7199 sctp_hash_endpoint(ep);
7200 return 0;
7201}
7202
7203/*
7204 * 4.1.3 / 5.1.3 listen()
7205 *
7206 * By default, new associations are not accepted for UDP style sockets.
7207 * An application uses listen() to mark a socket as being able to
7208 * accept new associations.
7209 *
7210 * On TCP style sockets, applications use listen() to ready the SCTP
7211 * endpoint for accepting inbound associations.
7212 *
7213 * On both types of endpoints a backlog of '0' disables listening.
7214 *
7215 * Move a socket to LISTENING state.
7216 */
7217int sctp_inet_listen(struct socket *sock, int backlog)
7218{
7219 struct sock *sk = sock->sk;
7220 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
7221 int err = -EINVAL;
7222
7223 if (unlikely(backlog < 0))
7224 return err;
7225
wangweidong048ed4b2014-01-21 15:44:11 +08007226 lock_sock(sk);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007227
7228 /* Peeled-off sockets are not allowed to listen(). */
7229 if (sctp_style(sk, UDP_HIGH_BANDWIDTH))
7230 goto out;
7231
7232 if (sock->state != SS_UNCONNECTED)
7233 goto out;
7234
Xin Long34b27892017-04-06 13:10:52 +08007235 if (!sctp_sstate(sk, LISTENING) && !sctp_sstate(sk, CLOSED))
7236 goto out;
7237
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007238 /* If backlog is zero, disable listening. */
7239 if (!backlog) {
7240 if (sctp_sstate(sk, CLOSED))
7241 goto out;
7242
7243 err = 0;
7244 sctp_unhash_endpoint(ep);
7245 sk->sk_state = SCTP_SS_CLOSED;
7246 if (sk->sk_reuse)
7247 sctp_sk(sk)->bind_hash->fastreuse = 1;
7248 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07007249 }
7250
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007251 /* If we are already listening, just update the backlog */
7252 if (sctp_sstate(sk, LISTENING))
7253 sk->sk_max_ack_backlog = backlog;
7254 else {
7255 err = sctp_listen_start(sk, backlog);
7256 if (err)
7257 goto out;
7258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007259
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007260 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007261out:
wangweidong048ed4b2014-01-21 15:44:11 +08007262 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007263 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007264}
7265
7266/*
7267 * This function is done by modeling the current datagram_poll() and the
7268 * tcp_poll(). Note that, based on these implementations, we don't
7269 * lock the socket in this function, even though it seems that,
7270 * ideally, locking or some other mechanisms can be used to ensure
Neil Horman9bffc4a2005-12-19 14:24:40 -08007271 * the integrity of the counters (sndbuf and wmem_alloc) used
Linus Torvalds1da177e2005-04-16 15:20:36 -07007272 * in this place. We assume that we don't need locks either until proven
7273 * otherwise.
7274 *
7275 * Another thing to note is that we include the Async I/O support
7276 * here, again, by modeling the current TCP/UDP code. We don't have
7277 * a good way to test with it yet.
7278 */
7279unsigned int sctp_poll(struct file *file, struct socket *sock, poll_table *wait)
7280{
7281 struct sock *sk = sock->sk;
7282 struct sctp_sock *sp = sctp_sk(sk);
7283 unsigned int mask;
7284
Eric Dumazetaa395142010-04-20 13:03:51 +00007285 poll_wait(file, sk_sleep(sk), wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007286
Marcelo Ricardo Leitner486bdee2016-04-12 18:11:31 -03007287 sock_rps_record_flow(sk);
7288
Linus Torvalds1da177e2005-04-16 15:20:36 -07007289 /* A TCP-style listening socket becomes readable when the accept queue
7290 * is not empty.
7291 */
7292 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
7293 return (!list_empty(&sp->ep->asocs)) ?
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09007294 (POLLIN | POLLRDNORM) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007295
7296 mask = 0;
7297
7298 /* Is there any exceptional events? */
7299 if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
Keller, Jacob E7d4c04f2013-03-28 11:19:25 +00007300 mask |= POLLERR |
Daniel Borkmanna0fb05d2013-09-07 16:44:59 +02007301 (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? POLLPRI : 0);
Davide Libenzif348d702006-03-25 03:07:39 -08007302 if (sk->sk_shutdown & RCV_SHUTDOWN)
Eric Dumazetdb409802010-09-06 11:13:50 +00007303 mask |= POLLRDHUP | POLLIN | POLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007304 if (sk->sk_shutdown == SHUTDOWN_MASK)
7305 mask |= POLLHUP;
7306
7307 /* Is it readable? Reconsider this code with TCP-style support. */
Eric Dumazetdb409802010-09-06 11:13:50 +00007308 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007309 mask |= POLLIN | POLLRDNORM;
7310
7311 /* The association is either gone or not ready. */
7312 if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED))
7313 return mask;
7314
7315 /* Is it writable? */
7316 if (sctp_writeable(sk)) {
7317 mask |= POLLOUT | POLLWRNORM;
7318 } else {
Eric Dumazet9cd3e072015-11-29 20:03:10 -08007319 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007320 /*
7321 * Since the socket is not locked, the buffer
7322 * might be made available after the writeable check and
7323 * before the bit is set. This could cause a lost I/O
7324 * signal. tcp_poll() has a race breaker for this race
7325 * condition. Based on their implementation, we put
7326 * in the following code to cover it as well.
7327 */
7328 if (sctp_writeable(sk))
7329 mask |= POLLOUT | POLLWRNORM;
7330 }
7331 return mask;
7332}
7333
7334/********************************************************************
7335 * 2nd Level Abstractions
7336 ********************************************************************/
7337
7338static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007339 struct sctp_bind_hashbucket *head, struct net *net, unsigned short snum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007340{
7341 struct sctp_bind_bucket *pp;
7342
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08007343 pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007344 if (pp) {
Li Zefan935a7f62008-04-10 01:58:06 -07007345 SCTP_DBG_OBJCNT_INC(bind_bucket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007346 pp->port = snum;
7347 pp->fastreuse = 0;
7348 INIT_HLIST_HEAD(&pp->owner);
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007349 pp->net = net;
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05007350 hlist_add_head(&pp->node, &head->chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007351 }
7352 return pp;
7353}
7354
7355/* Caller must hold hashbucket lock for this tb with local BH disabled */
7356static void sctp_bucket_destroy(struct sctp_bind_bucket *pp)
7357{
Sridhar Samudrala37fa6872006-07-21 14:45:47 -07007358 if (pp && hlist_empty(&pp->owner)) {
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05007359 __hlist_del(&pp->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007360 kmem_cache_free(sctp_bucket_cachep, pp);
7361 SCTP_DBG_OBJCNT_DEC(bind_bucket);
7362 }
7363}
7364
7365/* Release this socket's reference to a local port. */
7366static inline void __sctp_put_port(struct sock *sk)
7367{
7368 struct sctp_bind_hashbucket *head =
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007369 &sctp_port_hashtable[sctp_phashfn(sock_net(sk),
7370 inet_sk(sk)->inet_num)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007371 struct sctp_bind_bucket *pp;
7372
wangweidong3c8e43b2014-01-21 15:44:08 +08007373 spin_lock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007374 pp = sctp_sk(sk)->bind_hash;
7375 __sk_del_bind_node(sk);
7376 sctp_sk(sk)->bind_hash = NULL;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007377 inet_sk(sk)->inet_num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007378 sctp_bucket_destroy(pp);
wangweidong3c8e43b2014-01-21 15:44:08 +08007379 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007380}
7381
7382void sctp_put_port(struct sock *sk)
7383{
wangweidong79b91132014-01-21 15:44:07 +08007384 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007385 __sctp_put_port(sk);
wangweidong79b91132014-01-21 15:44:07 +08007386 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007387}
7388
7389/*
7390 * The system picks an ephemeral port and choose an address set equivalent
7391 * to binding with a wildcard address.
7392 * One of those addresses will be the primary address for the association.
7393 * This automatically enables the multihoming capability of SCTP.
7394 */
7395static int sctp_autobind(struct sock *sk)
7396{
7397 union sctp_addr autoaddr;
7398 struct sctp_af *af;
Al Viro6fbfa9f2006-11-20 17:24:53 -08007399 __be16 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007400
7401 /* Initialize a local sockaddr structure to INADDR_ANY. */
7402 af = sctp_sk(sk)->pf->af;
7403
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007404 port = htons(inet_sk(sk)->inet_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007405 af->inaddr_any(&autoaddr, port);
7406
7407 return sctp_do_bind(sk, &autoaddr, af->sockaddr_len);
7408}
7409
7410/* Parse out IPPROTO_SCTP CMSG headers. Perform only minimal validation.
7411 *
7412 * From RFC 2292
7413 * 4.2 The cmsghdr Structure *
7414 *
7415 * When ancillary data is sent or received, any number of ancillary data
7416 * objects can be specified by the msg_control and msg_controllen members of
7417 * the msghdr structure, because each object is preceded by
7418 * a cmsghdr structure defining the object's length (the cmsg_len member).
7419 * Historically Berkeley-derived implementations have passed only one object
7420 * at a time, but this API allows multiple objects to be
7421 * passed in a single call to sendmsg() or recvmsg(). The following example
7422 * shows two ancillary data objects in a control buffer.
7423 *
7424 * |<--------------------------- msg_controllen -------------------------->|
7425 * | |
7426 *
7427 * |<----- ancillary data object ----->|<----- ancillary data object ----->|
7428 *
7429 * |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->|
7430 * | | |
7431 *
7432 * |<---------- cmsg_len ---------->| |<--------- cmsg_len ----------->| |
7433 *
7434 * |<--------- CMSG_LEN() --------->| |<-------- CMSG_LEN() ---------->| |
7435 * | | | | |
7436 *
7437 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
7438 * |cmsg_|cmsg_|cmsg_|XX| |XX|cmsg_|cmsg_|cmsg_|XX| |XX|
7439 *
7440 * |len |level|type |XX|cmsg_data[]|XX|len |level|type |XX|cmsg_data[]|XX|
7441 *
7442 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
7443 * ^
7444 * |
7445 *
7446 * msg_control
7447 * points here
7448 */
Xin Longa05437a2017-08-11 10:23:48 +08007449static int sctp_msghdr_parse(const struct msghdr *msg, struct sctp_cmsgs *cmsgs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007450{
Vlad Yasevichab38fb02008-04-12 18:40:06 -07007451 struct msghdr *my_msg = (struct msghdr *)msg;
Xin Longa05437a2017-08-11 10:23:48 +08007452 struct cmsghdr *cmsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007453
Gu Zhengf95b4142014-12-11 11:22:04 +08007454 for_each_cmsghdr(cmsg, my_msg) {
Vlad Yasevichab38fb02008-04-12 18:40:06 -07007455 if (!CMSG_OK(my_msg, cmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007456 return -EINVAL;
7457
7458 /* Should we parse this header or ignore? */
7459 if (cmsg->cmsg_level != IPPROTO_SCTP)
7460 continue;
7461
7462 /* Strictly check lengths following example in SCM code. */
7463 switch (cmsg->cmsg_type) {
7464 case SCTP_INIT:
7465 /* SCTP Socket API Extension
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007466 * 5.3.1 SCTP Initiation Structure (SCTP_INIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007467 *
7468 * This cmsghdr structure provides information for
7469 * initializing new SCTP associations with sendmsg().
7470 * The SCTP_INITMSG socket option uses this same data
7471 * structure. This structure is not used for
7472 * recvmsg().
7473 *
7474 * cmsg_level cmsg_type cmsg_data[]
7475 * ------------ ------------ ----------------------
7476 * IPPROTO_SCTP SCTP_INIT struct sctp_initmsg
7477 */
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007478 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_initmsg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007479 return -EINVAL;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007480
7481 cmsgs->init = CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007482 break;
7483
7484 case SCTP_SNDRCV:
7485 /* SCTP Socket API Extension
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007486 * 5.3.2 SCTP Header Information Structure(SCTP_SNDRCV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007487 *
7488 * This cmsghdr structure specifies SCTP options for
7489 * sendmsg() and describes SCTP header information
7490 * about a received message through recvmsg().
7491 *
7492 * cmsg_level cmsg_type cmsg_data[]
7493 * ------------ ------------ ----------------------
7494 * IPPROTO_SCTP SCTP_SNDRCV struct sctp_sndrcvinfo
7495 */
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007496 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndrcvinfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007497 return -EINVAL;
7498
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007499 cmsgs->srinfo = CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007500
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007501 if (cmsgs->srinfo->sinfo_flags &
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07007502 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
Xin Longa6c2f792016-07-09 19:47:43 +08007503 SCTP_SACK_IMMEDIATELY | SCTP_PR_SCTP_MASK |
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07007504 SCTP_ABORT | SCTP_EOF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007505 return -EINVAL;
7506 break;
7507
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007508 case SCTP_SNDINFO:
7509 /* SCTP Socket API Extension
7510 * 5.3.4 SCTP Send Information Structure (SCTP_SNDINFO)
7511 *
7512 * This cmsghdr structure specifies SCTP options for
7513 * sendmsg(). This structure and SCTP_RCVINFO replaces
7514 * SCTP_SNDRCV which has been deprecated.
7515 *
7516 * cmsg_level cmsg_type cmsg_data[]
7517 * ------------ ------------ ---------------------
7518 * IPPROTO_SCTP SCTP_SNDINFO struct sctp_sndinfo
7519 */
7520 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndinfo)))
7521 return -EINVAL;
7522
7523 cmsgs->sinfo = CMSG_DATA(cmsg);
7524
7525 if (cmsgs->sinfo->snd_flags &
7526 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
Xin Longa6c2f792016-07-09 19:47:43 +08007527 SCTP_SACK_IMMEDIATELY | SCTP_PR_SCTP_MASK |
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007528 SCTP_ABORT | SCTP_EOF))
7529 return -EINVAL;
7530 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007531 default:
7532 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07007533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007534 }
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007535
Linus Torvalds1da177e2005-04-16 15:20:36 -07007536 return 0;
7537}
7538
7539/*
7540 * Wait for a packet..
7541 * Note: This function is the same function as in core/datagram.c
7542 * with a few modifications to make lksctp work.
7543 */
wangweidong26ac8e52013-12-23 12:16:51 +08007544static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007545{
7546 int error;
7547 DEFINE_WAIT(wait);
7548
Eric Dumazetaa395142010-04-20 13:03:51 +00007549 prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007550
7551 /* Socket errors? */
7552 error = sock_error(sk);
7553 if (error)
7554 goto out;
7555
7556 if (!skb_queue_empty(&sk->sk_receive_queue))
7557 goto ready;
7558
7559 /* Socket shut down? */
7560 if (sk->sk_shutdown & RCV_SHUTDOWN)
7561 goto out;
7562
7563 /* Sequenced packets can come disconnected. If so we report the
7564 * problem.
7565 */
7566 error = -ENOTCONN;
7567
7568 /* Is there a good reason to think that we may receive some data? */
7569 if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING))
7570 goto out;
7571
7572 /* Handle signals. */
7573 if (signal_pending(current))
7574 goto interrupted;
7575
7576 /* Let another process have a go. Since we are going to sleep
7577 * anyway. Note: This may cause odd behaviors if the message
7578 * does not fit in the user's buffer, but this seems to be the
7579 * only way to honor MSG_DONTWAIT realistically.
7580 */
wangweidong048ed4b2014-01-21 15:44:11 +08007581 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007582 *timeo_p = schedule_timeout(*timeo_p);
wangweidong048ed4b2014-01-21 15:44:11 +08007583 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007584
7585ready:
Eric Dumazetaa395142010-04-20 13:03:51 +00007586 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007587 return 0;
7588
7589interrupted:
7590 error = sock_intr_errno(*timeo_p);
7591
7592out:
Eric Dumazetaa395142010-04-20 13:03:51 +00007593 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007594 *err = error;
7595 return error;
7596}
7597
7598/* Receive a datagram.
7599 * Note: This is pretty much the same routine as in core/datagram.c
7600 * with a few changes to make lksctp work.
7601 */
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02007602struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags,
7603 int noblock, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007604{
7605 int error;
7606 struct sk_buff *skb;
7607 long timeo;
7608
Linus Torvalds1da177e2005-04-16 15:20:36 -07007609 timeo = sock_rcvtimeo(sk, noblock);
7610
Daniel Borkmannbb333812013-06-28 19:49:40 +02007611 pr_debug("%s: timeo:%ld, max:%ld\n", __func__, timeo,
7612 MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007613
7614 do {
7615 /* Again only user level code calls this function,
7616 * so nothing interrupt level
7617 * will suddenly eat the receive_queue.
7618 *
7619 * Look at current nfs client by the way...
David Shwatrz8917a3c2010-12-02 09:01:55 +00007620 * However, this function was correct in any case. 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007621 */
7622 if (flags & MSG_PEEK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007623 skb = skb_peek(&sk->sk_receive_queue);
7624 if (skb)
Reshetova, Elena63354792017-06-30 13:07:58 +03007625 refcount_inc(&skb->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007626 } else {
Marcelo Ricardo Leitner311b2172016-04-13 19:12:29 -03007627 skb = __skb_dequeue(&sk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007628 }
7629
7630 if (skb)
7631 return skb;
7632
Neil Horman6736dc32005-12-02 20:30:06 -08007633 /* Caller is allowed not to check sk->sk_err before calling. */
7634 error = sock_error(sk);
7635 if (error)
7636 goto no_packet;
7637
Linus Torvalds1da177e2005-04-16 15:20:36 -07007638 if (sk->sk_shutdown & RCV_SHUTDOWN)
7639 break;
7640
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07007641 if (sk_can_busy_loop(sk)) {
7642 sk_busy_loop(sk, noblock);
7643
7644 if (!skb_queue_empty(&sk->sk_receive_queue))
7645 continue;
7646 }
Neil Horman8465a5f2014-04-17 15:26:51 -04007647
Linus Torvalds1da177e2005-04-16 15:20:36 -07007648 /* User doesn't want to wait. */
7649 error = -EAGAIN;
7650 if (!timeo)
7651 goto no_packet;
7652 } while (sctp_wait_for_packet(sk, err, &timeo) == 0);
7653
7654 return NULL;
7655
7656no_packet:
7657 *err = error;
7658 return NULL;
7659}
7660
7661/* If sndbuf has changed, wake up per association sndbuf waiters. */
7662static void __sctp_write_space(struct sctp_association *asoc)
7663{
7664 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007665
Eric Dumazetceb5d582015-11-29 20:03:11 -08007666 if (sctp_wspace(asoc) <= 0)
7667 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007668
Eric Dumazetceb5d582015-11-29 20:03:11 -08007669 if (waitqueue_active(&asoc->wait))
7670 wake_up_interruptible(&asoc->wait);
Eric Dumazeteaefd112011-02-18 03:26:36 +00007671
Eric Dumazetceb5d582015-11-29 20:03:11 -08007672 if (sctp_writeable(sk)) {
7673 struct socket_wq *wq;
7674
7675 rcu_read_lock();
7676 wq = rcu_dereference(sk->sk_wq);
7677 if (wq) {
7678 if (waitqueue_active(&wq->wait))
7679 wake_up_interruptible(&wq->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007680
7681 /* Note that we try to include the Async I/O support
7682 * here by modeling from the current TCP/UDP code.
7683 * We have not tested with it yet.
7684 */
Eric Dumazeteaefd112011-02-18 03:26:36 +00007685 if (!(sk->sk_shutdown & SEND_SHUTDOWN))
Eric Dumazetceb5d582015-11-29 20:03:11 -08007686 sock_wake_async(wq, SOCK_WAKE_SPACE, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007687 }
Eric Dumazetceb5d582015-11-29 20:03:11 -08007688 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007689 }
7690}
7691
Daniel Borkmann52c35be2014-04-08 17:26:13 +02007692static void sctp_wake_up_waiters(struct sock *sk,
7693 struct sctp_association *asoc)
7694{
7695 struct sctp_association *tmp = asoc;
7696
7697 /* We do accounting for the sndbuf space per association,
7698 * so we only need to wake our own association.
7699 */
7700 if (asoc->ep->sndbuf_policy)
7701 return __sctp_write_space(asoc);
7702
Daniel Borkmann1e1cdf82014-04-09 16:10:20 +02007703 /* If association goes down and is just flushing its
7704 * outq, then just normally notify others.
7705 */
7706 if (asoc->base.dead)
7707 return sctp_write_space(sk);
7708
Daniel Borkmann52c35be2014-04-08 17:26:13 +02007709 /* Accounting for the sndbuf space is per socket, so we
7710 * need to wake up others, try to be fair and in case of
7711 * other associations, let them have a go first instead
7712 * of just doing a sctp_write_space() call.
7713 *
7714 * Note that we reach sctp_wake_up_waiters() only when
7715 * associations free up queued chunks, thus we are under
7716 * lock and the list of associations on a socket is
7717 * guaranteed not to change.
7718 */
7719 for (tmp = list_next_entry(tmp, asocs); 1;
7720 tmp = list_next_entry(tmp, asocs)) {
7721 /* Manually skip the head element. */
7722 if (&tmp->asocs == &((sctp_sk(sk))->ep->asocs))
7723 continue;
7724 /* Wake up association. */
7725 __sctp_write_space(tmp);
7726 /* We've reached the end. */
7727 if (tmp == asoc)
7728 break;
7729 }
7730}
7731
Linus Torvalds1da177e2005-04-16 15:20:36 -07007732/* Do accounting for the sndbuf space.
7733 * Decrement the used sndbuf space of the corresponding association by the
7734 * data size which was just transmitted(freed).
7735 */
7736static void sctp_wfree(struct sk_buff *skb)
7737{
Daniel Borkmannf869c912014-11-20 01:54:48 +01007738 struct sctp_chunk *chunk = skb_shinfo(skb)->destructor_arg;
7739 struct sctp_association *asoc = chunk->asoc;
7740 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007741
Neil Horman4eb701d2005-04-28 12:02:04 -07007742 asoc->sndbuf_used -= SCTP_DATA_SNDSIZE(chunk) +
7743 sizeof(struct sk_buff) +
7744 sizeof(struct sctp_chunk);
7745
Reshetova, Elena14afee42017-06-30 13:08:00 +03007746 WARN_ON(refcount_sub_and_test(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc));
Neil Horman4eb701d2005-04-28 12:02:04 -07007747
Neil Horman4d93df02007-08-15 16:07:44 -07007748 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08007749 * This undoes what is done via sctp_set_owner_w and sk_mem_charge
Neil Horman4d93df02007-08-15 16:07:44 -07007750 */
7751 sk->sk_wmem_queued -= skb->truesize;
Hideo Aoki3ab224b2007-12-31 00:11:19 -08007752 sk_mem_uncharge(sk, skb->truesize);
Neil Horman4d93df02007-08-15 16:07:44 -07007753
Neil Horman4eb701d2005-04-28 12:02:04 -07007754 sock_wfree(skb);
Daniel Borkmann52c35be2014-04-08 17:26:13 +02007755 sctp_wake_up_waiters(sk, asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007756
7757 sctp_association_put(asoc);
7758}
7759
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07007760/* Do accounting for the receive space on the socket.
7761 * Accounting for the association is done in ulpevent.c
7762 * We set this as a destructor for the cloned data skbs so that
7763 * accounting is done at the correct time.
7764 */
7765void sctp_sock_rfree(struct sk_buff *skb)
7766{
7767 struct sock *sk = skb->sk;
7768 struct sctp_ulpevent *event = sctp_skb2event(skb);
7769
7770 atomic_sub(event->rmem_len, &sk->sk_rmem_alloc);
Neil Horman4d93df02007-08-15 16:07:44 -07007771
7772 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08007773 * Mimic the behavior of sock_rfree
Neil Horman4d93df02007-08-15 16:07:44 -07007774 */
Hideo Aoki3ab224b2007-12-31 00:11:19 -08007775 sk_mem_uncharge(sk, event->rmem_len);
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07007776}
7777
7778
Linus Torvalds1da177e2005-04-16 15:20:36 -07007779/* Helper function to wait for space in the sndbuf. */
7780static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
7781 size_t msg_len)
7782{
7783 struct sock *sk = asoc->base.sk;
7784 int err = 0;
7785 long current_timeo = *timeo_p;
7786 DEFINE_WAIT(wait);
7787
Daniel Borkmannbb333812013-06-28 19:49:40 +02007788 pr_debug("%s: asoc:%p, timeo:%ld, msg_len:%zu\n", __func__, asoc,
7789 *timeo_p, msg_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007790
7791 /* Increment the association's refcnt. */
7792 sctp_association_hold(asoc);
7793
7794 /* Wait on the association specific sndbuf space. */
7795 for (;;) {
7796 prepare_to_wait_exclusive(&asoc->wait, &wait,
7797 TASK_INTERRUPTIBLE);
7798 if (!*timeo_p)
7799 goto do_nonblock;
7800 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
7801 asoc->base.dead)
7802 goto do_error;
7803 if (signal_pending(current))
7804 goto do_interrupted;
7805 if (msg_len <= sctp_wspace(asoc))
7806 break;
7807
7808 /* Let another process have a go. Since we are going
7809 * to sleep anyway.
7810 */
wangweidong048ed4b2014-01-21 15:44:11 +08007811 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007812 current_timeo = schedule_timeout(current_timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08007813 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007814
7815 *timeo_p = current_timeo;
7816 }
7817
7818out:
7819 finish_wait(&asoc->wait, &wait);
7820
7821 /* Release the association's refcnt. */
7822 sctp_association_put(asoc);
7823
7824 return err;
7825
7826do_error:
7827 err = -EPIPE;
7828 goto out;
7829
7830do_interrupted:
7831 err = sock_intr_errno(*timeo_p);
7832 goto out;
7833
7834do_nonblock:
7835 err = -EAGAIN;
7836 goto out;
7837}
7838
David S. Miller676d2362014-04-11 16:15:36 -04007839void sctp_data_ready(struct sock *sk)
Wei Yongjun561b1732010-04-28 08:47:18 +00007840{
David S. Miller7ef52732010-05-02 21:43:40 -07007841 struct socket_wq *wq;
7842
7843 rcu_read_lock();
7844 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08007845 if (skwq_has_sleeper(wq))
David S. Miller7ef52732010-05-02 21:43:40 -07007846 wake_up_interruptible_sync_poll(&wq->wait, POLLIN |
Wei Yongjun561b1732010-04-28 08:47:18 +00007847 POLLRDNORM | POLLRDBAND);
7848 sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
David S. Miller7ef52732010-05-02 21:43:40 -07007849 rcu_read_unlock();
Wei Yongjun561b1732010-04-28 08:47:18 +00007850}
7851
Linus Torvalds1da177e2005-04-16 15:20:36 -07007852/* If socket sndbuf has changed, wake up all per association waiters. */
7853void sctp_write_space(struct sock *sk)
7854{
7855 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007856
7857 /* Wake up the tasks in each wait queue. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07007858 list_for_each_entry(asoc, &((sctp_sk(sk))->ep->asocs), asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007859 __sctp_write_space(asoc);
7860 }
7861}
7862
7863/* Is there any sndbuf space available on the socket?
7864 *
Neil Horman9bffc4a2005-12-19 14:24:40 -08007865 * Note that sk_wmem_alloc is the sum of the send buffers on all of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07007866 * associations on the same socket. For a UDP-style socket with
7867 * multiple associations, it is possible for it to be "unwriteable"
7868 * prematurely. I assume that this is acceptable because
7869 * a premature "unwriteable" is better than an accidental "writeable" which
7870 * would cause an unwanted block under certain circumstances. For the 1-1
7871 * UDP-style sockets or TCP-style sockets, this code should work.
7872 * - Daisy
7873 */
7874static int sctp_writeable(struct sock *sk)
7875{
7876 int amt = 0;
7877
Eric Dumazet31e6d362009-06-17 19:05:41 -07007878 amt = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007879 if (amt < 0)
7880 amt = 0;
7881 return amt;
7882}
7883
7884/* Wait for an association to go into ESTABLISHED state. If timeout is 0,
7885 * returns immediately with EINPROGRESS.
7886 */
7887static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p)
7888{
7889 struct sock *sk = asoc->base.sk;
7890 int err = 0;
7891 long current_timeo = *timeo_p;
7892 DEFINE_WAIT(wait);
7893
Daniel Borkmannbb333812013-06-28 19:49:40 +02007894 pr_debug("%s: asoc:%p, timeo:%ld\n", __func__, asoc, *timeo_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007895
7896 /* Increment the association's refcnt. */
7897 sctp_association_hold(asoc);
7898
7899 for (;;) {
7900 prepare_to_wait_exclusive(&asoc->wait, &wait,
7901 TASK_INTERRUPTIBLE);
7902 if (!*timeo_p)
7903 goto do_nonblock;
7904 if (sk->sk_shutdown & RCV_SHUTDOWN)
7905 break;
7906 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
7907 asoc->base.dead)
7908 goto do_error;
7909 if (signal_pending(current))
7910 goto do_interrupted;
7911
7912 if (sctp_state(asoc, ESTABLISHED))
7913 break;
7914
7915 /* Let another process have a go. Since we are going
7916 * to sleep anyway.
7917 */
wangweidong048ed4b2014-01-21 15:44:11 +08007918 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007919 current_timeo = schedule_timeout(current_timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08007920 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007921
7922 *timeo_p = current_timeo;
7923 }
7924
7925out:
7926 finish_wait(&asoc->wait, &wait);
7927
7928 /* Release the association's refcnt. */
7929 sctp_association_put(asoc);
7930
7931 return err;
7932
7933do_error:
Vlad Yasevich81845c22006-01-30 15:59:54 -08007934 if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007935 err = -ETIMEDOUT;
7936 else
7937 err = -ECONNREFUSED;
7938 goto out;
7939
7940do_interrupted:
7941 err = sock_intr_errno(*timeo_p);
7942 goto out;
7943
7944do_nonblock:
7945 err = -EINPROGRESS;
7946 goto out;
7947}
7948
7949static int sctp_wait_for_accept(struct sock *sk, long timeo)
7950{
7951 struct sctp_endpoint *ep;
7952 int err = 0;
7953 DEFINE_WAIT(wait);
7954
7955 ep = sctp_sk(sk)->ep;
7956
7957
7958 for (;;) {
Eric Dumazetaa395142010-04-20 13:03:51 +00007959 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007960 TASK_INTERRUPTIBLE);
7961
7962 if (list_empty(&ep->asocs)) {
wangweidong048ed4b2014-01-21 15:44:11 +08007963 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007964 timeo = schedule_timeout(timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08007965 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007966 }
7967
7968 err = -EINVAL;
7969 if (!sctp_sstate(sk, LISTENING))
7970 break;
7971
7972 err = 0;
7973 if (!list_empty(&ep->asocs))
7974 break;
7975
7976 err = sock_intr_errno(timeo);
7977 if (signal_pending(current))
7978 break;
7979
7980 err = -EAGAIN;
7981 if (!timeo)
7982 break;
7983 }
7984
Eric Dumazetaa395142010-04-20 13:03:51 +00007985 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007986
7987 return err;
7988}
7989
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +02007990static void sctp_wait_for_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007991{
7992 DEFINE_WAIT(wait);
7993
7994 do {
Eric Dumazetaa395142010-04-20 13:03:51 +00007995 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007996 if (list_empty(&sctp_sk(sk)->ep->asocs))
7997 break;
wangweidong048ed4b2014-01-21 15:44:11 +08007998 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007999 timeout = schedule_timeout(timeout);
wangweidong048ed4b2014-01-21 15:44:11 +08008000 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008001 } while (!signal_pending(current) && timeout);
8002
Eric Dumazetaa395142010-04-20 13:03:51 +00008003 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008004}
8005
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008006static void sctp_skb_set_owner_r_frag(struct sk_buff *skb, struct sock *sk)
8007{
8008 struct sk_buff *frag;
8009
8010 if (!skb->data_len)
8011 goto done;
8012
8013 /* Don't forget the fragments. */
David S. Miller1b003be2009-06-09 00:22:35 -07008014 skb_walk_frags(skb, frag)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008015 sctp_skb_set_owner_r_frag(frag, sk);
8016
8017done:
8018 sctp_skb_set_owner_r(skb, sk);
8019}
8020
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008021void sctp_copy_sock(struct sock *newsk, struct sock *sk,
8022 struct sctp_association *asoc)
8023{
8024 struct inet_sock *inet = inet_sk(sk);
Julia Lawall09cb47a2010-01-21 02:43:20 -08008025 struct inet_sock *newinet;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008026
8027 newsk->sk_type = sk->sk_type;
8028 newsk->sk_bound_dev_if = sk->sk_bound_dev_if;
8029 newsk->sk_flags = sk->sk_flags;
Marcelo Ricardo Leitner50a5ffb2015-12-04 15:14:05 -02008030 newsk->sk_tsflags = sk->sk_tsflags;
Tom Herbert28448b82014-05-23 08:47:19 -07008031 newsk->sk_no_check_tx = sk->sk_no_check_tx;
8032 newsk->sk_no_check_rx = sk->sk_no_check_rx;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008033 newsk->sk_reuse = sk->sk_reuse;
8034
8035 newsk->sk_shutdown = sk->sk_shutdown;
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02008036 newsk->sk_destruct = sctp_destruct_sock;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008037 newsk->sk_family = sk->sk_family;
8038 newsk->sk_protocol = IPPROTO_SCTP;
8039 newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
8040 newsk->sk_sndbuf = sk->sk_sndbuf;
8041 newsk->sk_rcvbuf = sk->sk_rcvbuf;
8042 newsk->sk_lingertime = sk->sk_lingertime;
8043 newsk->sk_rcvtimeo = sk->sk_rcvtimeo;
8044 newsk->sk_sndtimeo = sk->sk_sndtimeo;
Marcelo Ricardo Leitner486bdee2016-04-12 18:11:31 -03008045 newsk->sk_rxhash = sk->sk_rxhash;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008046
8047 newinet = inet_sk(newsk);
8048
8049 /* Initialize sk's sport, dport, rcv_saddr and daddr for
8050 * getsockname() and getpeername()
8051 */
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008052 newinet->inet_sport = inet->inet_sport;
8053 newinet->inet_saddr = inet->inet_saddr;
8054 newinet->inet_rcv_saddr = inet->inet_rcv_saddr;
8055 newinet->inet_dport = htons(asoc->peer.port);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008056 newinet->pmtudisc = inet->pmtudisc;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008057 newinet->inet_id = asoc->next_tsn ^ jiffies;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008058
8059 newinet->uc_ttl = inet->uc_ttl;
8060 newinet->mc_loop = 1;
8061 newinet->mc_ttl = 1;
8062 newinet->mc_index = 0;
8063 newinet->mc_list = NULL;
Marcelo Ricardo Leitner01ce63c2015-12-04 15:14:04 -02008064
8065 if (newsk->sk_flags & SK_FLAGS_TIMESTAMP)
8066 net_enable_timestamp();
Marcelo Ricardo Leitner3538a5c2015-12-23 16:44:09 -02008067
8068 security_sk_clone(sk, newsk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008069}
8070
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03008071static inline void sctp_copy_descendant(struct sock *sk_to,
8072 const struct sock *sk_from)
8073{
8074 int ancestor_size = sizeof(struct inet_sock) +
8075 sizeof(struct sctp_sock) -
8076 offsetof(struct sctp_sock, auto_asconf_list);
8077
8078 if (sk_from->sk_family == PF_INET6)
8079 ancestor_size += sizeof(struct ipv6_pinfo);
8080
8081 __inet_sk_copy_descendant(sk_to, sk_from, ancestor_size);
8082}
8083
Linus Torvalds1da177e2005-04-16 15:20:36 -07008084/* Populate the fields of the newsk from the oldsk and migrate the assoc
8085 * and its messages to the newsk.
8086 */
8087static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
8088 struct sctp_association *assoc,
8089 sctp_socket_type_t type)
8090{
8091 struct sctp_sock *oldsp = sctp_sk(oldsk);
8092 struct sctp_sock *newsp = sctp_sk(newsk);
8093 struct sctp_bind_bucket *pp; /* hash list port iterator */
8094 struct sctp_endpoint *newep = newsp->ep;
8095 struct sk_buff *skb, *tmp;
8096 struct sctp_ulpevent *event;
Vlad Yasevichf26f7c42007-12-06 22:50:27 -08008097 struct sctp_bind_hashbucket *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008098
8099 /* Migrate socket buffer sizes and all the socket level options to the
8100 * new socket.
8101 */
8102 newsk->sk_sndbuf = oldsk->sk_sndbuf;
8103 newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
8104 /* Brute force copy old sctp opt. */
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03008105 sctp_copy_descendant(newsk, oldsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008106
8107 /* Restore the ep value that was overwritten with the above structure
8108 * copy.
8109 */
8110 newsp->ep = newep;
8111 newsp->hmac = NULL;
8112
8113 /* Hook this new socket in to the bind_hash list. */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008114 head = &sctp_port_hashtable[sctp_phashfn(sock_net(oldsk),
8115 inet_sk(oldsk)->inet_num)];
Nicholas Mc Guire489ce5f2016-03-13 11:48:24 +01008116 spin_lock_bh(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008117 pp = sctp_sk(oldsk)->bind_hash;
8118 sk_add_bind_node(newsk, &pp->owner);
8119 sctp_sk(newsk)->bind_hash = pp;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008120 inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num;
Nicholas Mc Guire489ce5f2016-03-13 11:48:24 +01008121 spin_unlock_bh(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008122
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07008123 /* Copy the bind_addr list from the original endpoint to the new
8124 * endpoint so that we can handle restarts properly
8125 */
Vlad Yasevich8e71a112007-12-06 22:50:54 -08008126 sctp_bind_addr_dup(&newsp->ep->base.bind_addr,
8127 &oldsp->ep->base.bind_addr, GFP_KERNEL);
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07008128
Linus Torvalds1da177e2005-04-16 15:20:36 -07008129 /* Move any messages in the old socket's receive queue that are for the
8130 * peeled off association to the new socket's receive queue.
8131 */
8132 sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) {
8133 event = sctp_skb2event(skb);
8134 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07008135 __skb_unlink(skb, &oldsk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008136 __skb_queue_tail(&newsk->sk_receive_queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008137 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008138 }
8139 }
8140
8141 /* Clean up any messages pending delivery due to partial
8142 * delivery. Three cases:
8143 * 1) No partial deliver; no work.
8144 * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby.
8145 * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue.
8146 */
8147 skb_queue_head_init(&newsp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008148 atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008149
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008150 if (atomic_read(&sctp_sk(oldsk)->pd_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008151 struct sk_buff_head *queue;
8152
8153 /* Decide which queue to move pd_lobby skbs to. */
8154 if (assoc->ulpq.pd_mode) {
8155 queue = &newsp->pd_lobby;
8156 } else
8157 queue = &newsk->sk_receive_queue;
8158
8159 /* Walk through the pd_lobby, looking for skbs that
8160 * need moved to the new socket.
8161 */
8162 sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) {
8163 event = sctp_skb2event(skb);
8164 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07008165 __skb_unlink(skb, &oldsp->pd_lobby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008166 __skb_queue_tail(queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008167 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008168 }
8169 }
8170
8171 /* Clear up any skbs waiting for the partial
8172 * delivery to finish.
8173 */
8174 if (assoc->ulpq.pd_mode)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008175 sctp_clear_pd(oldsk, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008176
8177 }
8178
Wei Yongjun1bc4ee42009-07-05 19:45:48 +00008179 sctp_skb_for_each(skb, &assoc->ulpq.reasm, tmp)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008180 sctp_skb_set_owner_r_frag(skb, newsk);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008181
Wei Yongjun1bc4ee42009-07-05 19:45:48 +00008182 sctp_skb_for_each(skb, &assoc->ulpq.lobby, tmp)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008183 sctp_skb_set_owner_r_frag(skb, newsk);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008184
Linus Torvalds1da177e2005-04-16 15:20:36 -07008185 /* Set the type of socket to indicate that it is peeled off from the
8186 * original UDP-style socket or created with the accept() call on a
8187 * TCP-style socket..
8188 */
8189 newsp->type = type;
8190
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07008191 /* Mark the new socket "in-use" by the user so that any packets
8192 * that may arrive on the association after we've moved it are
8193 * queued to the backlog. This prevents a potential race between
8194 * backlog processing on the old socket and new-packet processing
8195 * on the new socket.
Zach Brown5131a182007-06-22 15:14:46 -07008196 *
8197 * The caller has just allocated newsk so we can guarantee that other
8198 * paths won't try to lock it and then oldsk.
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07008199 */
Zach Brown5131a182007-06-22 15:14:46 -07008200 lock_sock_nested(newsk, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008201 sctp_assoc_migrate(assoc, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008202
8203 /* If the association on the newsk is already closed before accept()
8204 * is called, set RCV_SHUTDOWN flag.
8205 */
Xin Longd46e4162016-06-09 22:48:18 +08008206 if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP)) {
Xin Long141ddef2016-06-16 01:15:06 +08008207 newsk->sk_state = SCTP_SS_CLOSED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008208 newsk->sk_shutdown |= RCV_SHUTDOWN;
Xin Longd46e4162016-06-09 22:48:18 +08008209 } else {
8210 newsk->sk_state = SCTP_SS_ESTABLISHED;
8211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008212
wangweidong048ed4b2014-01-21 15:44:11 +08008213 release_sock(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008214}
8215
Neil Horman4d93df02007-08-15 16:07:44 -07008216
Linus Torvalds1da177e2005-04-16 15:20:36 -07008217/* This proto struct describes the ULP interface for SCTP. */
8218struct proto sctp_prot = {
8219 .name = "SCTP",
8220 .owner = THIS_MODULE,
8221 .close = sctp_close,
8222 .connect = sctp_connect,
8223 .disconnect = sctp_disconnect,
8224 .accept = sctp_accept,
8225 .ioctl = sctp_ioctl,
8226 .init = sctp_init_sock,
8227 .destroy = sctp_destroy_sock,
8228 .shutdown = sctp_shutdown,
8229 .setsockopt = sctp_setsockopt,
8230 .getsockopt = sctp_getsockopt,
8231 .sendmsg = sctp_sendmsg,
8232 .recvmsg = sctp_recvmsg,
8233 .bind = sctp_bind,
8234 .backlog_rcv = sctp_backlog_rcv,
8235 .hash = sctp_hash,
8236 .unhash = sctp_unhash,
8237 .get_port = sctp_get_port,
8238 .obj_size = sizeof(struct sctp_sock),
Neil Horman4d93df02007-08-15 16:07:44 -07008239 .sysctl_mem = sysctl_sctp_mem,
8240 .sysctl_rmem = sysctl_sctp_rmem,
8241 .sysctl_wmem = sysctl_sctp_wmem,
8242 .memory_pressure = &sctp_memory_pressure,
8243 .enter_memory_pressure = sctp_enter_memory_pressure,
8244 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08008245 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008246};
8247
Eric Dumazetdfd56b82011-12-10 09:48:31 +00008248#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazet8295b6d2007-11-05 23:40:28 -08008249
Eric Dumazet602dd622015-12-01 07:20:07 -08008250#include <net/transp_v6.h>
8251static void sctp_v6_destroy_sock(struct sock *sk)
8252{
8253 sctp_destroy_sock(sk);
8254 inet6_destroy_sock(sk);
8255}
8256
Linus Torvalds1da177e2005-04-16 15:20:36 -07008257struct proto sctpv6_prot = {
8258 .name = "SCTPv6",
8259 .owner = THIS_MODULE,
8260 .close = sctp_close,
8261 .connect = sctp_connect,
8262 .disconnect = sctp_disconnect,
8263 .accept = sctp_accept,
8264 .ioctl = sctp_ioctl,
8265 .init = sctp_init_sock,
Eric Dumazet602dd622015-12-01 07:20:07 -08008266 .destroy = sctp_v6_destroy_sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008267 .shutdown = sctp_shutdown,
8268 .setsockopt = sctp_setsockopt,
8269 .getsockopt = sctp_getsockopt,
8270 .sendmsg = sctp_sendmsg,
8271 .recvmsg = sctp_recvmsg,
8272 .bind = sctp_bind,
8273 .backlog_rcv = sctp_backlog_rcv,
8274 .hash = sctp_hash,
8275 .unhash = sctp_unhash,
8276 .get_port = sctp_get_port,
8277 .obj_size = sizeof(struct sctp6_sock),
Neil Horman4d93df02007-08-15 16:07:44 -07008278 .sysctl_mem = sysctl_sctp_mem,
8279 .sysctl_rmem = sysctl_sctp_rmem,
8280 .sysctl_wmem = sysctl_sctp_wmem,
8281 .memory_pressure = &sctp_memory_pressure,
8282 .enter_memory_pressure = sctp_enter_memory_pressure,
8283 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08008284 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008285};
Eric Dumazetdfd56b82011-12-10 09:48:31 +00008286#endif /* IS_ENABLED(CONFIG_IPV6) */