blob: 50b7ef975b42c16897bdb50d695ae4a961fe799a [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>
NeilBrown0eb71a92018-06-18 12:52:50 +100069#include <linux/rhashtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71#include <net/ip.h>
72#include <net/icmp.h>
73#include <net/route.h>
74#include <net/ipv6.h>
75#include <net/inet_common.h>
Neil Horman8465a5f2014-04-17 15:26:51 -040076#include <net/busy_poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78#include <linux/socket.h> /* for sa_family_t */
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040079#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#include <net/sock.h>
81#include <net/sctp/sctp.h>
82#include <net/sctp/sm.h>
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -030083#include <net/sctp/stream_sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/* Forward declarations for internal helper functions. */
86static int sctp_writeable(struct sock *sk);
87static void sctp_wfree(struct sk_buff *skb);
Xin Longcea0cc82017-11-15 16:57:26 +080088static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
Xin Longa0ff6602018-01-15 17:01:36 +080089 size_t msg_len);
wangweidong26ac8e52013-12-23 12:16:51 +080090static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
92static int sctp_wait_for_accept(struct sock *sk, long timeo);
93static void sctp_wait_for_close(struct sock *sk, long timeo);
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +020094static void sctp_destruct_sock(struct sock *sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
96 union sctp_addr *addr, int len);
97static int sctp_bindx_add(struct sock *, struct sockaddr *, int);
98static int sctp_bindx_rem(struct sock *, struct sockaddr *, int);
99static int sctp_send_asconf_add_ip(struct sock *, struct sockaddr *, int);
100static int sctp_send_asconf_del_ip(struct sock *, struct sockaddr *, int);
101static int sctp_send_asconf(struct sctp_association *asoc,
102 struct sctp_chunk *chunk);
103static int sctp_do_bind(struct sock *, union sctp_addr *, int);
104static int sctp_autobind(struct sock *sk);
Xin Longb7ef2612017-08-11 10:23:50 +0800105static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
106 struct sctp_association *assoc,
107 enum sctp_socket_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Eric Dumazet06044752017-06-07 13:29:12 -0700109static unsigned long sctp_memory_pressure;
Eric Dumazet8d987e52010-11-09 23:24:26 +0000110static atomic_long_t sctp_memory_allocated;
Eric Dumazet17483762008-11-25 21:16:35 -0800111struct percpu_counter sctp_sockets_allocated;
Neil Horman4d93df02007-08-15 16:07:44 -0700112
Pavel Emelyanov5c52ba12008-07-16 20:28:10 -0700113static void sctp_enter_memory_pressure(struct sock *sk)
Neil Horman4d93df02007-08-15 16:07:44 -0700114{
115 sctp_memory_pressure = 1;
116}
117
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119/* Get the sndbuf space available at the time on the association. */
120static inline int sctp_wspace(struct sctp_association *asoc)
121{
Neil Horman4d93df02007-08-15 16:07:44 -0700122 int amt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Neil Horman4d93df02007-08-15 16:07:44 -0700124 if (asoc->ep->sndbuf_policy)
125 amt = asoc->sndbuf_used;
126 else
Eric Dumazet31e6d362009-06-17 19:05:41 -0700127 amt = sk_wmem_alloc_get(asoc->base.sk);
Neil Horman4d93df02007-08-15 16:07:44 -0700128
129 if (amt >= asoc->base.sk->sk_sndbuf) {
130 if (asoc->base.sk->sk_userlocks & SOCK_SNDBUF_LOCK)
131 amt = 0;
132 else {
133 amt = sk_stream_wspace(asoc->base.sk);
134 if (amt < 0)
135 amt = 0;
136 }
Neil Horman4eb701d2005-04-28 12:02:04 -0700137 } else {
Neil Horman4d93df02007-08-15 16:07:44 -0700138 amt = asoc->base.sk->sk_sndbuf - amt;
Neil Horman4eb701d2005-04-28 12:02:04 -0700139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return amt;
141}
142
143/* Increment the used sndbuf space count of the corresponding association by
144 * the size of the outgoing data chunk.
145 * Also, set the skb destructor for sndbuf accounting later.
146 *
147 * Since it is always 1-1 between chunk and skb, and also a new skb is always
148 * allocated for chunk bundling in sctp_packet_transmit(), we can use the
149 * destructor in the data chunk skb for the purpose of the sndbuf space
150 * tracking.
151 */
152static inline void sctp_set_owner_w(struct sctp_chunk *chunk)
153{
154 struct sctp_association *asoc = chunk->asoc;
155 struct sock *sk = asoc->base.sk;
156
157 /* The sndbuf space is tracked per association. */
158 sctp_association_hold(asoc);
159
Xin Long1b1e0bc2018-03-14 19:05:30 +0800160 if (chunk->shkey)
161 sctp_auth_shkey_hold(chunk->shkey);
162
Neil Horman4eb701d2005-04-28 12:02:04 -0700163 skb_set_owner_w(chunk->skb, sk);
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 chunk->skb->destructor = sctp_wfree;
166 /* Save the chunk pointer in skb for sctp_wfree to use later. */
Daniel Borkmannf869c912014-11-20 01:54:48 +0100167 skb_shinfo(chunk->skb)->destructor_arg = chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Neil Horman4eb701d2005-04-28 12:02:04 -0700169 asoc->sndbuf_used += SCTP_DATA_SNDSIZE(chunk) +
170 sizeof(struct sk_buff) +
171 sizeof(struct sctp_chunk);
172
Reshetova, Elena14afee42017-06-30 13:08:00 +0300173 refcount_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800174 sk->sk_wmem_queued += chunk->skb->truesize;
175 sk_mem_charge(sk, chunk->skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Xin Longd04adf12017-10-28 02:13:29 +0800178static void sctp_clear_owner_w(struct sctp_chunk *chunk)
179{
180 skb_orphan(chunk->skb);
181}
182
183static void sctp_for_each_tx_datachunk(struct sctp_association *asoc,
184 void (*cb)(struct sctp_chunk *))
185
186{
187 struct sctp_outq *q = &asoc->outqueue;
188 struct sctp_transport *t;
189 struct sctp_chunk *chunk;
190
191 list_for_each_entry(t, &asoc->peer.transport_addr_list, transports)
192 list_for_each_entry(chunk, &t->transmitted, transmitted_list)
193 cb(chunk);
194
Xin Longa8dd3972017-11-26 20:56:07 +0800195 list_for_each_entry(chunk, &q->retransmit, transmitted_list)
Xin Longd04adf12017-10-28 02:13:29 +0800196 cb(chunk);
197
Xin Longa8dd3972017-11-26 20:56:07 +0800198 list_for_each_entry(chunk, &q->sacked, transmitted_list)
Xin Longd04adf12017-10-28 02:13:29 +0800199 cb(chunk);
200
Xin Longa8dd3972017-11-26 20:56:07 +0800201 list_for_each_entry(chunk, &q->abandoned, transmitted_list)
Xin Longd04adf12017-10-28 02:13:29 +0800202 cb(chunk);
203
204 list_for_each_entry(chunk, &q->out_chunk_list, list)
205 cb(chunk);
206}
207
Xin Long13228232017-12-08 21:04:09 +0800208static void sctp_for_each_rx_skb(struct sctp_association *asoc, struct sock *sk,
209 void (*cb)(struct sk_buff *, struct sock *))
210
211{
212 struct sk_buff *skb, *tmp;
213
214 sctp_skb_for_each(skb, &asoc->ulpq.lobby, tmp)
215 cb(skb, sk);
216
217 sctp_skb_for_each(skb, &asoc->ulpq.reasm, tmp)
218 cb(skb, sk);
219
220 sctp_skb_for_each(skb, &asoc->ulpq.reasm_uo, tmp)
221 cb(skb, sk);
222}
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224/* Verify that this is a valid address. */
225static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr,
226 int len)
227{
228 struct sctp_af *af;
229
230 /* Verify basic sockaddr. */
231 af = sctp_sockaddr_af(sctp_sk(sk), addr, len);
232 if (!af)
233 return -EINVAL;
234
235 /* Is this a valid SCTP address? */
Vlad Yasevich5636bef2006-06-17 22:55:35 -0700236 if (!af->addr_valid(addr, sctp_sk(sk), NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return -EINVAL;
238
239 if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr)))
240 return -EINVAL;
241
242 return 0;
243}
244
245/* Look up the association by its id. If this is not a UDP-style
246 * socket, the ID field is always ignored.
247 */
248struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
249{
250 struct sctp_association *asoc = NULL;
251
252 /* If this is not a UDP-style socket, assoc id should be ignored. */
253 if (!sctp_style(sk, UDP)) {
254 /* Return NULL if the socket state is not ESTABLISHED. It
255 * could be a TCP-style listening socket or a socket which
256 * hasn't yet called connect() to establish an association.
257 */
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -0300258 if (!sctp_sstate(sk, ESTABLISHED) && !sctp_sstate(sk, CLOSING))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return NULL;
260
261 /* Get the first and the only association from the list. */
262 if (!list_empty(&sctp_sk(sk)->ep->asocs))
263 asoc = list_entry(sctp_sk(sk)->ep->asocs.next,
264 struct sctp_association, asocs);
265 return asoc;
266 }
267
268 /* Otherwise this is a UDP-style socket. */
269 if (!id || (id == (sctp_assoc_t)-1))
270 return NULL;
271
272 spin_lock_bh(&sctp_assocs_id_lock);
273 asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id);
274 spin_unlock_bh(&sctp_assocs_id_lock);
275
276 if (!asoc || (asoc->base.sk != sk) || asoc->base.dead)
277 return NULL;
278
279 return asoc;
280}
281
282/* Look up the transport from an address and an assoc id. If both address and
283 * id are specified, the associations matching the address and the id should be
284 * the same.
285 */
286static struct sctp_transport *sctp_addr_id2transport(struct sock *sk,
287 struct sockaddr_storage *addr,
288 sctp_assoc_t id)
289{
290 struct sctp_association *addr_asoc = NULL, *id_asoc = NULL;
Xin Long6f29a132017-01-24 14:01:53 +0800291 struct sctp_af *af = sctp_get_af_specific(addr->ss_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 union sctp_addr *laddr = (union sctp_addr *)addr;
Xin Long6f29a132017-01-24 14:01:53 +0800293 struct sctp_transport *transport;
294
Xin Long912964e2017-02-07 20:56:08 +0800295 if (!af || sctp_verify_addr(sk, laddr, af->sockaddr_len))
Xin Long6f29a132017-01-24 14:01:53 +0800296 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
Al Virocd4ff032006-11-20 17:11:33 -0800299 laddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 &transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 if (!addr_asoc)
303 return NULL;
304
305 id_asoc = sctp_id2assoc(sk, id);
306 if (id_asoc && (id_asoc != addr_asoc))
307 return NULL;
308
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600309 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 (union sctp_addr *)addr);
311
312 return transport;
313}
314
315/* API 3.1.2 bind() - UDP Style Syntax
316 * The syntax of bind() is,
317 *
318 * ret = bind(int sd, struct sockaddr *addr, int addrlen);
319 *
320 * sd - the socket descriptor returned by socket().
321 * addr - the address structure (struct sockaddr_in or struct
322 * sockaddr_in6 [RFC 2553]),
323 * addr_len - the size of the address structure.
324 */
Daniel Borkmanndda91922013-06-17 11:40:05 +0200325static int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327 int retval = 0;
328
wangweidong048ed4b2014-01-21 15:44:11 +0800329 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Daniel Borkmannbb333812013-06-28 19:49:40 +0200331 pr_debug("%s: sk:%p, addr:%p, addr_len:%d\n", __func__, sk,
332 addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 /* Disallow binding twice. */
335 if (!sctp_sk(sk)->ep->base.bind_addr.port)
Frank Filz3f7a87d2005-06-20 13:14:57 -0700336 retval = sctp_do_bind(sk, (union sctp_addr *)addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 addr_len);
338 else
339 retval = -EINVAL;
340
wangweidong048ed4b2014-01-21 15:44:11 +0800341 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 return retval;
344}
345
346static long sctp_get_port_local(struct sock *, union sctp_addr *);
347
348/* Verify this is a valid sockaddr. */
349static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
350 union sctp_addr *addr, int len)
351{
352 struct sctp_af *af;
353
354 /* Check minimum size. */
355 if (len < sizeof (struct sockaddr))
356 return NULL;
357
Xin Longc5006b82018-01-15 17:02:00 +0800358 if (!opt->pf->af_supported(addr->sa.sa_family, opt))
359 return NULL;
360
Eric Dumazet81e98372018-04-08 07:52:08 -0700361 if (addr->sa.sa_family == AF_INET6) {
362 if (len < SIN6_LEN_RFC2133)
363 return NULL;
364 /* V4 mapped address are really of AF_INET family */
365 if (ipv6_addr_v4mapped(&addr->v6.sin6_addr) &&
366 !opt->pf->af_supported(AF_INET, opt))
367 return NULL;
368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 /* If we get this far, af is valid. */
371 af = sctp_get_af_specific(addr->sa.sa_family);
372
373 if (len < af->sockaddr_len)
374 return NULL;
375
376 return af;
377}
378
379/* Bind a local address either to an endpoint or to an association. */
Daniel Borkmanndda91922013-06-17 11:40:05 +0200380static int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Eric W. Biederman35946982012-11-16 03:03:12 +0000382 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 struct sctp_sock *sp = sctp_sk(sk);
384 struct sctp_endpoint *ep = sp->ep;
385 struct sctp_bind_addr *bp = &ep->base.bind_addr;
386 struct sctp_af *af;
387 unsigned short snum;
388 int ret = 0;
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 /* Common sockaddr verification. */
391 af = sctp_sockaddr_af(sp, addr, len);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700392 if (!af) {
Daniel Borkmannbb333812013-06-28 19:49:40 +0200393 pr_debug("%s: sk:%p, newaddr:%p, len:%d EINVAL\n",
394 __func__, sk, addr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return -EINVAL;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700396 }
397
398 snum = ntohs(addr->v4.sin_port);
399
Daniel Borkmannbb333812013-06-28 19:49:40 +0200400 pr_debug("%s: sk:%p, new addr:%pISc, port:%d, new port:%d, len:%d\n",
401 __func__, sk, &addr->sa, bp->port, snum, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 /* PF specific bind() address verification. */
404 if (!sp->pf->bind_verify(sp, addr))
405 return -EADDRNOTAVAIL;
406
Vlad Yasevich8b358052007-05-15 17:14:58 -0400407 /* We must either be unbound, or bind to the same port.
408 * It's OK to allow 0 ports if we are already bound.
409 * We'll just inhert an already bound port in this case
410 */
411 if (bp->port) {
412 if (!snum)
413 snum = bp->port;
414 else if (snum != bp->port) {
Daniel Borkmannbb333812013-06-28 19:49:40 +0200415 pr_debug("%s: new port %d doesn't match existing port "
416 "%d\n", __func__, snum, bp->port);
Vlad Yasevich8b358052007-05-15 17:14:58 -0400417 return -EINVAL;
418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
420
Krister Johansen4548b682017-01-20 17:49:11 -0800421 if (snum && snum < inet_prot_sock(net) &&
Eric W. Biederman35946982012-11-16 03:03:12 +0000422 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return -EACCES;
424
Vlad Yasevich4e540642008-07-18 23:06:32 -0700425 /* See if the address matches any of the addresses we may have
426 * already bound before checking against other endpoints.
427 */
428 if (sctp_bind_addr_match(bp, addr, sp))
429 return -EINVAL;
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 /* Make sure we are allowed to bind here.
432 * The function sctp_get_port_local() does duplicate address
433 * detection.
434 */
Vlad Yasevich2772b492007-08-21 14:24:30 +0900435 addr->v4.sin_port = htons(snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if ((ret = sctp_get_port_local(sk, addr))) {
Vlad Yasevich4e540642008-07-18 23:06:32 -0700437 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
439
440 /* Refresh ephemeral port. */
441 if (!bp->port)
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000442 bp->port = inet_sk(sk)->inet_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Vlad Yasevich559cf712007-09-16 16:03:28 -0700444 /* Add the address to the bind address list.
445 * Use GFP_ATOMIC since BHs will be disabled.
446 */
Marcelo Ricardo Leitner133800d2016-03-08 10:34:28 -0300447 ret = sctp_add_bind_addr(bp, addr, af->sockaddr_len,
448 SCTP_ADDR_SRC, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 /* Copy back into socket for getsockname() use. */
451 if (!ret) {
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000452 inet_sk(sk)->inet_sport = htons(inet_sk(sk)->inet_num);
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600453 sp->pf->to_sk_saddr(addr, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455
456 return ret;
457}
458
459 /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
460 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900461 * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 * at any one time. If a sender, after sending an ASCONF chunk, decides
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900463 * it needs to transfer another ASCONF Chunk, it MUST wait until the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900465 * subsequent ASCONF. Note this restriction binds each side, so at any
466 * time two ASCONF may be in-transit on any given association (one sent
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 * from each endpoint).
468 */
469static int sctp_send_asconf(struct sctp_association *asoc,
470 struct sctp_chunk *chunk)
471{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +0000472 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 int retval = 0;
474
475 /* If there is an outstanding ASCONF chunk, queue it for later
476 * transmission.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900477 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 if (asoc->addip_last_asconf) {
David S. Miller79af02c2005-07-08 21:47:49 -0700479 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900480 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
482
483 /* Hold the chunk until an ASCONF_ACK is received. */
484 sctp_chunk_hold(chunk);
Eric W. Biederman55e26eb2012-08-07 07:25:24 +0000485 retval = sctp_primitive_ASCONF(net, asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (retval)
487 sctp_chunk_free(chunk);
488 else
489 asoc->addip_last_asconf = chunk;
490
491out:
492 return retval;
493}
494
495/* Add a list of addresses as bind addresses to local endpoint or
496 * association.
497 *
498 * Basically run through each address specified in the addrs/addrcnt
499 * array/length pair, determine if it is IPv6 or IPv4 and call
500 * sctp_do_bind() on it.
501 *
502 * If any of them fails, then the operation will be reversed and the
503 * ones that were added will be removed.
504 *
505 * Only sctp_setsockopt_bindx() is supposed to call this function.
506 */
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +0200507static int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
509 int cnt;
510 int retval = 0;
511 void *addr_buf;
512 struct sockaddr *sa_addr;
513 struct sctp_af *af;
514
Daniel Borkmannbb333812013-06-28 19:49:40 +0200515 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n", __func__, sk,
516 addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 addr_buf = addrs;
519 for (cnt = 0; cnt < addrcnt; cnt++) {
520 /* The list may contain either IPv4 or IPv6 address;
521 * determine the address length for walking thru the list.
522 */
Joe Perchesea110732011-06-13 16:21:26 +0000523 sa_addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 af = sctp_get_af_specific(sa_addr->sa_family);
525 if (!af) {
526 retval = -EINVAL;
527 goto err_bindx_add;
528 }
529
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900530 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 af->sockaddr_len);
532
533 addr_buf += af->sockaddr_len;
534
535err_bindx_add:
536 if (retval < 0) {
537 /* Failed. Cleanup the ones that have been added */
538 if (cnt > 0)
539 sctp_bindx_rem(sk, addrs, cnt);
540 return retval;
541 }
542 }
543
544 return retval;
545}
546
547/* Send an ASCONF chunk with Add IP address parameters to all the peers of the
548 * associations that are part of the endpoint indicating that a list of local
549 * addresses are added to the endpoint.
550 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900551 * If any of the addresses is already in the bind address list of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 * association, we do not send the chunk for that association. But it will not
553 * affect other associations.
554 *
555 * Only sctp_setsockopt_bindx() is supposed to call this function.
556 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900557static int sctp_send_asconf_add_ip(struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 struct sockaddr *addrs,
559 int addrcnt)
560{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000561 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 struct sctp_sock *sp;
563 struct sctp_endpoint *ep;
564 struct sctp_association *asoc;
565 struct sctp_bind_addr *bp;
566 struct sctp_chunk *chunk;
567 struct sctp_sockaddr_entry *laddr;
568 union sctp_addr *addr;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700569 union sctp_addr saveaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 void *addr_buf;
571 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 struct list_head *p;
573 int i;
574 int retval = 0;
575
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000576 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return retval;
578
579 sp = sctp_sk(sk);
580 ep = sp->ep;
581
Daniel Borkmannbb333812013-06-28 19:49:40 +0200582 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
583 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700585 list_for_each_entry(asoc, &ep->asocs, asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (!asoc->peer.asconf_capable)
587 continue;
588
589 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_ADD_IP)
590 continue;
591
592 if (!sctp_state(asoc, ESTABLISHED))
593 continue;
594
595 /* Check if any address in the packed array of addresses is
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900596 * in the bind address list of the association. If so,
597 * do not send the asconf chunk to its peer, but continue with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 * other associations.
599 */
600 addr_buf = addrs;
601 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000602 addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 af = sctp_get_af_specific(addr->v4.sin_family);
604 if (!af) {
605 retval = -EINVAL;
606 goto out;
607 }
608
609 if (sctp_assoc_lookup_laddr(asoc, addr))
610 break;
611
612 addr_buf += af->sockaddr_len;
613 }
614 if (i < addrcnt)
615 continue;
616
Vlad Yasevich559cf712007-09-16 16:03:28 -0700617 /* Use the first valid address in bind addr list of
618 * association as Address Parameter of ASCONF CHUNK.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 bp = &asoc->base.bind_addr;
621 p = bp->address_list.next;
622 laddr = list_entry(p, struct sctp_sockaddr_entry, list);
Al Viro5ae955c2006-11-20 17:22:08 -0800623 chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 addrcnt, SCTP_PARAM_ADD_IP);
625 if (!chunk) {
626 retval = -ENOMEM;
627 goto out;
628 }
629
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700630 /* Add the new addresses to the bind address list with
631 * use_as_src set to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700633 addr_buf = addrs;
634 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000635 addr = addr_buf;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700636 af = sctp_get_af_specific(addr->v4.sin_family);
637 memcpy(&saveaddr, addr, af->sockaddr_len);
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800638 retval = sctp_add_bind_addr(bp, &saveaddr,
Marcelo Ricardo Leitner133800d2016-03-08 10:34:28 -0300639 sizeof(saveaddr),
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800640 SCTP_ADDR_NEW, GFP_ATOMIC);
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700641 addr_buf += af->sockaddr_len;
642 }
Michio Honda8a07eb02011-04-26 20:19:36 +0900643 if (asoc->src_out_of_asoc_ok) {
644 struct sctp_transport *trans;
645
646 list_for_each_entry(trans,
647 &asoc->peer.transport_addr_list, transports) {
Michio Honda8a07eb02011-04-26 20:19:36 +0900648 trans->cwnd = min(4*asoc->pathmtu, max_t(__u32,
649 2*asoc->pathmtu, 4380));
650 trans->ssthresh = asoc->peer.i.a_rwnd;
651 trans->rto = asoc->rto_initial;
Michele Baldessari196d6752012-12-01 04:49:42 +0000652 sctp_max_rto(asoc, trans);
Michio Honda8a07eb02011-04-26 20:19:36 +0900653 trans->rtt = trans->srtt = trans->rttvar = 0;
Marcelo Ricardo Leitner6e91b572018-04-26 16:58:59 -0300654 /* Clear the source and route cache */
Michio Honda8a07eb02011-04-26 20:19:36 +0900655 sctp_transport_route(trans, NULL,
Marcelo Ricardo Leitner6e91b572018-04-26 16:58:59 -0300656 sctp_sk(asoc->base.sk));
Michio Honda8a07eb02011-04-26 20:19:36 +0900657 }
658 }
659 retval = sctp_send_asconf(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 }
661
662out:
663 return retval;
664}
665
666/* Remove a list of addresses from bind addresses list. Do not remove the
667 * last address.
668 *
669 * Basically run through each address specified in the addrs/addrcnt
670 * array/length pair, determine if it is IPv6 or IPv4 and call
671 * sctp_del_bind() on it.
672 *
673 * If any of them fails, then the operation will be reversed and the
674 * ones that were removed will be added back.
675 *
676 * At least one address has to be left; if only one address is
677 * available, the operation will return -EBUSY.
678 *
679 * Only sctp_setsockopt_bindx() is supposed to call this function.
680 */
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +0200681static int sctp_bindx_rem(struct sock *sk, struct sockaddr *addrs, int addrcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 struct sctp_sock *sp = sctp_sk(sk);
684 struct sctp_endpoint *ep = sp->ep;
685 int cnt;
686 struct sctp_bind_addr *bp = &ep->base.bind_addr;
687 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 void *addr_buf;
Al Viroc9a08502006-11-20 17:07:48 -0800689 union sctp_addr *sa_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 struct sctp_af *af;
691
Daniel Borkmannbb333812013-06-28 19:49:40 +0200692 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
693 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695 addr_buf = addrs;
696 for (cnt = 0; cnt < addrcnt; cnt++) {
697 /* If the bind address list is empty or if there is only one
698 * bind address, there is nothing more to be removed (we need
699 * at least one address here).
700 */
701 if (list_empty(&bp->address_list) ||
702 (sctp_list_single_entry(&bp->address_list))) {
703 retval = -EBUSY;
704 goto err_bindx_rem;
705 }
706
Joe Perchesea110732011-06-13 16:21:26 +0000707 sa_addr = addr_buf;
Al Viroc9a08502006-11-20 17:07:48 -0800708 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (!af) {
710 retval = -EINVAL;
711 goto err_bindx_rem;
712 }
Paolo Galtieri0304ff8a2007-04-17 12:52:36 -0700713
714 if (!af->addr_valid(sa_addr, sp, NULL)) {
715 retval = -EADDRNOTAVAIL;
716 goto err_bindx_rem;
717 }
718
Vlad Yasevichee9cbac2011-04-18 19:14:47 +0000719 if (sa_addr->v4.sin_port &&
720 sa_addr->v4.sin_port != htons(bp->port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 retval = -EINVAL;
722 goto err_bindx_rem;
723 }
724
Vlad Yasevichee9cbac2011-04-18 19:14:47 +0000725 if (!sa_addr->v4.sin_port)
726 sa_addr->v4.sin_port = htons(bp->port);
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 /* FIXME - There is probably a need to check if sk->sk_saddr and
729 * sk->sk_rcv_addr are currently set to one of the addresses to
730 * be removed. This is something which needs to be looked into
731 * when we are fixing the outstanding issues with multi-homing
732 * socket routing and failover schemes. Refer to comments in
733 * sctp_do_bind(). -daisy
734 */
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -0400735 retval = sctp_del_bind_addr(bp, sa_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 addr_buf += af->sockaddr_len;
738err_bindx_rem:
739 if (retval < 0) {
740 /* Failed. Add the ones that has been removed back */
741 if (cnt > 0)
742 sctp_bindx_add(sk, addrs, cnt);
743 return retval;
744 }
745 }
746
747 return retval;
748}
749
750/* Send an ASCONF chunk with Delete IP address parameters to all the peers of
751 * the associations that are part of the endpoint indicating that a list of
752 * local addresses are removed from the endpoint.
753 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900754 * If any of the addresses is already in the bind address list of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 * association, we do not send the chunk for that association. But it will not
756 * affect other associations.
757 *
758 * Only sctp_setsockopt_bindx() is supposed to call this function.
759 */
760static int sctp_send_asconf_del_ip(struct sock *sk,
761 struct sockaddr *addrs,
762 int addrcnt)
763{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000764 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 struct sctp_sock *sp;
766 struct sctp_endpoint *ep;
767 struct sctp_association *asoc;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700768 struct sctp_transport *transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 struct sctp_bind_addr *bp;
770 struct sctp_chunk *chunk;
771 union sctp_addr *laddr;
772 void *addr_buf;
773 struct sctp_af *af;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700774 struct sctp_sockaddr_entry *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 int i;
776 int retval = 0;
Michio Honda8a07eb02011-04-26 20:19:36 +0900777 int stored = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Michio Honda8a07eb02011-04-26 20:19:36 +0900779 chunk = NULL;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000780 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return retval;
782
783 sp = sctp_sk(sk);
784 ep = sp->ep;
785
Daniel Borkmannbb333812013-06-28 19:49:40 +0200786 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
787 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700789 list_for_each_entry(asoc, &ep->asocs, asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 if (!asoc->peer.asconf_capable)
792 continue;
793
794 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_DEL_IP)
795 continue;
796
797 if (!sctp_state(asoc, ESTABLISHED))
798 continue;
799
800 /* Check if any address in the packed array of addresses is
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900801 * not present in the bind address list of the association.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 * If so, do not send the asconf chunk to its peer, but
803 * continue with other associations.
804 */
805 addr_buf = addrs;
806 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000807 laddr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 af = sctp_get_af_specific(laddr->v4.sin_family);
809 if (!af) {
810 retval = -EINVAL;
811 goto out;
812 }
813
814 if (!sctp_assoc_lookup_laddr(asoc, laddr))
815 break;
816
817 addr_buf += af->sockaddr_len;
818 }
819 if (i < addrcnt)
820 continue;
821
822 /* Find one address in the association's bind address list
823 * that is not in the packed array of addresses. This is to
824 * make sure that we do not delete all the addresses in the
825 * association.
826 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 bp = &asoc->base.bind_addr;
828 laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs,
829 addrcnt, sp);
Michio Honda8a07eb02011-04-26 20:19:36 +0900830 if ((laddr == NULL) && (addrcnt == 1)) {
831 if (asoc->asconf_addr_del_pending)
832 continue;
833 asoc->asconf_addr_del_pending =
834 kzalloc(sizeof(union sctp_addr), GFP_ATOMIC);
Michio Honda6d65e5e2011-06-10 16:42:14 +0900835 if (asoc->asconf_addr_del_pending == NULL) {
836 retval = -ENOMEM;
837 goto out;
838 }
Michio Honda8a07eb02011-04-26 20:19:36 +0900839 asoc->asconf_addr_del_pending->sa.sa_family =
840 addrs->sa_family;
841 asoc->asconf_addr_del_pending->v4.sin_port =
842 htons(bp->port);
843 if (addrs->sa_family == AF_INET) {
844 struct sockaddr_in *sin;
845
846 sin = (struct sockaddr_in *)addrs;
847 asoc->asconf_addr_del_pending->v4.sin_addr.s_addr = sin->sin_addr.s_addr;
848 } else if (addrs->sa_family == AF_INET6) {
849 struct sockaddr_in6 *sin6;
850
851 sin6 = (struct sockaddr_in6 *)addrs;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000852 asoc->asconf_addr_del_pending->v6.sin6_addr = sin6->sin6_addr;
Michio Honda8a07eb02011-04-26 20:19:36 +0900853 }
Daniel Borkmannbb333812013-06-28 19:49:40 +0200854
855 pr_debug("%s: keep the last address asoc:%p %pISc at %p\n",
856 __func__, asoc, &asoc->asconf_addr_del_pending->sa,
857 asoc->asconf_addr_del_pending);
858
Michio Honda8a07eb02011-04-26 20:19:36 +0900859 asoc->src_out_of_asoc_ok = 1;
860 stored = 1;
861 goto skip_mkasconf;
862 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Daniel Borkmann88362ad2013-09-07 20:51:21 +0200864 if (laddr == NULL)
865 return -EINVAL;
866
Vlad Yasevich559cf712007-09-16 16:03:28 -0700867 /* We do not need RCU protection throughout this loop
868 * because this is done under a socket lock from the
869 * setsockopt call.
870 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 chunk = sctp_make_asconf_update_ip(asoc, laddr, addrs, addrcnt,
872 SCTP_PARAM_DEL_IP);
873 if (!chunk) {
874 retval = -ENOMEM;
875 goto out;
876 }
877
Michio Honda8a07eb02011-04-26 20:19:36 +0900878skip_mkasconf:
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700879 /* Reset use_as_src flag for the addresses in the bind address
880 * list that are to be deleted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700882 addr_buf = addrs;
883 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000884 laddr = addr_buf;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700885 af = sctp_get_af_specific(laddr->v4.sin_family);
Vlad Yasevich559cf712007-09-16 16:03:28 -0700886 list_for_each_entry(saddr, &bp->address_list, list) {
Al Viro5f242a12006-11-20 17:05:23 -0800887 if (sctp_cmp_addr_exact(&saddr->a, laddr))
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800888 saddr->state = SCTP_ADDR_DEL;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700889 }
890 addr_buf += af->sockaddr_len;
891 }
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700892
893 /* Update the route and saddr entries for all the transports
894 * as some of the addresses in the bind address list are
895 * about to be deleted and cannot be used as source addresses.
896 */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700897 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
898 transports) {
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700899 sctp_transport_route(transport, NULL,
900 sctp_sk(asoc->base.sk));
901 }
902
Michio Honda8a07eb02011-04-26 20:19:36 +0900903 if (stored)
904 /* We don't need to transmit ASCONF */
905 continue;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700906 retval = sctp_send_asconf(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
908out:
909 return retval;
910}
911
Michio Honda9f7d6532011-04-26 19:32:51 +0900912/* set addr events to assocs in the endpoint. ep and addr_wq must be locked */
913int sctp_asconf_mgmt(struct sctp_sock *sp, struct sctp_sockaddr_entry *addrw)
914{
915 struct sock *sk = sctp_opt2sk(sp);
916 union sctp_addr *addr;
917 struct sctp_af *af;
918
919 /* It is safe to write port space in caller. */
920 addr = &addrw->a;
921 addr->v4.sin_port = htons(sp->ep->base.bind_addr.port);
922 af = sctp_get_af_specific(addr->sa.sa_family);
923 if (!af)
924 return -EINVAL;
925 if (sctp_verify_addr(sk, addr, af->sockaddr_len))
926 return -EINVAL;
927
928 if (addrw->state == SCTP_ADDR_NEW)
929 return sctp_send_asconf_add_ip(sk, (struct sockaddr *)addr, 1);
930 else
931 return sctp_send_asconf_del_ip(sk, (struct sockaddr *)addr, 1);
932}
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934/* Helper for tunneling sctp_bindx() requests through sctp_setsockopt()
935 *
936 * API 8.1
937 * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt,
938 * int flags);
939 *
940 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
941 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
942 * or IPv6 addresses.
943 *
944 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
945 * Section 3.1.2 for this usage.
946 *
947 * addrs is a pointer to an array of one or more socket addresses. Each
948 * address is contained in its appropriate structure (i.e. struct
949 * sockaddr_in or struct sockaddr_in6) the family of the address type
Ville Nuorvala23c435f2006-10-16 22:08:28 -0700950 * must be used to distinguish the address length (note that this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 * representation is termed a "packed array" of addresses). The caller
952 * specifies the number of addresses in the array with addrcnt.
953 *
954 * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns
955 * -1, and sets errno to the appropriate error code.
956 *
957 * For SCTP, the port given in each socket address must be the same, or
958 * sctp_bindx() will fail, setting errno to EINVAL.
959 *
960 * The flags parameter is formed from the bitwise OR of zero or more of
961 * the following currently defined flags:
962 *
963 * SCTP_BINDX_ADD_ADDR
964 *
965 * SCTP_BINDX_REM_ADDR
966 *
967 * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the
968 * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given
969 * addresses from the association. The two flags are mutually exclusive;
970 * if both are given, sctp_bindx() will fail with EINVAL. A caller may
971 * not remove all addresses from an association; sctp_bindx() will
972 * reject such an attempt with EINVAL.
973 *
974 * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate
975 * additional addresses with an endpoint after calling bind(). Or use
976 * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening
977 * socket is associated with so that no new association accepted will be
978 * associated with those addresses. If the endpoint supports dynamic
979 * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a
980 * endpoint to send the appropriate message to the peer to change the
981 * peers address lists.
982 *
983 * Adding and removing addresses from a connected association is
984 * optional functionality. Implementations that do not support this
985 * functionality should return EOPNOTSUPP.
986 *
987 * Basically do nothing but copying the addresses from user to kernel
988 * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk.
Frank Filz3f7a87d2005-06-20 13:14:57 -0700989 * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
990 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
993 * it.
994 *
995 * sk The sk of the socket
996 * addrs The pointer to the addresses in user land
997 * addrssize Size of the addrs buffer
998 * op Operation to perform (add or remove, see the flags of
999 * sctp_bindx)
1000 *
1001 * Returns 0 if ok, <0 errno code on error.
1002 */
wangweidong26ac8e52013-12-23 12:16:51 +08001003static int sctp_setsockopt_bindx(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001004 struct sockaddr __user *addrs,
1005 int addrs_size, int op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006{
1007 struct sockaddr *kaddrs;
1008 int err;
1009 int addrcnt = 0;
1010 int walk_size = 0;
1011 struct sockaddr *sa_addr;
1012 void *addr_buf;
1013 struct sctp_af *af;
1014
Daniel Borkmannbb333812013-06-28 19:49:40 +02001015 pr_debug("%s: sk:%p addrs:%p addrs_size:%d opt:%d\n",
1016 __func__, sk, addrs, addrs_size, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 if (unlikely(addrs_size <= 0))
1019 return -EINVAL;
1020
Al Viroc981f252018-01-07 13:19:09 -05001021 kaddrs = vmemdup_user(addrs, addrs_size);
1022 if (unlikely(IS_ERR(kaddrs)))
1023 return PTR_ERR(kaddrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001025 /* Walk through the addrs buffer and count the number of addresses. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 addr_buf = kaddrs;
1027 while (walk_size < addrs_size) {
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001028 if (walk_size + sizeof(sa_family_t) > addrs_size) {
Al Viroc981f252018-01-07 13:19:09 -05001029 kvfree(kaddrs);
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001030 return -EINVAL;
1031 }
1032
Joe Perchesea110732011-06-13 16:21:26 +00001033 sa_addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 af = sctp_get_af_specific(sa_addr->sa_family);
1035
1036 /* If the address family is not supported or if this address
1037 * causes the address buffer to overflow return EINVAL.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001038 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
Al Viroc981f252018-01-07 13:19:09 -05001040 kvfree(kaddrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 return -EINVAL;
1042 }
1043 addrcnt++;
1044 addr_buf += af->sockaddr_len;
1045 walk_size += af->sockaddr_len;
1046 }
1047
1048 /* Do the work. */
1049 switch (op) {
1050 case SCTP_BINDX_ADD_ADDR:
Richard Haines2277c7c2018-02-13 20:56:24 +00001051 /* Allow security module to validate bindx addresses. */
1052 err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_BINDX_ADD,
1053 (struct sockaddr *)kaddrs,
1054 addrs_size);
1055 if (err)
1056 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 err = sctp_bindx_add(sk, kaddrs, addrcnt);
1058 if (err)
1059 goto out;
1060 err = sctp_send_asconf_add_ip(sk, kaddrs, addrcnt);
1061 break;
1062
1063 case SCTP_BINDX_REM_ADDR:
1064 err = sctp_bindx_rem(sk, kaddrs, addrcnt);
1065 if (err)
1066 goto out;
1067 err = sctp_send_asconf_del_ip(sk, kaddrs, addrcnt);
1068 break;
1069
1070 default:
1071 err = -EINVAL;
1072 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075out:
Al Viroc981f252018-01-07 13:19:09 -05001076 kvfree(kaddrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 return err;
1079}
1080
Frank Filz3f7a87d2005-06-20 13:14:57 -07001081/* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size)
1082 *
1083 * Common routine for handling connect() and sctp_connectx().
1084 * Connect will come in with just a single address.
1085 */
wangweidong26ac8e52013-12-23 12:16:51 +08001086static int __sctp_connect(struct sock *sk,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001087 struct sockaddr *kaddrs,
Xin Long644fbde2018-05-20 16:39:10 +08001088 int addrs_size, int flags,
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001089 sctp_assoc_t *assoc_id)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001090{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001091 struct net *net = sock_net(sk);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001092 struct sctp_sock *sp;
1093 struct sctp_endpoint *ep;
1094 struct sctp_association *asoc = NULL;
1095 struct sctp_association *asoc2;
1096 struct sctp_transport *transport;
1097 union sctp_addr to;
Xin Long1c662012017-08-05 19:59:54 +08001098 enum sctp_scope scope;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001099 long timeo;
1100 int err = 0;
1101 int addrcnt = 0;
1102 int walk_size = 0;
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001103 union sctp_addr *sa_addr = NULL;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001104 void *addr_buf;
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001105 unsigned short port;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001106
1107 sp = sctp_sk(sk);
1108 ep = sp->ep;
1109
1110 /* connect() cannot be done on a socket that is already in ESTABLISHED
1111 * state - UDP-style peeled off socket or a TCP-style socket that
1112 * is already connected.
1113 * It cannot be done even on a TCP-style listening socket.
1114 */
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -03001115 if (sctp_sstate(sk, ESTABLISHED) || sctp_sstate(sk, CLOSING) ||
Frank Filz3f7a87d2005-06-20 13:14:57 -07001116 (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))) {
1117 err = -EISCONN;
1118 goto out_free;
1119 }
1120
1121 /* Walk through the addrs buffer and count the number of addresses. */
1122 addr_buf = kaddrs;
1123 while (walk_size < addrs_size) {
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001124 struct sctp_af *af;
1125
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001126 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1127 err = -EINVAL;
1128 goto out_free;
1129 }
1130
Joe Perchesea110732011-06-13 16:21:26 +00001131 sa_addr = addr_buf;
Al Viro4bdf4b52006-11-20 17:10:20 -08001132 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001133
1134 /* If the address family is not supported or if this address
1135 * causes the address buffer to overflow return EINVAL.
1136 */
1137 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1138 err = -EINVAL;
1139 goto out_free;
1140 }
1141
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001142 port = ntohs(sa_addr->v4.sin_port);
1143
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001144 /* Save current address so we can work with it */
1145 memcpy(&to, sa_addr, af->sockaddr_len);
1146
1147 err = sctp_verify_addr(sk, &to, af->sockaddr_len);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001148 if (err)
1149 goto out_free;
1150
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001151 /* Make sure the destination port is correctly set
1152 * in all addresses.
1153 */
Wei Yongjun524fba62013-04-03 03:02:28 +00001154 if (asoc && asoc->peer.port && asoc->peer.port != port) {
1155 err = -EINVAL;
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001156 goto out_free;
Wei Yongjun524fba62013-04-03 03:02:28 +00001157 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001158
1159 /* Check if there already is a matching association on the
1160 * endpoint (other than the one created here).
1161 */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001162 asoc2 = sctp_endpoint_lookup_assoc(ep, &to, &transport);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001163 if (asoc2 && asoc2 != asoc) {
1164 if (asoc2->state >= SCTP_STATE_ESTABLISHED)
1165 err = -EISCONN;
1166 else
1167 err = -EALREADY;
1168 goto out_free;
1169 }
1170
1171 /* If we could not find a matching association on the endpoint,
1172 * make sure that there is no peeled-off association matching
1173 * the peer address even on another socket.
1174 */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001175 if (sctp_endpoint_is_peeled_off(ep, &to)) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07001176 err = -EADDRNOTAVAIL;
1177 goto out_free;
1178 }
1179
1180 if (!asoc) {
1181 /* If a bind() or sctp_bindx() is not called prior to
1182 * an sctp_connectx() call, the system picks an
1183 * ephemeral port and will choose an address set
1184 * equivalent to binding with a wildcard address.
1185 */
1186 if (!ep->base.bind_addr.port) {
1187 if (sctp_autobind(sk)) {
1188 err = -EAGAIN;
1189 goto out_free;
1190 }
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001191 } else {
1192 /*
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001193 * If an unprivileged user inherits a 1-many
1194 * style socket with open associations on a
1195 * privileged port, it MAY be permitted to
1196 * accept new associations, but it SHOULD NOT
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001197 * be permitted to open new associations.
1198 */
Krister Johansen4548b682017-01-20 17:49:11 -08001199 if (ep->base.bind_addr.port <
1200 inet_prot_sock(net) &&
1201 !ns_capable(net->user_ns,
1202 CAP_NET_BIND_SERVICE)) {
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001203 err = -EACCES;
1204 goto out_free;
1205 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001206 }
1207
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001208 scope = sctp_scope(&to);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001209 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1210 if (!asoc) {
1211 err = -ENOMEM;
1212 goto out_free;
1213 }
Vlad Yasevich409b95a2009-11-10 08:57:34 +00001214
1215 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope,
1216 GFP_KERNEL);
1217 if (err < 0) {
1218 goto out_free;
1219 }
1220
Frank Filz3f7a87d2005-06-20 13:14:57 -07001221 }
1222
1223 /* Prime the peer's transport structures. */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001224 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001225 SCTP_UNKNOWN);
1226 if (!transport) {
1227 err = -ENOMEM;
1228 goto out_free;
1229 }
1230
1231 addrcnt++;
1232 addr_buf += af->sockaddr_len;
1233 walk_size += af->sockaddr_len;
1234 }
1235
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001236 /* In case the user of sctp_connectx() wants an association
1237 * id back, assign one now.
1238 */
1239 if (assoc_id) {
1240 err = sctp_assoc_set_id(asoc, GFP_KERNEL);
1241 if (err < 0)
1242 goto out_free;
1243 }
1244
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001245 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001246 if (err < 0) {
1247 goto out_free;
1248 }
1249
1250 /* Initialize sk's dport and daddr for getpeername() */
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001251 inet_sk(sk)->inet_dport = htons(asoc->peer.port);
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001252 sp->pf->to_sk_daddr(sa_addr, sk);
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07001253 sk->sk_err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001254
Xin Long644fbde2018-05-20 16:39:10 +08001255 timeo = sock_sndtimeo(sk, flags & O_NONBLOCK);
Vlad Yasevichf50f95c2007-07-03 12:47:40 -04001256
Marcelo Ricardo Leitner7233bc82016-11-03 17:03:41 -02001257 if (assoc_id)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001258 *assoc_id = asoc->assoc_id;
Richard Haines2277c7c2018-02-13 20:56:24 +00001259
Marcelo Ricardo Leitner7233bc82016-11-03 17:03:41 -02001260 err = sctp_wait_for_connect(asoc, &timeo);
1261 /* Note: the asoc may be freed after the return of
1262 * sctp_wait_for_connect.
1263 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07001264
1265 /* Don't free association on exit. */
1266 asoc = NULL;
1267
1268out_free:
Daniel Borkmannbb333812013-06-28 19:49:40 +02001269 pr_debug("%s: took out_free path with asoc:%p kaddrs:%p err:%d\n",
1270 __func__, asoc, kaddrs, err);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001271
Neil Horman2eebc1e2012-07-16 09:13:51 +00001272 if (asoc) {
1273 /* sctp_primitive_ASSOCIATE may have added this association
1274 * To the hash table, try to unhash it, just in case, its a noop
1275 * if it wasn't hashed so we're safe
1276 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07001277 sctp_association_free(asoc);
Neil Horman2eebc1e2012-07-16 09:13:51 +00001278 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001279 return err;
1280}
1281
1282/* Helper for tunneling sctp_connectx() requests through sctp_setsockopt()
1283 *
1284 * API 8.9
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001285 * int sctp_connectx(int sd, struct sockaddr *addrs, int addrcnt,
1286 * sctp_assoc_t *asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001287 *
1288 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
1289 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
1290 * or IPv6 addresses.
1291 *
1292 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
1293 * Section 3.1.2 for this usage.
1294 *
1295 * addrs is a pointer to an array of one or more socket addresses. Each
1296 * address is contained in its appropriate structure (i.e. struct
1297 * sockaddr_in or struct sockaddr_in6) the family of the address type
1298 * must be used to distengish the address length (note that this
1299 * representation is termed a "packed array" of addresses). The caller
1300 * specifies the number of addresses in the array with addrcnt.
1301 *
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001302 * On success, sctp_connectx() returns 0. It also sets the assoc_id to
1303 * the association id of the new association. On failure, sctp_connectx()
1304 * returns -1, and sets errno to the appropriate error code. The assoc_id
1305 * is not touched by the kernel.
Frank Filz3f7a87d2005-06-20 13:14:57 -07001306 *
1307 * For SCTP, the port given in each socket address must be the same, or
1308 * sctp_connectx() will fail, setting errno to EINVAL.
1309 *
1310 * An application can use sctp_connectx to initiate an association with
1311 * an endpoint that is multi-homed. Much like sctp_bindx() this call
1312 * allows a caller to specify multiple addresses at which a peer can be
1313 * reached. The way the SCTP stack uses the list of addresses to set up
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001314 * the association is implementation dependent. This function only
Frank Filz3f7a87d2005-06-20 13:14:57 -07001315 * specifies that the stack will try to make use of all the addresses in
1316 * the list when needed.
1317 *
1318 * Note that the list of addresses passed in is only used for setting up
1319 * the association. It does not necessarily equal the set of addresses
1320 * the peer uses for the resulting association. If the caller wants to
1321 * find out the set of peer addresses, it must use sctp_getpaddrs() to
1322 * retrieve them after the association has been set up.
1323 *
1324 * Basically do nothing but copying the addresses from user to kernel
1325 * land and invoking either sctp_connectx(). This is used for tunneling
1326 * the sctp_connectx() request through sctp_setsockopt() from userspace.
1327 *
Frank Filz3f7a87d2005-06-20 13:14:57 -07001328 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
1329 * it.
1330 *
1331 * sk The sk of the socket
1332 * addrs The pointer to the addresses in user land
1333 * addrssize Size of the addrs buffer
1334 *
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001335 * Returns >=0 if ok, <0 errno code on error.
Frank Filz3f7a87d2005-06-20 13:14:57 -07001336 */
wangweidong26ac8e52013-12-23 12:16:51 +08001337static int __sctp_setsockopt_connectx(struct sock *sk,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001338 struct sockaddr __user *addrs,
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001339 int addrs_size,
1340 sctp_assoc_t *assoc_id)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001341{
Frank Filz3f7a87d2005-06-20 13:14:57 -07001342 struct sockaddr *kaddrs;
Xin Long644fbde2018-05-20 16:39:10 +08001343 int err = 0, flags = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001344
Daniel Borkmannbb333812013-06-28 19:49:40 +02001345 pr_debug("%s: sk:%p addrs:%p addrs_size:%d\n",
1346 __func__, sk, addrs, addrs_size);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001347
1348 if (unlikely(addrs_size <= 0))
1349 return -EINVAL;
1350
Al Viroc981f252018-01-07 13:19:09 -05001351 kaddrs = vmemdup_user(addrs, addrs_size);
1352 if (unlikely(IS_ERR(kaddrs)))
1353 return PTR_ERR(kaddrs);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001354
Richard Haines2277c7c2018-02-13 20:56:24 +00001355 /* Allow security module to validate connectx addresses. */
1356 err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_CONNECTX,
1357 (struct sockaddr *)kaddrs,
1358 addrs_size);
1359 if (err)
1360 goto out_free;
1361
Xin Long644fbde2018-05-20 16:39:10 +08001362 /* in-kernel sockets don't generally have a file allocated to them
1363 * if all they do is call sock_create_kern().
1364 */
1365 if (sk->sk_socket->file)
1366 flags = sk->sk_socket->file->f_flags;
1367
1368 err = __sctp_connect(sk, kaddrs, addrs_size, flags, assoc_id);
Richard Haines2277c7c2018-02-13 20:56:24 +00001369
1370out_free:
Al Viroc981f252018-01-07 13:19:09 -05001371 kvfree(kaddrs);
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001372
Frank Filz3f7a87d2005-06-20 13:14:57 -07001373 return err;
1374}
1375
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001376/*
1377 * This is an older interface. It's kept for backward compatibility
1378 * to the option that doesn't provide association id.
1379 */
wangweidong26ac8e52013-12-23 12:16:51 +08001380static int sctp_setsockopt_connectx_old(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001381 struct sockaddr __user *addrs,
1382 int addrs_size)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001383{
1384 return __sctp_setsockopt_connectx(sk, addrs, addrs_size, NULL);
1385}
1386
1387/*
1388 * New interface for the API. The since the API is done with a socket
1389 * option, to make it simple we feed back the association id is as a return
1390 * indication to the call. Error is always negative and association id is
1391 * always positive.
1392 */
wangweidong26ac8e52013-12-23 12:16:51 +08001393static int sctp_setsockopt_connectx(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001394 struct sockaddr __user *addrs,
1395 int addrs_size)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001396{
1397 sctp_assoc_t assoc_id = 0;
1398 int err = 0;
1399
1400 err = __sctp_setsockopt_connectx(sk, addrs, addrs_size, &assoc_id);
1401
1402 if (err)
1403 return err;
1404 else
1405 return assoc_id;
1406}
1407
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001408/*
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001409 * New (hopefully final) interface for the API.
1410 * We use the sctp_getaddrs_old structure so that use-space library
Daniel Borkmannffd59392014-02-17 12:11:11 +01001411 * can avoid any unnecessary allocations. The only different part
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001412 * is that we store the actual length of the address buffer into the
Daniel Borkmannffd59392014-02-17 12:11:11 +01001413 * addrs_num structure member. That way we can re-use the existing
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001414 * code.
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001415 */
Daniel Borkmannffd59392014-02-17 12:11:11 +01001416#ifdef CONFIG_COMPAT
1417struct compat_sctp_getaddrs_old {
1418 sctp_assoc_t assoc_id;
1419 s32 addr_num;
1420 compat_uptr_t addrs; /* struct sockaddr * */
1421};
1422#endif
1423
wangweidong26ac8e52013-12-23 12:16:51 +08001424static int sctp_getsockopt_connectx3(struct sock *sk, int len,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001425 char __user *optval,
1426 int __user *optlen)
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001427{
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001428 struct sctp_getaddrs_old param;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001429 sctp_assoc_t assoc_id = 0;
1430 int err = 0;
1431
Daniel Borkmannffd59392014-02-17 12:11:11 +01001432#ifdef CONFIG_COMPAT
Andy Lutomirski96c0e0a2016-03-22 14:25:07 -07001433 if (in_compat_syscall()) {
Daniel Borkmannffd59392014-02-17 12:11:11 +01001434 struct compat_sctp_getaddrs_old param32;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001435
Daniel Borkmannffd59392014-02-17 12:11:11 +01001436 if (len < sizeof(param32))
1437 return -EINVAL;
1438 if (copy_from_user(&param32, optval, sizeof(param32)))
1439 return -EFAULT;
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001440
Daniel Borkmannffd59392014-02-17 12:11:11 +01001441 param.assoc_id = param32.assoc_id;
1442 param.addr_num = param32.addr_num;
1443 param.addrs = compat_ptr(param32.addrs);
1444 } else
1445#endif
1446 {
1447 if (len < sizeof(param))
1448 return -EINVAL;
1449 if (copy_from_user(&param, optval, sizeof(param)))
1450 return -EFAULT;
1451 }
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001452
Daniel Borkmannffd59392014-02-17 12:11:11 +01001453 err = __sctp_setsockopt_connectx(sk, (struct sockaddr __user *)
1454 param.addrs, param.addr_num,
1455 &assoc_id);
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001456 if (err == 0 || err == -EINPROGRESS) {
1457 if (copy_to_user(optval, &assoc_id, sizeof(assoc_id)))
1458 return -EFAULT;
1459 if (put_user(sizeof(assoc_id), optlen))
1460 return -EFAULT;
1461 }
1462
1463 return err;
1464}
1465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466/* API 3.1.4 close() - UDP Style Syntax
1467 * Applications use close() to perform graceful shutdown (as described in
1468 * Section 10.1 of [SCTP]) on ALL the associations currently represented
1469 * by a UDP-style socket.
1470 *
1471 * The syntax is
1472 *
1473 * ret = close(int sd);
1474 *
1475 * sd - the socket descriptor of the associations to be closed.
1476 *
1477 * To gracefully shutdown a specific association represented by the
1478 * UDP-style socket, an application should use the sendmsg() call,
1479 * passing no user data, but including the appropriate flag in the
1480 * ancillary data (see Section xxxx).
1481 *
1482 * If sd in the close() call is a branched-off socket representing only
1483 * one association, the shutdown is performed on that association only.
1484 *
1485 * 4.1.6 close() - TCP Style Syntax
1486 *
1487 * Applications use close() to gracefully close down an association.
1488 *
1489 * The syntax is:
1490 *
1491 * int close(int sd);
1492 *
1493 * sd - the socket descriptor of the association to be closed.
1494 *
1495 * After an application calls close() on a socket descriptor, no further
1496 * socket operations will succeed on that descriptor.
1497 *
1498 * API 7.1.4 SO_LINGER
1499 *
1500 * An application using the TCP-style socket can use this option to
1501 * perform the SCTP ABORT primitive. The linger option structure is:
1502 *
1503 * struct linger {
1504 * int l_onoff; // option on/off
1505 * int l_linger; // linger time
1506 * };
1507 *
1508 * To enable the option, set l_onoff to 1. If the l_linger value is set
1509 * to 0, calling close() is the same as the ABORT primitive. If the
1510 * value is set to a negative value, the setsockopt() call will return
1511 * an error. If the value is set to a positive value linger_time, the
1512 * close() can be blocked for at most linger_time ms. If the graceful
1513 * shutdown phase does not finish during this period, close() will
1514 * return but the graceful shutdown phase continues in the system.
1515 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02001516static void sctp_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001518 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 struct sctp_endpoint *ep;
1520 struct sctp_association *asoc;
1521 struct list_head *pos, *temp;
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001522 unsigned int data_was_unread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Daniel Borkmannbb333812013-06-28 19:49:40 +02001524 pr_debug("%s: sk:%p, timeout:%ld\n", __func__, sk, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Xin Long6dfe4b92017-06-10 14:56:56 +08001526 lock_sock_nested(sk, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 sk->sk_shutdown = SHUTDOWN_MASK;
Yafang Shaocbabf462017-12-20 11:12:54 +08001528 inet_sk_set_state(sk, SCTP_SS_CLOSING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
1530 ep = sctp_sk(sk)->ep;
1531
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001532 /* Clean up any skbs sitting on the receive queue. */
1533 data_was_unread = sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1534 data_was_unread += sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1535
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07001536 /* Walk all associations on an endpoint. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 list_for_each_safe(pos, temp, &ep->asocs) {
1538 asoc = list_entry(pos, struct sctp_association, asocs);
1539
1540 if (sctp_style(sk, TCP)) {
1541 /* A closed association can still be in the list if
1542 * it belongs to a TCP-style listening socket that is
1543 * not yet accepted. If so, free it. If not, send an
1544 * ABORT or SHUTDOWN based on the linger options.
1545 */
1546 if (sctp_state(asoc, CLOSED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 sctp_association_free(asoc);
Vladislav Yasevichb89498a2006-05-19 14:32:06 -07001548 continue;
1549 }
1550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001552 if (data_was_unread || !skb_queue_empty(&asoc->ulpq.lobby) ||
1553 !skb_queue_empty(&asoc->ulpq.reasm) ||
Xin Long13228232017-12-08 21:04:09 +08001554 !skb_queue_empty(&asoc->ulpq.reasm_uo) ||
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001555 (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) {
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001556 struct sctp_chunk *chunk;
1557
1558 chunk = sctp_make_abort_user(asoc, NULL, 0);
Xin Long068d8bd2015-12-29 17:49:25 +08001559 sctp_primitive_ABORT(net, asoc, chunk);
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001560 } else
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001561 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 }
1563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 /* On a TCP-style socket, block for at most linger_time if set. */
1565 if (sctp_style(sk, TCP) && timeout)
1566 sctp_wait_for_close(sk, timeout);
1567
1568 /* This will run the backlog queue. */
wangweidong048ed4b2014-01-21 15:44:11 +08001569 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
1571 /* Supposedly, no process has access to the socket, but
1572 * the net layers still may.
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001573 * Also, sctp_destroy_sock() needs to be called with addr_wq_lock
1574 * held and that should be grabbed before socket lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 */
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001576 spin_lock_bh(&net->sctp.addr_wq_lock);
Xin Long6dfe4b92017-06-10 14:56:56 +08001577 bh_lock_sock_nested(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579 /* Hold the sock, since sk_common_release() will put sock_put()
1580 * and we have just a little more cleanup.
1581 */
1582 sock_hold(sk);
1583 sk_common_release(sk);
1584
wangweidong5bc1d1b2014-01-21 15:44:12 +08001585 bh_unlock_sock(sk);
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001586 spin_unlock_bh(&net->sctp.addr_wq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 sock_put(sk);
1589
1590 SCTP_DBG_OBJCNT_DEC(sock);
1591}
1592
1593/* Handle EPIPE error. */
1594static int sctp_error(struct sock *sk, int flags, int err)
1595{
1596 if (err == -EPIPE)
1597 err = sock_error(sk) ? : -EPIPE;
1598 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1599 send_sig(SIGPIPE, current, 0);
1600 return err;
1601}
1602
1603/* API 3.1.3 sendmsg() - UDP Style Syntax
1604 *
1605 * An application uses sendmsg() and recvmsg() calls to transmit data to
1606 * and receive data from its peer.
1607 *
1608 * ssize_t sendmsg(int socket, const struct msghdr *message,
1609 * int flags);
1610 *
1611 * socket - the socket descriptor of the endpoint.
1612 * message - pointer to the msghdr structure which contains a single
1613 * user message and possibly some ancillary data.
1614 *
1615 * See Section 5 for complete description of the data
1616 * structures.
1617 *
1618 * flags - flags sent or received with the user message, see Section
1619 * 5 for complete description of the flags.
1620 *
1621 * Note: This function could use a rewrite especially when explicit
1622 * connect support comes in.
1623 */
1624/* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */
1625
Xin Longa05437a2017-08-11 10:23:48 +08001626static int sctp_msghdr_parse(const struct msghdr *msg,
1627 struct sctp_cmsgs *cmsgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Xin Long204f8172018-03-01 23:05:14 +08001629static int sctp_sendmsg_parse(struct sock *sk, struct sctp_cmsgs *cmsgs,
1630 struct sctp_sndrcvinfo *srinfo,
1631 const struct msghdr *msg, size_t msg_len)
1632{
1633 __u16 sflags;
1634 int err;
1635
1636 if (sctp_sstate(sk, LISTENING) && sctp_style(sk, TCP))
1637 return -EPIPE;
1638
1639 if (msg_len > sk->sk_sndbuf)
1640 return -EMSGSIZE;
1641
1642 memset(cmsgs, 0, sizeof(*cmsgs));
1643 err = sctp_msghdr_parse(msg, cmsgs);
1644 if (err) {
1645 pr_debug("%s: msghdr parse err:%x\n", __func__, err);
1646 return err;
1647 }
1648
1649 memset(srinfo, 0, sizeof(*srinfo));
1650 if (cmsgs->srinfo) {
1651 srinfo->sinfo_stream = cmsgs->srinfo->sinfo_stream;
1652 srinfo->sinfo_flags = cmsgs->srinfo->sinfo_flags;
1653 srinfo->sinfo_ppid = cmsgs->srinfo->sinfo_ppid;
1654 srinfo->sinfo_context = cmsgs->srinfo->sinfo_context;
1655 srinfo->sinfo_assoc_id = cmsgs->srinfo->sinfo_assoc_id;
1656 srinfo->sinfo_timetolive = cmsgs->srinfo->sinfo_timetolive;
1657 }
1658
1659 if (cmsgs->sinfo) {
1660 srinfo->sinfo_stream = cmsgs->sinfo->snd_sid;
1661 srinfo->sinfo_flags = cmsgs->sinfo->snd_flags;
1662 srinfo->sinfo_ppid = cmsgs->sinfo->snd_ppid;
1663 srinfo->sinfo_context = cmsgs->sinfo->snd_context;
1664 srinfo->sinfo_assoc_id = cmsgs->sinfo->snd_assoc_id;
1665 }
1666
Xin Longed63afb2018-03-05 20:44:18 +08001667 if (cmsgs->prinfo) {
1668 srinfo->sinfo_timetolive = cmsgs->prinfo->pr_value;
1669 SCTP_PR_SET_POLICY(srinfo->sinfo_flags,
1670 cmsgs->prinfo->pr_policy);
1671 }
1672
Xin Long204f8172018-03-01 23:05:14 +08001673 sflags = srinfo->sinfo_flags;
1674 if (!sflags && msg_len)
1675 return 0;
1676
1677 if (sctp_style(sk, TCP) && (sflags & (SCTP_EOF | SCTP_ABORT)))
1678 return -EINVAL;
1679
1680 if (((sflags & SCTP_EOF) && msg_len > 0) ||
1681 (!(sflags & (SCTP_EOF | SCTP_ABORT)) && msg_len == 0))
1682 return -EINVAL;
1683
1684 if ((sflags & SCTP_ADDR_OVER) && !msg->msg_name)
1685 return -EINVAL;
1686
1687 return 0;
1688}
1689
Xin Long2bfd80f2018-03-01 23:05:11 +08001690static int sctp_sendmsg_new_asoc(struct sock *sk, __u16 sflags,
1691 struct sctp_cmsgs *cmsgs,
1692 union sctp_addr *daddr,
1693 struct sctp_transport **tp)
1694{
1695 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
1696 struct net *net = sock_net(sk);
1697 struct sctp_association *asoc;
1698 enum sctp_scope scope;
Xin Long2c0dbaa2018-03-05 20:44:19 +08001699 struct cmsghdr *cmsg;
Linus Torvalds9eda2d22018-04-06 15:39:26 -07001700 struct sctp_af *af;
Wei Yongjund98985d2018-03-13 03:03:30 +00001701 int err;
Xin Long2bfd80f2018-03-01 23:05:11 +08001702
1703 *tp = NULL;
1704
1705 if (sflags & (SCTP_EOF | SCTP_ABORT))
1706 return -EINVAL;
1707
1708 if (sctp_style(sk, TCP) && (sctp_sstate(sk, ESTABLISHED) ||
1709 sctp_sstate(sk, CLOSING)))
1710 return -EADDRNOTAVAIL;
1711
1712 if (sctp_endpoint_is_peeled_off(ep, daddr))
1713 return -EADDRNOTAVAIL;
1714
1715 if (!ep->base.bind_addr.port) {
1716 if (sctp_autobind(sk))
1717 return -EAGAIN;
1718 } else {
1719 if (ep->base.bind_addr.port < inet_prot_sock(net) &&
1720 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
1721 return -EACCES;
1722 }
1723
1724 scope = sctp_scope(daddr);
1725
Linus Torvalds9eda2d22018-04-06 15:39:26 -07001726 /* Label connection socket for first association 1-to-many
1727 * style for client sequence socket()->sendmsg(). This
1728 * needs to be done before sctp_assoc_add_peer() as that will
1729 * set up the initial packet that needs to account for any
1730 * security ip options (CIPSO/CALIPSO) added to the packet.
1731 */
1732 af = sctp_get_af_specific(daddr->sa.sa_family);
1733 if (!af)
1734 return -EINVAL;
1735 err = security_sctp_bind_connect(sk, SCTP_SENDMSG_CONNECT,
1736 (struct sockaddr *)daddr,
1737 af->sockaddr_len);
1738 if (err < 0)
1739 return err;
1740
Xin Long2bfd80f2018-03-01 23:05:11 +08001741 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1742 if (!asoc)
1743 return -ENOMEM;
1744
1745 if (sctp_assoc_set_bind_addr_from_ep(asoc, scope, GFP_KERNEL) < 0) {
1746 err = -ENOMEM;
1747 goto free;
1748 }
1749
1750 if (cmsgs->init) {
1751 struct sctp_initmsg *init = cmsgs->init;
1752
1753 if (init->sinit_num_ostreams) {
1754 __u16 outcnt = init->sinit_num_ostreams;
1755
1756 asoc->c.sinit_num_ostreams = outcnt;
1757 /* outcnt has been changed, need to re-init stream */
1758 err = sctp_stream_init(&asoc->stream, outcnt, 0,
1759 GFP_KERNEL);
1760 if (err)
1761 goto free;
1762 }
1763
1764 if (init->sinit_max_instreams)
1765 asoc->c.sinit_max_instreams = init->sinit_max_instreams;
1766
1767 if (init->sinit_max_attempts)
1768 asoc->max_init_attempts = init->sinit_max_attempts;
1769
1770 if (init->sinit_max_init_timeo)
1771 asoc->max_init_timeo =
1772 msecs_to_jiffies(init->sinit_max_init_timeo);
1773 }
1774
1775 *tp = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL, SCTP_UNKNOWN);
1776 if (!*tp) {
1777 err = -ENOMEM;
1778 goto free;
1779 }
1780
Xin Long2c0dbaa2018-03-05 20:44:19 +08001781 if (!cmsgs->addrs_msg)
1782 return 0;
1783
1784 /* sendv addr list parse */
1785 for_each_cmsghdr(cmsg, cmsgs->addrs_msg) {
1786 struct sctp_transport *transport;
1787 struct sctp_association *old;
1788 union sctp_addr _daddr;
1789 int dlen;
1790
1791 if (cmsg->cmsg_level != IPPROTO_SCTP ||
1792 (cmsg->cmsg_type != SCTP_DSTADDRV4 &&
1793 cmsg->cmsg_type != SCTP_DSTADDRV6))
1794 continue;
1795
1796 daddr = &_daddr;
1797 memset(daddr, 0, sizeof(*daddr));
1798 dlen = cmsg->cmsg_len - sizeof(struct cmsghdr);
1799 if (cmsg->cmsg_type == SCTP_DSTADDRV4) {
Wei Yongjund98985d2018-03-13 03:03:30 +00001800 if (dlen < sizeof(struct in_addr)) {
1801 err = -EINVAL;
Xin Long2c0dbaa2018-03-05 20:44:19 +08001802 goto free;
Wei Yongjund98985d2018-03-13 03:03:30 +00001803 }
Xin Long2c0dbaa2018-03-05 20:44:19 +08001804
1805 dlen = sizeof(struct in_addr);
1806 daddr->v4.sin_family = AF_INET;
1807 daddr->v4.sin_port = htons(asoc->peer.port);
1808 memcpy(&daddr->v4.sin_addr, CMSG_DATA(cmsg), dlen);
1809 } else {
Wei Yongjund98985d2018-03-13 03:03:30 +00001810 if (dlen < sizeof(struct in6_addr)) {
1811 err = -EINVAL;
Xin Long2c0dbaa2018-03-05 20:44:19 +08001812 goto free;
Wei Yongjund98985d2018-03-13 03:03:30 +00001813 }
Xin Long2c0dbaa2018-03-05 20:44:19 +08001814
1815 dlen = sizeof(struct in6_addr);
1816 daddr->v6.sin6_family = AF_INET6;
1817 daddr->v6.sin6_port = htons(asoc->peer.port);
1818 memcpy(&daddr->v6.sin6_addr, CMSG_DATA(cmsg), dlen);
1819 }
1820 err = sctp_verify_addr(sk, daddr, sizeof(*daddr));
1821 if (err)
1822 goto free;
1823
1824 old = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
1825 if (old && old != asoc) {
1826 if (old->state >= SCTP_STATE_ESTABLISHED)
1827 err = -EISCONN;
1828 else
1829 err = -EALREADY;
1830 goto free;
1831 }
1832
1833 if (sctp_endpoint_is_peeled_off(ep, daddr)) {
1834 err = -EADDRNOTAVAIL;
1835 goto free;
1836 }
1837
1838 transport = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL,
1839 SCTP_UNKNOWN);
1840 if (!transport) {
1841 err = -ENOMEM;
1842 goto free;
1843 }
1844 }
1845
Xin Long2bfd80f2018-03-01 23:05:11 +08001846 return 0;
1847
1848free:
1849 sctp_association_free(asoc);
1850 return err;
1851}
1852
Xin Longc2666de2018-03-01 23:05:12 +08001853static int sctp_sendmsg_check_sflags(struct sctp_association *asoc,
1854 __u16 sflags, struct msghdr *msg,
1855 size_t msg_len)
1856{
1857 struct sock *sk = asoc->base.sk;
1858 struct net *net = sock_net(sk);
1859
1860 if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP))
1861 return -EPIPE;
1862
Xin Long49102802018-03-05 20:44:20 +08001863 if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP) &&
1864 !sctp_state(asoc, ESTABLISHED))
1865 return 0;
1866
Xin Longc2666de2018-03-01 23:05:12 +08001867 if (sflags & SCTP_EOF) {
1868 pr_debug("%s: shutting down association:%p\n", __func__, asoc);
1869 sctp_primitive_SHUTDOWN(net, asoc, NULL);
1870
1871 return 0;
1872 }
1873
1874 if (sflags & SCTP_ABORT) {
1875 struct sctp_chunk *chunk;
1876
1877 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1878 if (!chunk)
1879 return -ENOMEM;
1880
1881 pr_debug("%s: aborting association:%p\n", __func__, asoc);
1882 sctp_primitive_ABORT(net, asoc, chunk);
1883
1884 return 0;
1885 }
1886
1887 return 1;
1888}
1889
Xin Longf84af332018-03-01 23:05:10 +08001890static int sctp_sendmsg_to_asoc(struct sctp_association *asoc,
1891 struct msghdr *msg, size_t msg_len,
1892 struct sctp_transport *transport,
1893 struct sctp_sndrcvinfo *sinfo)
1894{
1895 struct sock *sk = asoc->base.sk;
Marcelo Ricardo Leitner63d01332018-04-26 16:59:00 -03001896 struct sctp_sock *sp = sctp_sk(sk);
Xin Longf84af332018-03-01 23:05:10 +08001897 struct net *net = sock_net(sk);
1898 struct sctp_datamsg *datamsg;
1899 bool wait_connect = false;
1900 struct sctp_chunk *chunk;
1901 long timeo;
1902 int err;
1903
1904 if (sinfo->sinfo_stream >= asoc->stream.outcnt) {
1905 err = -EINVAL;
1906 goto err;
1907 }
1908
1909 if (unlikely(!asoc->stream.out[sinfo->sinfo_stream].ext)) {
1910 err = sctp_stream_init_ext(&asoc->stream, sinfo->sinfo_stream);
1911 if (err)
1912 goto err;
1913 }
1914
Marcelo Ricardo Leitner63d01332018-04-26 16:59:00 -03001915 if (sp->disable_fragments && msg_len > asoc->frag_point) {
Xin Longf84af332018-03-01 23:05:10 +08001916 err = -EMSGSIZE;
1917 goto err;
1918 }
1919
Marcelo Ricardo Leitner25216802018-04-26 16:58:56 -03001920 if (asoc->pmtu_pending) {
Marcelo Ricardo Leitner63d01332018-04-26 16:59:00 -03001921 if (sp->param_flags & SPP_PMTUD_ENABLE)
1922 sctp_assoc_sync_pmtu(asoc);
Marcelo Ricardo Leitner25216802018-04-26 16:58:56 -03001923 asoc->pmtu_pending = 0;
1924 }
Neil Horman0aee4c22018-03-12 14:15:25 -04001925
1926 if (sctp_wspace(asoc) < msg_len)
1927 sctp_prsctp_prune(asoc, sinfo, msg_len - sctp_wspace(asoc));
1928
1929 if (!sctp_wspace(asoc)) {
1930 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1931 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1932 if (err)
1933 goto err;
1934 }
1935
Xin Longf84af332018-03-01 23:05:10 +08001936 if (sctp_state(asoc, CLOSED)) {
1937 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
1938 if (err)
1939 goto err;
1940
Marcelo Ricardo Leitner63d01332018-04-26 16:59:00 -03001941 if (sp->strm_interleave) {
Xin Longf84af332018-03-01 23:05:10 +08001942 timeo = sock_sndtimeo(sk, 0);
1943 err = sctp_wait_for_connect(asoc, &timeo);
1944 if (err)
1945 goto err;
1946 } else {
1947 wait_connect = true;
1948 }
1949
1950 pr_debug("%s: we associated primitively\n", __func__);
1951 }
1952
Xin Longf84af332018-03-01 23:05:10 +08001953 datamsg = sctp_datamsg_from_user(asoc, sinfo, &msg->msg_iter);
1954 if (IS_ERR(datamsg)) {
1955 err = PTR_ERR(datamsg);
1956 goto err;
1957 }
1958
1959 asoc->force_delay = !!(msg->msg_flags & MSG_MORE);
1960
1961 list_for_each_entry(chunk, &datamsg->chunks, frag_list) {
1962 sctp_chunk_hold(chunk);
1963 sctp_set_owner_w(chunk);
1964 chunk->transport = transport;
1965 }
1966
1967 err = sctp_primitive_SEND(net, asoc, datamsg);
1968 if (err) {
1969 sctp_datamsg_free(datamsg);
1970 goto err;
1971 }
1972
1973 pr_debug("%s: we sent primitively\n", __func__);
1974
1975 sctp_datamsg_put(datamsg);
1976
1977 if (unlikely(wait_connect)) {
1978 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1979 sctp_wait_for_connect(asoc, &timeo);
1980 }
1981
1982 err = msg_len;
1983
1984err:
1985 return err;
1986}
1987
Xin Longbecef9b2018-03-01 23:05:13 +08001988static union sctp_addr *sctp_sendmsg_get_daddr(struct sock *sk,
1989 const struct msghdr *msg,
1990 struct sctp_cmsgs *cmsgs)
1991{
1992 union sctp_addr *daddr = NULL;
1993 int err;
1994
1995 if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
1996 int len = msg->msg_namelen;
1997
1998 if (len > sizeof(*daddr))
1999 len = sizeof(*daddr);
2000
2001 daddr = (union sctp_addr *)msg->msg_name;
2002
2003 err = sctp_verify_addr(sk, daddr, len);
2004 if (err)
2005 return ERR_PTR(err);
2006 }
2007
2008 return daddr;
2009}
2010
Xin Longd42cb062018-03-01 23:05:15 +08002011static void sctp_sendmsg_update_sinfo(struct sctp_association *asoc,
2012 struct sctp_sndrcvinfo *sinfo,
2013 struct sctp_cmsgs *cmsgs)
2014{
2015 if (!cmsgs->srinfo && !cmsgs->sinfo) {
2016 sinfo->sinfo_stream = asoc->default_stream;
2017 sinfo->sinfo_ppid = asoc->default_ppid;
2018 sinfo->sinfo_context = asoc->default_context;
2019 sinfo->sinfo_assoc_id = sctp_assoc2id(asoc);
Xin Longed63afb2018-03-05 20:44:18 +08002020
2021 if (!cmsgs->prinfo)
2022 sinfo->sinfo_flags = asoc->default_flags;
Xin Longd42cb062018-03-01 23:05:15 +08002023 }
2024
Xin Longed63afb2018-03-05 20:44:18 +08002025 if (!cmsgs->srinfo && !cmsgs->prinfo)
Xin Longd42cb062018-03-01 23:05:15 +08002026 sinfo->sinfo_timetolive = asoc->default_timetolive;
Xin Long3ff547c2018-03-14 19:05:31 +08002027
2028 if (cmsgs->authinfo) {
2029 /* Reuse sinfo_tsn to indicate that authinfo was set and
2030 * sinfo_ssn to save the keyid on tx path.
2031 */
2032 sinfo->sinfo_tsn = 1;
2033 sinfo->sinfo_ssn = cmsgs->authinfo->auth_keynumber;
2034 }
Xin Longd42cb062018-03-01 23:05:15 +08002035}
2036
Ying Xue1b784142015-03-02 15:37:48 +08002037static int sctp_sendmsg(struct sock *sk, struct msghdr *msg, size_t msg_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038{
Xin Long204f8172018-03-01 23:05:14 +08002039 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Xin Long8e87c6e2018-03-01 23:05:16 +08002040 struct sctp_transport *transport = NULL;
Xin Long204f8172018-03-01 23:05:14 +08002041 struct sctp_sndrcvinfo _sinfo, *sinfo;
Xin Long007b7e12018-03-01 23:05:17 +08002042 struct sctp_association *asoc;
2043 struct sctp_cmsgs cmsgs;
Xin Longbecef9b2018-03-01 23:05:13 +08002044 union sctp_addr *daddr;
Xin Long007b7e12018-03-01 23:05:17 +08002045 bool new = false;
2046 __u16 sflags;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02002047 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
Xin Long204f8172018-03-01 23:05:14 +08002049 /* Parse and get snd_info */
2050 err = sctp_sendmsg_parse(sk, &cmsgs, &_sinfo, msg, msg_len);
2051 if (err)
Xin Long007b7e12018-03-01 23:05:17 +08002052 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Xin Long204f8172018-03-01 23:05:14 +08002054 sinfo = &_sinfo;
Xin Long007b7e12018-03-01 23:05:17 +08002055 sflags = sinfo->sinfo_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Xin Longbecef9b2018-03-01 23:05:13 +08002057 /* Get daddr from msg */
2058 daddr = sctp_sendmsg_get_daddr(sk, msg, &cmsgs);
2059 if (IS_ERR(daddr)) {
2060 err = PTR_ERR(daddr);
Xin Long007b7e12018-03-01 23:05:17 +08002061 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 }
2063
wangweidong048ed4b2014-01-21 15:44:11 +08002064 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Xin Long49102802018-03-05 20:44:20 +08002066 /* SCTP_SENDALL process */
2067 if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP)) {
2068 list_for_each_entry(asoc, &ep->asocs, asocs) {
2069 err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
2070 msg_len);
2071 if (err == 0)
2072 continue;
2073 if (err < 0)
2074 goto out_unlock;
2075
2076 sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
2077
2078 err = sctp_sendmsg_to_asoc(asoc, msg, msg_len,
2079 NULL, sinfo);
2080 if (err < 0)
2081 goto out_unlock;
2082
2083 iov_iter_revert(&msg->msg_iter, err);
2084 }
2085
2086 goto out_unlock;
2087 }
2088
Xin Long0a3920d2018-03-01 23:05:18 +08002089 /* Get and check or create asoc */
Xin Longbecef9b2018-03-01 23:05:13 +08002090 if (daddr) {
Xin Longbecef9b2018-03-01 23:05:13 +08002091 asoc = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
Xin Long0a3920d2018-03-01 23:05:18 +08002092 if (asoc) {
2093 err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
2094 msg_len);
2095 if (err <= 0)
2096 goto out_unlock;
2097 } else {
2098 err = sctp_sendmsg_new_asoc(sk, sflags, &cmsgs, daddr,
2099 &transport);
2100 if (err)
2101 goto out_unlock;
2102
2103 asoc = transport->asoc;
2104 new = true;
2105 }
2106
2107 if (!sctp_style(sk, TCP) && !(sflags & SCTP_ADDR_OVER))
2108 transport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 } else {
Xin Long007b7e12018-03-01 23:05:17 +08002110 asoc = sctp_id2assoc(sk, sinfo->sinfo_assoc_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 if (!asoc) {
2112 err = -EPIPE;
2113 goto out_unlock;
2114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
Xin Long007b7e12018-03-01 23:05:17 +08002116 err = sctp_sendmsg_check_sflags(asoc, sflags, msg, msg_len);
Xin Longc2666de2018-03-01 23:05:12 +08002117 if (err <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 }
2120
Xin Longd42cb062018-03-01 23:05:15 +08002121 /* Update snd_info with the asoc */
2122 sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Xin Longf84af332018-03-01 23:05:10 +08002124 /* Send msg to the asoc */
Xin Long8e87c6e2018-03-01 23:05:16 +08002125 err = sctp_sendmsg_to_asoc(asoc, msg, msg_len, transport, sinfo);
Xin Long007b7e12018-03-01 23:05:17 +08002126 if (err < 0 && err != -ESRCH && new)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 sctp_association_free(asoc);
Xin Long8e87c6e2018-03-01 23:05:16 +08002128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129out_unlock:
wangweidong048ed4b2014-01-21 15:44:11 +08002130 release_sock(sk);
Xin Long007b7e12018-03-01 23:05:17 +08002131out:
Xin Longf84af332018-03-01 23:05:10 +08002132 return sctp_error(sk, msg->msg_flags, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133}
2134
2135/* This is an extended version of skb_pull() that removes the data from the
2136 * start of a skb even when data is spread across the list of skb's in the
2137 * frag_list. len specifies the total amount of data that needs to be removed.
2138 * when 'len' bytes could be removed from the skb, it returns 0.
2139 * If 'len' exceeds the total skb length, it returns the no. of bytes that
2140 * could not be removed.
2141 */
2142static int sctp_skb_pull(struct sk_buff *skb, int len)
2143{
2144 struct sk_buff *list;
2145 int skb_len = skb_headlen(skb);
2146 int rlen;
2147
2148 if (len <= skb_len) {
2149 __skb_pull(skb, len);
2150 return 0;
2151 }
2152 len -= skb_len;
2153 __skb_pull(skb, skb_len);
2154
David S. Miller1b003be2009-06-09 00:22:35 -07002155 skb_walk_frags(skb, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 rlen = sctp_skb_pull(list, len);
2157 skb->len -= (len-rlen);
2158 skb->data_len -= (len-rlen);
2159
2160 if (!rlen)
2161 return 0;
2162
2163 len = rlen;
2164 }
2165
2166 return len;
2167}
2168
2169/* API 3.1.3 recvmsg() - UDP Style Syntax
2170 *
2171 * ssize_t recvmsg(int socket, struct msghdr *message,
2172 * int flags);
2173 *
2174 * socket - the socket descriptor of the endpoint.
2175 * message - pointer to the msghdr structure which contains a single
2176 * user message and possibly some ancillary data.
2177 *
2178 * See Section 5 for complete description of the data
2179 * structures.
2180 *
2181 * flags - flags sent or received with the user message, see Section
2182 * 5 for complete description of the flags.
2183 */
Ying Xue1b784142015-03-02 15:37:48 +08002184static int sctp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
2185 int noblock, int flags, int *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186{
2187 struct sctp_ulpevent *event = NULL;
2188 struct sctp_sock *sp = sctp_sk(sk);
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002189 struct sk_buff *skb, *head_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 int copied;
2191 int err = 0;
2192 int skb_len;
2193
Daniel Borkmannbb333812013-06-28 19:49:40 +02002194 pr_debug("%s: sk:%p, msghdr:%p, len:%zd, noblock:%d, flags:0x%x, "
2195 "addr_len:%p)\n", __func__, sk, msg, len, noblock, flags,
2196 addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
wangweidong048ed4b2014-01-21 15:44:11 +08002198 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -03002200 if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED) &&
Xin Longe0878692016-07-30 14:14:41 +08002201 !sctp_sstate(sk, CLOSING) && !sctp_sstate(sk, CLOSED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 err = -ENOTCONN;
2203 goto out;
2204 }
2205
2206 skb = sctp_skb_recv_datagram(sk, flags, noblock, &err);
2207 if (!skb)
2208 goto out;
2209
2210 /* Get the total length of the skb including any skb's in the
2211 * frag_list.
2212 */
2213 skb_len = skb->len;
2214
2215 copied = skb_len;
2216 if (copied > len)
2217 copied = len;
2218
David S. Miller51f3d022014-11-05 16:46:40 -05002219 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
2221 event = sctp_skb2event(skb);
2222
2223 if (err)
2224 goto out_free;
2225
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002226 if (event->chunk && event->chunk->head_skb)
2227 head_skb = event->chunk->head_skb;
2228 else
2229 head_skb = skb;
2230 sock_recv_ts_and_drops(msg, sk, head_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 if (sctp_ulpevent_is_notification(event)) {
2232 msg->msg_flags |= MSG_NOTIFICATION;
2233 sp->pf->event_msgname(event, msg->msg_name, addr_len);
2234 } else {
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002235 sp->pf->skb_msgname(head_skb, msg->msg_name, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 }
2237
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02002238 /* Check if we allow SCTP_NXTINFO. */
2239 if (sp->recvnxtinfo)
2240 sctp_ulpevent_read_nxtinfo(event, msg, sk);
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02002241 /* Check if we allow SCTP_RCVINFO. */
2242 if (sp->recvrcvinfo)
2243 sctp_ulpevent_read_rcvinfo(event, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 /* Check if we allow SCTP_SNDRCVINFO. */
2245 if (sp->subscribe.sctp_data_io_event)
2246 sctp_ulpevent_read_sndrcvinfo(event, msg);
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02002247
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 err = copied;
2249
2250 /* If skb's length exceeds the user's buffer, update the skb and
2251 * push it back to the receive_queue so that the next call to
2252 * recvmsg() will return the remaining data. Don't set MSG_EOR.
2253 */
2254 if (skb_len > copied) {
2255 msg->msg_flags &= ~MSG_EOR;
2256 if (flags & MSG_PEEK)
2257 goto out_free;
2258 sctp_skb_pull(skb, copied);
2259 skb_queue_head(&sk->sk_receive_queue, skb);
2260
Daniel Borkmann362d5202014-04-14 21:45:17 +02002261 /* When only partial message is copied to the user, increase
2262 * rwnd by that amount. If all the data in the skb is read,
2263 * rwnd is updated when the event is freed.
2264 */
2265 if (!sctp_ulpevent_is_notification(event))
2266 sctp_assoc_rwnd_increase(event->asoc, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 goto out;
2268 } else if ((event->msg_flags & MSG_NOTIFICATION) ||
2269 (event->msg_flags & MSG_EOR))
2270 msg->msg_flags |= MSG_EOR;
2271 else
2272 msg->msg_flags &= ~MSG_EOR;
2273
2274out_free:
2275 if (flags & MSG_PEEK) {
2276 /* Release the skb reference acquired after peeking the skb in
2277 * sctp_skb_recv_datagram().
2278 */
2279 kfree_skb(skb);
2280 } else {
2281 /* Free the event which includes releasing the reference to
2282 * the owner of the skb, freeing the skb and updating the
2283 * rwnd.
2284 */
2285 sctp_ulpevent_free(event);
2286 }
2287out:
wangweidong048ed4b2014-01-21 15:44:11 +08002288 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 return err;
2290}
2291
2292/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
2293 *
2294 * This option is a on/off flag. If enabled no SCTP message
2295 * fragmentation will be performed. Instead if a message being sent
2296 * exceeds the current PMTU size, the message will NOT be sent and
2297 * instead a error will be indicated to the user.
2298 */
2299static int sctp_setsockopt_disable_fragments(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002300 char __user *optval,
2301 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302{
2303 int val;
2304
2305 if (optlen < sizeof(int))
2306 return -EINVAL;
2307
2308 if (get_user(val, (int __user *)optval))
2309 return -EFAULT;
2310
2311 sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1;
2312
2313 return 0;
2314}
2315
2316static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002317 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318{
Wei Yongjun94912302011-07-02 09:28:04 +00002319 struct sctp_association *asoc;
2320 struct sctp_ulpevent *event;
2321
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05002322 if (optlen > sizeof(struct sctp_event_subscribe))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 return -EINVAL;
2324 if (copy_from_user(&sctp_sk(sk)->subscribe, optval, optlen))
2325 return -EFAULT;
Wei Yongjun94912302011-07-02 09:28:04 +00002326
Daniel Borkmannbbbea412014-07-12 20:30:40 +02002327 /* At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT,
Wei Yongjun94912302011-07-02 09:28:04 +00002328 * if there is no data to be sent or retransmit, the stack will
2329 * immediately send up this notification.
2330 */
2331 if (sctp_ulpevent_type_enabled(SCTP_SENDER_DRY_EVENT,
2332 &sctp_sk(sk)->subscribe)) {
2333 asoc = sctp_id2assoc(sk, 0);
2334
2335 if (asoc && sctp_outq_is_empty(&asoc->outqueue)) {
2336 event = sctp_ulpevent_make_sender_dry_event(asoc,
Marcelo Ricardo Leitner2e83acb2018-01-08 19:02:27 -02002337 GFP_USER | __GFP_NOWARN);
Wei Yongjun94912302011-07-02 09:28:04 +00002338 if (!event)
2339 return -ENOMEM;
2340
Xin Long9162e0e2017-12-08 21:04:05 +08002341 asoc->stream.si->enqueue_event(&asoc->ulpq, event);
Wei Yongjun94912302011-07-02 09:28:04 +00002342 }
2343 }
2344
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 return 0;
2346}
2347
2348/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
2349 *
2350 * This socket option is applicable to the UDP-style socket only. When
2351 * set it will cause associations that are idle for more than the
2352 * specified number of seconds to automatically close. An association
2353 * being idle is defined an association that has NOT sent or received
2354 * user data. The special value of '0' indicates that no automatic
2355 * close of any associations should be performed. The option expects an
2356 * integer defining the number of seconds of idle time before an
2357 * association is closed.
2358 */
2359static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002360 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361{
2362 struct sctp_sock *sp = sctp_sk(sk);
Neil Horman9f70f462013-12-10 06:48:15 -05002363 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
2365 /* Applicable to UDP-style socket only */
2366 if (sctp_style(sk, TCP))
2367 return -EOPNOTSUPP;
2368 if (optlen != sizeof(int))
2369 return -EINVAL;
2370 if (copy_from_user(&sp->autoclose, optval, optlen))
2371 return -EFAULT;
2372
Neil Horman9f70f462013-12-10 06:48:15 -05002373 if (sp->autoclose > net->sctp.max_autoclose)
2374 sp->autoclose = net->sctp.max_autoclose;
2375
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 return 0;
2377}
2378
2379/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
2380 *
2381 * Applications can enable or disable heartbeats for any peer address of
2382 * an association, modify an address's heartbeat interval, force a
2383 * heartbeat to be sent immediately, and adjust the address's maximum
2384 * number of retransmissions sent before an address is considered
2385 * unreachable. The following structure is used to access and modify an
2386 * address's parameters:
2387 *
2388 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002389 * sctp_assoc_t spp_assoc_id;
2390 * struct sockaddr_storage spp_address;
2391 * uint32_t spp_hbinterval;
2392 * uint16_t spp_pathmaxrxt;
2393 * uint32_t spp_pathmtu;
2394 * uint32_t spp_sackdelay;
2395 * uint32_t spp_flags;
Xin Long0b0dce72018-07-02 18:21:13 +08002396 * uint32_t spp_ipv6_flowlabel;
2397 * uint8_t spp_dscp;
Frank Filz52ccb8e2005-12-22 11:36:46 -08002398 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002400 * spp_assoc_id - (one-to-many style socket) This is filled in the
2401 * application, and identifies the association for
2402 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 * spp_address - This specifies which address is of interest.
2404 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08002405 * in milliseconds. If a value of zero
2406 * is present in this field then no changes are to
2407 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 * spp_pathmaxrxt - This contains the maximum number of
2409 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08002410 * considered unreachable. If a value of zero
2411 * is present in this field then no changes are to
2412 * be made to this parameter.
2413 * spp_pathmtu - When Path MTU discovery is disabled the value
2414 * specified here will be the "fixed" path mtu.
2415 * Note that if the spp_address field is empty
2416 * then all associations on this address will
2417 * have this fixed path mtu set upon them.
2418 *
2419 * spp_sackdelay - When delayed sack is enabled, this value specifies
2420 * the number of milliseconds that sacks will be delayed
2421 * for. This value will apply to all addresses of an
2422 * association if the spp_address field is empty. Note
2423 * also, that if delayed sack is enabled and this
2424 * value is set to 0, no change is made to the last
2425 * recorded delayed sack timer value.
2426 *
2427 * spp_flags - These flags are used to control various features
2428 * on an association. The flag field may contain
2429 * zero or more of the following options.
2430 *
2431 * SPP_HB_ENABLE - Enable heartbeats on the
2432 * specified address. Note that if the address
2433 * field is empty all addresses for the association
2434 * have heartbeats enabled upon them.
2435 *
2436 * SPP_HB_DISABLE - Disable heartbeats on the
2437 * speicifed address. Note that if the address
2438 * field is empty all addresses for the association
2439 * will have their heartbeats disabled. Note also
2440 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
2441 * mutually exclusive, only one of these two should
2442 * be specified. Enabling both fields will have
2443 * undetermined results.
2444 *
2445 * SPP_HB_DEMAND - Request a user initiated heartbeat
2446 * to be made immediately.
2447 *
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002448 * SPP_HB_TIME_IS_ZERO - Specify's that the time for
2449 * heartbeat delayis to be set to the value of 0
2450 * milliseconds.
2451 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002452 * SPP_PMTUD_ENABLE - This field will enable PMTU
2453 * discovery upon the specified address. Note that
2454 * if the address feild is empty then all addresses
2455 * on the association are effected.
2456 *
2457 * SPP_PMTUD_DISABLE - This field will disable PMTU
2458 * discovery upon the specified address. Note that
2459 * if the address feild is empty then all addresses
2460 * on the association are effected. Not also that
2461 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2462 * exclusive. Enabling both will have undetermined
2463 * results.
2464 *
2465 * SPP_SACKDELAY_ENABLE - Setting this flag turns
2466 * on delayed sack. The time specified in spp_sackdelay
2467 * is used to specify the sack delay for this address. Note
2468 * that if spp_address is empty then all addresses will
2469 * enable delayed sack and take on the sack delay
2470 * value specified in spp_sackdelay.
2471 * SPP_SACKDELAY_DISABLE - Setting this flag turns
2472 * off delayed sack. If the spp_address field is blank then
2473 * delayed sack is disabled for the entire association. Note
2474 * also that this field is mutually exclusive to
2475 * SPP_SACKDELAY_ENABLE, setting both will have undefined
2476 * results.
Xin Long0b0dce72018-07-02 18:21:13 +08002477 *
2478 * SPP_IPV6_FLOWLABEL: Setting this flag enables the
2479 * setting of the IPV6 flow label value. The value is
2480 * contained in the spp_ipv6_flowlabel field.
2481 * Upon retrieval, this flag will be set to indicate that
2482 * the spp_ipv6_flowlabel field has a valid value returned.
2483 * If a specific destination address is set (in the
2484 * spp_address field), then the value returned is that of
2485 * the address. If just an association is specified (and
2486 * no address), then the association's default flow label
2487 * is returned. If neither an association nor a destination
2488 * is specified, then the socket's default flow label is
2489 * returned. For non-IPv6 sockets, this flag will be left
2490 * cleared.
2491 *
2492 * SPP_DSCP: Setting this flag enables the setting of the
2493 * Differentiated Services Code Point (DSCP) value
2494 * associated with either the association or a specific
2495 * address. The value is obtained in the spp_dscp field.
2496 * Upon retrieval, this flag will be set to indicate that
2497 * the spp_dscp field has a valid value returned. If a
2498 * specific destination address is set when called (in the
2499 * spp_address field), then that specific destination
2500 * address's DSCP value is returned. If just an association
2501 * is specified, then the association's default DSCP is
2502 * returned. If neither an association nor a destination is
2503 * specified, then the socket's default DSCP is returned.
2504 *
2505 * spp_ipv6_flowlabel
2506 * - This field is used in conjunction with the
2507 * SPP_IPV6_FLOWLABEL flag and contains the IPv6 flow label.
2508 * The 20 least significant bits are used for the flow
2509 * label. This setting has precedence over any IPv6-layer
2510 * setting.
2511 *
2512 * spp_dscp - This field is used in conjunction with the SPP_DSCP flag
2513 * and contains the DSCP. The 6 most significant bits are
2514 * used for the DSCP. This setting has precedence over any
2515 * IPv4- or IPv6- layer setting.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 */
Adrian Bunk16164362006-09-18 00:40:38 -07002517static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2518 struct sctp_transport *trans,
2519 struct sctp_association *asoc,
2520 struct sctp_sock *sp,
2521 int hb_change,
2522 int pmtud_change,
2523 int sackdelay_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 int error;
2526
Frank Filz52ccb8e2005-12-22 11:36:46 -08002527 if (params->spp_flags & SPP_HB_DEMAND && trans) {
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00002528 struct net *net = sock_net(trans->asoc->base.sk);
2529
2530 error = sctp_primitive_REQUESTHEARTBEAT(net, trans->asoc, trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 if (error)
2532 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 }
2534
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002535 /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2536 * this field is ignored. Note also that a value of zero indicates
2537 * the current setting should be left unchanged.
2538 */
2539 if (params->spp_flags & SPP_HB_ENABLE) {
2540
2541 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2542 * set. This lets us use 0 value when this flag
2543 * is set.
2544 */
2545 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2546 params->spp_hbinterval = 0;
2547
2548 if (params->spp_hbinterval ||
2549 (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2550 if (trans) {
2551 trans->hbinterval =
2552 msecs_to_jiffies(params->spp_hbinterval);
2553 } else if (asoc) {
2554 asoc->hbinterval =
2555 msecs_to_jiffies(params->spp_hbinterval);
2556 } else {
2557 sp->hbinterval = params->spp_hbinterval;
2558 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08002559 }
2560 }
2561
2562 if (hb_change) {
2563 if (trans) {
2564 trans->param_flags =
2565 (trans->param_flags & ~SPP_HB) | hb_change;
2566 } else if (asoc) {
2567 asoc->param_flags =
2568 (asoc->param_flags & ~SPP_HB) | hb_change;
2569 } else {
2570 sp->param_flags =
2571 (sp->param_flags & ~SPP_HB) | hb_change;
2572 }
2573 }
2574
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002575 /* When Path MTU discovery is disabled the value specified here will
2576 * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2577 * include the flag SPP_PMTUD_DISABLE for this field to have any
2578 * effect).
2579 */
2580 if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002581 if (trans) {
2582 trans->pathmtu = params->spp_pathmtu;
Xin Long3ebfdf02017-04-04 13:39:55 +08002583 sctp_assoc_sync_pmtu(asoc);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002584 } else if (asoc) {
Marcelo Ricardo Leitnerc4b28932018-04-26 16:58:53 -03002585 sctp_assoc_set_pmtu(asoc, params->spp_pathmtu);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002586 } else {
2587 sp->pathmtu = params->spp_pathmtu;
2588 }
2589 }
2590
2591 if (pmtud_change) {
2592 if (trans) {
2593 int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2594 (params->spp_flags & SPP_PMTUD_ENABLE);
2595 trans->param_flags =
2596 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2597 if (update) {
Vlad Yasevich9914ae32011-04-26 21:51:31 +00002598 sctp_transport_pmtu(trans, sctp_opt2sk(sp));
Xin Long3ebfdf02017-04-04 13:39:55 +08002599 sctp_assoc_sync_pmtu(asoc);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002600 }
2601 } else if (asoc) {
2602 asoc->param_flags =
2603 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2604 } else {
2605 sp->param_flags =
2606 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2607 }
2608 }
2609
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002610 /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2611 * value of this field is ignored. Note also that a value of zero
2612 * indicates the current setting should be left unchanged.
2613 */
2614 if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002615 if (trans) {
2616 trans->sackdelay =
2617 msecs_to_jiffies(params->spp_sackdelay);
2618 } else if (asoc) {
2619 asoc->sackdelay =
2620 msecs_to_jiffies(params->spp_sackdelay);
2621 } else {
2622 sp->sackdelay = params->spp_sackdelay;
2623 }
2624 }
2625
2626 if (sackdelay_change) {
2627 if (trans) {
2628 trans->param_flags =
2629 (trans->param_flags & ~SPP_SACKDELAY) |
2630 sackdelay_change;
2631 } else if (asoc) {
2632 asoc->param_flags =
2633 (asoc->param_flags & ~SPP_SACKDELAY) |
2634 sackdelay_change;
2635 } else {
2636 sp->param_flags =
2637 (sp->param_flags & ~SPP_SACKDELAY) |
2638 sackdelay_change;
2639 }
2640 }
2641
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002642 /* Note that a value of zero indicates the current setting should be
2643 left unchanged.
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002644 */
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002645 if (params->spp_pathmaxrxt) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002646 if (trans) {
2647 trans->pathmaxrxt = params->spp_pathmaxrxt;
2648 } else if (asoc) {
2649 asoc->pathmaxrxt = params->spp_pathmaxrxt;
2650 } else {
2651 sp->pathmaxrxt = params->spp_pathmaxrxt;
2652 }
2653 }
2654
Xin Long0b0dce72018-07-02 18:21:13 +08002655 if (params->spp_flags & SPP_IPV6_FLOWLABEL) {
2656 if (trans && trans->ipaddr.sa.sa_family == AF_INET6) {
2657 trans->flowlabel = params->spp_ipv6_flowlabel &
2658 SCTP_FLOWLABEL_VAL_MASK;
2659 trans->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2660 } else if (asoc) {
2661 list_for_each_entry(trans,
2662 &asoc->peer.transport_addr_list,
2663 transports) {
2664 if (trans->ipaddr.sa.sa_family != AF_INET6)
2665 continue;
2666 trans->flowlabel = params->spp_ipv6_flowlabel &
2667 SCTP_FLOWLABEL_VAL_MASK;
2668 trans->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2669 }
2670 asoc->flowlabel = params->spp_ipv6_flowlabel &
2671 SCTP_FLOWLABEL_VAL_MASK;
2672 asoc->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2673 } else if (sctp_opt2sk(sp)->sk_family == AF_INET6) {
2674 sp->flowlabel = params->spp_ipv6_flowlabel &
2675 SCTP_FLOWLABEL_VAL_MASK;
2676 sp->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2677 }
2678 }
2679
2680 if (params->spp_flags & SPP_DSCP) {
2681 if (trans) {
2682 trans->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2683 trans->dscp |= SCTP_DSCP_SET_MASK;
2684 } else if (asoc) {
2685 list_for_each_entry(trans,
2686 &asoc->peer.transport_addr_list,
2687 transports) {
2688 trans->dscp = params->spp_dscp &
2689 SCTP_DSCP_VAL_MASK;
2690 trans->dscp |= SCTP_DSCP_SET_MASK;
2691 }
2692 asoc->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2693 asoc->dscp |= SCTP_DSCP_SET_MASK;
2694 } else {
2695 sp->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2696 sp->dscp |= SCTP_DSCP_SET_MASK;
2697 }
2698 }
2699
Frank Filz52ccb8e2005-12-22 11:36:46 -08002700 return 0;
2701}
2702
2703static int sctp_setsockopt_peer_addr_params(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002704 char __user *optval,
2705 unsigned int optlen)
Frank Filz52ccb8e2005-12-22 11:36:46 -08002706{
2707 struct sctp_paddrparams params;
2708 struct sctp_transport *trans = NULL;
2709 struct sctp_association *asoc = NULL;
2710 struct sctp_sock *sp = sctp_sk(sk);
2711 int error;
2712 int hb_change, pmtud_change, sackdelay_change;
2713
Xin Long0b0dce72018-07-02 18:21:13 +08002714 if (optlen == sizeof(params)) {
2715 if (copy_from_user(&params, optval, optlen))
2716 return -EFAULT;
2717 } else if (optlen == ALIGN(offsetof(struct sctp_paddrparams,
2718 spp_ipv6_flowlabel), 4)) {
2719 if (copy_from_user(&params, optval, optlen))
2720 return -EFAULT;
2721 if (params.spp_flags & (SPP_DSCP | SPP_IPV6_FLOWLABEL))
2722 return -EINVAL;
2723 } else {
wangweidongcb3f8372013-12-23 12:16:50 +08002724 return -EINVAL;
Xin Long0b0dce72018-07-02 18:21:13 +08002725 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08002726
2727 /* Validate flags and value parameters. */
2728 hb_change = params.spp_flags & SPP_HB;
2729 pmtud_change = params.spp_flags & SPP_PMTUD;
2730 sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2731
2732 if (hb_change == SPP_HB ||
2733 pmtud_change == SPP_PMTUD ||
2734 sackdelay_change == SPP_SACKDELAY ||
2735 params.spp_sackdelay > 500 ||
Joe Perchesf64f9e72009-11-29 16:55:45 -08002736 (params.spp_pathmtu &&
2737 params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
Frank Filz52ccb8e2005-12-22 11:36:46 -08002738 return -EINVAL;
2739
2740 /* If an address other than INADDR_ANY is specified, and
2741 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 */
wangweidongcb3f8372013-12-23 12:16:50 +08002743 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002744 trans = sctp_addr_id2transport(sk, &params.spp_address,
2745 params.spp_assoc_id);
2746 if (!trans)
2747 return -EINVAL;
2748 }
2749
2750 /* Get association, if assoc_id != 0 and the socket is a one
2751 * to many style socket, and an association was not found, then
2752 * the id was invalid.
2753 */
2754 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
2755 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP))
2756 return -EINVAL;
2757
2758 /* Heartbeat demand can only be sent on a transport or
2759 * association, but not a socket.
2760 */
2761 if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2762 return -EINVAL;
2763
2764 /* Process parameters. */
2765 error = sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2766 hb_change, pmtud_change,
2767 sackdelay_change);
2768
2769 if (error)
2770 return error;
2771
2772 /* If changes are for association, also apply parameters to each
2773 * transport.
2774 */
2775 if (!trans && asoc) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002776 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2777 transports) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002778 sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2779 hb_change, pmtud_change,
2780 sackdelay_change);
2781 }
2782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
2784 return 0;
2785}
2786
wangweidong0ea5e4d2014-01-15 17:24:01 +08002787static inline __u32 sctp_spp_sackdelay_enable(__u32 param_flags)
2788{
2789 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_ENABLE;
2790}
2791
2792static inline __u32 sctp_spp_sackdelay_disable(__u32 param_flags)
2793{
2794 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_DISABLE;
2795}
2796
Wei Yongjund364d922008-05-09 15:13:26 -07002797/*
2798 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08002799 *
Wei Yongjund364d922008-05-09 15:13:26 -07002800 * This option will effect the way delayed acks are performed. This
2801 * option allows you to get or set the delayed ack time, in
2802 * milliseconds. It also allows changing the delayed ack frequency.
2803 * Changing the frequency to 1 disables the delayed sack algorithm. If
2804 * the assoc_id is 0, then this sets or gets the endpoints default
2805 * values. If the assoc_id field is non-zero, then the set or get
2806 * effects the specified association for the one to many model (the
2807 * assoc_id field is ignored by the one to one model). Note that if
2808 * sack_delay or sack_freq are 0 when setting this option, then the
2809 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08002810 *
Wei Yongjund364d922008-05-09 15:13:26 -07002811 * struct sctp_sack_info {
2812 * sctp_assoc_t sack_assoc_id;
2813 * uint32_t sack_delay;
2814 * uint32_t sack_freq;
2815 * };
Frank Filz77086102005-12-22 11:37:30 -08002816 *
Wei Yongjund364d922008-05-09 15:13:26 -07002817 * sack_assoc_id - This parameter, indicates which association the user
2818 * is performing an action upon. Note that if this field's value is
2819 * zero then the endpoints default value is changed (effecting future
2820 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08002821 *
Wei Yongjund364d922008-05-09 15:13:26 -07002822 * sack_delay - This parameter contains the number of milliseconds that
2823 * the user is requesting the delayed ACK timer be set to. Note that
2824 * this value is defined in the standard to be between 200 and 500
2825 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08002826 *
Wei Yongjund364d922008-05-09 15:13:26 -07002827 * sack_freq - This parameter contains the number of packets that must
2828 * be received before a sack is sent without waiting for the delay
2829 * timer to expire. The default value for this is 2, setting this
2830 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08002831 */
2832
Wei Yongjund364d922008-05-09 15:13:26 -07002833static int sctp_setsockopt_delayed_ack(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002834 char __user *optval, unsigned int optlen)
Frank Filz77086102005-12-22 11:37:30 -08002835{
Wei Yongjund364d922008-05-09 15:13:26 -07002836 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08002837 struct sctp_transport *trans = NULL;
2838 struct sctp_association *asoc = NULL;
2839 struct sctp_sock *sp = sctp_sk(sk);
2840
Wei Yongjund364d922008-05-09 15:13:26 -07002841 if (optlen == sizeof(struct sctp_sack_info)) {
2842 if (copy_from_user(&params, optval, optlen))
2843 return -EFAULT;
2844
2845 if (params.sack_delay == 0 && params.sack_freq == 0)
2846 return 0;
2847 } else if (optlen == sizeof(struct sctp_assoc_value)) {
Neil Horman94f65192013-12-23 08:29:43 -05002848 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05002849 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05002850 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05002851 "Use struct sctp_sack_info instead\n",
2852 current->comm, task_pid_nr(current));
Wei Yongjund364d922008-05-09 15:13:26 -07002853 if (copy_from_user(&params, optval, optlen))
2854 return -EFAULT;
2855
2856 if (params.sack_delay == 0)
2857 params.sack_freq = 1;
2858 else
2859 params.sack_freq = 0;
2860 } else
wangweidongcb3f8372013-12-23 12:16:50 +08002861 return -EINVAL;
Frank Filz77086102005-12-22 11:37:30 -08002862
Frank Filz77086102005-12-22 11:37:30 -08002863 /* Validate value parameter. */
Wei Yongjund364d922008-05-09 15:13:26 -07002864 if (params.sack_delay > 500)
Frank Filz77086102005-12-22 11:37:30 -08002865 return -EINVAL;
2866
Wei Yongjund364d922008-05-09 15:13:26 -07002867 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08002868 * to many style socket, and an association was not found, then
2869 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002870 */
Wei Yongjund364d922008-05-09 15:13:26 -07002871 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
2872 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08002873 return -EINVAL;
2874
Wei Yongjund364d922008-05-09 15:13:26 -07002875 if (params.sack_delay) {
Frank Filz77086102005-12-22 11:37:30 -08002876 if (asoc) {
2877 asoc->sackdelay =
Wei Yongjund364d922008-05-09 15:13:26 -07002878 msecs_to_jiffies(params.sack_delay);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002879 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002880 sctp_spp_sackdelay_enable(asoc->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002881 } else {
Wei Yongjund364d922008-05-09 15:13:26 -07002882 sp->sackdelay = params.sack_delay;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002883 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002884 sctp_spp_sackdelay_enable(sp->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002885 }
Wei Yongjund364d922008-05-09 15:13:26 -07002886 }
2887
2888 if (params.sack_freq == 1) {
Frank Filz77086102005-12-22 11:37:30 -08002889 if (asoc) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002890 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002891 sctp_spp_sackdelay_disable(asoc->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002892 } else {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002893 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002894 sctp_spp_sackdelay_disable(sp->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002895 }
Wei Yongjund364d922008-05-09 15:13:26 -07002896 } else if (params.sack_freq > 1) {
2897 if (asoc) {
2898 asoc->sackfreq = params.sack_freq;
2899 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002900 sctp_spp_sackdelay_enable(asoc->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002901 } else {
2902 sp->sackfreq = params.sack_freq;
2903 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002904 sctp_spp_sackdelay_enable(sp->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002905 }
Frank Filz77086102005-12-22 11:37:30 -08002906 }
2907
2908 /* If change is for association, also apply to each transport. */
2909 if (asoc) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002910 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2911 transports) {
Wei Yongjund364d922008-05-09 15:13:26 -07002912 if (params.sack_delay) {
Frank Filz77086102005-12-22 11:37:30 -08002913 trans->sackdelay =
Wei Yongjund364d922008-05-09 15:13:26 -07002914 msecs_to_jiffies(params.sack_delay);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002915 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002916 sctp_spp_sackdelay_enable(trans->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002917 }
Vlad Yasevich7bfe8bdb2008-06-09 15:45:05 -07002918 if (params.sack_freq == 1) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002919 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002920 sctp_spp_sackdelay_disable(trans->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002921 } else if (params.sack_freq > 1) {
2922 trans->sackfreq = params.sack_freq;
2923 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002924 sctp_spp_sackdelay_enable(trans->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002925 }
2926 }
2927 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002928
Frank Filz77086102005-12-22 11:37:30 -08002929 return 0;
2930}
2931
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2933 *
2934 * Applications can specify protocol parameters for the default association
2935 * initialization. The option name argument to setsockopt() and getsockopt()
2936 * is SCTP_INITMSG.
2937 *
2938 * Setting initialization parameters is effective only on an unconnected
2939 * socket (for UDP-style sockets only future associations are effected
2940 * by the change). With TCP-style sockets, this option is inherited by
2941 * sockets derived from a listener socket.
2942 */
David S. Millerb7058842009-09-30 16:12:20 -07002943static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944{
2945 struct sctp_initmsg sinit;
2946 struct sctp_sock *sp = sctp_sk(sk);
2947
2948 if (optlen != sizeof(struct sctp_initmsg))
2949 return -EINVAL;
2950 if (copy_from_user(&sinit, optval, optlen))
2951 return -EFAULT;
2952
2953 if (sinit.sinit_num_ostreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002954 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 if (sinit.sinit_max_instreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002956 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 if (sinit.sinit_max_attempts)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002958 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 if (sinit.sinit_max_init_timeo)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002960 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961
2962 return 0;
2963}
2964
2965/*
2966 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2967 *
2968 * Applications that wish to use the sendto() system call may wish to
2969 * specify a default set of parameters that would normally be supplied
2970 * through the inclusion of ancillary data. This socket option allows
2971 * such an application to set the default sctp_sndrcvinfo structure.
2972 * The application that wishes to use this socket option simply passes
2973 * in to this call the sctp_sndrcvinfo structure defined in Section
2974 * 5.2.2) The input parameters accepted by this call include
2975 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2976 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
2977 * to this call if the caller is using the UDP model.
2978 */
2979static int sctp_setsockopt_default_send_param(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002980 char __user *optval,
2981 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 struct sctp_sock *sp = sctp_sk(sk);
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002984 struct sctp_association *asoc;
2985 struct sctp_sndrcvinfo info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002987 if (optlen != sizeof(info))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 return -EINVAL;
2989 if (copy_from_user(&info, optval, optlen))
2990 return -EFAULT;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002991 if (info.sinfo_flags &
2992 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2993 SCTP_ABORT | SCTP_EOF))
2994 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
2996 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
2997 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
2998 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 if (asoc) {
3000 asoc->default_stream = info.sinfo_stream;
3001 asoc->default_flags = info.sinfo_flags;
3002 asoc->default_ppid = info.sinfo_ppid;
3003 asoc->default_context = info.sinfo_context;
3004 asoc->default_timetolive = info.sinfo_timetolive;
3005 } else {
3006 sp->default_stream = info.sinfo_stream;
3007 sp->default_flags = info.sinfo_flags;
3008 sp->default_ppid = info.sinfo_ppid;
3009 sp->default_context = info.sinfo_context;
3010 sp->default_timetolive = info.sinfo_timetolive;
3011 }
3012
3013 return 0;
3014}
3015
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02003016/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
3017 * (SCTP_DEFAULT_SNDINFO)
3018 */
3019static int sctp_setsockopt_default_sndinfo(struct sock *sk,
3020 char __user *optval,
3021 unsigned int optlen)
3022{
3023 struct sctp_sock *sp = sctp_sk(sk);
3024 struct sctp_association *asoc;
3025 struct sctp_sndinfo info;
3026
3027 if (optlen != sizeof(info))
3028 return -EINVAL;
3029 if (copy_from_user(&info, optval, optlen))
3030 return -EFAULT;
3031 if (info.snd_flags &
3032 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
3033 SCTP_ABORT | SCTP_EOF))
3034 return -EINVAL;
3035
3036 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
3037 if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
3038 return -EINVAL;
3039 if (asoc) {
3040 asoc->default_stream = info.snd_sid;
3041 asoc->default_flags = info.snd_flags;
3042 asoc->default_ppid = info.snd_ppid;
3043 asoc->default_context = info.snd_context;
3044 } else {
3045 sp->default_stream = info.snd_sid;
3046 sp->default_flags = info.snd_flags;
3047 sp->default_ppid = info.snd_ppid;
3048 sp->default_context = info.snd_context;
3049 }
3050
3051 return 0;
3052}
3053
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
3055 *
3056 * Requests that the local SCTP stack use the enclosed peer address as
3057 * the association primary. The enclosed address must be one of the
3058 * association peer's addresses.
3059 */
3060static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003061 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062{
3063 struct sctp_prim prim;
3064 struct sctp_transport *trans;
Richard Haines2277c7c2018-02-13 20:56:24 +00003065 struct sctp_af *af;
3066 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067
3068 if (optlen != sizeof(struct sctp_prim))
3069 return -EINVAL;
3070
3071 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
3072 return -EFAULT;
3073
Richard Haines2277c7c2018-02-13 20:56:24 +00003074 /* Allow security module to validate address but need address len. */
3075 af = sctp_get_af_specific(prim.ssp_addr.ss_family);
3076 if (!af)
3077 return -EINVAL;
3078
3079 err = security_sctp_bind_connect(sk, SCTP_PRIMARY_ADDR,
3080 (struct sockaddr *)&prim.ssp_addr,
3081 af->sockaddr_len);
3082 if (err)
3083 return err;
3084
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
3086 if (!trans)
3087 return -EINVAL;
3088
3089 sctp_assoc_set_primary(trans->asoc, trans);
3090
3091 return 0;
3092}
3093
3094/*
3095 * 7.1.5 SCTP_NODELAY
3096 *
3097 * Turn on/off any Nagle-like algorithm. This means that packets are
3098 * generally sent as soon as possible and no unnecessary delays are
3099 * introduced, at the cost of more packets in the network. Expects an
3100 * integer boolean flag.
3101 */
3102static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003103 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104{
3105 int val;
3106
3107 if (optlen < sizeof(int))
3108 return -EINVAL;
3109 if (get_user(val, (int __user *)optval))
3110 return -EFAULT;
3111
3112 sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
3113 return 0;
3114}
3115
3116/*
3117 *
3118 * 7.1.1 SCTP_RTOINFO
3119 *
3120 * The protocol parameters used to initialize and bound retransmission
3121 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
3122 * and modify these parameters.
3123 * All parameters are time values, in milliseconds. A value of 0, when
3124 * modifying the parameters, indicates that the current value should not
3125 * be changed.
3126 *
3127 */
David S. Millerb7058842009-09-30 16:12:20 -07003128static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, unsigned int optlen)
3129{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 struct sctp_rtoinfo rtoinfo;
3131 struct sctp_association *asoc;
wangweidong85f935d2013-12-11 09:50:38 +08003132 unsigned long rto_min, rto_max;
3133 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134
3135 if (optlen != sizeof (struct sctp_rtoinfo))
3136 return -EINVAL;
3137
3138 if (copy_from_user(&rtoinfo, optval, optlen))
3139 return -EFAULT;
3140
3141 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
3142
3143 /* Set the values to the specific association */
3144 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
3145 return -EINVAL;
3146
wangweidong85f935d2013-12-11 09:50:38 +08003147 rto_max = rtoinfo.srto_max;
3148 rto_min = rtoinfo.srto_min;
3149
3150 if (rto_max)
3151 rto_max = asoc ? msecs_to_jiffies(rto_max) : rto_max;
3152 else
3153 rto_max = asoc ? asoc->rto_max : sp->rtoinfo.srto_max;
3154
3155 if (rto_min)
3156 rto_min = asoc ? msecs_to_jiffies(rto_min) : rto_min;
3157 else
3158 rto_min = asoc ? asoc->rto_min : sp->rtoinfo.srto_min;
3159
3160 if (rto_min > rto_max)
3161 return -EINVAL;
3162
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 if (asoc) {
3164 if (rtoinfo.srto_initial != 0)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003165 asoc->rto_initial =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 msecs_to_jiffies(rtoinfo.srto_initial);
wangweidong85f935d2013-12-11 09:50:38 +08003167 asoc->rto_max = rto_max;
3168 asoc->rto_min = rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 } else {
3170 /* If there is no association or the association-id = 0
3171 * set the values to the endpoint.
3172 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 if (rtoinfo.srto_initial != 0)
3174 sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
wangweidong85f935d2013-12-11 09:50:38 +08003175 sp->rtoinfo.srto_max = rto_max;
3176 sp->rtoinfo.srto_min = rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 }
3178
3179 return 0;
3180}
3181
3182/*
3183 *
3184 * 7.1.2 SCTP_ASSOCINFO
3185 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02003186 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 * of the association.
3188 * Returns an error if the new association retransmission value is
3189 * greater than the sum of the retransmission value of the peer.
3190 * See [SCTP] for more information.
3191 *
3192 */
David S. Millerb7058842009-09-30 16:12:20 -07003193static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194{
3195
3196 struct sctp_assocparams assocparams;
3197 struct sctp_association *asoc;
3198
3199 if (optlen != sizeof(struct sctp_assocparams))
3200 return -EINVAL;
3201 if (copy_from_user(&assocparams, optval, optlen))
3202 return -EFAULT;
3203
3204 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
3205
3206 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
3207 return -EINVAL;
3208
3209 /* Set the values to the specific association */
3210 if (asoc) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003211 if (assocparams.sasoc_asocmaxrxt != 0) {
3212 __u32 path_sum = 0;
3213 int paths = 0;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003214 struct sctp_transport *peer_addr;
3215
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07003216 list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
3217 transports) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003218 path_sum += peer_addr->pathmaxrxt;
3219 paths++;
3220 }
3221
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003222 /* Only validate asocmaxrxt if we have more than
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003223 * one path/transport. We do this because path
3224 * retransmissions are only counted when we have more
3225 * then one path.
3226 */
3227 if (paths > 1 &&
3228 assocparams.sasoc_asocmaxrxt > path_sum)
3229 return -EINVAL;
3230
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003232 }
3233
Daniel Borkmann52db8822013-06-25 18:17:27 +02003234 if (assocparams.sasoc_cookie_life != 0)
3235 asoc->cookie_life = ms_to_ktime(assocparams.sasoc_cookie_life);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 } else {
3237 /* Set the values to the endpoint */
3238 struct sctp_sock *sp = sctp_sk(sk);
3239
3240 if (assocparams.sasoc_asocmaxrxt != 0)
3241 sp->assocparams.sasoc_asocmaxrxt =
3242 assocparams.sasoc_asocmaxrxt;
3243 if (assocparams.sasoc_cookie_life != 0)
3244 sp->assocparams.sasoc_cookie_life =
3245 assocparams.sasoc_cookie_life;
3246 }
3247 return 0;
3248}
3249
3250/*
3251 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
3252 *
3253 * This socket option is a boolean flag which turns on or off mapped V4
3254 * addresses. If this option is turned on and the socket is type
3255 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
3256 * If this option is turned off, then no mapping will be done of V4
3257 * addresses and a user will receive both PF_INET6 and PF_INET type
3258 * addresses on the socket.
3259 */
David S. Millerb7058842009-09-30 16:12:20 -07003260static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261{
3262 int val;
3263 struct sctp_sock *sp = sctp_sk(sk);
3264
3265 if (optlen < sizeof(int))
3266 return -EINVAL;
3267 if (get_user(val, (int __user *)optval))
3268 return -EFAULT;
3269 if (val)
3270 sp->v4mapped = 1;
3271 else
3272 sp->v4mapped = 0;
3273
3274 return 0;
3275}
3276
3277/*
Wei Yongjune89c2092008-12-25 16:54:58 -08003278 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
3279 * This option will get or set the maximum size to put in any outgoing
3280 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 * fragmented by SCTP into the specified size. Note that the underlying
3282 * SCTP implementation may fragment into smaller sized chunks when the
3283 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08003284 * the user. The default value for this option is '0' which indicates
3285 * the user is NOT limiting fragmentation and only the PMTU will effect
3286 * SCTP's choice of DATA chunk size. Note also that values set larger
3287 * than the maximum size of an IP datagram will effectively let SCTP
3288 * control fragmentation (i.e. the same as setting this option to 0).
3289 *
3290 * The following structure is used to access and modify this parameter:
3291 *
3292 * struct sctp_assoc_value {
3293 * sctp_assoc_t assoc_id;
3294 * uint32_t assoc_value;
3295 * };
3296 *
3297 * assoc_id: This parameter is ignored for one-to-one style sockets.
3298 * For one-to-many style sockets this parameter indicates which
3299 * association the user is performing an action upon. Note that if
3300 * this field's value is zero then the endpoints default value is
3301 * changed (effecting future associations only).
3302 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 */
David S. Millerb7058842009-09-30 16:12:20 -07003304static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305{
Xin Longecca8f82017-11-17 14:11:11 +08003306 struct sctp_sock *sp = sctp_sk(sk);
Wei Yongjune89c2092008-12-25 16:54:58 -08003307 struct sctp_assoc_value params;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 int val;
3310
Wei Yongjune89c2092008-12-25 16:54:58 -08003311 if (optlen == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05003312 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05003313 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05003314 "Use of int in maxseg socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05003315 "Use struct sctp_assoc_value instead\n",
3316 current->comm, task_pid_nr(current));
Wei Yongjune89c2092008-12-25 16:54:58 -08003317 if (copy_from_user(&val, optval, optlen))
3318 return -EFAULT;
3319 params.assoc_id = 0;
3320 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3321 if (copy_from_user(&params, optval, optlen))
3322 return -EFAULT;
3323 val = params.assoc_value;
Xin Longecca8f82017-11-17 14:11:11 +08003324 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 return -EINVAL;
Xin Longecca8f82017-11-17 14:11:11 +08003326 }
Wei Yongjune89c2092008-12-25 16:54:58 -08003327
Marcelo Ricardo Leitner439ef032018-04-26 16:59:01 -03003328 asoc = sctp_id2assoc(sk, params.assoc_id);
3329
Xin Longecca8f82017-11-17 14:11:11 +08003330 if (val) {
3331 int min_len, max_len;
Marcelo Ricardo Leitner439ef032018-04-26 16:59:01 -03003332 __u16 datasize = asoc ? sctp_datachk_len(&asoc->stream) :
3333 sizeof(struct sctp_data_chunk);
Xin Longecca8f82017-11-17 14:11:11 +08003334
Marcelo Ricardo Leitnerfeddd6c2018-04-26 16:58:54 -03003335 min_len = sctp_mtu_payload(sp, SCTP_DEFAULT_MINSEGMENT,
Marcelo Ricardo Leitner439ef032018-04-26 16:59:01 -03003336 datasize);
3337 max_len = SCTP_MAX_CHUNK_LEN - datasize;
Xin Longecca8f82017-11-17 14:11:11 +08003338
3339 if (val < min_len || val > max_len)
3340 return -EINVAL;
3341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342
Wei Yongjune89c2092008-12-25 16:54:58 -08003343 if (asoc) {
Vlad Yasevichf68b2e02009-09-04 18:21:00 -04003344 asoc->user_frag = val;
Marcelo Ricardo Leitner2f5e3c92018-04-26 16:58:55 -03003345 sctp_assoc_update_frag_point(asoc);
Wei Yongjune89c2092008-12-25 16:54:58 -08003346 } else {
Xin Longecca8f82017-11-17 14:11:11 +08003347 if (params.assoc_id && sctp_style(sk, UDP))
3348 return -EINVAL;
Wei Yongjune89c2092008-12-25 16:54:58 -08003349 sp->user_frag = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350 }
3351
3352 return 0;
3353}
3354
3355
3356/*
3357 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3358 *
3359 * Requests that the peer mark the enclosed address as the association
3360 * primary. The enclosed address must be one of the association's
3361 * locally bound addresses. The following structure is used to make a
3362 * set primary request:
3363 */
3364static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003365 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003367 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 struct sctp_association *asoc = NULL;
3370 struct sctp_setpeerprim prim;
3371 struct sctp_chunk *chunk;
Wei Yongjun40a01032010-12-07 17:11:09 +00003372 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 int err;
3374
3375 sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003377 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 return -EPERM;
3379
3380 if (optlen != sizeof(struct sctp_setpeerprim))
3381 return -EINVAL;
3382
3383 if (copy_from_user(&prim, optval, optlen))
3384 return -EFAULT;
3385
3386 asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003387 if (!asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 return -EINVAL;
3389
3390 if (!asoc->peer.asconf_capable)
3391 return -EPERM;
3392
3393 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
3394 return -EPERM;
3395
3396 if (!sctp_state(asoc, ESTABLISHED))
3397 return -ENOTCONN;
3398
Wei Yongjun40a01032010-12-07 17:11:09 +00003399 af = sctp_get_af_specific(prim.sspp_addr.ss_family);
3400 if (!af)
3401 return -EINVAL;
3402
3403 if (!af->addr_valid((union sctp_addr *)&prim.sspp_addr, sp, NULL))
3404 return -EADDRNOTAVAIL;
3405
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
3407 return -EADDRNOTAVAIL;
3408
Richard Haines2277c7c2018-02-13 20:56:24 +00003409 /* Allow security module to validate address. */
3410 err = security_sctp_bind_connect(sk, SCTP_SET_PEER_PRIMARY_ADDR,
3411 (struct sockaddr *)&prim.sspp_addr,
3412 af->sockaddr_len);
3413 if (err)
3414 return err;
3415
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 /* Create an ASCONF chunk with SET_PRIMARY parameter */
3417 chunk = sctp_make_asconf_set_prim(asoc,
3418 (union sctp_addr *)&prim.sspp_addr);
3419 if (!chunk)
3420 return -ENOMEM;
3421
3422 err = sctp_send_asconf(asoc, chunk);
3423
Daniel Borkmannbb333812013-06-28 19:49:40 +02003424 pr_debug("%s: we set peer primary addr primitively\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425
3426 return err;
3427}
3428
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003429static int sctp_setsockopt_adaptation_layer(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003430 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003432 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003434 if (optlen != sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 return -EINVAL;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003436 if (copy_from_user(&adaptation, optval, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 return -EFAULT;
3438
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003439 sctp_sk(sk)->adaptation_ind = adaptation.ssb_adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
3441 return 0;
3442}
3443
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003444/*
3445 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
3446 *
3447 * The context field in the sctp_sndrcvinfo structure is normally only
3448 * used when a failed message is retrieved holding the value that was
3449 * sent down on the actual send call. This option allows the setting of
3450 * a default context on an association basis that will be received on
3451 * reading messages from the peer. This is especially helpful in the
3452 * one-2-many model for an application to keep some reference to an
3453 * internal state machine that is processing messages on the
3454 * association. Note that the setting of this value only effects
3455 * received messages from the peer and does not effect the value that is
3456 * saved with outbound messages.
3457 */
3458static int sctp_setsockopt_context(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003459 unsigned int optlen)
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003460{
3461 struct sctp_assoc_value params;
3462 struct sctp_sock *sp;
3463 struct sctp_association *asoc;
3464
3465 if (optlen != sizeof(struct sctp_assoc_value))
3466 return -EINVAL;
3467 if (copy_from_user(&params, optval, optlen))
3468 return -EFAULT;
3469
3470 sp = sctp_sk(sk);
3471
3472 if (params.assoc_id != 0) {
3473 asoc = sctp_id2assoc(sk, params.assoc_id);
3474 if (!asoc)
3475 return -EINVAL;
3476 asoc->default_rcv_context = params.assoc_value;
3477 } else {
3478 sp->default_rcv_context = params.assoc_value;
3479 }
3480
3481 return 0;
3482}
3483
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003484/*
3485 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
3486 *
3487 * This options will at a minimum specify if the implementation is doing
3488 * fragmented interleave. Fragmented interleave, for a one to many
3489 * socket, is when subsequent calls to receive a message may return
3490 * parts of messages from different associations. Some implementations
3491 * may allow you to turn this value on or off. If so, when turned off,
3492 * no fragment interleave will occur (which will cause a head of line
3493 * blocking amongst multiple associations sharing the same one to many
3494 * socket). When this option is turned on, then each receive call may
3495 * come from a different association (thus the user must receive data
3496 * with the extended calls (e.g. sctp_recvmsg) to keep track of which
3497 * association each receive belongs to.
3498 *
3499 * This option takes a boolean value. A non-zero value indicates that
3500 * fragmented interleave is on. A value of zero indicates that
3501 * fragmented interleave is off.
3502 *
3503 * Note that it is important that an implementation that allows this
3504 * option to be turned on, have it off by default. Otherwise an unaware
3505 * application using the one to many model may become confused and act
3506 * incorrectly.
3507 */
3508static int sctp_setsockopt_fragment_interleave(struct sock *sk,
3509 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003510 unsigned int optlen)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003511{
3512 int val;
3513
3514 if (optlen != sizeof(int))
3515 return -EINVAL;
3516 if (get_user(val, (int __user *)optval))
3517 return -EFAULT;
3518
Xin Long772a5862017-12-08 21:03:58 +08003519 sctp_sk(sk)->frag_interleave = !!val;
3520
3521 if (!sctp_sk(sk)->frag_interleave)
3522 sctp_sk(sk)->strm_interleave = 0;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003523
3524 return 0;
3525}
3526
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003527/*
Wei Yongjun8510b932008-12-25 16:59:03 -08003528 * 8.1.21. Set or Get the SCTP Partial Delivery Point
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003529 * (SCTP_PARTIAL_DELIVERY_POINT)
Wei Yongjun8510b932008-12-25 16:59:03 -08003530 *
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003531 * This option will set or get the SCTP partial delivery point. This
3532 * point is the size of a message where the partial delivery API will be
3533 * invoked to help free up rwnd space for the peer. Setting this to a
Wei Yongjun8510b932008-12-25 16:59:03 -08003534 * lower value will cause partial deliveries to happen more often. The
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003535 * calls argument is an integer that sets or gets the partial delivery
Wei Yongjun8510b932008-12-25 16:59:03 -08003536 * point. Note also that the call will fail if the user attempts to set
3537 * this value larger than the socket receive buffer size.
3538 *
3539 * Note that any single message having a length smaller than or equal to
3540 * the SCTP partial delivery point will be delivered in one single read
3541 * call as long as the user provided buffer is large enough to hold the
3542 * message.
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003543 */
3544static int sctp_setsockopt_partial_delivery_point(struct sock *sk,
3545 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003546 unsigned int optlen)
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003547{
3548 u32 val;
3549
3550 if (optlen != sizeof(u32))
3551 return -EINVAL;
3552 if (get_user(val, (int __user *)optval))
3553 return -EFAULT;
3554
Wei Yongjun8510b932008-12-25 16:59:03 -08003555 /* Note: We double the receive buffer from what the user sets
3556 * it to be, also initial rwnd is based on rcvbuf/2.
3557 */
3558 if (val > (sk->sk_rcvbuf >> 1))
3559 return -EINVAL;
3560
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003561 sctp_sk(sk)->pd_point = val;
3562
3563 return 0; /* is this the right error code? */
3564}
3565
Vlad Yasevich70331572007-03-23 11:34:36 -07003566/*
3567 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
3568 *
3569 * This option will allow a user to change the maximum burst of packets
3570 * that can be emitted by this association. Note that the default value
3571 * is 4, and some implementations may restrict this setting so that it
3572 * can only be lowered.
3573 *
3574 * NOTE: This text doesn't seem right. Do this on a socket basis with
3575 * future associations inheriting the socket value.
3576 */
3577static int sctp_setsockopt_maxburst(struct sock *sk,
3578 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003579 unsigned int optlen)
Vlad Yasevich70331572007-03-23 11:34:36 -07003580{
Neil Horman219b99a2008-03-05 13:44:46 -08003581 struct sctp_assoc_value params;
3582 struct sctp_sock *sp;
3583 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07003584 int val;
Neil Horman219b99a2008-03-05 13:44:46 -08003585 int assoc_id = 0;
Vlad Yasevich70331572007-03-23 11:34:36 -07003586
Neil Horman219b99a2008-03-05 13:44:46 -08003587 if (optlen == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05003588 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05003589 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05003590 "Use of int in max_burst socket option deprecated.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05003591 "Use struct sctp_assoc_value instead\n",
3592 current->comm, task_pid_nr(current));
Neil Horman219b99a2008-03-05 13:44:46 -08003593 if (copy_from_user(&val, optval, optlen))
3594 return -EFAULT;
3595 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3596 if (copy_from_user(&params, optval, optlen))
3597 return -EFAULT;
3598 val = params.assoc_value;
3599 assoc_id = params.assoc_id;
3600 } else
3601 return -EINVAL;
3602
3603 sp = sctp_sk(sk);
3604
3605 if (assoc_id != 0) {
3606 asoc = sctp_id2assoc(sk, assoc_id);
3607 if (!asoc)
3608 return -EINVAL;
3609 asoc->max_burst = val;
3610 } else
3611 sp->max_burst = val;
Vlad Yasevich70331572007-03-23 11:34:36 -07003612
3613 return 0;
3614}
3615
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003616/*
3617 * 7.1.18. Add a chunk that must be authenticated (SCTP_AUTH_CHUNK)
3618 *
3619 * This set option adds a chunk type that the user is requesting to be
3620 * received only in an authenticated way. Changes to the list of chunks
3621 * will only effect future associations on the socket.
3622 */
3623static int sctp_setsockopt_auth_chunk(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003624 char __user *optval,
3625 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003626{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003627 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003628 struct sctp_authchunk val;
3629
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003630 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003631 return -EACCES;
3632
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003633 if (optlen != sizeof(struct sctp_authchunk))
3634 return -EINVAL;
3635 if (copy_from_user(&val, optval, optlen))
3636 return -EFAULT;
3637
3638 switch (val.sauth_chunk) {
Joe Perches7fd71b12011-07-01 09:43:11 +00003639 case SCTP_CID_INIT:
3640 case SCTP_CID_INIT_ACK:
3641 case SCTP_CID_SHUTDOWN_COMPLETE:
3642 case SCTP_CID_AUTH:
3643 return -EINVAL;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003644 }
3645
3646 /* add this chunk id to the endpoint */
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003647 return sctp_auth_ep_add_chunkid(ep, val.sauth_chunk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003648}
3649
3650/*
3651 * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
3652 *
3653 * This option gets or sets the list of HMAC algorithms that the local
3654 * endpoint requires the peer to use.
3655 */
3656static int sctp_setsockopt_hmac_ident(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003657 char __user *optval,
3658 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003659{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003660 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003661 struct sctp_hmacalgo *hmacs;
Vlad Yasevichd9724052008-08-27 16:09:49 -07003662 u32 idents;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003663 int err;
3664
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003665 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003666 return -EACCES;
3667
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003668 if (optlen < sizeof(struct sctp_hmacalgo))
3669 return -EINVAL;
Marcelo Ricardo Leitner5960cef2018-01-08 19:02:28 -02003670 optlen = min_t(unsigned int, optlen, sizeof(struct sctp_hmacalgo) +
3671 SCTP_AUTH_NUM_HMACS * sizeof(u16));
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003672
wangweidongcb3f8372013-12-23 12:16:50 +08003673 hmacs = memdup_user(optval, optlen);
Shan Wei934253a2011-04-18 19:13:18 +00003674 if (IS_ERR(hmacs))
3675 return PTR_ERR(hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003676
Vlad Yasevichd9724052008-08-27 16:09:49 -07003677 idents = hmacs->shmac_num_idents;
3678 if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS ||
3679 (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo))) {
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003680 err = -EINVAL;
3681 goto out;
3682 }
3683
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003684 err = sctp_auth_ep_set_hmacs(ep, hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003685out:
3686 kfree(hmacs);
3687 return err;
3688}
3689
3690/*
3691 * 7.1.20. Set a shared key (SCTP_AUTH_KEY)
3692 *
3693 * This option will set a shared secret key which is used to build an
3694 * association shared key.
3695 */
3696static int sctp_setsockopt_auth_key(struct sock *sk,
3697 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003698 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003699{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003700 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003701 struct sctp_authkey *authkey;
3702 struct sctp_association *asoc;
3703 int ret;
3704
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003705 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003706 return -EACCES;
3707
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003708 if (optlen <= sizeof(struct sctp_authkey))
3709 return -EINVAL;
Marcelo Ricardo Leitner5960cef2018-01-08 19:02:28 -02003710 /* authkey->sca_keylength is u16, so optlen can't be bigger than
3711 * this.
3712 */
3713 optlen = min_t(unsigned int, optlen, USHRT_MAX +
3714 sizeof(struct sctp_authkey));
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003715
wangweidongcb3f8372013-12-23 12:16:50 +08003716 authkey = memdup_user(optval, optlen);
Shan Wei934253a2011-04-18 19:13:18 +00003717 if (IS_ERR(authkey))
3718 return PTR_ERR(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003719
Vlad Yasevich328fc472008-08-27 16:08:54 -07003720 if (authkey->sca_keylength > optlen - sizeof(struct sctp_authkey)) {
Vlad Yasevich30c22352008-08-25 15:16:19 -07003721 ret = -EINVAL;
3722 goto out;
3723 }
3724
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003725 asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
3726 if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) {
3727 ret = -EINVAL;
3728 goto out;
3729 }
3730
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003731 ret = sctp_auth_set_key(ep, asoc, authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003732out:
Daniel Borkmann6ba542a2013-02-08 03:04:34 +00003733 kzfree(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003734 return ret;
3735}
3736
3737/*
3738 * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
3739 *
3740 * This option will get or set the active shared key to be used to build
3741 * the association shared key.
3742 */
3743static int sctp_setsockopt_active_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003744 char __user *optval,
3745 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003746{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003747 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003748 struct sctp_authkeyid val;
3749 struct sctp_association *asoc;
3750
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003751 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003752 return -EACCES;
3753
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003754 if (optlen != sizeof(struct sctp_authkeyid))
3755 return -EINVAL;
3756 if (copy_from_user(&val, optval, optlen))
3757 return -EFAULT;
3758
3759 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3760 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3761 return -EINVAL;
3762
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003763 return sctp_auth_set_active_key(ep, asoc, val.scact_keynumber);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003764}
3765
3766/*
3767 * 7.1.22. Delete a shared key (SCTP_AUTH_DELETE_KEY)
3768 *
3769 * This set option will delete a shared secret key from use.
3770 */
3771static int sctp_setsockopt_del_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003772 char __user *optval,
3773 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003774{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003775 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003776 struct sctp_authkeyid val;
3777 struct sctp_association *asoc;
3778
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003779 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003780 return -EACCES;
3781
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003782 if (optlen != sizeof(struct sctp_authkeyid))
3783 return -EINVAL;
3784 if (copy_from_user(&val, optval, optlen))
3785 return -EFAULT;
3786
3787 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3788 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3789 return -EINVAL;
3790
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003791 return sctp_auth_del_key_id(ep, asoc, val.scact_keynumber);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003792
3793}
3794
Michio Honda7dc04d72011-04-26 20:16:31 +09003795/*
Xin Long601590e2018-03-14 19:05:32 +08003796 * 8.3.4 Deactivate a Shared Key (SCTP_AUTH_DEACTIVATE_KEY)
3797 *
3798 * This set option will deactivate a shared secret key.
3799 */
3800static int sctp_setsockopt_deactivate_key(struct sock *sk, char __user *optval,
3801 unsigned int optlen)
3802{
3803 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3804 struct sctp_authkeyid val;
3805 struct sctp_association *asoc;
3806
3807 if (!ep->auth_enable)
3808 return -EACCES;
3809
3810 if (optlen != sizeof(struct sctp_authkeyid))
3811 return -EINVAL;
3812 if (copy_from_user(&val, optval, optlen))
3813 return -EFAULT;
3814
3815 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3816 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3817 return -EINVAL;
3818
3819 return sctp_auth_deact_key_id(ep, asoc, val.scact_keynumber);
3820}
3821
3822/*
Michio Honda7dc04d72011-04-26 20:16:31 +09003823 * 8.1.23 SCTP_AUTO_ASCONF
3824 *
3825 * This option will enable or disable the use of the automatic generation of
3826 * ASCONF chunks to add and delete addresses to an existing association. Note
3827 * that this option has two caveats namely: a) it only affects sockets that
3828 * are bound to all addresses available to the SCTP stack, and b) the system
3829 * administrator may have an overriding control that turns the ASCONF feature
3830 * off no matter what setting the socket option may have.
3831 * This option expects an integer boolean flag, where a non-zero value turns on
3832 * the option, and a zero value turns off the option.
3833 * Note. In this implementation, socket operation overrides default parameter
3834 * being set by sysctl as well as FreeBSD implementation
3835 */
3836static int sctp_setsockopt_auto_asconf(struct sock *sk, char __user *optval,
3837 unsigned int optlen)
3838{
3839 int val;
3840 struct sctp_sock *sp = sctp_sk(sk);
3841
3842 if (optlen < sizeof(int))
3843 return -EINVAL;
3844 if (get_user(val, (int __user *)optval))
3845 return -EFAULT;
3846 if (!sctp_is_ep_boundall(sk) && val)
3847 return -EINVAL;
3848 if ((val && sp->do_auto_asconf) || (!val && !sp->do_auto_asconf))
3849 return 0;
3850
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03003851 spin_lock_bh(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda7dc04d72011-04-26 20:16:31 +09003852 if (val == 0 && sp->do_auto_asconf) {
3853 list_del(&sp->auto_asconf_list);
3854 sp->do_auto_asconf = 0;
3855 } else if (val && !sp->do_auto_asconf) {
3856 list_add_tail(&sp->auto_asconf_list,
Eric W. Biederman4db67e82012-08-06 08:42:04 +00003857 &sock_net(sk)->sctp.auto_asconf_splist);
Michio Honda7dc04d72011-04-26 20:16:31 +09003858 sp->do_auto_asconf = 1;
3859 }
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03003860 spin_unlock_bh(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda7dc04d72011-04-26 20:16:31 +09003861 return 0;
3862}
3863
Neil Horman5aa93bc2012-07-21 07:56:07 +00003864/*
3865 * SCTP_PEER_ADDR_THLDS
3866 *
3867 * This option allows us to alter the partially failed threshold for one or all
3868 * transports in an association. See Section 6.1 of:
3869 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
3870 */
3871static int sctp_setsockopt_paddr_thresholds(struct sock *sk,
3872 char __user *optval,
3873 unsigned int optlen)
3874{
3875 struct sctp_paddrthlds val;
3876 struct sctp_transport *trans;
3877 struct sctp_association *asoc;
3878
3879 if (optlen < sizeof(struct sctp_paddrthlds))
3880 return -EINVAL;
3881 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval,
3882 sizeof(struct sctp_paddrthlds)))
3883 return -EFAULT;
3884
3885
3886 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
3887 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
3888 if (!asoc)
3889 return -ENOENT;
3890 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
3891 transports) {
3892 if (val.spt_pathmaxrxt)
3893 trans->pathmaxrxt = val.spt_pathmaxrxt;
3894 trans->pf_retrans = val.spt_pathpfthld;
3895 }
3896
3897 if (val.spt_pathmaxrxt)
3898 asoc->pathmaxrxt = val.spt_pathmaxrxt;
3899 asoc->pf_retrans = val.spt_pathpfthld;
3900 } else {
3901 trans = sctp_addr_id2transport(sk, &val.spt_address,
3902 val.spt_assoc_id);
3903 if (!trans)
3904 return -ENOENT;
3905
3906 if (val.spt_pathmaxrxt)
3907 trans->pathmaxrxt = val.spt_pathmaxrxt;
3908 trans->pf_retrans = val.spt_pathpfthld;
3909 }
3910
3911 return 0;
3912}
3913
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02003914static int sctp_setsockopt_recvrcvinfo(struct sock *sk,
3915 char __user *optval,
3916 unsigned int optlen)
3917{
3918 int val;
3919
3920 if (optlen < sizeof(int))
3921 return -EINVAL;
3922 if (get_user(val, (int __user *) optval))
3923 return -EFAULT;
3924
3925 sctp_sk(sk)->recvrcvinfo = (val == 0) ? 0 : 1;
3926
3927 return 0;
3928}
3929
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02003930static int sctp_setsockopt_recvnxtinfo(struct sock *sk,
3931 char __user *optval,
3932 unsigned int optlen)
3933{
3934 int val;
3935
3936 if (optlen < sizeof(int))
3937 return -EINVAL;
3938 if (get_user(val, (int __user *) optval))
3939 return -EFAULT;
3940
3941 sctp_sk(sk)->recvnxtinfo = (val == 0) ? 0 : 1;
3942
3943 return 0;
3944}
3945
Xin Long28aa4c22016-07-09 19:47:40 +08003946static int sctp_setsockopt_pr_supported(struct sock *sk,
3947 char __user *optval,
3948 unsigned int optlen)
3949{
3950 struct sctp_assoc_value params;
3951 struct sctp_association *asoc;
3952 int retval = -EINVAL;
3953
3954 if (optlen != sizeof(params))
3955 goto out;
3956
3957 if (copy_from_user(&params, optval, optlen)) {
3958 retval = -EFAULT;
3959 goto out;
3960 }
3961
3962 asoc = sctp_id2assoc(sk, params.assoc_id);
3963 if (asoc) {
3964 asoc->prsctp_enable = !!params.assoc_value;
3965 } else if (!params.assoc_id) {
3966 struct sctp_sock *sp = sctp_sk(sk);
3967
3968 sp->ep->prsctp_enable = !!params.assoc_value;
3969 } else {
3970 goto out;
3971 }
3972
3973 retval = 0;
3974
3975out:
3976 return retval;
3977}
3978
Xin Longf959fb42016-07-09 19:47:41 +08003979static int sctp_setsockopt_default_prinfo(struct sock *sk,
3980 char __user *optval,
3981 unsigned int optlen)
3982{
3983 struct sctp_default_prinfo info;
3984 struct sctp_association *asoc;
3985 int retval = -EINVAL;
3986
3987 if (optlen != sizeof(info))
3988 goto out;
3989
3990 if (copy_from_user(&info, optval, sizeof(info))) {
3991 retval = -EFAULT;
3992 goto out;
3993 }
3994
3995 if (info.pr_policy & ~SCTP_PR_SCTP_MASK)
3996 goto out;
3997
3998 if (info.pr_policy == SCTP_PR_SCTP_NONE)
3999 info.pr_value = 0;
4000
4001 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
4002 if (asoc) {
4003 SCTP_PR_SET_POLICY(asoc->default_flags, info.pr_policy);
4004 asoc->default_timetolive = info.pr_value;
4005 } else if (!info.pr_assoc_id) {
4006 struct sctp_sock *sp = sctp_sk(sk);
4007
4008 SCTP_PR_SET_POLICY(sp->default_flags, info.pr_policy);
4009 sp->default_timetolive = info.pr_value;
4010 } else {
4011 goto out;
4012 }
4013
4014 retval = 0;
4015
4016out:
4017 return retval;
4018}
4019
Xin Longc0d8bab2017-03-10 12:11:12 +08004020static int sctp_setsockopt_reconfig_supported(struct sock *sk,
4021 char __user *optval,
4022 unsigned int optlen)
4023{
4024 struct sctp_assoc_value params;
4025 struct sctp_association *asoc;
4026 int retval = -EINVAL;
4027
4028 if (optlen != sizeof(params))
4029 goto out;
4030
4031 if (copy_from_user(&params, optval, optlen)) {
4032 retval = -EFAULT;
4033 goto out;
4034 }
4035
4036 asoc = sctp_id2assoc(sk, params.assoc_id);
4037 if (asoc) {
4038 asoc->reconf_enable = !!params.assoc_value;
4039 } else if (!params.assoc_id) {
4040 struct sctp_sock *sp = sctp_sk(sk);
4041
4042 sp->ep->reconf_enable = !!params.assoc_value;
4043 } else {
4044 goto out;
4045 }
4046
4047 retval = 0;
4048
4049out:
4050 return retval;
4051}
4052
Xin Long9fb657a2017-01-18 00:44:46 +08004053static int sctp_setsockopt_enable_strreset(struct sock *sk,
4054 char __user *optval,
4055 unsigned int optlen)
4056{
4057 struct sctp_assoc_value params;
4058 struct sctp_association *asoc;
4059 int retval = -EINVAL;
4060
4061 if (optlen != sizeof(params))
4062 goto out;
4063
4064 if (copy_from_user(&params, optval, optlen)) {
4065 retval = -EFAULT;
4066 goto out;
4067 }
4068
4069 if (params.assoc_value & (~SCTP_ENABLE_STRRESET_MASK))
4070 goto out;
4071
4072 asoc = sctp_id2assoc(sk, params.assoc_id);
4073 if (asoc) {
4074 asoc->strreset_enable = params.assoc_value;
4075 } else if (!params.assoc_id) {
4076 struct sctp_sock *sp = sctp_sk(sk);
4077
4078 sp->ep->strreset_enable = params.assoc_value;
4079 } else {
4080 goto out;
4081 }
4082
4083 retval = 0;
4084
4085out:
4086 return retval;
4087}
4088
Xin Long7f9d68a2017-01-18 00:44:47 +08004089static int sctp_setsockopt_reset_streams(struct sock *sk,
4090 char __user *optval,
4091 unsigned int optlen)
4092{
4093 struct sctp_reset_streams *params;
4094 struct sctp_association *asoc;
4095 int retval = -EINVAL;
4096
Xin Long2342b8d2017-12-10 15:40:51 +08004097 if (optlen < sizeof(*params))
Xin Long7f9d68a2017-01-18 00:44:47 +08004098 return -EINVAL;
Marcelo Ricardo Leitner5960cef2018-01-08 19:02:28 -02004099 /* srs_number_streams is u16, so optlen can't be bigger than this. */
4100 optlen = min_t(unsigned int, optlen, USHRT_MAX +
4101 sizeof(__u16) * sizeof(*params));
Xin Long7f9d68a2017-01-18 00:44:47 +08004102
4103 params = memdup_user(optval, optlen);
4104 if (IS_ERR(params))
4105 return PTR_ERR(params);
4106
Xin Long2342b8d2017-12-10 15:40:51 +08004107 if (params->srs_number_streams * sizeof(__u16) >
4108 optlen - sizeof(*params))
4109 goto out;
4110
Xin Long7f9d68a2017-01-18 00:44:47 +08004111 asoc = sctp_id2assoc(sk, params->srs_assoc_id);
4112 if (!asoc)
4113 goto out;
4114
4115 retval = sctp_send_reset_streams(asoc, params);
4116
4117out:
4118 kfree(params);
4119 return retval;
4120}
4121
Xin Longa92ce1a2017-02-09 01:18:18 +08004122static int sctp_setsockopt_reset_assoc(struct sock *sk,
4123 char __user *optval,
4124 unsigned int optlen)
4125{
4126 struct sctp_association *asoc;
4127 sctp_assoc_t associd;
4128 int retval = -EINVAL;
4129
4130 if (optlen != sizeof(associd))
4131 goto out;
4132
4133 if (copy_from_user(&associd, optval, optlen)) {
4134 retval = -EFAULT;
4135 goto out;
4136 }
4137
4138 asoc = sctp_id2assoc(sk, associd);
4139 if (!asoc)
4140 goto out;
4141
4142 retval = sctp_send_reset_assoc(asoc);
4143
4144out:
4145 return retval;
4146}
4147
Xin Long242bd2d2017-02-09 01:18:20 +08004148static int sctp_setsockopt_add_streams(struct sock *sk,
4149 char __user *optval,
4150 unsigned int optlen)
4151{
4152 struct sctp_association *asoc;
4153 struct sctp_add_streams params;
4154 int retval = -EINVAL;
4155
4156 if (optlen != sizeof(params))
4157 goto out;
4158
4159 if (copy_from_user(&params, optval, optlen)) {
4160 retval = -EFAULT;
4161 goto out;
4162 }
4163
4164 asoc = sctp_id2assoc(sk, params.sas_assoc_id);
4165 if (!asoc)
4166 goto out;
4167
4168 retval = sctp_send_add_streams(asoc, &params);
4169
4170out:
4171 return retval;
4172}
4173
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004174static int sctp_setsockopt_scheduler(struct sock *sk,
4175 char __user *optval,
4176 unsigned int optlen)
4177{
4178 struct sctp_association *asoc;
4179 struct sctp_assoc_value params;
4180 int retval = -EINVAL;
4181
4182 if (optlen < sizeof(params))
4183 goto out;
4184
4185 optlen = sizeof(params);
4186 if (copy_from_user(&params, optval, optlen)) {
4187 retval = -EFAULT;
4188 goto out;
4189 }
4190
4191 if (params.assoc_value > SCTP_SS_MAX)
4192 goto out;
4193
4194 asoc = sctp_id2assoc(sk, params.assoc_id);
4195 if (!asoc)
4196 goto out;
4197
4198 retval = sctp_sched_set_sched(asoc, params.assoc_value);
4199
4200out:
4201 return retval;
4202}
4203
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004204static int sctp_setsockopt_scheduler_value(struct sock *sk,
4205 char __user *optval,
4206 unsigned int optlen)
4207{
4208 struct sctp_association *asoc;
4209 struct sctp_stream_value params;
4210 int retval = -EINVAL;
4211
4212 if (optlen < sizeof(params))
4213 goto out;
4214
4215 optlen = sizeof(params);
4216 if (copy_from_user(&params, optval, optlen)) {
4217 retval = -EFAULT;
4218 goto out;
4219 }
4220
4221 asoc = sctp_id2assoc(sk, params.assoc_id);
4222 if (!asoc)
4223 goto out;
4224
4225 retval = sctp_sched_set_value(asoc, params.stream_id,
4226 params.stream_value, GFP_KERNEL);
4227
4228out:
4229 return retval;
4230}
4231
Xin Long772a5862017-12-08 21:03:58 +08004232static int sctp_setsockopt_interleaving_supported(struct sock *sk,
4233 char __user *optval,
4234 unsigned int optlen)
4235{
4236 struct sctp_sock *sp = sctp_sk(sk);
4237 struct net *net = sock_net(sk);
4238 struct sctp_assoc_value params;
4239 int retval = -EINVAL;
4240
4241 if (optlen < sizeof(params))
4242 goto out;
4243
4244 optlen = sizeof(params);
4245 if (copy_from_user(&params, optval, optlen)) {
4246 retval = -EFAULT;
4247 goto out;
4248 }
4249
4250 if (params.assoc_id)
4251 goto out;
4252
4253 if (!net->sctp.intl_enable || !sp->frag_interleave) {
4254 retval = -EPERM;
4255 goto out;
4256 }
4257
4258 sp->strm_interleave = !!params.assoc_value;
4259
4260 retval = 0;
4261
4262out:
4263 return retval;
4264}
4265
Xin Longb0e9a2f2018-06-28 15:31:00 +08004266static int sctp_setsockopt_reuse_port(struct sock *sk, char __user *optval,
4267 unsigned int optlen)
4268{
4269 int val;
4270
4271 if (!sctp_style(sk, TCP))
4272 return -EOPNOTSUPP;
4273
4274 if (sctp_sk(sk)->ep->base.bind_addr.port)
4275 return -EFAULT;
4276
4277 if (optlen < sizeof(int))
4278 return -EINVAL;
4279
4280 if (get_user(val, (int __user *)optval))
4281 return -EFAULT;
4282
4283 sctp_sk(sk)->reuse = !!val;
4284
4285 return 0;
4286}
4287
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288/* API 6.2 setsockopt(), getsockopt()
4289 *
4290 * Applications use setsockopt() and getsockopt() to set or retrieve
4291 * socket options. Socket options are used to change the default
4292 * behavior of sockets calls. They are described in Section 7.
4293 *
4294 * The syntax is:
4295 *
4296 * ret = getsockopt(int sd, int level, int optname, void __user *optval,
4297 * int __user *optlen);
4298 * ret = setsockopt(int sd, int level, int optname, const void __user *optval,
4299 * int optlen);
4300 *
4301 * sd - the socket descript.
4302 * level - set to IPPROTO_SCTP for all SCTP options.
4303 * optname - the option name.
4304 * optval - the buffer to store the value of the option.
4305 * optlen - the size of the buffer.
4306 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004307static int sctp_setsockopt(struct sock *sk, int level, int optname,
4308 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309{
4310 int retval = 0;
4311
Daniel Borkmannbb333812013-06-28 19:49:40 +02004312 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313
4314 /* I can hardly begin to describe how wrong this is. This is
4315 * so broken as to be worse than useless. The API draft
4316 * REALLY is NOT helpful here... I am not convinced that the
4317 * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
4318 * are at all well-founded.
4319 */
4320 if (level != SOL_SCTP) {
4321 struct sctp_af *af = sctp_sk(sk)->pf->af;
4322 retval = af->setsockopt(sk, level, optname, optval, optlen);
4323 goto out_nounlock;
4324 }
4325
wangweidong048ed4b2014-01-21 15:44:11 +08004326 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327
4328 switch (optname) {
4329 case SCTP_SOCKOPT_BINDX_ADD:
4330 /* 'optlen' is the size of the addresses buffer. */
4331 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
4332 optlen, SCTP_BINDX_ADD_ADDR);
4333 break;
4334
4335 case SCTP_SOCKOPT_BINDX_REM:
4336 /* 'optlen' is the size of the addresses buffer. */
4337 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
4338 optlen, SCTP_BINDX_REM_ADDR);
4339 break;
4340
Vlad Yasevich88a0a942008-05-09 15:14:11 -07004341 case SCTP_SOCKOPT_CONNECTX_OLD:
4342 /* 'optlen' is the size of the addresses buffer. */
4343 retval = sctp_setsockopt_connectx_old(sk,
4344 (struct sockaddr __user *)optval,
4345 optlen);
4346 break;
4347
Frank Filz3f7a87d2005-06-20 13:14:57 -07004348 case SCTP_SOCKOPT_CONNECTX:
4349 /* 'optlen' is the size of the addresses buffer. */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07004350 retval = sctp_setsockopt_connectx(sk,
4351 (struct sockaddr __user *)optval,
4352 optlen);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004353 break;
4354
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355 case SCTP_DISABLE_FRAGMENTS:
4356 retval = sctp_setsockopt_disable_fragments(sk, optval, optlen);
4357 break;
4358
4359 case SCTP_EVENTS:
4360 retval = sctp_setsockopt_events(sk, optval, optlen);
4361 break;
4362
4363 case SCTP_AUTOCLOSE:
4364 retval = sctp_setsockopt_autoclose(sk, optval, optlen);
4365 break;
4366
4367 case SCTP_PEER_ADDR_PARAMS:
4368 retval = sctp_setsockopt_peer_addr_params(sk, optval, optlen);
4369 break;
4370
Shan Wei4580ccc2011-01-18 22:39:00 +00004371 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07004372 retval = sctp_setsockopt_delayed_ack(sk, optval, optlen);
Frank Filz77086102005-12-22 11:37:30 -08004373 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07004374 case SCTP_PARTIAL_DELIVERY_POINT:
4375 retval = sctp_setsockopt_partial_delivery_point(sk, optval, optlen);
4376 break;
Frank Filz77086102005-12-22 11:37:30 -08004377
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378 case SCTP_INITMSG:
4379 retval = sctp_setsockopt_initmsg(sk, optval, optlen);
4380 break;
4381 case SCTP_DEFAULT_SEND_PARAM:
4382 retval = sctp_setsockopt_default_send_param(sk, optval,
4383 optlen);
4384 break;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02004385 case SCTP_DEFAULT_SNDINFO:
4386 retval = sctp_setsockopt_default_sndinfo(sk, optval, optlen);
4387 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388 case SCTP_PRIMARY_ADDR:
4389 retval = sctp_setsockopt_primary_addr(sk, optval, optlen);
4390 break;
4391 case SCTP_SET_PEER_PRIMARY_ADDR:
4392 retval = sctp_setsockopt_peer_primary_addr(sk, optval, optlen);
4393 break;
4394 case SCTP_NODELAY:
4395 retval = sctp_setsockopt_nodelay(sk, optval, optlen);
4396 break;
4397 case SCTP_RTOINFO:
4398 retval = sctp_setsockopt_rtoinfo(sk, optval, optlen);
4399 break;
4400 case SCTP_ASSOCINFO:
4401 retval = sctp_setsockopt_associnfo(sk, optval, optlen);
4402 break;
4403 case SCTP_I_WANT_MAPPED_V4_ADDR:
4404 retval = sctp_setsockopt_mappedv4(sk, optval, optlen);
4405 break;
4406 case SCTP_MAXSEG:
4407 retval = sctp_setsockopt_maxseg(sk, optval, optlen);
4408 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004409 case SCTP_ADAPTATION_LAYER:
4410 retval = sctp_setsockopt_adaptation_layer(sk, optval, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004412 case SCTP_CONTEXT:
4413 retval = sctp_setsockopt_context(sk, optval, optlen);
4414 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004415 case SCTP_FRAGMENT_INTERLEAVE:
4416 retval = sctp_setsockopt_fragment_interleave(sk, optval, optlen);
4417 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07004418 case SCTP_MAX_BURST:
4419 retval = sctp_setsockopt_maxburst(sk, optval, optlen);
4420 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07004421 case SCTP_AUTH_CHUNK:
4422 retval = sctp_setsockopt_auth_chunk(sk, optval, optlen);
4423 break;
4424 case SCTP_HMAC_IDENT:
4425 retval = sctp_setsockopt_hmac_ident(sk, optval, optlen);
4426 break;
4427 case SCTP_AUTH_KEY:
4428 retval = sctp_setsockopt_auth_key(sk, optval, optlen);
4429 break;
4430 case SCTP_AUTH_ACTIVE_KEY:
4431 retval = sctp_setsockopt_active_key(sk, optval, optlen);
4432 break;
4433 case SCTP_AUTH_DELETE_KEY:
4434 retval = sctp_setsockopt_del_key(sk, optval, optlen);
4435 break;
Xin Long601590e2018-03-14 19:05:32 +08004436 case SCTP_AUTH_DEACTIVATE_KEY:
4437 retval = sctp_setsockopt_deactivate_key(sk, optval, optlen);
4438 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09004439 case SCTP_AUTO_ASCONF:
4440 retval = sctp_setsockopt_auto_asconf(sk, optval, optlen);
4441 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00004442 case SCTP_PEER_ADDR_THLDS:
4443 retval = sctp_setsockopt_paddr_thresholds(sk, optval, optlen);
4444 break;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004445 case SCTP_RECVRCVINFO:
4446 retval = sctp_setsockopt_recvrcvinfo(sk, optval, optlen);
4447 break;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02004448 case SCTP_RECVNXTINFO:
4449 retval = sctp_setsockopt_recvnxtinfo(sk, optval, optlen);
4450 break;
Xin Long28aa4c22016-07-09 19:47:40 +08004451 case SCTP_PR_SUPPORTED:
4452 retval = sctp_setsockopt_pr_supported(sk, optval, optlen);
4453 break;
Xin Longf959fb42016-07-09 19:47:41 +08004454 case SCTP_DEFAULT_PRINFO:
4455 retval = sctp_setsockopt_default_prinfo(sk, optval, optlen);
4456 break;
Xin Longc0d8bab2017-03-10 12:11:12 +08004457 case SCTP_RECONFIG_SUPPORTED:
4458 retval = sctp_setsockopt_reconfig_supported(sk, optval, optlen);
4459 break;
Xin Long9fb657a2017-01-18 00:44:46 +08004460 case SCTP_ENABLE_STREAM_RESET:
4461 retval = sctp_setsockopt_enable_strreset(sk, optval, optlen);
4462 break;
Xin Long7f9d68a2017-01-18 00:44:47 +08004463 case SCTP_RESET_STREAMS:
4464 retval = sctp_setsockopt_reset_streams(sk, optval, optlen);
4465 break;
Xin Longa92ce1a2017-02-09 01:18:18 +08004466 case SCTP_RESET_ASSOC:
4467 retval = sctp_setsockopt_reset_assoc(sk, optval, optlen);
4468 break;
Xin Long242bd2d2017-02-09 01:18:20 +08004469 case SCTP_ADD_STREAMS:
4470 retval = sctp_setsockopt_add_streams(sk, optval, optlen);
4471 break;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004472 case SCTP_STREAM_SCHEDULER:
4473 retval = sctp_setsockopt_scheduler(sk, optval, optlen);
4474 break;
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004475 case SCTP_STREAM_SCHEDULER_VALUE:
4476 retval = sctp_setsockopt_scheduler_value(sk, optval, optlen);
4477 break;
Xin Long772a5862017-12-08 21:03:58 +08004478 case SCTP_INTERLEAVING_SUPPORTED:
4479 retval = sctp_setsockopt_interleaving_supported(sk, optval,
4480 optlen);
4481 break;
Xin Longb0e9a2f2018-06-28 15:31:00 +08004482 case SCTP_REUSE_PORT:
4483 retval = sctp_setsockopt_reuse_port(sk, optval, optlen);
4484 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485 default:
4486 retval = -ENOPROTOOPT;
4487 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07004488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489
wangweidong048ed4b2014-01-21 15:44:11 +08004490 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491
4492out_nounlock:
4493 return retval;
4494}
4495
4496/* API 3.1.6 connect() - UDP Style Syntax
4497 *
4498 * An application may use the connect() call in the UDP model to initiate an
4499 * association without sending data.
4500 *
4501 * The syntax is:
4502 *
4503 * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
4504 *
4505 * sd: the socket descriptor to have a new association added to.
4506 *
4507 * nam: the address structure (either struct sockaddr_in or struct
4508 * sockaddr_in6 defined in RFC2553 [7]).
4509 *
4510 * len: the size of the address.
4511 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004512static int sctp_connect(struct sock *sk, struct sockaddr *addr,
Xin Long644fbde2018-05-20 16:39:10 +08004513 int addr_len, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514{
Xin Long644fbde2018-05-20 16:39:10 +08004515 struct inet_sock *inet = inet_sk(sk);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004516 struct sctp_af *af;
Xin Long644fbde2018-05-20 16:39:10 +08004517 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518
wangweidong048ed4b2014-01-21 15:44:11 +08004519 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520
Daniel Borkmannbb333812013-06-28 19:49:40 +02004521 pr_debug("%s: sk:%p, sockaddr:%p, addr_len:%d\n", __func__, sk,
4522 addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523
Xin Long644fbde2018-05-20 16:39:10 +08004524 /* We may need to bind the socket. */
4525 if (!inet->inet_num) {
4526 if (sk->sk_prot->get_port(sk, 0)) {
4527 release_sock(sk);
4528 return -EAGAIN;
4529 }
4530 inet->inet_sport = htons(inet->inet_num);
4531 }
4532
Frank Filz3f7a87d2005-06-20 13:14:57 -07004533 /* Validate addr_len before calling common connect/connectx routine. */
4534 af = sctp_get_af_specific(addr->sa_family);
4535 if (!af || addr_len < af->sockaddr_len) {
4536 err = -EINVAL;
4537 } else {
4538 /* Pass correct addr len to common routine (so it knows there
4539 * is only one address being passed.
4540 */
Xin Long644fbde2018-05-20 16:39:10 +08004541 err = __sctp_connect(sk, addr, af->sockaddr_len, flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542 }
4543
wangweidong048ed4b2014-01-21 15:44:11 +08004544 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 return err;
4546}
4547
Xin Long644fbde2018-05-20 16:39:10 +08004548int sctp_inet_connect(struct socket *sock, struct sockaddr *uaddr,
4549 int addr_len, int flags)
4550{
4551 if (addr_len < sizeof(uaddr->sa_family))
4552 return -EINVAL;
4553
4554 if (uaddr->sa_family == AF_UNSPEC)
4555 return -EOPNOTSUPP;
4556
4557 return sctp_connect(sock->sk, uaddr, addr_len, flags);
4558}
4559
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560/* FIXME: Write comments. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004561static int sctp_disconnect(struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562{
4563 return -EOPNOTSUPP; /* STUB */
4564}
4565
4566/* 4.1.4 accept() - TCP Style Syntax
4567 *
4568 * Applications use accept() call to remove an established SCTP
4569 * association from the accept queue of the endpoint. A new socket
4570 * descriptor will be returned from accept() to represent the newly
4571 * formed association.
4572 */
David Howellscdfbabf2017-03-09 08:09:05 +00004573static struct sock *sctp_accept(struct sock *sk, int flags, int *err, bool kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574{
4575 struct sctp_sock *sp;
4576 struct sctp_endpoint *ep;
4577 struct sock *newsk = NULL;
4578 struct sctp_association *asoc;
4579 long timeo;
4580 int error = 0;
4581
wangweidong048ed4b2014-01-21 15:44:11 +08004582 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583
4584 sp = sctp_sk(sk);
4585 ep = sp->ep;
4586
4587 if (!sctp_style(sk, TCP)) {
4588 error = -EOPNOTSUPP;
4589 goto out;
4590 }
4591
4592 if (!sctp_sstate(sk, LISTENING)) {
4593 error = -EINVAL;
4594 goto out;
4595 }
4596
Sridhar Samudrala8abfedd2006-08-22 00:24:09 -07004597 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598
4599 error = sctp_wait_for_accept(sk, timeo);
4600 if (error)
4601 goto out;
4602
4603 /* We treat the list of associations on the endpoint as the accept
4604 * queue and pick the first association on the list.
4605 */
4606 asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
4607
David Howellscdfbabf2017-03-09 08:09:05 +00004608 newsk = sp->pf->create_accept_sk(sk, asoc, kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609 if (!newsk) {
4610 error = -ENOMEM;
4611 goto out;
4612 }
4613
4614 /* Populate the fields of the newsk from the oldsk and migrate the
4615 * asoc to the newsk.
4616 */
4617 sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
4618
4619out:
wangweidong048ed4b2014-01-21 15:44:11 +08004620 release_sock(sk);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004621 *err = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622 return newsk;
4623}
4624
4625/* The SCTP ioctl handler. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004626static int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627{
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004628 int rc = -ENOTCONN;
4629
wangweidong048ed4b2014-01-21 15:44:11 +08004630 lock_sock(sk);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004631
4632 /*
4633 * SEQPACKET-style sockets in LISTENING state are valid, for
4634 * SCTP, so only discard TCP-style sockets in LISTENING state.
4635 */
4636 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
4637 goto out;
4638
4639 switch (cmd) {
4640 case SIOCINQ: {
4641 struct sk_buff *skb;
4642 unsigned int amount = 0;
4643
4644 skb = skb_peek(&sk->sk_receive_queue);
4645 if (skb != NULL) {
4646 /*
4647 * We will only return the amount of this packet since
4648 * that is all that will be read.
4649 */
4650 amount = skb->len;
4651 }
4652 rc = put_user(amount, (int __user *)arg);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004653 break;
David S. Miller9a7241c2010-10-03 22:14:37 -07004654 }
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004655 default:
4656 rc = -ENOIOCTLCMD;
4657 break;
4658 }
4659out:
wangweidong048ed4b2014-01-21 15:44:11 +08004660 release_sock(sk);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004661 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662}
4663
4664/* This is the function which gets called during socket creation to
4665 * initialized the SCTP-specific portion of the sock.
4666 * The sock structure should already be zero-filled memory.
4667 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004668static int sctp_init_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004670 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671 struct sctp_sock *sp;
4672
Daniel Borkmannbb333812013-06-28 19:49:40 +02004673 pr_debug("%s: sk:%p\n", __func__, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674
4675 sp = sctp_sk(sk);
4676
4677 /* Initialize the SCTP per socket area. */
4678 switch (sk->sk_type) {
4679 case SOCK_SEQPACKET:
4680 sp->type = SCTP_SOCKET_UDP;
4681 break;
4682 case SOCK_STREAM:
4683 sp->type = SCTP_SOCKET_TCP;
4684 break;
4685 default:
4686 return -ESOCKTNOSUPPORT;
4687 }
4688
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -03004689 sk->sk_gso_type = SKB_GSO_SCTP;
4690
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691 /* Initialize default send parameters. These parameters can be
4692 * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
4693 */
4694 sp->default_stream = 0;
4695 sp->default_ppid = 0;
4696 sp->default_flags = 0;
4697 sp->default_context = 0;
4698 sp->default_timetolive = 0;
4699
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004700 sp->default_rcv_context = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004701 sp->max_burst = net->sctp.max_burst;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004702
Neil Horman3c681982012-10-24 09:20:03 +00004703 sp->sctp_hmac_alg = net->sctp.sctp_hmac_alg;
4704
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705 /* Initialize default setup parameters. These parameters
4706 * can be modified with the SCTP_INITMSG socket option or
4707 * overridden by the SCTP_INIT CMSG.
4708 */
4709 sp->initmsg.sinit_num_ostreams = sctp_max_outstreams;
4710 sp->initmsg.sinit_max_instreams = sctp_max_instreams;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004711 sp->initmsg.sinit_max_attempts = net->sctp.max_retrans_init;
4712 sp->initmsg.sinit_max_init_timeo = net->sctp.rto_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713
4714 /* Initialize default RTO related parameters. These parameters can
4715 * be modified for with the SCTP_RTOINFO socket option.
4716 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004717 sp->rtoinfo.srto_initial = net->sctp.rto_initial;
4718 sp->rtoinfo.srto_max = net->sctp.rto_max;
4719 sp->rtoinfo.srto_min = net->sctp.rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720
4721 /* Initialize default association related parameters. These parameters
4722 * can be modified with the SCTP_ASSOCINFO socket option.
4723 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004724 sp->assocparams.sasoc_asocmaxrxt = net->sctp.max_retrans_association;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725 sp->assocparams.sasoc_number_peer_destinations = 0;
4726 sp->assocparams.sasoc_peer_rwnd = 0;
4727 sp->assocparams.sasoc_local_rwnd = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004728 sp->assocparams.sasoc_cookie_life = net->sctp.valid_cookie_life;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729
4730 /* Initialize default event subscriptions. By default, all the
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004731 * options are off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732 */
4733 memset(&sp->subscribe, 0, sizeof(struct sctp_event_subscribe));
4734
4735 /* Default Peer Address Parameters. These defaults can
4736 * be modified via SCTP_PEER_ADDR_PARAMS
4737 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004738 sp->hbinterval = net->sctp.hb_interval;
4739 sp->pathmaxrxt = net->sctp.max_retrans_path;
wangweidong4e2d52b2013-12-23 12:16:54 +08004740 sp->pathmtu = 0; /* allow default discovery */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004741 sp->sackdelay = net->sctp.sack_timeout;
Vlad Yasevich7bfe8bdb2008-06-09 15:45:05 -07004742 sp->sackfreq = 2;
Frank Filz52ccb8e2005-12-22 11:36:46 -08004743 sp->param_flags = SPP_HB_ENABLE |
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004744 SPP_PMTUD_ENABLE |
4745 SPP_SACKDELAY_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746
4747 /* If enabled no SCTP message fragmentation will be performed.
4748 * Configure through SCTP_DISABLE_FRAGMENTS socket option.
4749 */
4750 sp->disable_fragments = 0;
4751
Sridhar Samudrala208edef2006-09-29 17:08:01 -07004752 /* Enable Nagle algorithm by default. */
4753 sp->nodelay = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004755 sp->recvrcvinfo = 0;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02004756 sp->recvnxtinfo = 0;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004757
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 /* Enable by default. */
4759 sp->v4mapped = 1;
4760
4761 /* Auto-close idle associations after the configured
4762 * number of seconds. A value of 0 disables this
4763 * feature. Configure through the SCTP_AUTOCLOSE socket option,
4764 * for UDP-style sockets only.
4765 */
4766 sp->autoclose = 0;
4767
4768 /* User specified fragmentation limit. */
4769 sp->user_frag = 0;
4770
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004771 sp->adaptation_ind = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772
4773 sp->pf = sctp_get_pf_specific(sk->sk_family);
4774
4775 /* Control variables for partial data delivery. */
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004776 atomic_set(&sp->pd_mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 skb_queue_head_init(&sp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004778 sp->frag_interleave = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779
4780 /* Create a per socket endpoint structure. Even if we
4781 * change the data structure relationships, this may still
4782 * be useful for storing pre-connect address information.
4783 */
Daniel Borkmannc164b832013-06-14 18:24:06 +02004784 sp->ep = sctp_endpoint_new(sk, GFP_KERNEL);
4785 if (!sp->ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786 return -ENOMEM;
4787
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788 sp->hmac = NULL;
4789
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004790 sk->sk_destruct = sctp_destruct_sock;
4791
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792 SCTP_DBG_OBJCNT_INC(sock);
David S. Miller6f756a82008-11-23 17:34:03 -08004793
4794 local_bh_disable();
Tonghao Zhang8cb38a62017-12-22 10:15:20 -08004795 sk_sockets_allocated_inc(sk);
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004796 sock_prot_inuse_add(net, sk->sk_prot, 1);
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004797
4798 /* Nothing can fail after this block, otherwise
4799 * sctp_destroy_sock() will be called without addr_wq_lock held
4800 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004801 if (net->sctp.default_auto_asconf) {
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004802 spin_lock(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda9f7d6532011-04-26 19:32:51 +09004803 list_add_tail(&sp->auto_asconf_list,
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004804 &net->sctp.auto_asconf_splist);
Michio Honda9f7d6532011-04-26 19:32:51 +09004805 sp->do_auto_asconf = 1;
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004806 spin_unlock(&sock_net(sk)->sctp.addr_wq_lock);
4807 } else {
Michio Honda9f7d6532011-04-26 19:32:51 +09004808 sp->do_auto_asconf = 0;
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004809 }
4810
David S. Miller6f756a82008-11-23 17:34:03 -08004811 local_bh_enable();
4812
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813 return 0;
4814}
4815
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004816/* Cleanup any SCTP per socket resources. Must be called with
4817 * sock_net(sk)->sctp.addr_wq_lock held if sp->do_auto_asconf is true
4818 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004819static void sctp_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820{
Michio Honda9f7d6532011-04-26 19:32:51 +09004821 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822
Daniel Borkmannbb333812013-06-28 19:49:40 +02004823 pr_debug("%s: sk:%p\n", __func__, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824
4825 /* Release our hold on the endpoint. */
Michio Honda9f7d6532011-04-26 19:32:51 +09004826 sp = sctp_sk(sk);
Daniel Borkmann1abd1652013-06-06 15:53:47 +02004827 /* This could happen during socket init, thus we bail out
4828 * early, since the rest of the below is not setup either.
4829 */
4830 if (sp->ep == NULL)
4831 return;
4832
Michio Honda9f7d6532011-04-26 19:32:51 +09004833 if (sp->do_auto_asconf) {
4834 sp->do_auto_asconf = 0;
4835 list_del(&sp->auto_asconf_list);
4836 }
4837 sctp_endpoint_free(sp->ep);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004838 local_bh_disable();
Tonghao Zhang8cb38a62017-12-22 10:15:20 -08004839 sk_sockets_allocated_dec(sk);
Eric Dumazet9a57f7f2008-11-17 02:41:00 -08004840 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004841 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842}
4843
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004844/* Triggered when there are no references on the socket anymore */
4845static void sctp_destruct_sock(struct sock *sk)
4846{
4847 struct sctp_sock *sp = sctp_sk(sk);
4848
4849 /* Free up the HMAC transform. */
Herbert Xu5821c762016-01-24 21:20:12 +08004850 crypto_free_shash(sp->hmac);
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004851
4852 inet_sock_destruct(sk);
4853}
4854
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855/* API 4.1.7 shutdown() - TCP Style Syntax
4856 * int shutdown(int socket, int how);
4857 *
4858 * sd - the socket descriptor of the association to be closed.
4859 * how - Specifies the type of shutdown. The values are
4860 * as follows:
4861 * SHUT_RD
4862 * Disables further receive operations. No SCTP
4863 * protocol action is taken.
4864 * SHUT_WR
4865 * Disables further send operations, and initiates
4866 * the SCTP shutdown sequence.
4867 * SHUT_RDWR
4868 * Disables further send and receive operations
4869 * and initiates the SCTP shutdown sequence.
4870 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004871static void sctp_shutdown(struct sock *sk, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00004873 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874 struct sctp_endpoint *ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875
4876 if (!sctp_style(sk, TCP))
4877 return;
4878
Xin Long5bf35dd2016-11-13 21:44:37 +08004879 ep = sctp_sk(sk)->ep;
4880 if (how & SEND_SHUTDOWN && !list_empty(&ep->asocs)) {
4881 struct sctp_association *asoc;
4882
Yafang Shaocbabf462017-12-20 11:12:54 +08004883 inet_sk_set_state(sk, SCTP_SS_CLOSING);
Xin Long5bf35dd2016-11-13 21:44:37 +08004884 asoc = list_entry(ep->asocs.next,
4885 struct sctp_association, asocs);
4886 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887 }
4888}
4889
Xin Long52c52a62016-04-14 15:35:30 +08004890int sctp_get_sctp_info(struct sock *sk, struct sctp_association *asoc,
4891 struct sctp_info *info)
4892{
4893 struct sctp_transport *prim;
4894 struct list_head *pos;
4895 int mask;
4896
4897 memset(info, 0, sizeof(*info));
4898 if (!asoc) {
4899 struct sctp_sock *sp = sctp_sk(sk);
4900
4901 info->sctpi_s_autoclose = sp->autoclose;
4902 info->sctpi_s_adaptation_ind = sp->adaptation_ind;
4903 info->sctpi_s_pd_point = sp->pd_point;
4904 info->sctpi_s_nodelay = sp->nodelay;
4905 info->sctpi_s_disable_fragments = sp->disable_fragments;
4906 info->sctpi_s_v4mapped = sp->v4mapped;
4907 info->sctpi_s_frag_interleave = sp->frag_interleave;
Xin Long40eb90e92016-05-29 17:42:13 +08004908 info->sctpi_s_type = sp->type;
Xin Long52c52a62016-04-14 15:35:30 +08004909
4910 return 0;
4911 }
4912
4913 info->sctpi_tag = asoc->c.my_vtag;
4914 info->sctpi_state = asoc->state;
4915 info->sctpi_rwnd = asoc->a_rwnd;
4916 info->sctpi_unackdata = asoc->unack_data;
4917 info->sctpi_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
Xin Longcee360a2017-05-31 16:36:31 +08004918 info->sctpi_instrms = asoc->stream.incnt;
4919 info->sctpi_outstrms = asoc->stream.outcnt;
Xin Long52c52a62016-04-14 15:35:30 +08004920 list_for_each(pos, &asoc->base.inqueue.in_chunk_list)
4921 info->sctpi_inqueue++;
4922 list_for_each(pos, &asoc->outqueue.out_chunk_list)
4923 info->sctpi_outqueue++;
4924 info->sctpi_overall_error = asoc->overall_error_count;
4925 info->sctpi_max_burst = asoc->max_burst;
4926 info->sctpi_maxseg = asoc->frag_point;
4927 info->sctpi_peer_rwnd = asoc->peer.rwnd;
4928 info->sctpi_peer_tag = asoc->c.peer_vtag;
4929
4930 mask = asoc->peer.ecn_capable << 1;
4931 mask = (mask | asoc->peer.ipv4_address) << 1;
4932 mask = (mask | asoc->peer.ipv6_address) << 1;
4933 mask = (mask | asoc->peer.hostname_address) << 1;
4934 mask = (mask | asoc->peer.asconf_capable) << 1;
4935 mask = (mask | asoc->peer.prsctp_capable) << 1;
4936 mask = (mask | asoc->peer.auth_capable);
4937 info->sctpi_peer_capable = mask;
4938 mask = asoc->peer.sack_needed << 1;
4939 mask = (mask | asoc->peer.sack_generation) << 1;
4940 mask = (mask | asoc->peer.zero_window_announced);
4941 info->sctpi_peer_sack = mask;
4942
4943 info->sctpi_isacks = asoc->stats.isacks;
4944 info->sctpi_osacks = asoc->stats.osacks;
4945 info->sctpi_opackets = asoc->stats.opackets;
4946 info->sctpi_ipackets = asoc->stats.ipackets;
4947 info->sctpi_rtxchunks = asoc->stats.rtxchunks;
4948 info->sctpi_outofseqtsns = asoc->stats.outofseqtsns;
4949 info->sctpi_idupchunks = asoc->stats.idupchunks;
4950 info->sctpi_gapcnt = asoc->stats.gapcnt;
4951 info->sctpi_ouodchunks = asoc->stats.ouodchunks;
4952 info->sctpi_iuodchunks = asoc->stats.iuodchunks;
4953 info->sctpi_oodchunks = asoc->stats.oodchunks;
4954 info->sctpi_iodchunks = asoc->stats.iodchunks;
4955 info->sctpi_octrlchunks = asoc->stats.octrlchunks;
4956 info->sctpi_ictrlchunks = asoc->stats.ictrlchunks;
4957
4958 prim = asoc->peer.primary_path;
Stefano Brivioee6c88b2017-08-23 13:27:13 +02004959 memcpy(&info->sctpi_p_address, &prim->ipaddr, sizeof(prim->ipaddr));
Xin Long52c52a62016-04-14 15:35:30 +08004960 info->sctpi_p_state = prim->state;
4961 info->sctpi_p_cwnd = prim->cwnd;
4962 info->sctpi_p_srtt = prim->srtt;
4963 info->sctpi_p_rto = jiffies_to_msecs(prim->rto);
4964 info->sctpi_p_hbinterval = prim->hbinterval;
4965 info->sctpi_p_pathmaxrxt = prim->pathmaxrxt;
4966 info->sctpi_p_sackdelay = jiffies_to_msecs(prim->sackdelay);
4967 info->sctpi_p_ssthresh = prim->ssthresh;
4968 info->sctpi_p_partial_bytes_acked = prim->partial_bytes_acked;
4969 info->sctpi_p_flight_size = prim->flight_size;
4970 info->sctpi_p_error = prim->error_count;
4971
4972 return 0;
4973}
4974EXPORT_SYMBOL_GPL(sctp_get_sctp_info);
4975
Xin Long626d16f2016-04-14 15:35:31 +08004976/* use callback to avoid exporting the core structure */
Tom Herbert97a6ec42017-12-04 10:31:41 -08004977void sctp_transport_walk_start(struct rhashtable_iter *iter)
Xin Long626d16f2016-04-14 15:35:31 +08004978{
Xin Long7fda702f2016-11-15 23:23:11 +08004979 rhltable_walk_enter(&sctp_transport_hashtable, iter);
Xin Long626d16f2016-04-14 15:35:31 +08004980
Tom Herbert97a6ec42017-12-04 10:31:41 -08004981 rhashtable_walk_start(iter);
Xin Long626d16f2016-04-14 15:35:31 +08004982}
4983
4984void sctp_transport_walk_stop(struct rhashtable_iter *iter)
4985{
4986 rhashtable_walk_stop(iter);
4987 rhashtable_walk_exit(iter);
4988}
4989
4990struct sctp_transport *sctp_transport_get_next(struct net *net,
4991 struct rhashtable_iter *iter)
4992{
4993 struct sctp_transport *t;
4994
4995 t = rhashtable_walk_next(iter);
4996 for (; t; t = rhashtable_walk_next(iter)) {
4997 if (IS_ERR(t)) {
4998 if (PTR_ERR(t) == -EAGAIN)
4999 continue;
5000 break;
5001 }
5002
5003 if (net_eq(sock_net(t->asoc->base.sk), net) &&
5004 t->asoc->peer.primary_path == t)
5005 break;
5006 }
5007
5008 return t;
5009}
5010
5011struct sctp_transport *sctp_transport_get_idx(struct net *net,
5012 struct rhashtable_iter *iter,
5013 int pos)
5014{
5015 void *obj = SEQ_START_TOKEN;
5016
5017 while (pos && (obj = sctp_transport_get_next(net, iter)) &&
5018 !IS_ERR(obj))
5019 pos--;
5020
5021 return obj;
5022}
5023
5024int sctp_for_each_endpoint(int (*cb)(struct sctp_endpoint *, void *),
5025 void *p) {
5026 int err = 0;
5027 int hash = 0;
5028 struct sctp_ep_common *epb;
5029 struct sctp_hashbucket *head;
5030
5031 for (head = sctp_ep_hashtable; hash < sctp_ep_hashsize;
5032 hash++, head++) {
Xin Long581409d2017-06-10 14:48:14 +08005033 read_lock_bh(&head->lock);
Xin Long626d16f2016-04-14 15:35:31 +08005034 sctp_for_each_hentry(epb, &head->chain) {
5035 err = cb(sctp_ep(epb), p);
5036 if (err)
5037 break;
5038 }
Xin Long581409d2017-06-10 14:48:14 +08005039 read_unlock_bh(&head->lock);
Xin Long626d16f2016-04-14 15:35:31 +08005040 }
5041
5042 return err;
5043}
5044EXPORT_SYMBOL_GPL(sctp_for_each_endpoint);
5045
5046int sctp_transport_lookup_process(int (*cb)(struct sctp_transport *, void *),
5047 struct net *net,
5048 const union sctp_addr *laddr,
5049 const union sctp_addr *paddr, void *p)
5050{
5051 struct sctp_transport *transport;
Xin Long08abb792016-12-15 23:05:52 +08005052 int err;
Xin Long626d16f2016-04-14 15:35:31 +08005053
5054 rcu_read_lock();
5055 transport = sctp_addrs_lookup_transport(net, laddr, paddr);
Xin Long626d16f2016-04-14 15:35:31 +08005056 rcu_read_unlock();
Xin Long08abb792016-12-15 23:05:52 +08005057 if (!transport)
5058 return -ENOENT;
5059
Xin Long1cceda782016-09-29 02:55:44 +08005060 err = cb(transport, p);
Xin Longcd26da42016-10-31 20:32:31 +08005061 sctp_transport_put(transport);
Xin Long1cceda782016-09-29 02:55:44 +08005062
Xin Long626d16f2016-04-14 15:35:31 +08005063 return err;
5064}
5065EXPORT_SYMBOL_GPL(sctp_transport_lookup_process);
5066
5067int sctp_for_each_transport(int (*cb)(struct sctp_transport *, void *),
Xin Longd25adbe2017-09-15 11:02:21 +08005068 int (*cb_done)(struct sctp_transport *, void *),
5069 struct net *net, int *pos, void *p) {
Xin Long626d16f2016-04-14 15:35:31 +08005070 struct rhashtable_iter hti;
Xin Longd25adbe2017-09-15 11:02:21 +08005071 struct sctp_transport *tsp;
5072 int ret;
Xin Long626d16f2016-04-14 15:35:31 +08005073
Xin Longd25adbe2017-09-15 11:02:21 +08005074again:
Xin Longf53d77e2018-01-23 18:22:25 +08005075 ret = 0;
Tom Herbert97a6ec42017-12-04 10:31:41 -08005076 sctp_transport_walk_start(&hti);
Xin Long626d16f2016-04-14 15:35:31 +08005077
Xin Longd25adbe2017-09-15 11:02:21 +08005078 tsp = sctp_transport_get_idx(net, &hti, *pos + 1);
5079 for (; !IS_ERR_OR_NULL(tsp); tsp = sctp_transport_get_next(net, &hti)) {
5080 if (!sctp_transport_hold(tsp))
Xin Long626d16f2016-04-14 15:35:31 +08005081 continue;
Xin Longd25adbe2017-09-15 11:02:21 +08005082 ret = cb(tsp, p);
5083 if (ret)
Xin Long626d16f2016-04-14 15:35:31 +08005084 break;
Xin Longd25adbe2017-09-15 11:02:21 +08005085 (*pos)++;
5086 sctp_transport_put(tsp);
Xin Long626d16f2016-04-14 15:35:31 +08005087 }
Xin Long626d16f2016-04-14 15:35:31 +08005088 sctp_transport_walk_stop(&hti);
Xin Long53fa1032016-04-14 15:35:35 +08005089
Xin Longd25adbe2017-09-15 11:02:21 +08005090 if (ret) {
5091 if (cb_done && !cb_done(tsp, p)) {
5092 (*pos)++;
5093 sctp_transport_put(tsp);
5094 goto again;
5095 }
5096 sctp_transport_put(tsp);
5097 }
5098
5099 return ret;
Xin Long626d16f2016-04-14 15:35:31 +08005100}
5101EXPORT_SYMBOL_GPL(sctp_for_each_transport);
5102
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103/* 7.2.1 Association Status (SCTP_STATUS)
5104
5105 * Applications can retrieve current status information about an
5106 * association, including association state, peer receiver window size,
5107 * number of unacked data chunks, and number of data chunks pending
5108 * receipt. This information is read-only.
5109 */
5110static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
5111 char __user *optval,
5112 int __user *optlen)
5113{
5114 struct sctp_status status;
5115 struct sctp_association *asoc = NULL;
5116 struct sctp_transport *transport;
5117 sctp_assoc_t associd;
5118 int retval = 0;
5119
Neil Horman408f22e2007-06-16 14:03:45 -04005120 if (len < sizeof(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121 retval = -EINVAL;
5122 goto out;
5123 }
5124
Neil Horman408f22e2007-06-16 14:03:45 -04005125 len = sizeof(status);
5126 if (copy_from_user(&status, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127 retval = -EFAULT;
5128 goto out;
5129 }
5130
5131 associd = status.sstat_assoc_id;
5132 asoc = sctp_id2assoc(sk, associd);
5133 if (!asoc) {
5134 retval = -EINVAL;
5135 goto out;
5136 }
5137
5138 transport = asoc->peer.primary_path;
5139
5140 status.sstat_assoc_id = sctp_assoc2id(asoc);
Daniel Borkmann38ab1fa2014-08-28 15:28:26 +02005141 status.sstat_state = sctp_assoc_to_state(asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142 status.sstat_rwnd = asoc->peer.rwnd;
5143 status.sstat_unackdata = asoc->unack_data;
5144
5145 status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
Xin Longcee360a2017-05-31 16:36:31 +08005146 status.sstat_instrms = asoc->stream.incnt;
5147 status.sstat_outstrms = asoc->stream.outcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148 status.sstat_fragmentation_point = asoc->frag_point;
5149 status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Al Viro8cec6b82006-11-20 17:23:01 -08005150 memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
5151 transport->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152 /* Map ipv4 address into v4-mapped-on-v6 address. */
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005153 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154 (union sctp_addr *)&status.sstat_primary.spinfo_address);
Frank Filz3f7a87d2005-06-20 13:14:57 -07005155 status.sstat_primary.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156 status.sstat_primary.spinfo_cwnd = transport->cwnd;
5157 status.sstat_primary.spinfo_srtt = transport->srtt;
5158 status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005159 status.sstat_primary.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160
Frank Filz3f7a87d2005-06-20 13:14:57 -07005161 if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
5162 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
5163
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164 if (put_user(len, optlen)) {
5165 retval = -EFAULT;
5166 goto out;
5167 }
5168
Daniel Borkmannbb333812013-06-28 19:49:40 +02005169 pr_debug("%s: len:%d, state:%d, rwnd:%d, assoc_id:%d\n",
5170 __func__, len, status.sstat_state, status.sstat_rwnd,
5171 status.sstat_assoc_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172
5173 if (copy_to_user(optval, &status, len)) {
5174 retval = -EFAULT;
5175 goto out;
5176 }
5177
5178out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00005179 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180}
5181
5182
5183/* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
5184 *
5185 * Applications can retrieve information about a specific peer address
5186 * of an association, including its reachability state, congestion
5187 * window, and retransmission timer values. This information is
5188 * read-only.
5189 */
5190static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
5191 char __user *optval,
5192 int __user *optlen)
5193{
5194 struct sctp_paddrinfo pinfo;
5195 struct sctp_transport *transport;
5196 int retval = 0;
5197
Neil Horman408f22e2007-06-16 14:03:45 -04005198 if (len < sizeof(pinfo)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199 retval = -EINVAL;
5200 goto out;
5201 }
5202
Neil Horman408f22e2007-06-16 14:03:45 -04005203 len = sizeof(pinfo);
5204 if (copy_from_user(&pinfo, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205 retval = -EFAULT;
5206 goto out;
5207 }
5208
5209 transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
5210 pinfo.spinfo_assoc_id);
5211 if (!transport)
5212 return -EINVAL;
5213
5214 pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07005215 pinfo.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216 pinfo.spinfo_cwnd = transport->cwnd;
5217 pinfo.spinfo_srtt = transport->srtt;
5218 pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005219 pinfo.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220
Frank Filz3f7a87d2005-06-20 13:14:57 -07005221 if (pinfo.spinfo_state == SCTP_UNKNOWN)
5222 pinfo.spinfo_state = SCTP_ACTIVE;
5223
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224 if (put_user(len, optlen)) {
5225 retval = -EFAULT;
5226 goto out;
5227 }
5228
5229 if (copy_to_user(optval, &pinfo, len)) {
5230 retval = -EFAULT;
5231 goto out;
5232 }
5233
5234out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00005235 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236}
5237
5238/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
5239 *
5240 * This option is a on/off flag. If enabled no SCTP message
5241 * fragmentation will be performed. Instead if a message being sent
5242 * exceeds the current PMTU size, the message will NOT be sent and
5243 * instead a error will be indicated to the user.
5244 */
5245static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
5246 char __user *optval, int __user *optlen)
5247{
5248 int val;
5249
5250 if (len < sizeof(int))
5251 return -EINVAL;
5252
5253 len = sizeof(int);
5254 val = (sctp_sk(sk)->disable_fragments == 1);
5255 if (put_user(len, optlen))
5256 return -EFAULT;
5257 if (copy_to_user(optval, &val, len))
5258 return -EFAULT;
5259 return 0;
5260}
5261
5262/* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
5263 *
5264 * This socket option is used to specify various notifications and
5265 * ancillary data the user wishes to receive.
5266 */
5267static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
5268 int __user *optlen)
5269{
Jiri Slabya4b8e712016-10-21 14:13:24 +02005270 if (len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271 return -EINVAL;
Thomas Grafacdd5982012-04-03 22:17:53 +00005272 if (len > sizeof(struct sctp_event_subscribe))
5273 len = sizeof(struct sctp_event_subscribe);
Neil Horman408f22e2007-06-16 14:03:45 -04005274 if (put_user(len, optlen))
5275 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276 if (copy_to_user(optval, &sctp_sk(sk)->subscribe, len))
5277 return -EFAULT;
5278 return 0;
5279}
5280
5281/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
5282 *
5283 * This socket option is applicable to the UDP-style socket only. When
5284 * set it will cause associations that are idle for more than the
5285 * specified number of seconds to automatically close. An association
5286 * being idle is defined an association that has NOT sent or received
5287 * user data. The special value of '0' indicates that no automatic
5288 * close of any associations should be performed. The option expects an
5289 * integer defining the number of seconds of idle time before an
5290 * association is closed.
5291 */
5292static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
5293{
5294 /* Applicable to UDP-style socket only */
5295 if (sctp_style(sk, TCP))
5296 return -EOPNOTSUPP;
Neil Horman408f22e2007-06-16 14:03:45 -04005297 if (len < sizeof(int))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005299 len = sizeof(int);
5300 if (put_user(len, optlen))
5301 return -EFAULT;
David Windsorb2ce04c2017-06-10 22:50:43 -04005302 if (put_user(sctp_sk(sk)->autoclose, (int __user *)optval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303 return -EFAULT;
5304 return 0;
5305}
5306
5307/* Helper routine to branch off an association to a new socket. */
Benjamin Poirier0343c552012-03-08 05:55:58 +00005308int sctp_do_peeloff(struct sock *sk, sctp_assoc_t id, struct socket **sockp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005309{
Benjamin Poirier0343c552012-03-08 05:55:58 +00005310 struct sctp_association *asoc = sctp_id2assoc(sk, id);
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005311 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312 struct socket *sock;
5313 int err = 0;
5314
Xin Longdf80cd92017-10-17 23:26:10 +08005315 /* Do not peel off from one netns to another one. */
5316 if (!net_eq(current->nsproxy->net_ns, sock_net(sk)))
5317 return -EINVAL;
5318
Benjamin Poirier0343c552012-03-08 05:55:58 +00005319 if (!asoc)
5320 return -EINVAL;
5321
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322 /* An association cannot be branched off from an already peeled-off
5323 * socket, nor is this supported for tcp style sockets.
5324 */
5325 if (!sctp_style(sk, UDP))
5326 return -EINVAL;
5327
5328 /* Create a new socket. */
5329 err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
5330 if (err < 0)
5331 return err;
5332
Vlad Yasevich914e1c82009-02-13 08:33:44 +00005333 sctp_copy_sock(sock->sk, sk, asoc);
Vlad Yasevich4f444302006-10-30 18:54:32 -08005334
5335 /* Make peeled-off sockets more like 1-1 accepted sockets.
Richard Hainesb7e10c22018-02-24 16:18:51 +00005336 * Set the daddr and initialize id to something more random and also
5337 * copy over any ip options.
Vlad Yasevich4f444302006-10-30 18:54:32 -08005338 */
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005339 sp->pf->to_sk_daddr(&asoc->peer.primary_addr, sk);
Richard Hainesb7e10c22018-02-24 16:18:51 +00005340 sp->pf->copy_ip_options(sk, sock->sk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00005341
5342 /* Populate the fields of the newsk from the oldsk and migrate the
5343 * asoc to the newsk.
5344 */
5345 sctp_sock_migrate(sk, sock->sk, asoc, SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
Vlad Yasevich4f444302006-10-30 18:54:32 -08005346
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347 *sockp = sock;
5348
5349 return err;
5350}
Benjamin Poirier0343c552012-03-08 05:55:58 +00005351EXPORT_SYMBOL(sctp_do_peeloff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005353static int sctp_getsockopt_peeloff_common(struct sock *sk, sctp_peeloff_arg_t *peeloff,
5354 struct file **newfile, unsigned flags)
5355{
5356 struct socket *newsock;
5357 int retval;
5358
5359 retval = sctp_do_peeloff(sk, peeloff->associd, &newsock);
5360 if (retval < 0)
5361 goto out;
5362
5363 /* Map the socket to an unused fd that can be returned to the user. */
5364 retval = get_unused_fd_flags(flags & SOCK_CLOEXEC);
5365 if (retval < 0) {
5366 sock_release(newsock);
5367 goto out;
5368 }
5369
5370 *newfile = sock_alloc_file(newsock, 0, NULL);
5371 if (IS_ERR(*newfile)) {
5372 put_unused_fd(retval);
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005373 retval = PTR_ERR(*newfile);
5374 *newfile = NULL;
5375 return retval;
5376 }
5377
5378 pr_debug("%s: sk:%p, newsk:%p, sd:%d\n", __func__, sk, newsock->sk,
5379 retval);
5380
5381 peeloff->sd = retval;
5382
5383 if (flags & SOCK_NONBLOCK)
5384 (*newfile)->f_flags |= O_NONBLOCK;
5385out:
5386 return retval;
5387}
5388
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
5390{
5391 sctp_peeloff_arg_t peeloff;
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005392 struct file *newfile = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394
Neil Horman408f22e2007-06-16 14:03:45 -04005395 if (len < sizeof(sctp_peeloff_arg_t))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005397 len = sizeof(sctp_peeloff_arg_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398 if (copy_from_user(&peeloff, optval, len))
5399 return -EFAULT;
5400
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005401 retval = sctp_getsockopt_peeloff_common(sk, &peeloff, &newfile, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402 if (retval < 0)
5403 goto out;
5404
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405 /* Return the fd mapped to the new socket. */
Al Viro56b31d12012-08-18 00:25:51 -04005406 if (put_user(len, optlen)) {
5407 fput(newfile);
5408 put_unused_fd(retval);
Neil Horman408f22e2007-06-16 14:03:45 -04005409 return -EFAULT;
Al Viro56b31d12012-08-18 00:25:51 -04005410 }
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005411
5412 if (copy_to_user(optval, &peeloff, len)) {
5413 fput(newfile);
5414 put_unused_fd(retval);
5415 return -EFAULT;
5416 }
5417 fd_install(retval, newfile);
5418out:
5419 return retval;
5420}
5421
5422static int sctp_getsockopt_peeloff_flags(struct sock *sk, int len,
5423 char __user *optval, int __user *optlen)
5424{
5425 sctp_peeloff_flags_arg_t peeloff;
5426 struct file *newfile = NULL;
5427 int retval = 0;
5428
5429 if (len < sizeof(sctp_peeloff_flags_arg_t))
5430 return -EINVAL;
5431 len = sizeof(sctp_peeloff_flags_arg_t);
5432 if (copy_from_user(&peeloff, optval, len))
5433 return -EFAULT;
5434
5435 retval = sctp_getsockopt_peeloff_common(sk, &peeloff.p_arg,
5436 &newfile, peeloff.flags);
5437 if (retval < 0)
5438 goto out;
5439
5440 /* Return the fd mapped to the new socket. */
5441 if (put_user(len, optlen)) {
5442 fput(newfile);
5443 put_unused_fd(retval);
5444 return -EFAULT;
5445 }
5446
Al Viro56b31d12012-08-18 00:25:51 -04005447 if (copy_to_user(optval, &peeloff, len)) {
5448 fput(newfile);
5449 put_unused_fd(retval);
5450 return -EFAULT;
5451 }
5452 fd_install(retval, newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453out:
5454 return retval;
5455}
5456
5457/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
5458 *
5459 * Applications can enable or disable heartbeats for any peer address of
5460 * an association, modify an address's heartbeat interval, force a
5461 * heartbeat to be sent immediately, and adjust the address's maximum
5462 * number of retransmissions sent before an address is considered
5463 * unreachable. The following structure is used to access and modify an
5464 * address's parameters:
5465 *
5466 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08005467 * sctp_assoc_t spp_assoc_id;
5468 * struct sockaddr_storage spp_address;
5469 * uint32_t spp_hbinterval;
5470 * uint16_t spp_pathmaxrxt;
5471 * uint32_t spp_pathmtu;
5472 * uint32_t spp_sackdelay;
5473 * uint32_t spp_flags;
5474 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08005476 * spp_assoc_id - (one-to-many style socket) This is filled in the
5477 * application, and identifies the association for
5478 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005479 * spp_address - This specifies which address is of interest.
5480 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08005481 * in milliseconds. If a value of zero
5482 * is present in this field then no changes are to
5483 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484 * spp_pathmaxrxt - This contains the maximum number of
5485 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08005486 * considered unreachable. If a value of zero
5487 * is present in this field then no changes are to
5488 * be made to this parameter.
5489 * spp_pathmtu - When Path MTU discovery is disabled the value
5490 * specified here will be the "fixed" path mtu.
5491 * Note that if the spp_address field is empty
5492 * then all associations on this address will
5493 * have this fixed path mtu set upon them.
5494 *
5495 * spp_sackdelay - When delayed sack is enabled, this value specifies
5496 * the number of milliseconds that sacks will be delayed
5497 * for. This value will apply to all addresses of an
5498 * association if the spp_address field is empty. Note
5499 * also, that if delayed sack is enabled and this
5500 * value is set to 0, no change is made to the last
5501 * recorded delayed sack timer value.
5502 *
5503 * spp_flags - These flags are used to control various features
5504 * on an association. The flag field may contain
5505 * zero or more of the following options.
5506 *
5507 * SPP_HB_ENABLE - Enable heartbeats on the
5508 * specified address. Note that if the address
5509 * field is empty all addresses for the association
5510 * have heartbeats enabled upon them.
5511 *
5512 * SPP_HB_DISABLE - Disable heartbeats on the
5513 * speicifed address. Note that if the address
5514 * field is empty all addresses for the association
5515 * will have their heartbeats disabled. Note also
5516 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
5517 * mutually exclusive, only one of these two should
5518 * be specified. Enabling both fields will have
5519 * undetermined results.
5520 *
5521 * SPP_HB_DEMAND - Request a user initiated heartbeat
5522 * to be made immediately.
5523 *
5524 * SPP_PMTUD_ENABLE - This field will enable PMTU
5525 * discovery upon the specified address. Note that
5526 * if the address feild is empty then all addresses
5527 * on the association are effected.
5528 *
5529 * SPP_PMTUD_DISABLE - This field will disable PMTU
5530 * discovery upon the specified address. Note that
5531 * if the address feild is empty then all addresses
5532 * on the association are effected. Not also that
5533 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
5534 * exclusive. Enabling both will have undetermined
5535 * results.
5536 *
5537 * SPP_SACKDELAY_ENABLE - Setting this flag turns
5538 * on delayed sack. The time specified in spp_sackdelay
5539 * is used to specify the sack delay for this address. Note
5540 * that if spp_address is empty then all addresses will
5541 * enable delayed sack and take on the sack delay
5542 * value specified in spp_sackdelay.
5543 * SPP_SACKDELAY_DISABLE - Setting this flag turns
5544 * off delayed sack. If the spp_address field is blank then
5545 * delayed sack is disabled for the entire association. Note
5546 * also that this field is mutually exclusive to
5547 * SPP_SACKDELAY_ENABLE, setting both will have undefined
5548 * results.
Xin Long0b0dce72018-07-02 18:21:13 +08005549 *
5550 * SPP_IPV6_FLOWLABEL: Setting this flag enables the
5551 * setting of the IPV6 flow label value. The value is
5552 * contained in the spp_ipv6_flowlabel field.
5553 * Upon retrieval, this flag will be set to indicate that
5554 * the spp_ipv6_flowlabel field has a valid value returned.
5555 * If a specific destination address is set (in the
5556 * spp_address field), then the value returned is that of
5557 * the address. If just an association is specified (and
5558 * no address), then the association's default flow label
5559 * is returned. If neither an association nor a destination
5560 * is specified, then the socket's default flow label is
5561 * returned. For non-IPv6 sockets, this flag will be left
5562 * cleared.
5563 *
5564 * SPP_DSCP: Setting this flag enables the setting of the
5565 * Differentiated Services Code Point (DSCP) value
5566 * associated with either the association or a specific
5567 * address. The value is obtained in the spp_dscp field.
5568 * Upon retrieval, this flag will be set to indicate that
5569 * the spp_dscp field has a valid value returned. If a
5570 * specific destination address is set when called (in the
5571 * spp_address field), then that specific destination
5572 * address's DSCP value is returned. If just an association
5573 * is specified, then the association's default DSCP is
5574 * returned. If neither an association nor a destination is
5575 * specified, then the socket's default DSCP is returned.
5576 *
5577 * spp_ipv6_flowlabel
5578 * - This field is used in conjunction with the
5579 * SPP_IPV6_FLOWLABEL flag and contains the IPv6 flow label.
5580 * The 20 least significant bits are used for the flow
5581 * label. This setting has precedence over any IPv6-layer
5582 * setting.
5583 *
5584 * spp_dscp - This field is used in conjunction with the SPP_DSCP flag
5585 * and contains the DSCP. The 6 most significant bits are
5586 * used for the DSCP. This setting has precedence over any
5587 * IPv4- or IPv6- layer setting.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588 */
5589static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
Frank Filz52ccb8e2005-12-22 11:36:46 -08005590 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591{
Frank Filz52ccb8e2005-12-22 11:36:46 -08005592 struct sctp_paddrparams params;
5593 struct sctp_transport *trans = NULL;
5594 struct sctp_association *asoc = NULL;
5595 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596
Xin Long0b0dce72018-07-02 18:21:13 +08005597 if (len >= sizeof(params))
5598 len = sizeof(params);
5599 else if (len >= ALIGN(offsetof(struct sctp_paddrparams,
5600 spp_ipv6_flowlabel), 4))
5601 len = ALIGN(offsetof(struct sctp_paddrparams,
5602 spp_ipv6_flowlabel), 4);
5603 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604 return -EINVAL;
Xin Long0b0dce72018-07-02 18:21:13 +08005605
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606 if (copy_from_user(&params, optval, len))
5607 return -EFAULT;
5608
Frank Filz52ccb8e2005-12-22 11:36:46 -08005609 /* If an address other than INADDR_ANY is specified, and
5610 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611 */
wangweidongcb3f8372013-12-23 12:16:50 +08005612 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08005613 trans = sctp_addr_id2transport(sk, &params.spp_address,
5614 params.spp_assoc_id);
5615 if (!trans) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02005616 pr_debug("%s: failed no transport\n", __func__);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005617 return -EINVAL;
5618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005619 }
5620
Frank Filz52ccb8e2005-12-22 11:36:46 -08005621 /* Get association, if assoc_id != 0 and the socket is a one
5622 * to many style socket, and an association was not found, then
5623 * the id was invalid.
5624 */
5625 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
5626 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP)) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02005627 pr_debug("%s: failed no association\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08005629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005630
Frank Filz52ccb8e2005-12-22 11:36:46 -08005631 if (trans) {
5632 /* Fetch transport values. */
5633 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
5634 params.spp_pathmtu = trans->pathmtu;
5635 params.spp_pathmaxrxt = trans->pathmaxrxt;
5636 params.spp_sackdelay = jiffies_to_msecs(trans->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005637
Frank Filz52ccb8e2005-12-22 11:36:46 -08005638 /*draft-11 doesn't say what to return in spp_flags*/
5639 params.spp_flags = trans->param_flags;
Xin Long0b0dce72018-07-02 18:21:13 +08005640 if (trans->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5641 params.spp_ipv6_flowlabel = trans->flowlabel &
5642 SCTP_FLOWLABEL_VAL_MASK;
5643 params.spp_flags |= SPP_IPV6_FLOWLABEL;
5644 }
5645 if (trans->dscp & SCTP_DSCP_SET_MASK) {
5646 params.spp_dscp = trans->dscp & SCTP_DSCP_VAL_MASK;
5647 params.spp_flags |= SPP_DSCP;
5648 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08005649 } else if (asoc) {
5650 /* Fetch association values. */
5651 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
5652 params.spp_pathmtu = asoc->pathmtu;
5653 params.spp_pathmaxrxt = asoc->pathmaxrxt;
5654 params.spp_sackdelay = jiffies_to_msecs(asoc->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655
Frank Filz52ccb8e2005-12-22 11:36:46 -08005656 /*draft-11 doesn't say what to return in spp_flags*/
5657 params.spp_flags = asoc->param_flags;
Xin Long0b0dce72018-07-02 18:21:13 +08005658 if (asoc->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5659 params.spp_ipv6_flowlabel = asoc->flowlabel &
5660 SCTP_FLOWLABEL_VAL_MASK;
5661 params.spp_flags |= SPP_IPV6_FLOWLABEL;
5662 }
5663 if (asoc->dscp & SCTP_DSCP_SET_MASK) {
5664 params.spp_dscp = asoc->dscp & SCTP_DSCP_VAL_MASK;
5665 params.spp_flags |= SPP_DSCP;
5666 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08005667 } else {
5668 /* Fetch socket values. */
5669 params.spp_hbinterval = sp->hbinterval;
5670 params.spp_pathmtu = sp->pathmtu;
5671 params.spp_sackdelay = sp->sackdelay;
5672 params.spp_pathmaxrxt = sp->pathmaxrxt;
5673
5674 /*draft-11 doesn't say what to return in spp_flags*/
5675 params.spp_flags = sp->param_flags;
Xin Long0b0dce72018-07-02 18:21:13 +08005676 if (sp->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5677 params.spp_ipv6_flowlabel = sp->flowlabel &
5678 SCTP_FLOWLABEL_VAL_MASK;
5679 params.spp_flags |= SPP_IPV6_FLOWLABEL;
5680 }
5681 if (sp->dscp & SCTP_DSCP_SET_MASK) {
5682 params.spp_dscp = sp->dscp & SCTP_DSCP_VAL_MASK;
5683 params.spp_flags |= SPP_DSCP;
5684 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08005685 }
5686
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687 if (copy_to_user(optval, &params, len))
5688 return -EFAULT;
5689
5690 if (put_user(len, optlen))
5691 return -EFAULT;
5692
5693 return 0;
5694}
5695
Wei Yongjund364d922008-05-09 15:13:26 -07005696/*
5697 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08005698 *
Wei Yongjund364d922008-05-09 15:13:26 -07005699 * This option will effect the way delayed acks are performed. This
5700 * option allows you to get or set the delayed ack time, in
5701 * milliseconds. It also allows changing the delayed ack frequency.
5702 * Changing the frequency to 1 disables the delayed sack algorithm. If
5703 * the assoc_id is 0, then this sets or gets the endpoints default
5704 * values. If the assoc_id field is non-zero, then the set or get
5705 * effects the specified association for the one to many model (the
5706 * assoc_id field is ignored by the one to one model). Note that if
5707 * sack_delay or sack_freq are 0 when setting this option, then the
5708 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08005709 *
Wei Yongjund364d922008-05-09 15:13:26 -07005710 * struct sctp_sack_info {
5711 * sctp_assoc_t sack_assoc_id;
5712 * uint32_t sack_delay;
5713 * uint32_t sack_freq;
5714 * };
Frank Filz77086102005-12-22 11:37:30 -08005715 *
Wei Yongjund364d922008-05-09 15:13:26 -07005716 * sack_assoc_id - This parameter, indicates which association the user
5717 * is performing an action upon. Note that if this field's value is
5718 * zero then the endpoints default value is changed (effecting future
5719 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08005720 *
Wei Yongjund364d922008-05-09 15:13:26 -07005721 * sack_delay - This parameter contains the number of milliseconds that
5722 * the user is requesting the delayed ACK timer be set to. Note that
5723 * this value is defined in the standard to be between 200 and 500
5724 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08005725 *
Wei Yongjund364d922008-05-09 15:13:26 -07005726 * sack_freq - This parameter contains the number of packets that must
5727 * be received before a sack is sent without waiting for the delay
5728 * timer to expire. The default value for this is 2, setting this
5729 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08005730 */
Wei Yongjund364d922008-05-09 15:13:26 -07005731static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
Frank Filz77086102005-12-22 11:37:30 -08005732 char __user *optval,
5733 int __user *optlen)
5734{
Wei Yongjund364d922008-05-09 15:13:26 -07005735 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08005736 struct sctp_association *asoc = NULL;
5737 struct sctp_sock *sp = sctp_sk(sk);
5738
Wei Yongjund364d922008-05-09 15:13:26 -07005739 if (len >= sizeof(struct sctp_sack_info)) {
5740 len = sizeof(struct sctp_sack_info);
5741
5742 if (copy_from_user(&params, optval, len))
5743 return -EFAULT;
5744 } else if (len == sizeof(struct sctp_assoc_value)) {
Neil Horman94f65192013-12-23 08:29:43 -05005745 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05005746 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05005747 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05005748 "Use struct sctp_sack_info instead\n",
5749 current->comm, task_pid_nr(current));
Wei Yongjund364d922008-05-09 15:13:26 -07005750 if (copy_from_user(&params, optval, len))
5751 return -EFAULT;
5752 } else
wangweidongcb3f8372013-12-23 12:16:50 +08005753 return -EINVAL;
Frank Filz77086102005-12-22 11:37:30 -08005754
Wei Yongjund364d922008-05-09 15:13:26 -07005755 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08005756 * to many style socket, and an association was not found, then
5757 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005758 */
Wei Yongjund364d922008-05-09 15:13:26 -07005759 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
5760 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08005761 return -EINVAL;
5762
5763 if (asoc) {
5764 /* Fetch association values. */
Wei Yongjund364d922008-05-09 15:13:26 -07005765 if (asoc->param_flags & SPP_SACKDELAY_ENABLE) {
5766 params.sack_delay = jiffies_to_msecs(
Frank Filz77086102005-12-22 11:37:30 -08005767 asoc->sackdelay);
Wei Yongjund364d922008-05-09 15:13:26 -07005768 params.sack_freq = asoc->sackfreq;
5769
5770 } else {
5771 params.sack_delay = 0;
5772 params.sack_freq = 1;
5773 }
Frank Filz77086102005-12-22 11:37:30 -08005774 } else {
5775 /* Fetch socket values. */
Wei Yongjund364d922008-05-09 15:13:26 -07005776 if (sp->param_flags & SPP_SACKDELAY_ENABLE) {
5777 params.sack_delay = sp->sackdelay;
5778 params.sack_freq = sp->sackfreq;
5779 } else {
5780 params.sack_delay = 0;
5781 params.sack_freq = 1;
5782 }
Frank Filz77086102005-12-22 11:37:30 -08005783 }
5784
5785 if (copy_to_user(optval, &params, len))
5786 return -EFAULT;
5787
5788 if (put_user(len, optlen))
5789 return -EFAULT;
5790
5791 return 0;
5792}
5793
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
5795 *
5796 * Applications can specify protocol parameters for the default association
5797 * initialization. The option name argument to setsockopt() and getsockopt()
5798 * is SCTP_INITMSG.
5799 *
5800 * Setting initialization parameters is effective only on an unconnected
5801 * socket (for UDP-style sockets only future associations are effected
5802 * by the change). With TCP-style sockets, this option is inherited by
5803 * sockets derived from a listener socket.
5804 */
5805static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
5806{
Neil Horman408f22e2007-06-16 14:03:45 -04005807 if (len < sizeof(struct sctp_initmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005809 len = sizeof(struct sctp_initmsg);
5810 if (put_user(len, optlen))
5811 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812 if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
5813 return -EFAULT;
5814 return 0;
5815}
5816
Linus Torvalds1da177e2005-04-16 15:20:36 -07005817
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005818static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
5819 char __user *optval, int __user *optlen)
5820{
5821 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005822 int cnt = 0;
5823 struct sctp_getaddrs getaddrs;
5824 struct sctp_transport *from;
5825 void __user *to;
5826 union sctp_addr temp;
5827 struct sctp_sock *sp = sctp_sk(sk);
5828 int addrlen;
5829 size_t space_left;
5830 int bytes_copied;
5831
5832 if (len < sizeof(struct sctp_getaddrs))
5833 return -EINVAL;
5834
5835 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
5836 return -EFAULT;
5837
5838 /* For UDP-style sockets, id specifies the association to query. */
5839 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
5840 if (!asoc)
5841 return -EINVAL;
5842
wangweidongcb3f8372013-12-23 12:16:50 +08005843 to = optval + offsetof(struct sctp_getaddrs, addrs);
5844 space_left = len - offsetof(struct sctp_getaddrs, addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005845
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07005846 list_for_each_entry(from, &asoc->peer.transport_addr_list,
5847 transports) {
Al Virob3f5b3b2006-11-20 17:22:43 -08005848 memcpy(&temp, &from->ipaddr, sizeof(temp));
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005849 addrlen = sctp_get_pf_specific(sk->sk_family)
5850 ->addr_to_user(sp, &temp);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005851 if (space_left < addrlen)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005852 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005853 if (copy_to_user(to, &temp, addrlen))
5854 return -EFAULT;
5855 to += addrlen;
5856 cnt++;
5857 space_left -= addrlen;
5858 }
5859
5860 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
5861 return -EFAULT;
5862 bytes_copied = ((char __user *)to) - optval;
5863 if (put_user(bytes_copied, optlen))
5864 return -EFAULT;
5865
5866 return 0;
5867}
5868
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005869static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to,
5870 size_t space_left, int *bytes_copied)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005871{
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005872 struct sctp_sockaddr_entry *addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005873 union sctp_addr temp;
5874 int cnt = 0;
5875 int addrlen;
Eric W. Biederman4db67e82012-08-06 08:42:04 +00005876 struct net *net = sock_net(sk);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005877
Vlad Yasevich29303542007-09-16 16:02:12 -07005878 rcu_read_lock();
Eric W. Biederman4db67e82012-08-06 08:42:04 +00005879 list_for_each_entry_rcu(addr, &net->sctp.local_addr_list, list) {
Vlad Yasevich29303542007-09-16 16:02:12 -07005880 if (!addr->valid)
5881 continue;
5882
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005883 if ((PF_INET == sk->sk_family) &&
Al Viro6244be42006-11-20 17:21:44 -08005884 (AF_INET6 == addr->a.sa.sa_family))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005885 continue;
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07005886 if ((PF_INET6 == sk->sk_family) &&
5887 inet_v6_ipv6only(sk) &&
5888 (AF_INET == addr->a.sa.sa_family))
5889 continue;
Al Viro6244be42006-11-20 17:21:44 -08005890 memcpy(&temp, &addr->a, sizeof(temp));
Vlad Yasevichb46ae362008-01-28 14:25:36 -05005891 if (!temp.v4.sin_port)
5892 temp.v4.sin_port = htons(port);
5893
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005894 addrlen = sctp_get_pf_specific(sk->sk_family)
5895 ->addr_to_user(sctp_sk(sk), &temp);
5896
Vlad Yasevich29303542007-09-16 16:02:12 -07005897 if (space_left < addrlen) {
5898 cnt = -ENOMEM;
5899 break;
5900 }
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005901 memcpy(to, &temp, addrlen);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08005902
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005903 to += addrlen;
wangweidongcb3f8372013-12-23 12:16:50 +08005904 cnt++;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005905 space_left -= addrlen;
Vlad Yasevich3663c302007-07-03 12:43:12 -04005906 *bytes_copied += addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005907 }
Vlad Yasevich29303542007-09-16 16:02:12 -07005908 rcu_read_unlock();
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005909
5910 return cnt;
5911}
5912
Linus Torvalds1da177e2005-04-16 15:20:36 -07005913
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005914static int sctp_getsockopt_local_addrs(struct sock *sk, int len,
5915 char __user *optval, int __user *optlen)
5916{
5917 struct sctp_bind_addr *bp;
5918 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005919 int cnt = 0;
5920 struct sctp_getaddrs getaddrs;
5921 struct sctp_sockaddr_entry *addr;
5922 void __user *to;
5923 union sctp_addr temp;
5924 struct sctp_sock *sp = sctp_sk(sk);
5925 int addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005926 int err = 0;
5927 size_t space_left;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005928 int bytes_copied = 0;
5929 void *addrs;
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005930 void *buf;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005931
Neil Horman408f22e2007-06-16 14:03:45 -04005932 if (len < sizeof(struct sctp_getaddrs))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005933 return -EINVAL;
5934
5935 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
5936 return -EFAULT;
5937
5938 /*
5939 * For UDP-style sockets, id specifies the association to query.
5940 * If the id field is set to the value '0' then the locally bound
5941 * addresses are returned without regard to any particular
5942 * association.
5943 */
5944 if (0 == getaddrs.assoc_id) {
5945 bp = &sctp_sk(sk)->ep->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005946 } else {
5947 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
5948 if (!asoc)
5949 return -EINVAL;
5950 bp = &asoc->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005951 }
5952
wangweidongcb3f8372013-12-23 12:16:50 +08005953 to = optval + offsetof(struct sctp_getaddrs, addrs);
5954 space_left = len - offsetof(struct sctp_getaddrs, addrs);
Neil Horman186e2342007-06-18 19:59:16 -04005955
Marcelo Ricardo Leitnercacc0622015-11-30 14:32:54 -02005956 addrs = kmalloc(space_left, GFP_USER | __GFP_NOWARN);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005957 if (!addrs)
5958 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005959
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005960 /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
5961 * addresses from the global local address list.
5962 */
5963 if (sctp_list_single_entry(&bp->address_list)) {
5964 addr = list_entry(bp->address_list.next,
5965 struct sctp_sockaddr_entry, list);
Vlad Yasevich52cae8f2008-08-18 10:34:34 -04005966 if (sctp_is_any(sk, &addr->a)) {
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005967 cnt = sctp_copy_laddrs(sk, bp->port, addrs,
5968 space_left, &bytes_copied);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005969 if (cnt < 0) {
5970 err = cnt;
Vlad Yasevich559cf712007-09-16 16:03:28 -07005971 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005972 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005973 goto copy_getaddrs;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005974 }
5975 }
5976
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005977 buf = addrs;
Vlad Yasevich559cf712007-09-16 16:03:28 -07005978 /* Protection on the bound address list is not needed since
5979 * in the socket option context we hold a socket lock and
5980 * thus the bound address list can't change.
5981 */
5982 list_for_each_entry(addr, &bp->address_list, list) {
Al Viro6244be42006-11-20 17:21:44 -08005983 memcpy(&temp, &addr->a, sizeof(temp));
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005984 addrlen = sctp_get_pf_specific(sk->sk_family)
5985 ->addr_to_user(sp, &temp);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005986 if (space_left < addrlen) {
5987 err = -ENOMEM; /*fixme: right error?*/
Vlad Yasevich559cf712007-09-16 16:03:28 -07005988 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005989 }
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005990 memcpy(buf, &temp, addrlen);
5991 buf += addrlen;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005992 bytes_copied += addrlen;
wangweidongcb3f8372013-12-23 12:16:50 +08005993 cnt++;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005994 space_left -= addrlen;
5995 }
5996
5997copy_getaddrs:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005998 if (copy_to_user(to, addrs, bytes_copied)) {
5999 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02006000 goto out;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006001 }
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04006002 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num)) {
6003 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02006004 goto out;
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04006005 }
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006006 /* XXX: We should have accounted for sizeof(struct sctp_getaddrs) too,
6007 * but we can't change it anymore.
6008 */
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006009 if (put_user(bytes_copied, optlen))
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04006010 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02006011out:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006012 kfree(addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006013 return err;
6014}
6015
Linus Torvalds1da177e2005-04-16 15:20:36 -07006016/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
6017 *
6018 * Requests that the local SCTP stack use the enclosed peer address as
6019 * the association primary. The enclosed address must be one of the
6020 * association peer's addresses.
6021 */
6022static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
6023 char __user *optval, int __user *optlen)
6024{
6025 struct sctp_prim prim;
6026 struct sctp_association *asoc;
6027 struct sctp_sock *sp = sctp_sk(sk);
6028
Neil Horman408f22e2007-06-16 14:03:45 -04006029 if (len < sizeof(struct sctp_prim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030 return -EINVAL;
6031
Neil Horman408f22e2007-06-16 14:03:45 -04006032 len = sizeof(struct sctp_prim);
6033
6034 if (copy_from_user(&prim, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006035 return -EFAULT;
6036
6037 asoc = sctp_id2assoc(sk, prim.ssp_assoc_id);
6038 if (!asoc)
6039 return -EINVAL;
6040
6041 if (!asoc->peer.primary_path)
6042 return -ENOTCONN;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09006043
Al Viro8cec6b82006-11-20 17:23:01 -08006044 memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr,
6045 asoc->peer.primary_path->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046
Jason Gunthorpe299ee122014-07-30 12:40:53 -06006047 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048 (union sctp_addr *)&prim.ssp_addr);
6049
Neil Horman408f22e2007-06-16 14:03:45 -04006050 if (put_user(len, optlen))
6051 return -EFAULT;
6052 if (copy_to_user(optval, &prim, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053 return -EFAULT;
6054
6055 return 0;
6056}
6057
6058/*
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006059 * 7.1.11 Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060 *
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006061 * Requests that the local endpoint set the specified Adaptation Layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062 * Indication parameter for all future INIT and INIT-ACK exchanges.
6063 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006064static int sctp_getsockopt_adaptation_layer(struct sock *sk, int len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065 char __user *optval, int __user *optlen)
6066{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006067 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068
Neil Horman408f22e2007-06-16 14:03:45 -04006069 if (len < sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070 return -EINVAL;
6071
Neil Horman408f22e2007-06-16 14:03:45 -04006072 len = sizeof(struct sctp_setadaptation);
6073
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006074 adaptation.ssb_adaptation_ind = sctp_sk(sk)->adaptation_ind;
Neil Horman408f22e2007-06-16 14:03:45 -04006075
6076 if (put_user(len, optlen))
6077 return -EFAULT;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006078 if (copy_to_user(optval, &adaptation, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079 return -EFAULT;
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07006080
Linus Torvalds1da177e2005-04-16 15:20:36 -07006081 return 0;
6082}
6083
6084/*
6085 *
6086 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
6087 *
6088 * Applications that wish to use the sendto() system call may wish to
6089 * specify a default set of parameters that would normally be supplied
6090 * through the inclusion of ancillary data. This socket option allows
6091 * such an application to set the default sctp_sndrcvinfo structure.
6092
6093
6094 * The application that wishes to use this socket option simply passes
6095 * in to this call the sctp_sndrcvinfo structure defined in Section
6096 * 5.2.2) The input parameters accepted by this call include
6097 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
6098 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
6099 * to this call if the caller is using the UDP model.
6100 *
6101 * For getsockopt, it get the default sctp_sndrcvinfo structure.
6102 */
6103static int sctp_getsockopt_default_send_param(struct sock *sk,
6104 int len, char __user *optval,
6105 int __user *optlen)
6106{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006107 struct sctp_sock *sp = sctp_sk(sk);
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006108 struct sctp_association *asoc;
6109 struct sctp_sndrcvinfo info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006110
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006111 if (len < sizeof(info))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04006113
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006114 len = sizeof(info);
Neil Horman408f22e2007-06-16 14:03:45 -04006115
6116 if (copy_from_user(&info, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006117 return -EFAULT;
6118
6119 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
6120 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
6121 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122 if (asoc) {
6123 info.sinfo_stream = asoc->default_stream;
6124 info.sinfo_flags = asoc->default_flags;
6125 info.sinfo_ppid = asoc->default_ppid;
6126 info.sinfo_context = asoc->default_context;
6127 info.sinfo_timetolive = asoc->default_timetolive;
6128 } else {
6129 info.sinfo_stream = sp->default_stream;
6130 info.sinfo_flags = sp->default_flags;
6131 info.sinfo_ppid = sp->default_ppid;
6132 info.sinfo_context = sp->default_context;
6133 info.sinfo_timetolive = sp->default_timetolive;
6134 }
6135
Neil Horman408f22e2007-06-16 14:03:45 -04006136 if (put_user(len, optlen))
6137 return -EFAULT;
6138 if (copy_to_user(optval, &info, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139 return -EFAULT;
6140
6141 return 0;
6142}
6143
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006144/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
6145 * (SCTP_DEFAULT_SNDINFO)
6146 */
6147static int sctp_getsockopt_default_sndinfo(struct sock *sk, int len,
6148 char __user *optval,
6149 int __user *optlen)
6150{
6151 struct sctp_sock *sp = sctp_sk(sk);
6152 struct sctp_association *asoc;
6153 struct sctp_sndinfo info;
6154
6155 if (len < sizeof(info))
6156 return -EINVAL;
6157
6158 len = sizeof(info);
6159
6160 if (copy_from_user(&info, optval, len))
6161 return -EFAULT;
6162
6163 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
6164 if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
6165 return -EINVAL;
6166 if (asoc) {
6167 info.snd_sid = asoc->default_stream;
6168 info.snd_flags = asoc->default_flags;
6169 info.snd_ppid = asoc->default_ppid;
6170 info.snd_context = asoc->default_context;
6171 } else {
6172 info.snd_sid = sp->default_stream;
6173 info.snd_flags = sp->default_flags;
6174 info.snd_ppid = sp->default_ppid;
6175 info.snd_context = sp->default_context;
6176 }
6177
6178 if (put_user(len, optlen))
6179 return -EFAULT;
6180 if (copy_to_user(optval, &info, len))
6181 return -EFAULT;
6182
6183 return 0;
6184}
6185
Linus Torvalds1da177e2005-04-16 15:20:36 -07006186/*
6187 *
6188 * 7.1.5 SCTP_NODELAY
6189 *
6190 * Turn on/off any Nagle-like algorithm. This means that packets are
6191 * generally sent as soon as possible and no unnecessary delays are
6192 * introduced, at the cost of more packets in the network. Expects an
6193 * integer boolean flag.
6194 */
6195
6196static int sctp_getsockopt_nodelay(struct sock *sk, int len,
6197 char __user *optval, int __user *optlen)
6198{
6199 int val;
6200
6201 if (len < sizeof(int))
6202 return -EINVAL;
6203
6204 len = sizeof(int);
6205 val = (sctp_sk(sk)->nodelay == 1);
6206 if (put_user(len, optlen))
6207 return -EFAULT;
6208 if (copy_to_user(optval, &val, len))
6209 return -EFAULT;
6210 return 0;
6211}
6212
6213/*
6214 *
6215 * 7.1.1 SCTP_RTOINFO
6216 *
6217 * The protocol parameters used to initialize and bound retransmission
6218 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
6219 * and modify these parameters.
6220 * All parameters are time values, in milliseconds. A value of 0, when
6221 * modifying the parameters, indicates that the current value should not
6222 * be changed.
6223 *
6224 */
6225static int sctp_getsockopt_rtoinfo(struct sock *sk, int len,
6226 char __user *optval,
6227 int __user *optlen) {
6228 struct sctp_rtoinfo rtoinfo;
6229 struct sctp_association *asoc;
6230
Neil Horman408f22e2007-06-16 14:03:45 -04006231 if (len < sizeof (struct sctp_rtoinfo))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006232 return -EINVAL;
6233
Neil Horman408f22e2007-06-16 14:03:45 -04006234 len = sizeof(struct sctp_rtoinfo);
6235
6236 if (copy_from_user(&rtoinfo, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237 return -EFAULT;
6238
6239 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
6240
6241 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
6242 return -EINVAL;
6243
6244 /* Values corresponding to the specific association. */
6245 if (asoc) {
6246 rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial);
6247 rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max);
6248 rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min);
6249 } else {
6250 /* Values corresponding to the endpoint. */
6251 struct sctp_sock *sp = sctp_sk(sk);
6252
6253 rtoinfo.srto_initial = sp->rtoinfo.srto_initial;
6254 rtoinfo.srto_max = sp->rtoinfo.srto_max;
6255 rtoinfo.srto_min = sp->rtoinfo.srto_min;
6256 }
6257
6258 if (put_user(len, optlen))
6259 return -EFAULT;
6260
6261 if (copy_to_user(optval, &rtoinfo, len))
6262 return -EFAULT;
6263
6264 return 0;
6265}
6266
6267/*
6268 *
6269 * 7.1.2 SCTP_ASSOCINFO
6270 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02006271 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07006272 * of the association.
6273 * Returns an error if the new association retransmission value is
6274 * greater than the sum of the retransmission value of the peer.
6275 * See [SCTP] for more information.
6276 *
6277 */
6278static int sctp_getsockopt_associnfo(struct sock *sk, int len,
6279 char __user *optval,
6280 int __user *optlen)
6281{
6282
6283 struct sctp_assocparams assocparams;
6284 struct sctp_association *asoc;
6285 struct list_head *pos;
6286 int cnt = 0;
6287
Neil Horman408f22e2007-06-16 14:03:45 -04006288 if (len < sizeof (struct sctp_assocparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006289 return -EINVAL;
6290
Neil Horman408f22e2007-06-16 14:03:45 -04006291 len = sizeof(struct sctp_assocparams);
6292
6293 if (copy_from_user(&assocparams, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294 return -EFAULT;
6295
6296 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
6297
6298 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
6299 return -EINVAL;
6300
6301 /* Values correspoinding to the specific association */
Vladislav Yasevich17337212005-04-28 11:57:54 -07006302 if (asoc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303 assocparams.sasoc_asocmaxrxt = asoc->max_retrans;
6304 assocparams.sasoc_peer_rwnd = asoc->peer.rwnd;
6305 assocparams.sasoc_local_rwnd = asoc->a_rwnd;
Daniel Borkmann52db8822013-06-25 18:17:27 +02006306 assocparams.sasoc_cookie_life = ktime_to_ms(asoc->cookie_life);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307
6308 list_for_each(pos, &asoc->peer.transport_addr_list) {
wangweidongcb3f8372013-12-23 12:16:50 +08006309 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006310 }
6311
6312 assocparams.sasoc_number_peer_destinations = cnt;
6313 } else {
6314 /* Values corresponding to the endpoint */
6315 struct sctp_sock *sp = sctp_sk(sk);
6316
6317 assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt;
6318 assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd;
6319 assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd;
6320 assocparams.sasoc_cookie_life =
6321 sp->assocparams.sasoc_cookie_life;
6322 assocparams.sasoc_number_peer_destinations =
6323 sp->assocparams.
6324 sasoc_number_peer_destinations;
6325 }
6326
6327 if (put_user(len, optlen))
6328 return -EFAULT;
6329
6330 if (copy_to_user(optval, &assocparams, len))
6331 return -EFAULT;
6332
6333 return 0;
6334}
6335
6336/*
6337 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
6338 *
6339 * This socket option is a boolean flag which turns on or off mapped V4
6340 * addresses. If this option is turned on and the socket is type
6341 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
6342 * If this option is turned off, then no mapping will be done of V4
6343 * addresses and a user will receive both PF_INET6 and PF_INET type
6344 * addresses on the socket.
6345 */
6346static int sctp_getsockopt_mappedv4(struct sock *sk, int len,
6347 char __user *optval, int __user *optlen)
6348{
6349 int val;
6350 struct sctp_sock *sp = sctp_sk(sk);
6351
6352 if (len < sizeof(int))
6353 return -EINVAL;
6354
6355 len = sizeof(int);
6356 val = sp->v4mapped;
6357 if (put_user(len, optlen))
6358 return -EFAULT;
6359 if (copy_to_user(optval, &val, len))
6360 return -EFAULT;
6361
6362 return 0;
6363}
6364
6365/*
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006366 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
6367 * (chapter and verse is quoted at sctp_setsockopt_context())
6368 */
6369static int sctp_getsockopt_context(struct sock *sk, int len,
6370 char __user *optval, int __user *optlen)
6371{
6372 struct sctp_assoc_value params;
6373 struct sctp_sock *sp;
6374 struct sctp_association *asoc;
6375
Neil Horman408f22e2007-06-16 14:03:45 -04006376 if (len < sizeof(struct sctp_assoc_value))
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006377 return -EINVAL;
6378
Neil Horman408f22e2007-06-16 14:03:45 -04006379 len = sizeof(struct sctp_assoc_value);
6380
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006381 if (copy_from_user(&params, optval, len))
6382 return -EFAULT;
6383
6384 sp = sctp_sk(sk);
6385
6386 if (params.assoc_id != 0) {
6387 asoc = sctp_id2assoc(sk, params.assoc_id);
6388 if (!asoc)
6389 return -EINVAL;
6390 params.assoc_value = asoc->default_rcv_context;
6391 } else {
6392 params.assoc_value = sp->default_rcv_context;
6393 }
6394
6395 if (put_user(len, optlen))
6396 return -EFAULT;
6397 if (copy_to_user(optval, &params, len))
6398 return -EFAULT;
6399
6400 return 0;
6401}
6402
6403/*
Wei Yongjune89c2092008-12-25 16:54:58 -08006404 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
6405 * This option will get or set the maximum size to put in any outgoing
6406 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07006407 * fragmented by SCTP into the specified size. Note that the underlying
6408 * SCTP implementation may fragment into smaller sized chunks when the
6409 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08006410 * the user. The default value for this option is '0' which indicates
6411 * the user is NOT limiting fragmentation and only the PMTU will effect
6412 * SCTP's choice of DATA chunk size. Note also that values set larger
6413 * than the maximum size of an IP datagram will effectively let SCTP
6414 * control fragmentation (i.e. the same as setting this option to 0).
6415 *
6416 * The following structure is used to access and modify this parameter:
6417 *
6418 * struct sctp_assoc_value {
6419 * sctp_assoc_t assoc_id;
6420 * uint32_t assoc_value;
6421 * };
6422 *
6423 * assoc_id: This parameter is ignored for one-to-one style sockets.
6424 * For one-to-many style sockets this parameter indicates which
6425 * association the user is performing an action upon. Note that if
6426 * this field's value is zero then the endpoints default value is
6427 * changed (effecting future associations only).
6428 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006429 */
6430static int sctp_getsockopt_maxseg(struct sock *sk, int len,
6431 char __user *optval, int __user *optlen)
6432{
Wei Yongjune89c2092008-12-25 16:54:58 -08006433 struct sctp_assoc_value params;
6434 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435
Wei Yongjune89c2092008-12-25 16:54:58 -08006436 if (len == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05006437 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05006438 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05006439 "Use of int in maxseg socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05006440 "Use struct sctp_assoc_value instead\n",
6441 current->comm, task_pid_nr(current));
Wei Yongjune89c2092008-12-25 16:54:58 -08006442 params.assoc_id = 0;
6443 } else if (len >= sizeof(struct sctp_assoc_value)) {
6444 len = sizeof(struct sctp_assoc_value);
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006445 if (copy_from_user(&params, optval, len))
Wei Yongjune89c2092008-12-25 16:54:58 -08006446 return -EFAULT;
6447 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448 return -EINVAL;
6449
Wei Yongjune89c2092008-12-25 16:54:58 -08006450 asoc = sctp_id2assoc(sk, params.assoc_id);
6451 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
6452 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006453
Wei Yongjune89c2092008-12-25 16:54:58 -08006454 if (asoc)
6455 params.assoc_value = asoc->frag_point;
6456 else
6457 params.assoc_value = sctp_sk(sk)->user_frag;
6458
Linus Torvalds1da177e2005-04-16 15:20:36 -07006459 if (put_user(len, optlen))
6460 return -EFAULT;
Wei Yongjune89c2092008-12-25 16:54:58 -08006461 if (len == sizeof(int)) {
6462 if (copy_to_user(optval, &params.assoc_value, len))
6463 return -EFAULT;
6464 } else {
6465 if (copy_to_user(optval, &params, len))
6466 return -EFAULT;
6467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006468
6469 return 0;
6470}
6471
Vlad Yasevichb6e13312007-04-20 12:23:15 -07006472/*
6473 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
6474 * (chapter and verse is quoted at sctp_setsockopt_fragment_interleave())
6475 */
6476static int sctp_getsockopt_fragment_interleave(struct sock *sk, int len,
6477 char __user *optval, int __user *optlen)
6478{
6479 int val;
6480
6481 if (len < sizeof(int))
6482 return -EINVAL;
6483
6484 len = sizeof(int);
6485
6486 val = sctp_sk(sk)->frag_interleave;
6487 if (put_user(len, optlen))
6488 return -EFAULT;
6489 if (copy_to_user(optval, &val, len))
6490 return -EFAULT;
6491
6492 return 0;
6493}
6494
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006495/*
6496 * 7.1.25. Set or Get the sctp partial delivery point
6497 * (chapter and verse is quoted at sctp_setsockopt_partial_delivery_point())
6498 */
6499static int sctp_getsockopt_partial_delivery_point(struct sock *sk, int len,
6500 char __user *optval,
6501 int __user *optlen)
6502{
YOSHIFUJI Hideaki9cbcbf42007-07-19 10:44:50 +09006503 u32 val;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006504
6505 if (len < sizeof(u32))
6506 return -EINVAL;
6507
6508 len = sizeof(u32);
6509
6510 val = sctp_sk(sk)->pd_point;
6511 if (put_user(len, optlen))
6512 return -EFAULT;
6513 if (copy_to_user(optval, &val, len))
6514 return -EFAULT;
6515
Wei Yongjun7d743b72010-12-14 16:10:41 +00006516 return 0;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006517}
6518
Vlad Yasevich70331572007-03-23 11:34:36 -07006519/*
6520 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
6521 * (chapter and verse is quoted at sctp_setsockopt_maxburst())
6522 */
6523static int sctp_getsockopt_maxburst(struct sock *sk, int len,
6524 char __user *optval,
6525 int __user *optlen)
6526{
Neil Horman219b99a2008-03-05 13:44:46 -08006527 struct sctp_assoc_value params;
6528 struct sctp_sock *sp;
6529 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07006530
Neil Horman219b99a2008-03-05 13:44:46 -08006531 if (len == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05006532 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05006533 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05006534 "Use of int in max_burst socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05006535 "Use struct sctp_assoc_value instead\n",
6536 current->comm, task_pid_nr(current));
Neil Horman219b99a2008-03-05 13:44:46 -08006537 params.assoc_id = 0;
Wei Yongjunc6db93a2009-03-02 09:46:12 +00006538 } else if (len >= sizeof(struct sctp_assoc_value)) {
6539 len = sizeof(struct sctp_assoc_value);
Neil Horman219b99a2008-03-05 13:44:46 -08006540 if (copy_from_user(&params, optval, len))
6541 return -EFAULT;
6542 } else
6543 return -EINVAL;
Vlad Yasevich70331572007-03-23 11:34:36 -07006544
Neil Horman219b99a2008-03-05 13:44:46 -08006545 sp = sctp_sk(sk);
Vlad Yasevich70331572007-03-23 11:34:36 -07006546
Neil Horman219b99a2008-03-05 13:44:46 -08006547 if (params.assoc_id != 0) {
6548 asoc = sctp_id2assoc(sk, params.assoc_id);
6549 if (!asoc)
6550 return -EINVAL;
6551 params.assoc_value = asoc->max_burst;
6552 } else
6553 params.assoc_value = sp->max_burst;
6554
6555 if (len == sizeof(int)) {
6556 if (copy_to_user(optval, &params.assoc_value, len))
6557 return -EFAULT;
6558 } else {
6559 if (copy_to_user(optval, &params, len))
6560 return -EFAULT;
6561 }
6562
6563 return 0;
6564
Vlad Yasevich70331572007-03-23 11:34:36 -07006565}
6566
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006567static int sctp_getsockopt_hmac_ident(struct sock *sk, int len,
6568 char __user *optval, int __user *optlen)
6569{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006570 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006571 struct sctp_hmacalgo __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006572 struct sctp_hmac_algo_param *hmacs;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006573 __u16 data_len = 0;
6574 u32 num_idents;
Xin Long7a84bd42016-02-03 23:33:30 +08006575 int i;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006576
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006577 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006578 return -EACCES;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006579
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006580 hmacs = ep->auth_hmacs_list;
Xin Long3c918702017-06-30 11:52:16 +08006581 data_len = ntohs(hmacs->param_hdr.length) -
6582 sizeof(struct sctp_paramhdr);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006583
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006584 if (len < sizeof(struct sctp_hmacalgo) + data_len)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006585 return -EINVAL;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006586
6587 len = sizeof(struct sctp_hmacalgo) + data_len;
6588 num_idents = data_len / sizeof(u16);
6589
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006590 if (put_user(len, optlen))
6591 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006592 if (put_user(num_idents, &p->shmac_num_idents))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006593 return -EFAULT;
Xin Long7a84bd42016-02-03 23:33:30 +08006594 for (i = 0; i < num_idents; i++) {
6595 __u16 hmacid = ntohs(hmacs->hmac_ids[i]);
6596
6597 if (copy_to_user(&p->shmac_idents[i], &hmacid, sizeof(__u16)))
6598 return -EFAULT;
6599 }
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006600 return 0;
6601}
6602
6603static int sctp_getsockopt_active_key(struct sock *sk, int len,
6604 char __user *optval, int __user *optlen)
6605{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006606 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006607 struct sctp_authkeyid val;
6608 struct sctp_association *asoc;
6609
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006610 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006611 return -EACCES;
6612
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006613 if (len < sizeof(struct sctp_authkeyid))
6614 return -EINVAL;
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006615
6616 len = sizeof(struct sctp_authkeyid);
6617 if (copy_from_user(&val, optval, len))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006618 return -EFAULT;
6619
6620 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
6621 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
6622 return -EINVAL;
6623
6624 if (asoc)
6625 val.scact_keynumber = asoc->active_key_id;
6626 else
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006627 val.scact_keynumber = ep->active_key_id;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006628
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006629 if (put_user(len, optlen))
6630 return -EFAULT;
6631 if (copy_to_user(optval, &val, len))
6632 return -EFAULT;
6633
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006634 return 0;
6635}
6636
6637static int sctp_getsockopt_peer_auth_chunks(struct sock *sk, int len,
6638 char __user *optval, int __user *optlen)
6639{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006640 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Al Viro411223c2007-10-14 19:21:20 +01006641 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006642 struct sctp_authchunks val;
6643 struct sctp_association *asoc;
6644 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006645 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006646 char __user *to;
6647
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006648 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006649 return -EACCES;
6650
6651 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006652 return -EINVAL;
6653
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006654 if (copy_from_user(&val, optval, sizeof(val)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006655 return -EFAULT;
6656
Al Viro411223c2007-10-14 19:21:20 +01006657 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006658 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6659 if (!asoc)
6660 return -EINVAL;
6661
6662 ch = asoc->peer.peer_chunks;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006663 if (!ch)
6664 goto num;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006665
6666 /* See if the user provided enough room for all the data */
Xin Long3c918702017-06-30 11:52:16 +08006667 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
Vlad Yasevichb40db682008-02-27 14:40:37 -05006668 if (len < num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006669 return -EINVAL;
6670
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006671 if (copy_to_user(to, ch->chunks, num_chunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006672 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006673num:
6674 len = sizeof(struct sctp_authchunks) + num_chunks;
wangweidong8d726512013-12-23 12:16:53 +08006675 if (put_user(len, optlen))
6676 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05006677 if (put_user(num_chunks, &p->gauth_number_of_chunks))
6678 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006679 return 0;
6680}
6681
6682static int sctp_getsockopt_local_auth_chunks(struct sock *sk, int len,
6683 char __user *optval, int __user *optlen)
6684{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006685 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Al Viro411223c2007-10-14 19:21:20 +01006686 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006687 struct sctp_authchunks val;
6688 struct sctp_association *asoc;
6689 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006690 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006691 char __user *to;
6692
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006693 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006694 return -EACCES;
6695
6696 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006697 return -EINVAL;
6698
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006699 if (copy_from_user(&val, optval, sizeof(val)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006700 return -EFAULT;
6701
Al Viro411223c2007-10-14 19:21:20 +01006702 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006703 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6704 if (!asoc && val.gauth_assoc_id && sctp_style(sk, UDP))
6705 return -EINVAL;
6706
6707 if (asoc)
wangweidong26ac8e52013-12-23 12:16:51 +08006708 ch = (struct sctp_chunks_param *)asoc->c.auth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006709 else
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006710 ch = ep->auth_chunk_list;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006711
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006712 if (!ch)
6713 goto num;
6714
Xin Long3c918702017-06-30 11:52:16 +08006715 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006716 if (len < sizeof(struct sctp_authchunks) + num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006717 return -EINVAL;
6718
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006719 if (copy_to_user(to, ch->chunks, num_chunks))
6720 return -EFAULT;
6721num:
6722 len = sizeof(struct sctp_authchunks) + num_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006723 if (put_user(len, optlen))
6724 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05006725 if (put_user(num_chunks, &p->gauth_number_of_chunks))
6726 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006727
6728 return 0;
6729}
6730
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08006731/*
6732 * 8.2.5. Get the Current Number of Associations (SCTP_GET_ASSOC_NUMBER)
6733 * This option gets the current number of associations that are attached
6734 * to a one-to-many style socket. The option value is an uint32_t.
6735 */
6736static int sctp_getsockopt_assoc_number(struct sock *sk, int len,
6737 char __user *optval, int __user *optlen)
6738{
6739 struct sctp_sock *sp = sctp_sk(sk);
6740 struct sctp_association *asoc;
6741 u32 val = 0;
6742
6743 if (sctp_style(sk, TCP))
6744 return -EOPNOTSUPP;
6745
6746 if (len < sizeof(u32))
6747 return -EINVAL;
6748
6749 len = sizeof(u32);
6750
6751 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6752 val++;
6753 }
6754
6755 if (put_user(len, optlen))
6756 return -EFAULT;
6757 if (copy_to_user(optval, &val, len))
6758 return -EFAULT;
6759
6760 return 0;
6761}
6762
Wei Yongjun209ba422011-04-17 17:27:08 +00006763/*
Michio Honda7dc04d72011-04-26 20:16:31 +09006764 * 8.1.23 SCTP_AUTO_ASCONF
6765 * See the corresponding setsockopt entry as description
6766 */
6767static int sctp_getsockopt_auto_asconf(struct sock *sk, int len,
6768 char __user *optval, int __user *optlen)
6769{
6770 int val = 0;
6771
6772 if (len < sizeof(int))
6773 return -EINVAL;
6774
6775 len = sizeof(int);
6776 if (sctp_sk(sk)->do_auto_asconf && sctp_is_ep_boundall(sk))
6777 val = 1;
6778 if (put_user(len, optlen))
6779 return -EFAULT;
6780 if (copy_to_user(optval, &val, len))
6781 return -EFAULT;
6782 return 0;
6783}
6784
6785/*
Wei Yongjun209ba422011-04-17 17:27:08 +00006786 * 8.2.6. Get the Current Identifiers of Associations
6787 * (SCTP_GET_ASSOC_ID_LIST)
6788 *
6789 * This option gets the current list of SCTP association identifiers of
6790 * the SCTP associations handled by a one-to-many style socket.
6791 */
6792static int sctp_getsockopt_assoc_ids(struct sock *sk, int len,
6793 char __user *optval, int __user *optlen)
6794{
6795 struct sctp_sock *sp = sctp_sk(sk);
6796 struct sctp_association *asoc;
6797 struct sctp_assoc_ids *ids;
6798 u32 num = 0;
6799
6800 if (sctp_style(sk, TCP))
6801 return -EOPNOTSUPP;
6802
6803 if (len < sizeof(struct sctp_assoc_ids))
6804 return -EINVAL;
6805
6806 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6807 num++;
6808 }
6809
6810 if (len < sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num)
6811 return -EINVAL;
6812
6813 len = sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num;
6814
Marcelo Ricardo Leitner9ba0b962015-12-23 16:28:40 -02006815 ids = kmalloc(len, GFP_USER | __GFP_NOWARN);
Wei Yongjun209ba422011-04-17 17:27:08 +00006816 if (unlikely(!ids))
6817 return -ENOMEM;
6818
6819 ids->gaids_number_of_ids = num;
6820 num = 0;
6821 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6822 ids->gaids_assoc_id[num++] = asoc->assoc_id;
6823 }
6824
6825 if (put_user(len, optlen) || copy_to_user(optval, ids, len)) {
6826 kfree(ids);
6827 return -EFAULT;
6828 }
6829
6830 kfree(ids);
6831 return 0;
6832}
6833
Neil Horman5aa93bc2012-07-21 07:56:07 +00006834/*
6835 * SCTP_PEER_ADDR_THLDS
6836 *
6837 * This option allows us to fetch the partially failed threshold for one or all
6838 * transports in an association. See Section 6.1 of:
6839 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
6840 */
6841static int sctp_getsockopt_paddr_thresholds(struct sock *sk,
6842 char __user *optval,
6843 int len,
6844 int __user *optlen)
6845{
6846 struct sctp_paddrthlds val;
6847 struct sctp_transport *trans;
6848 struct sctp_association *asoc;
6849
6850 if (len < sizeof(struct sctp_paddrthlds))
6851 return -EINVAL;
6852 len = sizeof(struct sctp_paddrthlds);
6853 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval, len))
6854 return -EFAULT;
6855
6856 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
6857 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
6858 if (!asoc)
6859 return -ENOENT;
6860
6861 val.spt_pathpfthld = asoc->pf_retrans;
6862 val.spt_pathmaxrxt = asoc->pathmaxrxt;
6863 } else {
6864 trans = sctp_addr_id2transport(sk, &val.spt_address,
6865 val.spt_assoc_id);
6866 if (!trans)
6867 return -ENOENT;
6868
6869 val.spt_pathmaxrxt = trans->pathmaxrxt;
6870 val.spt_pathpfthld = trans->pf_retrans;
6871 }
6872
6873 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
6874 return -EFAULT;
6875
6876 return 0;
6877}
6878
Michele Baldessari196d6752012-12-01 04:49:42 +00006879/*
6880 * SCTP_GET_ASSOC_STATS
6881 *
6882 * This option retrieves local per endpoint statistics. It is modeled
6883 * after OpenSolaris' implementation
6884 */
6885static int sctp_getsockopt_assoc_stats(struct sock *sk, int len,
6886 char __user *optval,
6887 int __user *optlen)
6888{
6889 struct sctp_assoc_stats sas;
6890 struct sctp_association *asoc = NULL;
6891
6892 /* User must provide at least the assoc id */
6893 if (len < sizeof(sctp_assoc_t))
6894 return -EINVAL;
6895
Guenter Roeck726bc6b2013-02-27 10:57:31 +00006896 /* Allow the struct to grow and fill in as much as possible */
6897 len = min_t(size_t, len, sizeof(sas));
6898
Michele Baldessari196d6752012-12-01 04:49:42 +00006899 if (copy_from_user(&sas, optval, len))
6900 return -EFAULT;
6901
6902 asoc = sctp_id2assoc(sk, sas.sas_assoc_id);
6903 if (!asoc)
6904 return -EINVAL;
6905
6906 sas.sas_rtxchunks = asoc->stats.rtxchunks;
6907 sas.sas_gapcnt = asoc->stats.gapcnt;
6908 sas.sas_outofseqtsns = asoc->stats.outofseqtsns;
6909 sas.sas_osacks = asoc->stats.osacks;
6910 sas.sas_isacks = asoc->stats.isacks;
6911 sas.sas_octrlchunks = asoc->stats.octrlchunks;
6912 sas.sas_ictrlchunks = asoc->stats.ictrlchunks;
6913 sas.sas_oodchunks = asoc->stats.oodchunks;
6914 sas.sas_iodchunks = asoc->stats.iodchunks;
6915 sas.sas_ouodchunks = asoc->stats.ouodchunks;
6916 sas.sas_iuodchunks = asoc->stats.iuodchunks;
6917 sas.sas_idupchunks = asoc->stats.idupchunks;
6918 sas.sas_opackets = asoc->stats.opackets;
6919 sas.sas_ipackets = asoc->stats.ipackets;
6920
6921 /* New high max rto observed, will return 0 if not a single
6922 * RTO update took place. obs_rto_ipaddr will be bogus
6923 * in such a case
6924 */
6925 sas.sas_maxrto = asoc->stats.max_obs_rto;
6926 memcpy(&sas.sas_obs_rto_ipaddr, &asoc->stats.obs_rto_ipaddr,
6927 sizeof(struct sockaddr_storage));
6928
6929 /* Mark beginning of a new observation period */
6930 asoc->stats.max_obs_rto = asoc->rto_min;
6931
Michele Baldessari196d6752012-12-01 04:49:42 +00006932 if (put_user(len, optlen))
6933 return -EFAULT;
6934
Daniel Borkmannbb333812013-06-28 19:49:40 +02006935 pr_debug("%s: len:%d, assoc_id:%d\n", __func__, len, sas.sas_assoc_id);
Michele Baldessari196d6752012-12-01 04:49:42 +00006936
6937 if (copy_to_user(optval, &sas, len))
6938 return -EFAULT;
6939
6940 return 0;
6941}
6942
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02006943static int sctp_getsockopt_recvrcvinfo(struct sock *sk, int len,
6944 char __user *optval,
6945 int __user *optlen)
6946{
6947 int val = 0;
6948
6949 if (len < sizeof(int))
6950 return -EINVAL;
6951
6952 len = sizeof(int);
6953 if (sctp_sk(sk)->recvrcvinfo)
6954 val = 1;
6955 if (put_user(len, optlen))
6956 return -EFAULT;
6957 if (copy_to_user(optval, &val, len))
6958 return -EFAULT;
6959
6960 return 0;
6961}
6962
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02006963static int sctp_getsockopt_recvnxtinfo(struct sock *sk, int len,
6964 char __user *optval,
6965 int __user *optlen)
6966{
6967 int val = 0;
6968
6969 if (len < sizeof(int))
6970 return -EINVAL;
6971
6972 len = sizeof(int);
6973 if (sctp_sk(sk)->recvnxtinfo)
6974 val = 1;
6975 if (put_user(len, optlen))
6976 return -EFAULT;
6977 if (copy_to_user(optval, &val, len))
6978 return -EFAULT;
6979
6980 return 0;
6981}
6982
Xin Long28aa4c22016-07-09 19:47:40 +08006983static int sctp_getsockopt_pr_supported(struct sock *sk, int len,
6984 char __user *optval,
6985 int __user *optlen)
6986{
6987 struct sctp_assoc_value params;
6988 struct sctp_association *asoc;
6989 int retval = -EFAULT;
6990
6991 if (len < sizeof(params)) {
6992 retval = -EINVAL;
6993 goto out;
6994 }
6995
6996 len = sizeof(params);
6997 if (copy_from_user(&params, optval, len))
6998 goto out;
6999
7000 asoc = sctp_id2assoc(sk, params.assoc_id);
7001 if (asoc) {
7002 params.assoc_value = asoc->prsctp_enable;
7003 } else if (!params.assoc_id) {
7004 struct sctp_sock *sp = sctp_sk(sk);
7005
7006 params.assoc_value = sp->ep->prsctp_enable;
7007 } else {
7008 retval = -EINVAL;
7009 goto out;
7010 }
7011
7012 if (put_user(len, optlen))
7013 goto out;
7014
7015 if (copy_to_user(optval, &params, len))
7016 goto out;
7017
7018 retval = 0;
7019
7020out:
7021 return retval;
7022}
7023
Xin Longf959fb42016-07-09 19:47:41 +08007024static int sctp_getsockopt_default_prinfo(struct sock *sk, int len,
7025 char __user *optval,
7026 int __user *optlen)
7027{
7028 struct sctp_default_prinfo info;
7029 struct sctp_association *asoc;
7030 int retval = -EFAULT;
7031
7032 if (len < sizeof(info)) {
7033 retval = -EINVAL;
7034 goto out;
7035 }
7036
7037 len = sizeof(info);
7038 if (copy_from_user(&info, optval, len))
7039 goto out;
7040
7041 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
7042 if (asoc) {
7043 info.pr_policy = SCTP_PR_POLICY(asoc->default_flags);
7044 info.pr_value = asoc->default_timetolive;
7045 } else if (!info.pr_assoc_id) {
7046 struct sctp_sock *sp = sctp_sk(sk);
7047
7048 info.pr_policy = SCTP_PR_POLICY(sp->default_flags);
7049 info.pr_value = sp->default_timetolive;
7050 } else {
7051 retval = -EINVAL;
7052 goto out;
7053 }
7054
7055 if (put_user(len, optlen))
7056 goto out;
7057
7058 if (copy_to_user(optval, &info, len))
7059 goto out;
7060
7061 retval = 0;
7062
7063out:
7064 return retval;
7065}
7066
Xin Long826d2532016-07-09 19:47:42 +08007067static int sctp_getsockopt_pr_assocstatus(struct sock *sk, int len,
7068 char __user *optval,
7069 int __user *optlen)
7070{
7071 struct sctp_prstatus params;
7072 struct sctp_association *asoc;
7073 int policy;
7074 int retval = -EINVAL;
7075
7076 if (len < sizeof(params))
7077 goto out;
7078
7079 len = sizeof(params);
7080 if (copy_from_user(&params, optval, len)) {
7081 retval = -EFAULT;
7082 goto out;
7083 }
7084
7085 policy = params.sprstat_policy;
7086 if (policy & ~SCTP_PR_SCTP_MASK)
7087 goto out;
7088
7089 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
7090 if (!asoc)
7091 goto out;
7092
7093 if (policy == SCTP_PR_SCTP_NONE) {
7094 params.sprstat_abandoned_unsent = 0;
7095 params.sprstat_abandoned_sent = 0;
7096 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
7097 params.sprstat_abandoned_unsent +=
7098 asoc->abandoned_unsent[policy];
7099 params.sprstat_abandoned_sent +=
7100 asoc->abandoned_sent[policy];
7101 }
7102 } else {
7103 params.sprstat_abandoned_unsent =
7104 asoc->abandoned_unsent[__SCTP_PR_INDEX(policy)];
7105 params.sprstat_abandoned_sent =
7106 asoc->abandoned_sent[__SCTP_PR_INDEX(policy)];
7107 }
7108
7109 if (put_user(len, optlen)) {
7110 retval = -EFAULT;
7111 goto out;
7112 }
7113
7114 if (copy_to_user(optval, &params, len)) {
7115 retval = -EFAULT;
7116 goto out;
7117 }
7118
7119 retval = 0;
7120
7121out:
7122 return retval;
7123}
7124
Xin Longd229d482017-04-01 17:07:46 +08007125static int sctp_getsockopt_pr_streamstatus(struct sock *sk, int len,
7126 char __user *optval,
7127 int __user *optlen)
7128{
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007129 struct sctp_stream_out_ext *streamoute;
Xin Longd229d482017-04-01 17:07:46 +08007130 struct sctp_association *asoc;
7131 struct sctp_prstatus params;
7132 int retval = -EINVAL;
7133 int policy;
7134
7135 if (len < sizeof(params))
7136 goto out;
7137
7138 len = sizeof(params);
7139 if (copy_from_user(&params, optval, len)) {
7140 retval = -EFAULT;
7141 goto out;
7142 }
7143
7144 policy = params.sprstat_policy;
7145 if (policy & ~SCTP_PR_SCTP_MASK)
7146 goto out;
7147
7148 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
Xin Longcee360a2017-05-31 16:36:31 +08007149 if (!asoc || params.sprstat_sid >= asoc->stream.outcnt)
Xin Longd229d482017-04-01 17:07:46 +08007150 goto out;
7151
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007152 streamoute = asoc->stream.out[params.sprstat_sid].ext;
7153 if (!streamoute) {
7154 /* Not allocated yet, means all stats are 0 */
7155 params.sprstat_abandoned_unsent = 0;
7156 params.sprstat_abandoned_sent = 0;
7157 retval = 0;
7158 goto out;
7159 }
7160
Xin Longd229d482017-04-01 17:07:46 +08007161 if (policy == SCTP_PR_SCTP_NONE) {
7162 params.sprstat_abandoned_unsent = 0;
7163 params.sprstat_abandoned_sent = 0;
7164 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
7165 params.sprstat_abandoned_unsent +=
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007166 streamoute->abandoned_unsent[policy];
Xin Longd229d482017-04-01 17:07:46 +08007167 params.sprstat_abandoned_sent +=
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007168 streamoute->abandoned_sent[policy];
Xin Longd229d482017-04-01 17:07:46 +08007169 }
7170 } else {
7171 params.sprstat_abandoned_unsent =
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007172 streamoute->abandoned_unsent[__SCTP_PR_INDEX(policy)];
Xin Longd229d482017-04-01 17:07:46 +08007173 params.sprstat_abandoned_sent =
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007174 streamoute->abandoned_sent[__SCTP_PR_INDEX(policy)];
Xin Longd229d482017-04-01 17:07:46 +08007175 }
7176
7177 if (put_user(len, optlen) || copy_to_user(optval, &params, len)) {
7178 retval = -EFAULT;
7179 goto out;
7180 }
7181
7182 retval = 0;
7183
7184out:
7185 return retval;
7186}
7187
Xin Longc0d8bab2017-03-10 12:11:12 +08007188static int sctp_getsockopt_reconfig_supported(struct sock *sk, int len,
7189 char __user *optval,
7190 int __user *optlen)
7191{
7192 struct sctp_assoc_value params;
7193 struct sctp_association *asoc;
7194 int retval = -EFAULT;
7195
7196 if (len < sizeof(params)) {
7197 retval = -EINVAL;
7198 goto out;
7199 }
7200
7201 len = sizeof(params);
7202 if (copy_from_user(&params, optval, len))
7203 goto out;
7204
7205 asoc = sctp_id2assoc(sk, params.assoc_id);
7206 if (asoc) {
7207 params.assoc_value = asoc->reconf_enable;
7208 } else if (!params.assoc_id) {
7209 struct sctp_sock *sp = sctp_sk(sk);
7210
7211 params.assoc_value = sp->ep->reconf_enable;
7212 } else {
7213 retval = -EINVAL;
7214 goto out;
7215 }
7216
7217 if (put_user(len, optlen))
7218 goto out;
7219
7220 if (copy_to_user(optval, &params, len))
7221 goto out;
7222
7223 retval = 0;
7224
7225out:
7226 return retval;
7227}
7228
Xin Long9fb657a2017-01-18 00:44:46 +08007229static int sctp_getsockopt_enable_strreset(struct sock *sk, int len,
7230 char __user *optval,
7231 int __user *optlen)
7232{
7233 struct sctp_assoc_value params;
7234 struct sctp_association *asoc;
7235 int retval = -EFAULT;
7236
7237 if (len < sizeof(params)) {
7238 retval = -EINVAL;
7239 goto out;
7240 }
7241
7242 len = sizeof(params);
7243 if (copy_from_user(&params, optval, len))
7244 goto out;
7245
7246 asoc = sctp_id2assoc(sk, params.assoc_id);
7247 if (asoc) {
7248 params.assoc_value = asoc->strreset_enable;
7249 } else if (!params.assoc_id) {
7250 struct sctp_sock *sp = sctp_sk(sk);
7251
7252 params.assoc_value = sp->ep->strreset_enable;
7253 } else {
7254 retval = -EINVAL;
7255 goto out;
7256 }
7257
7258 if (put_user(len, optlen))
7259 goto out;
7260
7261 if (copy_to_user(optval, &params, len))
7262 goto out;
7263
7264 retval = 0;
7265
7266out:
7267 return retval;
7268}
7269
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03007270static int sctp_getsockopt_scheduler(struct sock *sk, int len,
7271 char __user *optval,
7272 int __user *optlen)
7273{
7274 struct sctp_assoc_value params;
7275 struct sctp_association *asoc;
7276 int retval = -EFAULT;
7277
7278 if (len < sizeof(params)) {
7279 retval = -EINVAL;
7280 goto out;
7281 }
7282
7283 len = sizeof(params);
7284 if (copy_from_user(&params, optval, len))
7285 goto out;
7286
7287 asoc = sctp_id2assoc(sk, params.assoc_id);
7288 if (!asoc) {
7289 retval = -EINVAL;
7290 goto out;
7291 }
7292
7293 params.assoc_value = sctp_sched_get_sched(asoc);
7294
7295 if (put_user(len, optlen))
7296 goto out;
7297
7298 if (copy_to_user(optval, &params, len))
7299 goto out;
7300
7301 retval = 0;
7302
7303out:
7304 return retval;
7305}
7306
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03007307static int sctp_getsockopt_scheduler_value(struct sock *sk, int len,
7308 char __user *optval,
7309 int __user *optlen)
7310{
7311 struct sctp_stream_value params;
7312 struct sctp_association *asoc;
7313 int retval = -EFAULT;
7314
7315 if (len < sizeof(params)) {
7316 retval = -EINVAL;
7317 goto out;
7318 }
7319
7320 len = sizeof(params);
7321 if (copy_from_user(&params, optval, len))
7322 goto out;
7323
7324 asoc = sctp_id2assoc(sk, params.assoc_id);
7325 if (!asoc) {
7326 retval = -EINVAL;
7327 goto out;
7328 }
7329
7330 retval = sctp_sched_get_value(asoc, params.stream_id,
7331 &params.stream_value);
7332 if (retval)
7333 goto out;
7334
7335 if (put_user(len, optlen)) {
7336 retval = -EFAULT;
7337 goto out;
7338 }
7339
7340 if (copy_to_user(optval, &params, len)) {
7341 retval = -EFAULT;
7342 goto out;
7343 }
7344
7345out:
7346 return retval;
7347}
7348
Xin Long772a5862017-12-08 21:03:58 +08007349static int sctp_getsockopt_interleaving_supported(struct sock *sk, int len,
7350 char __user *optval,
7351 int __user *optlen)
7352{
7353 struct sctp_assoc_value params;
7354 struct sctp_association *asoc;
7355 int retval = -EFAULT;
7356
7357 if (len < sizeof(params)) {
7358 retval = -EINVAL;
7359 goto out;
7360 }
7361
7362 len = sizeof(params);
7363 if (copy_from_user(&params, optval, len))
7364 goto out;
7365
7366 asoc = sctp_id2assoc(sk, params.assoc_id);
7367 if (asoc) {
7368 params.assoc_value = asoc->intl_enable;
7369 } else if (!params.assoc_id) {
7370 struct sctp_sock *sp = sctp_sk(sk);
7371
7372 params.assoc_value = sp->strm_interleave;
7373 } else {
7374 retval = -EINVAL;
7375 goto out;
7376 }
7377
7378 if (put_user(len, optlen))
7379 goto out;
7380
7381 if (copy_to_user(optval, &params, len))
7382 goto out;
7383
7384 retval = 0;
7385
7386out:
7387 return retval;
7388}
7389
Xin Longb0e9a2f2018-06-28 15:31:00 +08007390static int sctp_getsockopt_reuse_port(struct sock *sk, int len,
7391 char __user *optval,
7392 int __user *optlen)
7393{
7394 int val;
7395
7396 if (len < sizeof(int))
7397 return -EINVAL;
7398
7399 len = sizeof(int);
7400 val = sctp_sk(sk)->reuse;
7401 if (put_user(len, optlen))
7402 return -EFAULT;
7403
7404 if (copy_to_user(optval, &val, len))
7405 return -EFAULT;
7406
7407 return 0;
7408}
7409
Daniel Borkmanndda91922013-06-17 11:40:05 +02007410static int sctp_getsockopt(struct sock *sk, int level, int optname,
7411 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007412{
7413 int retval = 0;
7414 int len;
7415
Daniel Borkmannbb333812013-06-28 19:49:40 +02007416 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007417
7418 /* I can hardly begin to describe how wrong this is. This is
7419 * so broken as to be worse than useless. The API draft
7420 * REALLY is NOT helpful here... I am not convinced that the
7421 * semantics of getsockopt() with a level OTHER THAN SOL_SCTP
7422 * are at all well-founded.
7423 */
7424 if (level != SOL_SCTP) {
7425 struct sctp_af *af = sctp_sk(sk)->pf->af;
7426
7427 retval = af->getsockopt(sk, level, optname, optval, optlen);
7428 return retval;
7429 }
7430
7431 if (get_user(len, optlen))
7432 return -EFAULT;
7433
Jiri Slabya4b8e712016-10-21 14:13:24 +02007434 if (len < 0)
7435 return -EINVAL;
7436
wangweidong048ed4b2014-01-21 15:44:11 +08007437 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007438
7439 switch (optname) {
7440 case SCTP_STATUS:
7441 retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen);
7442 break;
7443 case SCTP_DISABLE_FRAGMENTS:
7444 retval = sctp_getsockopt_disable_fragments(sk, len, optval,
7445 optlen);
7446 break;
7447 case SCTP_EVENTS:
7448 retval = sctp_getsockopt_events(sk, len, optval, optlen);
7449 break;
7450 case SCTP_AUTOCLOSE:
7451 retval = sctp_getsockopt_autoclose(sk, len, optval, optlen);
7452 break;
7453 case SCTP_SOCKOPT_PEELOFF:
7454 retval = sctp_getsockopt_peeloff(sk, len, optval, optlen);
7455 break;
Neil Horman2cb5c8e2017-06-30 13:32:57 -04007456 case SCTP_SOCKOPT_PEELOFF_FLAGS:
7457 retval = sctp_getsockopt_peeloff_flags(sk, len, optval, optlen);
7458 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007459 case SCTP_PEER_ADDR_PARAMS:
7460 retval = sctp_getsockopt_peer_addr_params(sk, len, optval,
7461 optlen);
7462 break;
Shan Wei4580ccc2011-01-18 22:39:00 +00007463 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07007464 retval = sctp_getsockopt_delayed_ack(sk, len, optval,
Frank Filz77086102005-12-22 11:37:30 -08007465 optlen);
7466 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007467 case SCTP_INITMSG:
7468 retval = sctp_getsockopt_initmsg(sk, len, optval, optlen);
7469 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007470 case SCTP_GET_PEER_ADDRS:
7471 retval = sctp_getsockopt_peer_addrs(sk, len, optval,
7472 optlen);
7473 break;
7474 case SCTP_GET_LOCAL_ADDRS:
7475 retval = sctp_getsockopt_local_addrs(sk, len, optval,
7476 optlen);
7477 break;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04007478 case SCTP_SOCKOPT_CONNECTX3:
7479 retval = sctp_getsockopt_connectx3(sk, len, optval, optlen);
7480 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007481 case SCTP_DEFAULT_SEND_PARAM:
7482 retval = sctp_getsockopt_default_send_param(sk, len,
7483 optval, optlen);
7484 break;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02007485 case SCTP_DEFAULT_SNDINFO:
7486 retval = sctp_getsockopt_default_sndinfo(sk, len,
7487 optval, optlen);
7488 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007489 case SCTP_PRIMARY_ADDR:
7490 retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen);
7491 break;
7492 case SCTP_NODELAY:
7493 retval = sctp_getsockopt_nodelay(sk, len, optval, optlen);
7494 break;
7495 case SCTP_RTOINFO:
7496 retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen);
7497 break;
7498 case SCTP_ASSOCINFO:
7499 retval = sctp_getsockopt_associnfo(sk, len, optval, optlen);
7500 break;
7501 case SCTP_I_WANT_MAPPED_V4_ADDR:
7502 retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen);
7503 break;
7504 case SCTP_MAXSEG:
7505 retval = sctp_getsockopt_maxseg(sk, len, optval, optlen);
7506 break;
7507 case SCTP_GET_PEER_ADDR_INFO:
7508 retval = sctp_getsockopt_peer_addr_info(sk, len, optval,
7509 optlen);
7510 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08007511 case SCTP_ADAPTATION_LAYER:
7512 retval = sctp_getsockopt_adaptation_layer(sk, len, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007513 optlen);
7514 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08007515 case SCTP_CONTEXT:
7516 retval = sctp_getsockopt_context(sk, len, optval, optlen);
7517 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07007518 case SCTP_FRAGMENT_INTERLEAVE:
7519 retval = sctp_getsockopt_fragment_interleave(sk, len, optval,
7520 optlen);
7521 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07007522 case SCTP_PARTIAL_DELIVERY_POINT:
7523 retval = sctp_getsockopt_partial_delivery_point(sk, len, optval,
7524 optlen);
7525 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07007526 case SCTP_MAX_BURST:
7527 retval = sctp_getsockopt_maxburst(sk, len, optval, optlen);
7528 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007529 case SCTP_AUTH_KEY:
7530 case SCTP_AUTH_CHUNK:
7531 case SCTP_AUTH_DELETE_KEY:
Xin Long601590e2018-03-14 19:05:32 +08007532 case SCTP_AUTH_DEACTIVATE_KEY:
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007533 retval = -EOPNOTSUPP;
7534 break;
7535 case SCTP_HMAC_IDENT:
7536 retval = sctp_getsockopt_hmac_ident(sk, len, optval, optlen);
7537 break;
7538 case SCTP_AUTH_ACTIVE_KEY:
7539 retval = sctp_getsockopt_active_key(sk, len, optval, optlen);
7540 break;
7541 case SCTP_PEER_AUTH_CHUNKS:
7542 retval = sctp_getsockopt_peer_auth_chunks(sk, len, optval,
7543 optlen);
7544 break;
7545 case SCTP_LOCAL_AUTH_CHUNKS:
7546 retval = sctp_getsockopt_local_auth_chunks(sk, len, optval,
7547 optlen);
7548 break;
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08007549 case SCTP_GET_ASSOC_NUMBER:
7550 retval = sctp_getsockopt_assoc_number(sk, len, optval, optlen);
7551 break;
Wei Yongjun209ba422011-04-17 17:27:08 +00007552 case SCTP_GET_ASSOC_ID_LIST:
7553 retval = sctp_getsockopt_assoc_ids(sk, len, optval, optlen);
7554 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09007555 case SCTP_AUTO_ASCONF:
7556 retval = sctp_getsockopt_auto_asconf(sk, len, optval, optlen);
7557 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00007558 case SCTP_PEER_ADDR_THLDS:
7559 retval = sctp_getsockopt_paddr_thresholds(sk, optval, len, optlen);
7560 break;
Michele Baldessari196d6752012-12-01 04:49:42 +00007561 case SCTP_GET_ASSOC_STATS:
7562 retval = sctp_getsockopt_assoc_stats(sk, len, optval, optlen);
7563 break;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02007564 case SCTP_RECVRCVINFO:
7565 retval = sctp_getsockopt_recvrcvinfo(sk, len, optval, optlen);
7566 break;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02007567 case SCTP_RECVNXTINFO:
7568 retval = sctp_getsockopt_recvnxtinfo(sk, len, optval, optlen);
7569 break;
Xin Long28aa4c22016-07-09 19:47:40 +08007570 case SCTP_PR_SUPPORTED:
7571 retval = sctp_getsockopt_pr_supported(sk, len, optval, optlen);
7572 break;
Xin Longf959fb42016-07-09 19:47:41 +08007573 case SCTP_DEFAULT_PRINFO:
7574 retval = sctp_getsockopt_default_prinfo(sk, len, optval,
7575 optlen);
7576 break;
Xin Long826d2532016-07-09 19:47:42 +08007577 case SCTP_PR_ASSOC_STATUS:
7578 retval = sctp_getsockopt_pr_assocstatus(sk, len, optval,
7579 optlen);
7580 break;
Xin Longd229d482017-04-01 17:07:46 +08007581 case SCTP_PR_STREAM_STATUS:
7582 retval = sctp_getsockopt_pr_streamstatus(sk, len, optval,
7583 optlen);
7584 break;
Xin Longc0d8bab2017-03-10 12:11:12 +08007585 case SCTP_RECONFIG_SUPPORTED:
7586 retval = sctp_getsockopt_reconfig_supported(sk, len, optval,
7587 optlen);
7588 break;
Xin Long9fb657a2017-01-18 00:44:46 +08007589 case SCTP_ENABLE_STREAM_RESET:
7590 retval = sctp_getsockopt_enable_strreset(sk, len, optval,
7591 optlen);
7592 break;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03007593 case SCTP_STREAM_SCHEDULER:
7594 retval = sctp_getsockopt_scheduler(sk, len, optval,
7595 optlen);
7596 break;
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03007597 case SCTP_STREAM_SCHEDULER_VALUE:
7598 retval = sctp_getsockopt_scheduler_value(sk, len, optval,
7599 optlen);
7600 break;
Xin Long772a5862017-12-08 21:03:58 +08007601 case SCTP_INTERLEAVING_SUPPORTED:
7602 retval = sctp_getsockopt_interleaving_supported(sk, len, optval,
7603 optlen);
7604 break;
Xin Longb0e9a2f2018-06-28 15:31:00 +08007605 case SCTP_REUSE_PORT:
7606 retval = sctp_getsockopt_reuse_port(sk, len, optval, optlen);
7607 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007608 default:
7609 retval = -ENOPROTOOPT;
7610 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07007611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007612
wangweidong048ed4b2014-01-21 15:44:11 +08007613 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007614 return retval;
7615}
7616
Craig Gallek086c6532016-02-10 11:50:35 -05007617static int sctp_hash(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007618{
7619 /* STUB */
Craig Gallek086c6532016-02-10 11:50:35 -05007620 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007621}
7622
7623static void sctp_unhash(struct sock *sk)
7624{
7625 /* STUB */
7626}
7627
7628/* Check if port is acceptable. Possibly find first available port.
7629 *
7630 * The port hash table (contained in the 'global' SCTP protocol storage
7631 * returned by struct sctp_protocol *sctp_get_protocol()). The hash
7632 * table is an array of 4096 lists (sctp_bind_hashbucket). Each
7633 * list (the list number is the port number hashed out, so as you
7634 * would expect from a hash function, all the ports in a given list have
7635 * such a number that hashes out to the same list number; you were
7636 * expecting that, right?); so each list has a set of ports, with a
7637 * link to the socket (struct sock) that uses it, the port number and
7638 * a fastreuse flag (FIXME: NPI ipg).
7639 */
7640static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007641 struct sctp_bind_hashbucket *head, struct net *, unsigned short snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007642
7643static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
7644{
Xin Longb0e9a2f2018-06-28 15:31:00 +08007645 bool reuse = (sk->sk_reuse || sctp_sk(sk)->reuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007646 struct sctp_bind_hashbucket *head; /* hash list */
Sasha Levinb67bfe02013-02-27 17:06:00 -08007647 struct sctp_bind_bucket *pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007648 unsigned short snum;
7649 int ret;
7650
Al Viro04afd8b2006-11-20 17:02:01 -08007651 snum = ntohs(addr->v4.sin_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007652
Daniel Borkmannbb333812013-06-28 19:49:40 +02007653 pr_debug("%s: begins, snum:%d\n", __func__, snum);
7654
wangweidong79b91132014-01-21 15:44:07 +08007655 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007656
7657 if (snum == 0) {
Stephen Hemminger06393002007-10-10 17:30:18 -07007658 /* Search for an available port. */
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007659 int low, high, remaining, index;
7660 unsigned int rover;
WANG Cong122ff242014-05-12 16:04:53 -07007661 struct net *net = sock_net(sk);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007662
WANG Cong122ff242014-05-12 16:04:53 -07007663 inet_get_local_port_range(net, &low, &high);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007664 remaining = (high - low) + 1;
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05007665 rover = prandom_u32() % remaining + low;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007666
Linus Torvalds1da177e2005-04-16 15:20:36 -07007667 do {
7668 rover++;
7669 if ((rover < low) || (rover > high))
7670 rover = low;
WANG Cong122ff242014-05-12 16:04:53 -07007671 if (inet_is_local_reserved_port(net, rover))
Amerigo Wange3826f12010-05-05 00:27:06 +00007672 continue;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007673 index = sctp_phashfn(sock_net(sk), rover);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007674 head = &sctp_port_hashtable[index];
wangweidong3c8e43b2014-01-21 15:44:08 +08007675 spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08007676 sctp_for_each_hentry(pp, &head->chain)
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007677 if ((pp->port == rover) &&
7678 net_eq(sock_net(sk), pp->net))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007679 goto next;
7680 break;
7681 next:
wangweidong3c8e43b2014-01-21 15:44:08 +08007682 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007683 } while (--remaining > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007684
7685 /* Exhausted local port range during search? */
7686 ret = 1;
7687 if (remaining <= 0)
7688 goto fail;
7689
7690 /* OK, here is the one we will use. HEAD (the port
7691 * hash table list entry) is non-NULL and we hold it's
7692 * mutex.
7693 */
7694 snum = rover;
7695 } else {
7696 /* We are given an specific port number; we verify
7697 * that it is not being used. If it is used, we will
7698 * exahust the search in the hash list corresponding
7699 * to the port number (snum) - we detect that with the
7700 * port iterator, pp being NULL.
7701 */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007702 head = &sctp_port_hashtable[sctp_phashfn(sock_net(sk), snum)];
wangweidong3c8e43b2014-01-21 15:44:08 +08007703 spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08007704 sctp_for_each_hentry(pp, &head->chain) {
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007705 if ((pp->port == snum) && net_eq(pp->net, sock_net(sk)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007706 goto pp_found;
7707 }
7708 }
7709 pp = NULL;
7710 goto pp_not_found;
7711pp_found:
7712 if (!hlist_empty(&pp->owner)) {
7713 /* We had a port hash table hit - there is an
7714 * available port (pp != NULL) and it is being
7715 * used by other socket (pp->owner not empty); that other
7716 * socket is going to be sk2.
7717 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007718 struct sock *sk2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007719
Daniel Borkmannbb333812013-06-28 19:49:40 +02007720 pr_debug("%s: found a possible match\n", __func__);
7721
Xin Longb0e9a2f2018-06-28 15:31:00 +08007722 if (pp->fastreuse && reuse && sk->sk_state != SCTP_SS_LISTENING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007723 goto success;
7724
7725 /* Run through the list of sockets bound to the port
7726 * (pp->port) [via the pointers bind_next and
7727 * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one,
7728 * we get the endpoint they describe and run through
7729 * the endpoint's list of IP (v4 or v6) addresses,
7730 * comparing each of the addresses with the address of
7731 * the socket sk. If we find a match, then that means
7732 * that this port/socket (sk) combination are already
7733 * in an endpoint.
7734 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08007735 sk_for_each_bound(sk2, &pp->owner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007736 struct sctp_endpoint *ep2;
7737 ep2 = sctp_sk(sk2)->ep;
7738
Vlad Yasevich4e540642008-07-18 23:06:32 -07007739 if (sk == sk2 ||
Xin Longb0e9a2f2018-06-28 15:31:00 +08007740 (reuse && (sk2->sk_reuse || sctp_sk(sk2)->reuse) &&
Vlad Yasevich4e540642008-07-18 23:06:32 -07007741 sk2->sk_state != SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007742 continue;
7743
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07007744 if (sctp_bind_addr_conflict(&ep2->base.bind_addr, addr,
7745 sctp_sk(sk2), sctp_sk(sk))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007746 ret = (long)sk2;
7747 goto fail_unlock;
7748 }
7749 }
Daniel Borkmannbb333812013-06-28 19:49:40 +02007750
7751 pr_debug("%s: found a match\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007752 }
7753pp_not_found:
7754 /* If there was a hash table miss, create a new port. */
7755 ret = 1;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007756 if (!pp && !(pp = sctp_bucket_create(head, sock_net(sk), snum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007757 goto fail_unlock;
7758
7759 /* In either case (hit or miss), make sure fastreuse is 1 only
7760 * if sk->sk_reuse is too (that is, if the caller requested
7761 * SO_REUSEADDR on this socket -sk-).
7762 */
Vlad Yasevichce5325c2007-05-04 13:34:49 -07007763 if (hlist_empty(&pp->owner)) {
Xin Longb0e9a2f2018-06-28 15:31:00 +08007764 if (reuse && sk->sk_state != SCTP_SS_LISTENING)
Vlad Yasevichce5325c2007-05-04 13:34:49 -07007765 pp->fastreuse = 1;
7766 else
7767 pp->fastreuse = 0;
7768 } else if (pp->fastreuse &&
Xin Longb0e9a2f2018-06-28 15:31:00 +08007769 (!reuse || sk->sk_state == SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007770 pp->fastreuse = 0;
7771
7772 /* We are set, so fill up all the data in the hash table
7773 * entry, tie the socket list information with the rest of the
7774 * sockets FIXME: Blurry, NPI (ipg).
7775 */
7776success:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007777 if (!sctp_sk(sk)->bind_hash) {
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007778 inet_sk(sk)->inet_num = snum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007779 sk_add_bind_node(sk, &pp->owner);
7780 sctp_sk(sk)->bind_hash = pp;
7781 }
7782 ret = 0;
7783
7784fail_unlock:
wangweidong3c8e43b2014-01-21 15:44:08 +08007785 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007786
7787fail:
wangweidong79b91132014-01-21 15:44:07 +08007788 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007789 return ret;
7790}
7791
7792/* Assign a 'snum' port to the socket. If snum == 0, an ephemeral
7793 * port is requested.
7794 */
7795static int sctp_get_port(struct sock *sk, unsigned short snum)
7796{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007797 union sctp_addr addr;
7798 struct sctp_af *af = sctp_sk(sk)->pf->af;
7799
7800 /* Set up a dummy address struct from the sk. */
7801 af->from_sk(&addr, sk);
7802 addr.v4.sin_port = htons(snum);
7803
7804 /* Note: sk->sk_num gets filled in if ephemeral port request. */
Daniel Borkmann62208f12013-06-25 18:17:30 +02007805 return !!sctp_get_port_local(sk, &addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007806}
7807
7808/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007809 * Move a socket to LISTENING state.
7810 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02007811static int sctp_listen_start(struct sock *sk, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007812{
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007813 struct sctp_sock *sp = sctp_sk(sk);
7814 struct sctp_endpoint *ep = sp->ep;
Herbert Xu5821c762016-01-24 21:20:12 +08007815 struct crypto_shash *tfm = NULL;
Neil Horman3c681982012-10-24 09:20:03 +00007816 char alg[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007817
7818 /* Allocate HMAC for generating cookie. */
Neil Horman3c681982012-10-24 09:20:03 +00007819 if (!sp->hmac && sp->sctp_hmac_alg) {
7820 sprintf(alg, "hmac(%s)", sp->sctp_hmac_alg);
Herbert Xu5821c762016-01-24 21:20:12 +08007821 tfm = crypto_alloc_shash(alg, 0, 0);
Vlad Yasevich8dc49842007-05-09 13:50:20 -07007822 if (IS_ERR(tfm)) {
Joe Perchese87cc472012-05-13 21:56:26 +00007823 net_info_ratelimited("failed to load transform for %s: %ld\n",
Neil Horman3c681982012-10-24 09:20:03 +00007824 sp->sctp_hmac_alg, PTR_ERR(tfm));
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007825 return -ENOSYS;
7826 }
7827 sctp_sk(sk)->hmac = tfm;
7828 }
7829
7830 /*
7831 * If a bind() or sctp_bindx() is not called prior to a listen()
7832 * call that allows new associations to be accepted, the system
7833 * picks an ephemeral port and will choose an address set equivalent
7834 * to binding with a wildcard address.
7835 *
7836 * This is not currently spelled out in the SCTP sockets
7837 * extensions draft, but follows the practice as seen in TCP
7838 * sockets.
7839 *
7840 */
Yafang Shaocbabf462017-12-20 11:12:54 +08007841 inet_sk_set_state(sk, SCTP_SS_LISTENING);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007842 if (!ep->base.bind_addr.port) {
7843 if (sctp_autobind(sk))
7844 return -EAGAIN;
7845 } else {
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007846 if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
Yafang Shaocbabf462017-12-20 11:12:54 +08007847 inet_sk_set_state(sk, SCTP_SS_CLOSED);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007848 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007849 }
7850 }
7851
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007852 sk->sk_max_ack_backlog = backlog;
7853 sctp_hash_endpoint(ep);
7854 return 0;
7855}
7856
7857/*
7858 * 4.1.3 / 5.1.3 listen()
7859 *
7860 * By default, new associations are not accepted for UDP style sockets.
7861 * An application uses listen() to mark a socket as being able to
7862 * accept new associations.
7863 *
7864 * On TCP style sockets, applications use listen() to ready the SCTP
7865 * endpoint for accepting inbound associations.
7866 *
7867 * On both types of endpoints a backlog of '0' disables listening.
7868 *
7869 * Move a socket to LISTENING state.
7870 */
7871int sctp_inet_listen(struct socket *sock, int backlog)
7872{
7873 struct sock *sk = sock->sk;
7874 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
7875 int err = -EINVAL;
7876
7877 if (unlikely(backlog < 0))
7878 return err;
7879
wangweidong048ed4b2014-01-21 15:44:11 +08007880 lock_sock(sk);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007881
7882 /* Peeled-off sockets are not allowed to listen(). */
7883 if (sctp_style(sk, UDP_HIGH_BANDWIDTH))
7884 goto out;
7885
7886 if (sock->state != SS_UNCONNECTED)
7887 goto out;
7888
Xin Long34b27892017-04-06 13:10:52 +08007889 if (!sctp_sstate(sk, LISTENING) && !sctp_sstate(sk, CLOSED))
7890 goto out;
7891
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007892 /* If backlog is zero, disable listening. */
7893 if (!backlog) {
7894 if (sctp_sstate(sk, CLOSED))
7895 goto out;
7896
7897 err = 0;
7898 sctp_unhash_endpoint(ep);
7899 sk->sk_state = SCTP_SS_CLOSED;
Xin Longb0e9a2f2018-06-28 15:31:00 +08007900 if (sk->sk_reuse || sctp_sk(sk)->reuse)
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007901 sctp_sk(sk)->bind_hash->fastreuse = 1;
7902 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07007903 }
7904
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007905 /* If we are already listening, just update the backlog */
7906 if (sctp_sstate(sk, LISTENING))
7907 sk->sk_max_ack_backlog = backlog;
7908 else {
7909 err = sctp_listen_start(sk, backlog);
7910 if (err)
7911 goto out;
7912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007913
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007914 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007915out:
wangweidong048ed4b2014-01-21 15:44:11 +08007916 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007917 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007918}
7919
7920/*
7921 * This function is done by modeling the current datagram_poll() and the
7922 * tcp_poll(). Note that, based on these implementations, we don't
7923 * lock the socket in this function, even though it seems that,
7924 * ideally, locking or some other mechanisms can be used to ensure
Neil Horman9bffc4a2005-12-19 14:24:40 -08007925 * the integrity of the counters (sndbuf and wmem_alloc) used
Linus Torvalds1da177e2005-04-16 15:20:36 -07007926 * in this place. We assume that we don't need locks either until proven
7927 * otherwise.
7928 *
7929 * Another thing to note is that we include the Async I/O support
7930 * here, again, by modeling the current TCP/UDP code. We don't have
7931 * a good way to test with it yet.
7932 */
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07007933__poll_t sctp_poll(struct file *file, struct socket *sock, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007934{
7935 struct sock *sk = sock->sk;
7936 struct sctp_sock *sp = sctp_sk(sk);
Al Viroade994f2017-07-03 00:01:49 -04007937 __poll_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007938
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07007939 poll_wait(file, sk_sleep(sk), wait);
7940
Marcelo Ricardo Leitner486bdee2016-04-12 18:11:31 -03007941 sock_rps_record_flow(sk);
7942
Linus Torvalds1da177e2005-04-16 15:20:36 -07007943 /* A TCP-style listening socket becomes readable when the accept queue
7944 * is not empty.
7945 */
7946 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
7947 return (!list_empty(&sp->ep->asocs)) ?
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007948 (EPOLLIN | EPOLLRDNORM) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007949
7950 mask = 0;
7951
7952 /* Is there any exceptional events? */
7953 if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007954 mask |= EPOLLERR |
7955 (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? EPOLLPRI : 0);
Davide Libenzif348d702006-03-25 03:07:39 -08007956 if (sk->sk_shutdown & RCV_SHUTDOWN)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007957 mask |= EPOLLRDHUP | EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007958 if (sk->sk_shutdown == SHUTDOWN_MASK)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007959 mask |= EPOLLHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007960
7961 /* Is it readable? Reconsider this code with TCP-style support. */
Eric Dumazetdb409802010-09-06 11:13:50 +00007962 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007963 mask |= EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007964
7965 /* The association is either gone or not ready. */
7966 if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED))
7967 return mask;
7968
7969 /* Is it writable? */
7970 if (sctp_writeable(sk)) {
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007971 mask |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007972 } else {
Eric Dumazet9cd3e072015-11-29 20:03:10 -08007973 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007974 /*
7975 * Since the socket is not locked, the buffer
7976 * might be made available after the writeable check and
7977 * before the bit is set. This could cause a lost I/O
7978 * signal. tcp_poll() has a race breaker for this race
7979 * condition. Based on their implementation, we put
7980 * in the following code to cover it as well.
7981 */
7982 if (sctp_writeable(sk))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007983 mask |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007984 }
7985 return mask;
7986}
7987
7988/********************************************************************
7989 * 2nd Level Abstractions
7990 ********************************************************************/
7991
7992static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007993 struct sctp_bind_hashbucket *head, struct net *net, unsigned short snum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007994{
7995 struct sctp_bind_bucket *pp;
7996
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08007997 pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007998 if (pp) {
Li Zefan935a7f62008-04-10 01:58:06 -07007999 SCTP_DBG_OBJCNT_INC(bind_bucket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008000 pp->port = snum;
8001 pp->fastreuse = 0;
8002 INIT_HLIST_HEAD(&pp->owner);
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008003 pp->net = net;
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05008004 hlist_add_head(&pp->node, &head->chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008005 }
8006 return pp;
8007}
8008
8009/* Caller must hold hashbucket lock for this tb with local BH disabled */
8010static void sctp_bucket_destroy(struct sctp_bind_bucket *pp)
8011{
Sridhar Samudrala37fa6872006-07-21 14:45:47 -07008012 if (pp && hlist_empty(&pp->owner)) {
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05008013 __hlist_del(&pp->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008014 kmem_cache_free(sctp_bucket_cachep, pp);
8015 SCTP_DBG_OBJCNT_DEC(bind_bucket);
8016 }
8017}
8018
8019/* Release this socket's reference to a local port. */
8020static inline void __sctp_put_port(struct sock *sk)
8021{
8022 struct sctp_bind_hashbucket *head =
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008023 &sctp_port_hashtable[sctp_phashfn(sock_net(sk),
8024 inet_sk(sk)->inet_num)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07008025 struct sctp_bind_bucket *pp;
8026
wangweidong3c8e43b2014-01-21 15:44:08 +08008027 spin_lock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008028 pp = sctp_sk(sk)->bind_hash;
8029 __sk_del_bind_node(sk);
8030 sctp_sk(sk)->bind_hash = NULL;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008031 inet_sk(sk)->inet_num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008032 sctp_bucket_destroy(pp);
wangweidong3c8e43b2014-01-21 15:44:08 +08008033 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008034}
8035
8036void sctp_put_port(struct sock *sk)
8037{
wangweidong79b91132014-01-21 15:44:07 +08008038 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008039 __sctp_put_port(sk);
wangweidong79b91132014-01-21 15:44:07 +08008040 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008041}
8042
8043/*
8044 * The system picks an ephemeral port and choose an address set equivalent
8045 * to binding with a wildcard address.
8046 * One of those addresses will be the primary address for the association.
8047 * This automatically enables the multihoming capability of SCTP.
8048 */
8049static int sctp_autobind(struct sock *sk)
8050{
8051 union sctp_addr autoaddr;
8052 struct sctp_af *af;
Al Viro6fbfa9f2006-11-20 17:24:53 -08008053 __be16 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008054
8055 /* Initialize a local sockaddr structure to INADDR_ANY. */
8056 af = sctp_sk(sk)->pf->af;
8057
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008058 port = htons(inet_sk(sk)->inet_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008059 af->inaddr_any(&autoaddr, port);
8060
8061 return sctp_do_bind(sk, &autoaddr, af->sockaddr_len);
8062}
8063
8064/* Parse out IPPROTO_SCTP CMSG headers. Perform only minimal validation.
8065 *
8066 * From RFC 2292
8067 * 4.2 The cmsghdr Structure *
8068 *
8069 * When ancillary data is sent or received, any number of ancillary data
8070 * objects can be specified by the msg_control and msg_controllen members of
8071 * the msghdr structure, because each object is preceded by
8072 * a cmsghdr structure defining the object's length (the cmsg_len member).
8073 * Historically Berkeley-derived implementations have passed only one object
8074 * at a time, but this API allows multiple objects to be
8075 * passed in a single call to sendmsg() or recvmsg(). The following example
8076 * shows two ancillary data objects in a control buffer.
8077 *
8078 * |<--------------------------- msg_controllen -------------------------->|
8079 * | |
8080 *
8081 * |<----- ancillary data object ----->|<----- ancillary data object ----->|
8082 *
8083 * |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->|
8084 * | | |
8085 *
8086 * |<---------- cmsg_len ---------->| |<--------- cmsg_len ----------->| |
8087 *
8088 * |<--------- CMSG_LEN() --------->| |<-------- CMSG_LEN() ---------->| |
8089 * | | | | |
8090 *
8091 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
8092 * |cmsg_|cmsg_|cmsg_|XX| |XX|cmsg_|cmsg_|cmsg_|XX| |XX|
8093 *
8094 * |len |level|type |XX|cmsg_data[]|XX|len |level|type |XX|cmsg_data[]|XX|
8095 *
8096 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
8097 * ^
8098 * |
8099 *
8100 * msg_control
8101 * points here
8102 */
Xin Longa05437a2017-08-11 10:23:48 +08008103static int sctp_msghdr_parse(const struct msghdr *msg, struct sctp_cmsgs *cmsgs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008104{
Vlad Yasevichab38fb02008-04-12 18:40:06 -07008105 struct msghdr *my_msg = (struct msghdr *)msg;
Xin Longa05437a2017-08-11 10:23:48 +08008106 struct cmsghdr *cmsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008107
Gu Zhengf95b4142014-12-11 11:22:04 +08008108 for_each_cmsghdr(cmsg, my_msg) {
Vlad Yasevichab38fb02008-04-12 18:40:06 -07008109 if (!CMSG_OK(my_msg, cmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008110 return -EINVAL;
8111
8112 /* Should we parse this header or ignore? */
8113 if (cmsg->cmsg_level != IPPROTO_SCTP)
8114 continue;
8115
8116 /* Strictly check lengths following example in SCM code. */
8117 switch (cmsg->cmsg_type) {
8118 case SCTP_INIT:
8119 /* SCTP Socket API Extension
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008120 * 5.3.1 SCTP Initiation Structure (SCTP_INIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008121 *
8122 * This cmsghdr structure provides information for
8123 * initializing new SCTP associations with sendmsg().
8124 * The SCTP_INITMSG socket option uses this same data
8125 * structure. This structure is not used for
8126 * recvmsg().
8127 *
8128 * cmsg_level cmsg_type cmsg_data[]
8129 * ------------ ------------ ----------------------
8130 * IPPROTO_SCTP SCTP_INIT struct sctp_initmsg
8131 */
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008132 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_initmsg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008133 return -EINVAL;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008134
8135 cmsgs->init = CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008136 break;
8137
8138 case SCTP_SNDRCV:
8139 /* SCTP Socket API Extension
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008140 * 5.3.2 SCTP Header Information Structure(SCTP_SNDRCV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008141 *
8142 * This cmsghdr structure specifies SCTP options for
8143 * sendmsg() and describes SCTP header information
8144 * about a received message through recvmsg().
8145 *
8146 * cmsg_level cmsg_type cmsg_data[]
8147 * ------------ ------------ ----------------------
8148 * IPPROTO_SCTP SCTP_SNDRCV struct sctp_sndrcvinfo
8149 */
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008150 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndrcvinfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008151 return -EINVAL;
8152
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008153 cmsgs->srinfo = CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008154
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008155 if (cmsgs->srinfo->sinfo_flags &
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07008156 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
Xin Long49102802018-03-05 20:44:20 +08008157 SCTP_SACK_IMMEDIATELY | SCTP_SENDALL |
8158 SCTP_PR_SCTP_MASK | SCTP_ABORT | SCTP_EOF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008159 return -EINVAL;
8160 break;
8161
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008162 case SCTP_SNDINFO:
8163 /* SCTP Socket API Extension
8164 * 5.3.4 SCTP Send Information Structure (SCTP_SNDINFO)
8165 *
8166 * This cmsghdr structure specifies SCTP options for
8167 * sendmsg(). This structure and SCTP_RCVINFO replaces
8168 * SCTP_SNDRCV which has been deprecated.
8169 *
8170 * cmsg_level cmsg_type cmsg_data[]
8171 * ------------ ------------ ---------------------
8172 * IPPROTO_SCTP SCTP_SNDINFO struct sctp_sndinfo
8173 */
8174 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndinfo)))
8175 return -EINVAL;
8176
8177 cmsgs->sinfo = CMSG_DATA(cmsg);
8178
8179 if (cmsgs->sinfo->snd_flags &
8180 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
Xin Long49102802018-03-05 20:44:20 +08008181 SCTP_SACK_IMMEDIATELY | SCTP_SENDALL |
8182 SCTP_PR_SCTP_MASK | SCTP_ABORT | SCTP_EOF))
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008183 return -EINVAL;
8184 break;
Xin Longed63afb2018-03-05 20:44:18 +08008185 case SCTP_PRINFO:
8186 /* SCTP Socket API Extension
8187 * 5.3.7 SCTP PR-SCTP Information Structure (SCTP_PRINFO)
8188 *
8189 * This cmsghdr structure specifies SCTP options for sendmsg().
8190 *
8191 * cmsg_level cmsg_type cmsg_data[]
8192 * ------------ ------------ ---------------------
8193 * IPPROTO_SCTP SCTP_PRINFO struct sctp_prinfo
8194 */
8195 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_prinfo)))
8196 return -EINVAL;
8197
8198 cmsgs->prinfo = CMSG_DATA(cmsg);
8199 if (cmsgs->prinfo->pr_policy & ~SCTP_PR_SCTP_MASK)
8200 return -EINVAL;
8201
8202 if (cmsgs->prinfo->pr_policy == SCTP_PR_SCTP_NONE)
8203 cmsgs->prinfo->pr_value = 0;
8204 break;
Xin Long3ff547c2018-03-14 19:05:31 +08008205 case SCTP_AUTHINFO:
8206 /* SCTP Socket API Extension
8207 * 5.3.8 SCTP AUTH Information Structure (SCTP_AUTHINFO)
8208 *
8209 * This cmsghdr structure specifies SCTP options for sendmsg().
8210 *
8211 * cmsg_level cmsg_type cmsg_data[]
8212 * ------------ ------------ ---------------------
8213 * IPPROTO_SCTP SCTP_AUTHINFO struct sctp_authinfo
8214 */
8215 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_authinfo)))
8216 return -EINVAL;
8217
8218 cmsgs->authinfo = CMSG_DATA(cmsg);
8219 break;
Xin Long2c0dbaa2018-03-05 20:44:19 +08008220 case SCTP_DSTADDRV4:
8221 case SCTP_DSTADDRV6:
8222 /* SCTP Socket API Extension
8223 * 5.3.9/10 SCTP Destination IPv4/6 Address Structure (SCTP_DSTADDRV4/6)
8224 *
8225 * This cmsghdr structure specifies SCTP options for sendmsg().
8226 *
8227 * cmsg_level cmsg_type cmsg_data[]
8228 * ------------ ------------ ---------------------
8229 * IPPROTO_SCTP SCTP_DSTADDRV4 struct in_addr
8230 * ------------ ------------ ---------------------
8231 * IPPROTO_SCTP SCTP_DSTADDRV6 struct in6_addr
8232 */
8233 cmsgs->addrs_msg = my_msg;
8234 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008235 default:
8236 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07008237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008238 }
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008239
Linus Torvalds1da177e2005-04-16 15:20:36 -07008240 return 0;
8241}
8242
8243/*
8244 * Wait for a packet..
8245 * Note: This function is the same function as in core/datagram.c
8246 * with a few modifications to make lksctp work.
8247 */
wangweidong26ac8e52013-12-23 12:16:51 +08008248static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008249{
8250 int error;
8251 DEFINE_WAIT(wait);
8252
Eric Dumazetaa395142010-04-20 13:03:51 +00008253 prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008254
8255 /* Socket errors? */
8256 error = sock_error(sk);
8257 if (error)
8258 goto out;
8259
8260 if (!skb_queue_empty(&sk->sk_receive_queue))
8261 goto ready;
8262
8263 /* Socket shut down? */
8264 if (sk->sk_shutdown & RCV_SHUTDOWN)
8265 goto out;
8266
8267 /* Sequenced packets can come disconnected. If so we report the
8268 * problem.
8269 */
8270 error = -ENOTCONN;
8271
8272 /* Is there a good reason to think that we may receive some data? */
8273 if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING))
8274 goto out;
8275
8276 /* Handle signals. */
8277 if (signal_pending(current))
8278 goto interrupted;
8279
8280 /* Let another process have a go. Since we are going to sleep
8281 * anyway. Note: This may cause odd behaviors if the message
8282 * does not fit in the user's buffer, but this seems to be the
8283 * only way to honor MSG_DONTWAIT realistically.
8284 */
wangweidong048ed4b2014-01-21 15:44:11 +08008285 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008286 *timeo_p = schedule_timeout(*timeo_p);
wangweidong048ed4b2014-01-21 15:44:11 +08008287 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008288
8289ready:
Eric Dumazetaa395142010-04-20 13:03:51 +00008290 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008291 return 0;
8292
8293interrupted:
8294 error = sock_intr_errno(*timeo_p);
8295
8296out:
Eric Dumazetaa395142010-04-20 13:03:51 +00008297 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008298 *err = error;
8299 return error;
8300}
8301
8302/* Receive a datagram.
8303 * Note: This is pretty much the same routine as in core/datagram.c
8304 * with a few changes to make lksctp work.
8305 */
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02008306struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags,
8307 int noblock, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008308{
8309 int error;
8310 struct sk_buff *skb;
8311 long timeo;
8312
Linus Torvalds1da177e2005-04-16 15:20:36 -07008313 timeo = sock_rcvtimeo(sk, noblock);
8314
Daniel Borkmannbb333812013-06-28 19:49:40 +02008315 pr_debug("%s: timeo:%ld, max:%ld\n", __func__, timeo,
8316 MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008317
8318 do {
8319 /* Again only user level code calls this function,
8320 * so nothing interrupt level
8321 * will suddenly eat the receive_queue.
8322 *
8323 * Look at current nfs client by the way...
David Shwatrz8917a3c2010-12-02 09:01:55 +00008324 * However, this function was correct in any case. 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008325 */
8326 if (flags & MSG_PEEK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008327 skb = skb_peek(&sk->sk_receive_queue);
8328 if (skb)
Reshetova, Elena63354792017-06-30 13:07:58 +03008329 refcount_inc(&skb->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008330 } else {
Marcelo Ricardo Leitner311b2172016-04-13 19:12:29 -03008331 skb = __skb_dequeue(&sk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008332 }
8333
8334 if (skb)
8335 return skb;
8336
Neil Horman6736dc32005-12-02 20:30:06 -08008337 /* Caller is allowed not to check sk->sk_err before calling. */
8338 error = sock_error(sk);
8339 if (error)
8340 goto no_packet;
8341
Linus Torvalds1da177e2005-04-16 15:20:36 -07008342 if (sk->sk_shutdown & RCV_SHUTDOWN)
8343 break;
8344
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07008345 if (sk_can_busy_loop(sk)) {
8346 sk_busy_loop(sk, noblock);
8347
8348 if (!skb_queue_empty(&sk->sk_receive_queue))
8349 continue;
8350 }
Neil Horman8465a5f2014-04-17 15:26:51 -04008351
Linus Torvalds1da177e2005-04-16 15:20:36 -07008352 /* User doesn't want to wait. */
8353 error = -EAGAIN;
8354 if (!timeo)
8355 goto no_packet;
8356 } while (sctp_wait_for_packet(sk, err, &timeo) == 0);
8357
8358 return NULL;
8359
8360no_packet:
8361 *err = error;
8362 return NULL;
8363}
8364
8365/* If sndbuf has changed, wake up per association sndbuf waiters. */
8366static void __sctp_write_space(struct sctp_association *asoc)
8367{
8368 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008369
Eric Dumazetceb5d582015-11-29 20:03:11 -08008370 if (sctp_wspace(asoc) <= 0)
8371 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008372
Eric Dumazetceb5d582015-11-29 20:03:11 -08008373 if (waitqueue_active(&asoc->wait))
8374 wake_up_interruptible(&asoc->wait);
Eric Dumazeteaefd112011-02-18 03:26:36 +00008375
Eric Dumazetceb5d582015-11-29 20:03:11 -08008376 if (sctp_writeable(sk)) {
8377 struct socket_wq *wq;
8378
8379 rcu_read_lock();
8380 wq = rcu_dereference(sk->sk_wq);
8381 if (wq) {
8382 if (waitqueue_active(&wq->wait))
8383 wake_up_interruptible(&wq->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008384
8385 /* Note that we try to include the Async I/O support
8386 * here by modeling from the current TCP/UDP code.
8387 * We have not tested with it yet.
8388 */
Eric Dumazeteaefd112011-02-18 03:26:36 +00008389 if (!(sk->sk_shutdown & SEND_SHUTDOWN))
Eric Dumazetceb5d582015-11-29 20:03:11 -08008390 sock_wake_async(wq, SOCK_WAKE_SPACE, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008391 }
Eric Dumazetceb5d582015-11-29 20:03:11 -08008392 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008393 }
8394}
8395
Daniel Borkmann52c35be2014-04-08 17:26:13 +02008396static void sctp_wake_up_waiters(struct sock *sk,
8397 struct sctp_association *asoc)
8398{
8399 struct sctp_association *tmp = asoc;
8400
8401 /* We do accounting for the sndbuf space per association,
8402 * so we only need to wake our own association.
8403 */
8404 if (asoc->ep->sndbuf_policy)
8405 return __sctp_write_space(asoc);
8406
Daniel Borkmann1e1cdf82014-04-09 16:10:20 +02008407 /* If association goes down and is just flushing its
8408 * outq, then just normally notify others.
8409 */
8410 if (asoc->base.dead)
8411 return sctp_write_space(sk);
8412
Daniel Borkmann52c35be2014-04-08 17:26:13 +02008413 /* Accounting for the sndbuf space is per socket, so we
8414 * need to wake up others, try to be fair and in case of
8415 * other associations, let them have a go first instead
8416 * of just doing a sctp_write_space() call.
8417 *
8418 * Note that we reach sctp_wake_up_waiters() only when
8419 * associations free up queued chunks, thus we are under
8420 * lock and the list of associations on a socket is
8421 * guaranteed not to change.
8422 */
8423 for (tmp = list_next_entry(tmp, asocs); 1;
8424 tmp = list_next_entry(tmp, asocs)) {
8425 /* Manually skip the head element. */
8426 if (&tmp->asocs == &((sctp_sk(sk))->ep->asocs))
8427 continue;
8428 /* Wake up association. */
8429 __sctp_write_space(tmp);
8430 /* We've reached the end. */
8431 if (tmp == asoc)
8432 break;
8433 }
8434}
8435
Linus Torvalds1da177e2005-04-16 15:20:36 -07008436/* Do accounting for the sndbuf space.
8437 * Decrement the used sndbuf space of the corresponding association by the
8438 * data size which was just transmitted(freed).
8439 */
8440static void sctp_wfree(struct sk_buff *skb)
8441{
Daniel Borkmannf869c912014-11-20 01:54:48 +01008442 struct sctp_chunk *chunk = skb_shinfo(skb)->destructor_arg;
8443 struct sctp_association *asoc = chunk->asoc;
8444 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008445
Neil Horman4eb701d2005-04-28 12:02:04 -07008446 asoc->sndbuf_used -= SCTP_DATA_SNDSIZE(chunk) +
8447 sizeof(struct sk_buff) +
8448 sizeof(struct sctp_chunk);
8449
Reshetova, Elena14afee42017-06-30 13:08:00 +03008450 WARN_ON(refcount_sub_and_test(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc));
Neil Horman4eb701d2005-04-28 12:02:04 -07008451
Neil Horman4d93df02007-08-15 16:07:44 -07008452 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008453 * This undoes what is done via sctp_set_owner_w and sk_mem_charge
Neil Horman4d93df02007-08-15 16:07:44 -07008454 */
8455 sk->sk_wmem_queued -= skb->truesize;
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008456 sk_mem_uncharge(sk, skb->truesize);
Neil Horman4d93df02007-08-15 16:07:44 -07008457
Xin Longec2e5062018-03-14 19:05:33 +08008458 if (chunk->shkey) {
8459 struct sctp_shared_key *shkey = chunk->shkey;
8460
8461 /* refcnt == 2 and !list_empty mean after this release, it's
8462 * not being used anywhere, and it's time to notify userland
8463 * that this shkey can be freed if it's been deactivated.
8464 */
8465 if (shkey->deactivated && !list_empty(&shkey->key_list) &&
8466 refcount_read(&shkey->refcnt) == 2) {
8467 struct sctp_ulpevent *ev;
8468
8469 ev = sctp_ulpevent_make_authkey(asoc, shkey->key_id,
8470 SCTP_AUTH_FREE_KEY,
8471 GFP_KERNEL);
8472 if (ev)
8473 asoc->stream.si->enqueue_event(&asoc->ulpq, ev);
8474 }
Xin Long1b1e0bc2018-03-14 19:05:30 +08008475 sctp_auth_shkey_release(chunk->shkey);
Xin Longec2e5062018-03-14 19:05:33 +08008476 }
Xin Long1b1e0bc2018-03-14 19:05:30 +08008477
Neil Horman4eb701d2005-04-28 12:02:04 -07008478 sock_wfree(skb);
Daniel Borkmann52c35be2014-04-08 17:26:13 +02008479 sctp_wake_up_waiters(sk, asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008480
8481 sctp_association_put(asoc);
8482}
8483
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07008484/* Do accounting for the receive space on the socket.
8485 * Accounting for the association is done in ulpevent.c
8486 * We set this as a destructor for the cloned data skbs so that
8487 * accounting is done at the correct time.
8488 */
8489void sctp_sock_rfree(struct sk_buff *skb)
8490{
8491 struct sock *sk = skb->sk;
8492 struct sctp_ulpevent *event = sctp_skb2event(skb);
8493
8494 atomic_sub(event->rmem_len, &sk->sk_rmem_alloc);
Neil Horman4d93df02007-08-15 16:07:44 -07008495
8496 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008497 * Mimic the behavior of sock_rfree
Neil Horman4d93df02007-08-15 16:07:44 -07008498 */
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008499 sk_mem_uncharge(sk, event->rmem_len);
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07008500}
8501
8502
Linus Torvalds1da177e2005-04-16 15:20:36 -07008503/* Helper function to wait for space in the sndbuf. */
8504static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
Xin Longa0ff6602018-01-15 17:01:36 +08008505 size_t msg_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008506{
8507 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008508 long current_timeo = *timeo_p;
8509 DEFINE_WAIT(wait);
Xin Longa0ff6602018-01-15 17:01:36 +08008510 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008511
Daniel Borkmannbb333812013-06-28 19:49:40 +02008512 pr_debug("%s: asoc:%p, timeo:%ld, msg_len:%zu\n", __func__, asoc,
8513 *timeo_p, msg_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008514
8515 /* Increment the association's refcnt. */
8516 sctp_association_hold(asoc);
8517
8518 /* Wait on the association specific sndbuf space. */
8519 for (;;) {
8520 prepare_to_wait_exclusive(&asoc->wait, &wait,
8521 TASK_INTERRUPTIBLE);
Xin Longca3af4d2017-11-15 16:55:54 +08008522 if (asoc->base.dead)
8523 goto do_dead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008524 if (!*timeo_p)
8525 goto do_nonblock;
Xin Longca3af4d2017-11-15 16:55:54 +08008526 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008527 goto do_error;
8528 if (signal_pending(current))
8529 goto do_interrupted;
8530 if (msg_len <= sctp_wspace(asoc))
8531 break;
8532
8533 /* Let another process have a go. Since we are going
8534 * to sleep anyway.
8535 */
wangweidong048ed4b2014-01-21 15:44:11 +08008536 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008537 current_timeo = schedule_timeout(current_timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08008538 lock_sock(sk);
Xin Longa0ff6602018-01-15 17:01:36 +08008539 if (sk != asoc->base.sk)
8540 goto do_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008541
8542 *timeo_p = current_timeo;
8543 }
8544
8545out:
8546 finish_wait(&asoc->wait, &wait);
8547
8548 /* Release the association's refcnt. */
8549 sctp_association_put(asoc);
8550
8551 return err;
8552
Xin Longca3af4d2017-11-15 16:55:54 +08008553do_dead:
8554 err = -ESRCH;
8555 goto out;
8556
Linus Torvalds1da177e2005-04-16 15:20:36 -07008557do_error:
8558 err = -EPIPE;
8559 goto out;
8560
8561do_interrupted:
8562 err = sock_intr_errno(*timeo_p);
8563 goto out;
8564
8565do_nonblock:
8566 err = -EAGAIN;
8567 goto out;
8568}
8569
David S. Miller676d2362014-04-11 16:15:36 -04008570void sctp_data_ready(struct sock *sk)
Wei Yongjun561b1732010-04-28 08:47:18 +00008571{
David S. Miller7ef52732010-05-02 21:43:40 -07008572 struct socket_wq *wq;
8573
8574 rcu_read_lock();
8575 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08008576 if (skwq_has_sleeper(wq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008577 wake_up_interruptible_sync_poll(&wq->wait, EPOLLIN |
8578 EPOLLRDNORM | EPOLLRDBAND);
Wei Yongjun561b1732010-04-28 08:47:18 +00008579 sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
David S. Miller7ef52732010-05-02 21:43:40 -07008580 rcu_read_unlock();
Wei Yongjun561b1732010-04-28 08:47:18 +00008581}
8582
Linus Torvalds1da177e2005-04-16 15:20:36 -07008583/* If socket sndbuf has changed, wake up all per association waiters. */
8584void sctp_write_space(struct sock *sk)
8585{
8586 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008587
8588 /* Wake up the tasks in each wait queue. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07008589 list_for_each_entry(asoc, &((sctp_sk(sk))->ep->asocs), asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008590 __sctp_write_space(asoc);
8591 }
8592}
8593
8594/* Is there any sndbuf space available on the socket?
8595 *
Neil Horman9bffc4a2005-12-19 14:24:40 -08008596 * Note that sk_wmem_alloc is the sum of the send buffers on all of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07008597 * associations on the same socket. For a UDP-style socket with
8598 * multiple associations, it is possible for it to be "unwriteable"
8599 * prematurely. I assume that this is acceptable because
8600 * a premature "unwriteable" is better than an accidental "writeable" which
8601 * would cause an unwanted block under certain circumstances. For the 1-1
8602 * UDP-style sockets or TCP-style sockets, this code should work.
8603 * - Daisy
8604 */
8605static int sctp_writeable(struct sock *sk)
8606{
8607 int amt = 0;
8608
Eric Dumazet31e6d362009-06-17 19:05:41 -07008609 amt = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008610 if (amt < 0)
8611 amt = 0;
8612 return amt;
8613}
8614
8615/* Wait for an association to go into ESTABLISHED state. If timeout is 0,
8616 * returns immediately with EINPROGRESS.
8617 */
8618static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p)
8619{
8620 struct sock *sk = asoc->base.sk;
8621 int err = 0;
8622 long current_timeo = *timeo_p;
8623 DEFINE_WAIT(wait);
8624
Daniel Borkmannbb333812013-06-28 19:49:40 +02008625 pr_debug("%s: asoc:%p, timeo:%ld\n", __func__, asoc, *timeo_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008626
8627 /* Increment the association's refcnt. */
8628 sctp_association_hold(asoc);
8629
8630 for (;;) {
8631 prepare_to_wait_exclusive(&asoc->wait, &wait,
8632 TASK_INTERRUPTIBLE);
8633 if (!*timeo_p)
8634 goto do_nonblock;
8635 if (sk->sk_shutdown & RCV_SHUTDOWN)
8636 break;
8637 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
8638 asoc->base.dead)
8639 goto do_error;
8640 if (signal_pending(current))
8641 goto do_interrupted;
8642
8643 if (sctp_state(asoc, ESTABLISHED))
8644 break;
8645
8646 /* Let another process have a go. Since we are going
8647 * to sleep anyway.
8648 */
wangweidong048ed4b2014-01-21 15:44:11 +08008649 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008650 current_timeo = schedule_timeout(current_timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08008651 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008652
8653 *timeo_p = current_timeo;
8654 }
8655
8656out:
8657 finish_wait(&asoc->wait, &wait);
8658
8659 /* Release the association's refcnt. */
8660 sctp_association_put(asoc);
8661
8662 return err;
8663
8664do_error:
Vlad Yasevich81845c22006-01-30 15:59:54 -08008665 if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008666 err = -ETIMEDOUT;
8667 else
8668 err = -ECONNREFUSED;
8669 goto out;
8670
8671do_interrupted:
8672 err = sock_intr_errno(*timeo_p);
8673 goto out;
8674
8675do_nonblock:
8676 err = -EINPROGRESS;
8677 goto out;
8678}
8679
8680static int sctp_wait_for_accept(struct sock *sk, long timeo)
8681{
8682 struct sctp_endpoint *ep;
8683 int err = 0;
8684 DEFINE_WAIT(wait);
8685
8686 ep = sctp_sk(sk)->ep;
8687
8688
8689 for (;;) {
Eric Dumazetaa395142010-04-20 13:03:51 +00008690 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008691 TASK_INTERRUPTIBLE);
8692
8693 if (list_empty(&ep->asocs)) {
wangweidong048ed4b2014-01-21 15:44:11 +08008694 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008695 timeo = schedule_timeout(timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08008696 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008697 }
8698
8699 err = -EINVAL;
8700 if (!sctp_sstate(sk, LISTENING))
8701 break;
8702
8703 err = 0;
8704 if (!list_empty(&ep->asocs))
8705 break;
8706
8707 err = sock_intr_errno(timeo);
8708 if (signal_pending(current))
8709 break;
8710
8711 err = -EAGAIN;
8712 if (!timeo)
8713 break;
8714 }
8715
Eric Dumazetaa395142010-04-20 13:03:51 +00008716 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008717
8718 return err;
8719}
8720
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +02008721static void sctp_wait_for_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008722{
8723 DEFINE_WAIT(wait);
8724
8725 do {
Eric Dumazetaa395142010-04-20 13:03:51 +00008726 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008727 if (list_empty(&sctp_sk(sk)->ep->asocs))
8728 break;
wangweidong048ed4b2014-01-21 15:44:11 +08008729 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008730 timeout = schedule_timeout(timeout);
wangweidong048ed4b2014-01-21 15:44:11 +08008731 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008732 } while (!signal_pending(current) && timeout);
8733
Eric Dumazetaa395142010-04-20 13:03:51 +00008734 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008735}
8736
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008737static void sctp_skb_set_owner_r_frag(struct sk_buff *skb, struct sock *sk)
8738{
8739 struct sk_buff *frag;
8740
8741 if (!skb->data_len)
8742 goto done;
8743
8744 /* Don't forget the fragments. */
David S. Miller1b003be2009-06-09 00:22:35 -07008745 skb_walk_frags(skb, frag)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008746 sctp_skb_set_owner_r_frag(frag, sk);
8747
8748done:
8749 sctp_skb_set_owner_r(skb, sk);
8750}
8751
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008752void sctp_copy_sock(struct sock *newsk, struct sock *sk,
8753 struct sctp_association *asoc)
8754{
8755 struct inet_sock *inet = inet_sk(sk);
Julia Lawall09cb47a2010-01-21 02:43:20 -08008756 struct inet_sock *newinet;
Richard Haines2277c7c2018-02-13 20:56:24 +00008757 struct sctp_sock *sp = sctp_sk(sk);
8758 struct sctp_endpoint *ep = sp->ep;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008759
8760 newsk->sk_type = sk->sk_type;
8761 newsk->sk_bound_dev_if = sk->sk_bound_dev_if;
8762 newsk->sk_flags = sk->sk_flags;
Marcelo Ricardo Leitner50a5ffb2015-12-04 15:14:05 -02008763 newsk->sk_tsflags = sk->sk_tsflags;
Tom Herbert28448b82014-05-23 08:47:19 -07008764 newsk->sk_no_check_tx = sk->sk_no_check_tx;
8765 newsk->sk_no_check_rx = sk->sk_no_check_rx;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008766 newsk->sk_reuse = sk->sk_reuse;
Xin Longb0e9a2f2018-06-28 15:31:00 +08008767 sctp_sk(newsk)->reuse = sp->reuse;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008768
8769 newsk->sk_shutdown = sk->sk_shutdown;
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02008770 newsk->sk_destruct = sctp_destruct_sock;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008771 newsk->sk_family = sk->sk_family;
8772 newsk->sk_protocol = IPPROTO_SCTP;
8773 newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
8774 newsk->sk_sndbuf = sk->sk_sndbuf;
8775 newsk->sk_rcvbuf = sk->sk_rcvbuf;
8776 newsk->sk_lingertime = sk->sk_lingertime;
8777 newsk->sk_rcvtimeo = sk->sk_rcvtimeo;
8778 newsk->sk_sndtimeo = sk->sk_sndtimeo;
Marcelo Ricardo Leitner486bdee2016-04-12 18:11:31 -03008779 newsk->sk_rxhash = sk->sk_rxhash;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008780
8781 newinet = inet_sk(newsk);
8782
8783 /* Initialize sk's sport, dport, rcv_saddr and daddr for
8784 * getsockname() and getpeername()
8785 */
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008786 newinet->inet_sport = inet->inet_sport;
8787 newinet->inet_saddr = inet->inet_saddr;
8788 newinet->inet_rcv_saddr = inet->inet_rcv_saddr;
8789 newinet->inet_dport = htons(asoc->peer.port);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008790 newinet->pmtudisc = inet->pmtudisc;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008791 newinet->inet_id = asoc->next_tsn ^ jiffies;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008792
8793 newinet->uc_ttl = inet->uc_ttl;
8794 newinet->mc_loop = 1;
8795 newinet->mc_ttl = 1;
8796 newinet->mc_index = 0;
8797 newinet->mc_list = NULL;
Marcelo Ricardo Leitner01ce63c2015-12-04 15:14:04 -02008798
8799 if (newsk->sk_flags & SK_FLAGS_TIMESTAMP)
8800 net_enable_timestamp();
Marcelo Ricardo Leitner3538a5c2015-12-23 16:44:09 -02008801
Richard Haines2277c7c2018-02-13 20:56:24 +00008802 /* Set newsk security attributes from orginal sk and connection
8803 * security attribute from ep.
8804 */
8805 security_sctp_sk_clone(ep, sk, newsk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008806}
8807
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03008808static inline void sctp_copy_descendant(struct sock *sk_to,
8809 const struct sock *sk_from)
8810{
8811 int ancestor_size = sizeof(struct inet_sock) +
8812 sizeof(struct sctp_sock) -
8813 offsetof(struct sctp_sock, auto_asconf_list);
8814
8815 if (sk_from->sk_family == PF_INET6)
8816 ancestor_size += sizeof(struct ipv6_pinfo);
8817
8818 __inet_sk_copy_descendant(sk_to, sk_from, ancestor_size);
8819}
8820
Linus Torvalds1da177e2005-04-16 15:20:36 -07008821/* Populate the fields of the newsk from the oldsk and migrate the assoc
8822 * and its messages to the newsk.
8823 */
8824static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
8825 struct sctp_association *assoc,
Xin Longb7ef2612017-08-11 10:23:50 +08008826 enum sctp_socket_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008827{
8828 struct sctp_sock *oldsp = sctp_sk(oldsk);
8829 struct sctp_sock *newsp = sctp_sk(newsk);
8830 struct sctp_bind_bucket *pp; /* hash list port iterator */
8831 struct sctp_endpoint *newep = newsp->ep;
8832 struct sk_buff *skb, *tmp;
8833 struct sctp_ulpevent *event;
Vlad Yasevichf26f7c42007-12-06 22:50:27 -08008834 struct sctp_bind_hashbucket *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008835
8836 /* Migrate socket buffer sizes and all the socket level options to the
8837 * new socket.
8838 */
8839 newsk->sk_sndbuf = oldsk->sk_sndbuf;
8840 newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
8841 /* Brute force copy old sctp opt. */
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03008842 sctp_copy_descendant(newsk, oldsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008843
8844 /* Restore the ep value that was overwritten with the above structure
8845 * copy.
8846 */
8847 newsp->ep = newep;
8848 newsp->hmac = NULL;
8849
8850 /* Hook this new socket in to the bind_hash list. */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008851 head = &sctp_port_hashtable[sctp_phashfn(sock_net(oldsk),
8852 inet_sk(oldsk)->inet_num)];
Nicholas Mc Guire489ce5f2016-03-13 11:48:24 +01008853 spin_lock_bh(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008854 pp = sctp_sk(oldsk)->bind_hash;
8855 sk_add_bind_node(newsk, &pp->owner);
8856 sctp_sk(newsk)->bind_hash = pp;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008857 inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num;
Nicholas Mc Guire489ce5f2016-03-13 11:48:24 +01008858 spin_unlock_bh(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008859
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07008860 /* Copy the bind_addr list from the original endpoint to the new
8861 * endpoint so that we can handle restarts properly
8862 */
Vlad Yasevich8e71a112007-12-06 22:50:54 -08008863 sctp_bind_addr_dup(&newsp->ep->base.bind_addr,
8864 &oldsp->ep->base.bind_addr, GFP_KERNEL);
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07008865
Linus Torvalds1da177e2005-04-16 15:20:36 -07008866 /* Move any messages in the old socket's receive queue that are for the
8867 * peeled off association to the new socket's receive queue.
8868 */
8869 sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) {
8870 event = sctp_skb2event(skb);
8871 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07008872 __skb_unlink(skb, &oldsk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008873 __skb_queue_tail(&newsk->sk_receive_queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008874 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008875 }
8876 }
8877
8878 /* Clean up any messages pending delivery due to partial
8879 * delivery. Three cases:
8880 * 1) No partial deliver; no work.
8881 * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby.
8882 * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue.
8883 */
8884 skb_queue_head_init(&newsp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008885 atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008886
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008887 if (atomic_read(&sctp_sk(oldsk)->pd_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008888 struct sk_buff_head *queue;
8889
8890 /* Decide which queue to move pd_lobby skbs to. */
8891 if (assoc->ulpq.pd_mode) {
8892 queue = &newsp->pd_lobby;
8893 } else
8894 queue = &newsk->sk_receive_queue;
8895
8896 /* Walk through the pd_lobby, looking for skbs that
8897 * need moved to the new socket.
8898 */
8899 sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) {
8900 event = sctp_skb2event(skb);
8901 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07008902 __skb_unlink(skb, &oldsp->pd_lobby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008903 __skb_queue_tail(queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008904 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008905 }
8906 }
8907
8908 /* Clear up any skbs waiting for the partial
8909 * delivery to finish.
8910 */
8911 if (assoc->ulpq.pd_mode)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008912 sctp_clear_pd(oldsk, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008913
8914 }
8915
Xin Long13228232017-12-08 21:04:09 +08008916 sctp_for_each_rx_skb(assoc, newsk, sctp_skb_set_owner_r_frag);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008917
Linus Torvalds1da177e2005-04-16 15:20:36 -07008918 /* Set the type of socket to indicate that it is peeled off from the
8919 * original UDP-style socket or created with the accept() call on a
8920 * TCP-style socket..
8921 */
8922 newsp->type = type;
8923
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07008924 /* Mark the new socket "in-use" by the user so that any packets
8925 * that may arrive on the association after we've moved it are
8926 * queued to the backlog. This prevents a potential race between
8927 * backlog processing on the old socket and new-packet processing
8928 * on the new socket.
Zach Brown5131a182007-06-22 15:14:46 -07008929 *
8930 * The caller has just allocated newsk so we can guarantee that other
8931 * paths won't try to lock it and then oldsk.
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07008932 */
Zach Brown5131a182007-06-22 15:14:46 -07008933 lock_sock_nested(newsk, SINGLE_DEPTH_NESTING);
Xin Longd04adf12017-10-28 02:13:29 +08008934 sctp_for_each_tx_datachunk(assoc, sctp_clear_owner_w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008935 sctp_assoc_migrate(assoc, newsk);
Xin Longd04adf12017-10-28 02:13:29 +08008936 sctp_for_each_tx_datachunk(assoc, sctp_set_owner_w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008937
8938 /* If the association on the newsk is already closed before accept()
8939 * is called, set RCV_SHUTDOWN flag.
8940 */
Xin Longd46e4162016-06-09 22:48:18 +08008941 if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP)) {
Yafang Shaocbabf462017-12-20 11:12:54 +08008942 inet_sk_set_state(newsk, SCTP_SS_CLOSED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008943 newsk->sk_shutdown |= RCV_SHUTDOWN;
Xin Longd46e4162016-06-09 22:48:18 +08008944 } else {
Yafang Shaocbabf462017-12-20 11:12:54 +08008945 inet_sk_set_state(newsk, SCTP_SS_ESTABLISHED);
Xin Longd46e4162016-06-09 22:48:18 +08008946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008947
wangweidong048ed4b2014-01-21 15:44:11 +08008948 release_sock(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008949}
8950
Neil Horman4d93df02007-08-15 16:07:44 -07008951
Linus Torvalds1da177e2005-04-16 15:20:36 -07008952/* This proto struct describes the ULP interface for SCTP. */
8953struct proto sctp_prot = {
8954 .name = "SCTP",
8955 .owner = THIS_MODULE,
8956 .close = sctp_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008957 .disconnect = sctp_disconnect,
8958 .accept = sctp_accept,
8959 .ioctl = sctp_ioctl,
8960 .init = sctp_init_sock,
8961 .destroy = sctp_destroy_sock,
8962 .shutdown = sctp_shutdown,
8963 .setsockopt = sctp_setsockopt,
8964 .getsockopt = sctp_getsockopt,
8965 .sendmsg = sctp_sendmsg,
8966 .recvmsg = sctp_recvmsg,
8967 .bind = sctp_bind,
8968 .backlog_rcv = sctp_backlog_rcv,
8969 .hash = sctp_hash,
8970 .unhash = sctp_unhash,
8971 .get_port = sctp_get_port,
8972 .obj_size = sizeof(struct sctp_sock),
David Windsorab9ee8e2017-08-24 16:57:57 -07008973 .useroffset = offsetof(struct sctp_sock, subscribe),
8974 .usersize = offsetof(struct sctp_sock, initmsg) -
8975 offsetof(struct sctp_sock, subscribe) +
8976 sizeof_field(struct sctp_sock, initmsg),
Neil Horman4d93df02007-08-15 16:07:44 -07008977 .sysctl_mem = sysctl_sctp_mem,
8978 .sysctl_rmem = sysctl_sctp_rmem,
8979 .sysctl_wmem = sysctl_sctp_wmem,
8980 .memory_pressure = &sctp_memory_pressure,
8981 .enter_memory_pressure = sctp_enter_memory_pressure,
8982 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08008983 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008984};
8985
Eric Dumazetdfd56b82011-12-10 09:48:31 +00008986#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazet8295b6d2007-11-05 23:40:28 -08008987
Eric Dumazet602dd622015-12-01 07:20:07 -08008988#include <net/transp_v6.h>
8989static void sctp_v6_destroy_sock(struct sock *sk)
8990{
8991 sctp_destroy_sock(sk);
8992 inet6_destroy_sock(sk);
8993}
8994
Linus Torvalds1da177e2005-04-16 15:20:36 -07008995struct proto sctpv6_prot = {
8996 .name = "SCTPv6",
8997 .owner = THIS_MODULE,
8998 .close = sctp_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008999 .disconnect = sctp_disconnect,
9000 .accept = sctp_accept,
9001 .ioctl = sctp_ioctl,
9002 .init = sctp_init_sock,
Eric Dumazet602dd622015-12-01 07:20:07 -08009003 .destroy = sctp_v6_destroy_sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009004 .shutdown = sctp_shutdown,
9005 .setsockopt = sctp_setsockopt,
9006 .getsockopt = sctp_getsockopt,
9007 .sendmsg = sctp_sendmsg,
9008 .recvmsg = sctp_recvmsg,
9009 .bind = sctp_bind,
9010 .backlog_rcv = sctp_backlog_rcv,
9011 .hash = sctp_hash,
9012 .unhash = sctp_unhash,
9013 .get_port = sctp_get_port,
9014 .obj_size = sizeof(struct sctp6_sock),
David Windsorab9ee8e2017-08-24 16:57:57 -07009015 .useroffset = offsetof(struct sctp6_sock, sctp.subscribe),
9016 .usersize = offsetof(struct sctp6_sock, sctp.initmsg) -
9017 offsetof(struct sctp6_sock, sctp.subscribe) +
9018 sizeof_field(struct sctp6_sock, sctp.initmsg),
Neil Horman4d93df02007-08-15 16:07:44 -07009019 .sysctl_mem = sysctl_sctp_mem,
9020 .sysctl_rmem = sysctl_sctp_rmem,
9021 .sysctl_wmem = sysctl_sctp_wmem,
9022 .memory_pressure = &sctp_memory_pressure,
9023 .enter_memory_pressure = sctp_enter_memory_pressure,
9024 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08009025 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009026};
Eric Dumazetdfd56b82011-12-10 09:48:31 +00009027#endif /* IS_ENABLED(CONFIG_IPV6) */