blob: bf11f9cacb634fbd7c22de520ab4b2ef90cc6e2a [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;
2396 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002398 * spp_assoc_id - (one-to-many style socket) This is filled in the
2399 * application, and identifies the association for
2400 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 * spp_address - This specifies which address is of interest.
2402 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08002403 * in milliseconds. If a value of zero
2404 * is present in this field then no changes are to
2405 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 * spp_pathmaxrxt - This contains the maximum number of
2407 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08002408 * considered unreachable. If a value of zero
2409 * is present in this field then no changes are to
2410 * be made to this parameter.
2411 * spp_pathmtu - When Path MTU discovery is disabled the value
2412 * specified here will be the "fixed" path mtu.
2413 * Note that if the spp_address field is empty
2414 * then all associations on this address will
2415 * have this fixed path mtu set upon them.
2416 *
2417 * spp_sackdelay - When delayed sack is enabled, this value specifies
2418 * the number of milliseconds that sacks will be delayed
2419 * for. This value will apply to all addresses of an
2420 * association if the spp_address field is empty. Note
2421 * also, that if delayed sack is enabled and this
2422 * value is set to 0, no change is made to the last
2423 * recorded delayed sack timer value.
2424 *
2425 * spp_flags - These flags are used to control various features
2426 * on an association. The flag field may contain
2427 * zero or more of the following options.
2428 *
2429 * SPP_HB_ENABLE - Enable heartbeats on the
2430 * specified address. Note that if the address
2431 * field is empty all addresses for the association
2432 * have heartbeats enabled upon them.
2433 *
2434 * SPP_HB_DISABLE - Disable heartbeats on the
2435 * speicifed address. Note that if the address
2436 * field is empty all addresses for the association
2437 * will have their heartbeats disabled. Note also
2438 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
2439 * mutually exclusive, only one of these two should
2440 * be specified. Enabling both fields will have
2441 * undetermined results.
2442 *
2443 * SPP_HB_DEMAND - Request a user initiated heartbeat
2444 * to be made immediately.
2445 *
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002446 * SPP_HB_TIME_IS_ZERO - Specify's that the time for
2447 * heartbeat delayis to be set to the value of 0
2448 * milliseconds.
2449 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002450 * SPP_PMTUD_ENABLE - This field will enable PMTU
2451 * discovery upon the specified address. Note that
2452 * if the address feild is empty then all addresses
2453 * on the association are effected.
2454 *
2455 * SPP_PMTUD_DISABLE - This field will disable PMTU
2456 * discovery upon the specified address. Note that
2457 * if the address feild is empty then all addresses
2458 * on the association are effected. Not also that
2459 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2460 * exclusive. Enabling both will have undetermined
2461 * results.
2462 *
2463 * SPP_SACKDELAY_ENABLE - Setting this flag turns
2464 * on delayed sack. The time specified in spp_sackdelay
2465 * is used to specify the sack delay for this address. Note
2466 * that if spp_address is empty then all addresses will
2467 * enable delayed sack and take on the sack delay
2468 * value specified in spp_sackdelay.
2469 * SPP_SACKDELAY_DISABLE - Setting this flag turns
2470 * off delayed sack. If the spp_address field is blank then
2471 * delayed sack is disabled for the entire association. Note
2472 * also that this field is mutually exclusive to
2473 * SPP_SACKDELAY_ENABLE, setting both will have undefined
2474 * results.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 */
Adrian Bunk16164362006-09-18 00:40:38 -07002476static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2477 struct sctp_transport *trans,
2478 struct sctp_association *asoc,
2479 struct sctp_sock *sp,
2480 int hb_change,
2481 int pmtud_change,
2482 int sackdelay_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 int error;
2485
Frank Filz52ccb8e2005-12-22 11:36:46 -08002486 if (params->spp_flags & SPP_HB_DEMAND && trans) {
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00002487 struct net *net = sock_net(trans->asoc->base.sk);
2488
2489 error = sctp_primitive_REQUESTHEARTBEAT(net, trans->asoc, trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 if (error)
2491 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 }
2493
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002494 /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2495 * this field is ignored. Note also that a value of zero indicates
2496 * the current setting should be left unchanged.
2497 */
2498 if (params->spp_flags & SPP_HB_ENABLE) {
2499
2500 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2501 * set. This lets us use 0 value when this flag
2502 * is set.
2503 */
2504 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2505 params->spp_hbinterval = 0;
2506
2507 if (params->spp_hbinterval ||
2508 (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2509 if (trans) {
2510 trans->hbinterval =
2511 msecs_to_jiffies(params->spp_hbinterval);
2512 } else if (asoc) {
2513 asoc->hbinterval =
2514 msecs_to_jiffies(params->spp_hbinterval);
2515 } else {
2516 sp->hbinterval = params->spp_hbinterval;
2517 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08002518 }
2519 }
2520
2521 if (hb_change) {
2522 if (trans) {
2523 trans->param_flags =
2524 (trans->param_flags & ~SPP_HB) | hb_change;
2525 } else if (asoc) {
2526 asoc->param_flags =
2527 (asoc->param_flags & ~SPP_HB) | hb_change;
2528 } else {
2529 sp->param_flags =
2530 (sp->param_flags & ~SPP_HB) | hb_change;
2531 }
2532 }
2533
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002534 /* When Path MTU discovery is disabled the value specified here will
2535 * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2536 * include the flag SPP_PMTUD_DISABLE for this field to have any
2537 * effect).
2538 */
2539 if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002540 if (trans) {
2541 trans->pathmtu = params->spp_pathmtu;
Xin Long3ebfdf02017-04-04 13:39:55 +08002542 sctp_assoc_sync_pmtu(asoc);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002543 } else if (asoc) {
Marcelo Ricardo Leitnerc4b28932018-04-26 16:58:53 -03002544 sctp_assoc_set_pmtu(asoc, params->spp_pathmtu);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002545 } else {
2546 sp->pathmtu = params->spp_pathmtu;
2547 }
2548 }
2549
2550 if (pmtud_change) {
2551 if (trans) {
2552 int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2553 (params->spp_flags & SPP_PMTUD_ENABLE);
2554 trans->param_flags =
2555 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2556 if (update) {
Vlad Yasevich9914ae32011-04-26 21:51:31 +00002557 sctp_transport_pmtu(trans, sctp_opt2sk(sp));
Xin Long3ebfdf02017-04-04 13:39:55 +08002558 sctp_assoc_sync_pmtu(asoc);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002559 }
2560 } else if (asoc) {
2561 asoc->param_flags =
2562 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2563 } else {
2564 sp->param_flags =
2565 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2566 }
2567 }
2568
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002569 /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2570 * value of this field is ignored. Note also that a value of zero
2571 * indicates the current setting should be left unchanged.
2572 */
2573 if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002574 if (trans) {
2575 trans->sackdelay =
2576 msecs_to_jiffies(params->spp_sackdelay);
2577 } else if (asoc) {
2578 asoc->sackdelay =
2579 msecs_to_jiffies(params->spp_sackdelay);
2580 } else {
2581 sp->sackdelay = params->spp_sackdelay;
2582 }
2583 }
2584
2585 if (sackdelay_change) {
2586 if (trans) {
2587 trans->param_flags =
2588 (trans->param_flags & ~SPP_SACKDELAY) |
2589 sackdelay_change;
2590 } else if (asoc) {
2591 asoc->param_flags =
2592 (asoc->param_flags & ~SPP_SACKDELAY) |
2593 sackdelay_change;
2594 } else {
2595 sp->param_flags =
2596 (sp->param_flags & ~SPP_SACKDELAY) |
2597 sackdelay_change;
2598 }
2599 }
2600
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002601 /* Note that a value of zero indicates the current setting should be
2602 left unchanged.
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002603 */
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002604 if (params->spp_pathmaxrxt) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002605 if (trans) {
2606 trans->pathmaxrxt = params->spp_pathmaxrxt;
2607 } else if (asoc) {
2608 asoc->pathmaxrxt = params->spp_pathmaxrxt;
2609 } else {
2610 sp->pathmaxrxt = params->spp_pathmaxrxt;
2611 }
2612 }
2613
2614 return 0;
2615}
2616
2617static int sctp_setsockopt_peer_addr_params(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002618 char __user *optval,
2619 unsigned int optlen)
Frank Filz52ccb8e2005-12-22 11:36:46 -08002620{
2621 struct sctp_paddrparams params;
2622 struct sctp_transport *trans = NULL;
2623 struct sctp_association *asoc = NULL;
2624 struct sctp_sock *sp = sctp_sk(sk);
2625 int error;
2626 int hb_change, pmtud_change, sackdelay_change;
2627
2628 if (optlen != sizeof(struct sctp_paddrparams))
wangweidongcb3f8372013-12-23 12:16:50 +08002629 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08002630
2631 if (copy_from_user(&params, optval, optlen))
2632 return -EFAULT;
2633
2634 /* Validate flags and value parameters. */
2635 hb_change = params.spp_flags & SPP_HB;
2636 pmtud_change = params.spp_flags & SPP_PMTUD;
2637 sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2638
2639 if (hb_change == SPP_HB ||
2640 pmtud_change == SPP_PMTUD ||
2641 sackdelay_change == SPP_SACKDELAY ||
2642 params.spp_sackdelay > 500 ||
Joe Perchesf64f9e72009-11-29 16:55:45 -08002643 (params.spp_pathmtu &&
2644 params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
Frank Filz52ccb8e2005-12-22 11:36:46 -08002645 return -EINVAL;
2646
2647 /* If an address other than INADDR_ANY is specified, and
2648 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 */
wangweidongcb3f8372013-12-23 12:16:50 +08002650 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002651 trans = sctp_addr_id2transport(sk, &params.spp_address,
2652 params.spp_assoc_id);
2653 if (!trans)
2654 return -EINVAL;
2655 }
2656
2657 /* Get association, if assoc_id != 0 and the socket is a one
2658 * to many style socket, and an association was not found, then
2659 * the id was invalid.
2660 */
2661 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
2662 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP))
2663 return -EINVAL;
2664
2665 /* Heartbeat demand can only be sent on a transport or
2666 * association, but not a socket.
2667 */
2668 if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2669 return -EINVAL;
2670
2671 /* Process parameters. */
2672 error = sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2673 hb_change, pmtud_change,
2674 sackdelay_change);
2675
2676 if (error)
2677 return error;
2678
2679 /* If changes are for association, also apply parameters to each
2680 * transport.
2681 */
2682 if (!trans && asoc) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002683 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2684 transports) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002685 sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2686 hb_change, pmtud_change,
2687 sackdelay_change);
2688 }
2689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
2691 return 0;
2692}
2693
wangweidong0ea5e4d2014-01-15 17:24:01 +08002694static inline __u32 sctp_spp_sackdelay_enable(__u32 param_flags)
2695{
2696 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_ENABLE;
2697}
2698
2699static inline __u32 sctp_spp_sackdelay_disable(__u32 param_flags)
2700{
2701 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_DISABLE;
2702}
2703
Wei Yongjund364d922008-05-09 15:13:26 -07002704/*
2705 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08002706 *
Wei Yongjund364d922008-05-09 15:13:26 -07002707 * This option will effect the way delayed acks are performed. This
2708 * option allows you to get or set the delayed ack time, in
2709 * milliseconds. It also allows changing the delayed ack frequency.
2710 * Changing the frequency to 1 disables the delayed sack algorithm. If
2711 * the assoc_id is 0, then this sets or gets the endpoints default
2712 * values. If the assoc_id field is non-zero, then the set or get
2713 * effects the specified association for the one to many model (the
2714 * assoc_id field is ignored by the one to one model). Note that if
2715 * sack_delay or sack_freq are 0 when setting this option, then the
2716 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08002717 *
Wei Yongjund364d922008-05-09 15:13:26 -07002718 * struct sctp_sack_info {
2719 * sctp_assoc_t sack_assoc_id;
2720 * uint32_t sack_delay;
2721 * uint32_t sack_freq;
2722 * };
Frank Filz77086102005-12-22 11:37:30 -08002723 *
Wei Yongjund364d922008-05-09 15:13:26 -07002724 * sack_assoc_id - This parameter, indicates which association the user
2725 * is performing an action upon. Note that if this field's value is
2726 * zero then the endpoints default value is changed (effecting future
2727 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08002728 *
Wei Yongjund364d922008-05-09 15:13:26 -07002729 * sack_delay - This parameter contains the number of milliseconds that
2730 * the user is requesting the delayed ACK timer be set to. Note that
2731 * this value is defined in the standard to be between 200 and 500
2732 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08002733 *
Wei Yongjund364d922008-05-09 15:13:26 -07002734 * sack_freq - This parameter contains the number of packets that must
2735 * be received before a sack is sent without waiting for the delay
2736 * timer to expire. The default value for this is 2, setting this
2737 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08002738 */
2739
Wei Yongjund364d922008-05-09 15:13:26 -07002740static int sctp_setsockopt_delayed_ack(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002741 char __user *optval, unsigned int optlen)
Frank Filz77086102005-12-22 11:37:30 -08002742{
Wei Yongjund364d922008-05-09 15:13:26 -07002743 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08002744 struct sctp_transport *trans = NULL;
2745 struct sctp_association *asoc = NULL;
2746 struct sctp_sock *sp = sctp_sk(sk);
2747
Wei Yongjund364d922008-05-09 15:13:26 -07002748 if (optlen == sizeof(struct sctp_sack_info)) {
2749 if (copy_from_user(&params, optval, optlen))
2750 return -EFAULT;
2751
2752 if (params.sack_delay == 0 && params.sack_freq == 0)
2753 return 0;
2754 } else if (optlen == sizeof(struct sctp_assoc_value)) {
Neil Horman94f65192013-12-23 08:29:43 -05002755 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05002756 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05002757 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05002758 "Use struct sctp_sack_info instead\n",
2759 current->comm, task_pid_nr(current));
Wei Yongjund364d922008-05-09 15:13:26 -07002760 if (copy_from_user(&params, optval, optlen))
2761 return -EFAULT;
2762
2763 if (params.sack_delay == 0)
2764 params.sack_freq = 1;
2765 else
2766 params.sack_freq = 0;
2767 } else
wangweidongcb3f8372013-12-23 12:16:50 +08002768 return -EINVAL;
Frank Filz77086102005-12-22 11:37:30 -08002769
Frank Filz77086102005-12-22 11:37:30 -08002770 /* Validate value parameter. */
Wei Yongjund364d922008-05-09 15:13:26 -07002771 if (params.sack_delay > 500)
Frank Filz77086102005-12-22 11:37:30 -08002772 return -EINVAL;
2773
Wei Yongjund364d922008-05-09 15:13:26 -07002774 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08002775 * to many style socket, and an association was not found, then
2776 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002777 */
Wei Yongjund364d922008-05-09 15:13:26 -07002778 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
2779 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08002780 return -EINVAL;
2781
Wei Yongjund364d922008-05-09 15:13:26 -07002782 if (params.sack_delay) {
Frank Filz77086102005-12-22 11:37:30 -08002783 if (asoc) {
2784 asoc->sackdelay =
Wei Yongjund364d922008-05-09 15:13:26 -07002785 msecs_to_jiffies(params.sack_delay);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002786 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002787 sctp_spp_sackdelay_enable(asoc->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002788 } else {
Wei Yongjund364d922008-05-09 15:13:26 -07002789 sp->sackdelay = params.sack_delay;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002790 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002791 sctp_spp_sackdelay_enable(sp->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002792 }
Wei Yongjund364d922008-05-09 15:13:26 -07002793 }
2794
2795 if (params.sack_freq == 1) {
Frank Filz77086102005-12-22 11:37:30 -08002796 if (asoc) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002797 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002798 sctp_spp_sackdelay_disable(asoc->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002799 } else {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002800 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002801 sctp_spp_sackdelay_disable(sp->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002802 }
Wei Yongjund364d922008-05-09 15:13:26 -07002803 } else if (params.sack_freq > 1) {
2804 if (asoc) {
2805 asoc->sackfreq = params.sack_freq;
2806 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002807 sctp_spp_sackdelay_enable(asoc->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002808 } else {
2809 sp->sackfreq = params.sack_freq;
2810 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002811 sctp_spp_sackdelay_enable(sp->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002812 }
Frank Filz77086102005-12-22 11:37:30 -08002813 }
2814
2815 /* If change is for association, also apply to each transport. */
2816 if (asoc) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002817 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2818 transports) {
Wei Yongjund364d922008-05-09 15:13:26 -07002819 if (params.sack_delay) {
Frank Filz77086102005-12-22 11:37:30 -08002820 trans->sackdelay =
Wei Yongjund364d922008-05-09 15:13:26 -07002821 msecs_to_jiffies(params.sack_delay);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002822 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002823 sctp_spp_sackdelay_enable(trans->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002824 }
Vlad Yasevich7bfe8bdb2008-06-09 15:45:05 -07002825 if (params.sack_freq == 1) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002826 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002827 sctp_spp_sackdelay_disable(trans->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002828 } else if (params.sack_freq > 1) {
2829 trans->sackfreq = params.sack_freq;
2830 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002831 sctp_spp_sackdelay_enable(trans->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002832 }
2833 }
2834 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002835
Frank Filz77086102005-12-22 11:37:30 -08002836 return 0;
2837}
2838
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2840 *
2841 * Applications can specify protocol parameters for the default association
2842 * initialization. The option name argument to setsockopt() and getsockopt()
2843 * is SCTP_INITMSG.
2844 *
2845 * Setting initialization parameters is effective only on an unconnected
2846 * socket (for UDP-style sockets only future associations are effected
2847 * by the change). With TCP-style sockets, this option is inherited by
2848 * sockets derived from a listener socket.
2849 */
David S. Millerb7058842009-09-30 16:12:20 -07002850static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851{
2852 struct sctp_initmsg sinit;
2853 struct sctp_sock *sp = sctp_sk(sk);
2854
2855 if (optlen != sizeof(struct sctp_initmsg))
2856 return -EINVAL;
2857 if (copy_from_user(&sinit, optval, optlen))
2858 return -EFAULT;
2859
2860 if (sinit.sinit_num_ostreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002861 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 if (sinit.sinit_max_instreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002863 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 if (sinit.sinit_max_attempts)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002865 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 if (sinit.sinit_max_init_timeo)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002867 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868
2869 return 0;
2870}
2871
2872/*
2873 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2874 *
2875 * Applications that wish to use the sendto() system call may wish to
2876 * specify a default set of parameters that would normally be supplied
2877 * through the inclusion of ancillary data. This socket option allows
2878 * such an application to set the default sctp_sndrcvinfo structure.
2879 * The application that wishes to use this socket option simply passes
2880 * in to this call the sctp_sndrcvinfo structure defined in Section
2881 * 5.2.2) The input parameters accepted by this call include
2882 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2883 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
2884 * to this call if the caller is using the UDP model.
2885 */
2886static int sctp_setsockopt_default_send_param(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002887 char __user *optval,
2888 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 struct sctp_sock *sp = sctp_sk(sk);
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002891 struct sctp_association *asoc;
2892 struct sctp_sndrcvinfo info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002894 if (optlen != sizeof(info))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 return -EINVAL;
2896 if (copy_from_user(&info, optval, optlen))
2897 return -EFAULT;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002898 if (info.sinfo_flags &
2899 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2900 SCTP_ABORT | SCTP_EOF))
2901 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
2903 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
2904 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
2905 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 if (asoc) {
2907 asoc->default_stream = info.sinfo_stream;
2908 asoc->default_flags = info.sinfo_flags;
2909 asoc->default_ppid = info.sinfo_ppid;
2910 asoc->default_context = info.sinfo_context;
2911 asoc->default_timetolive = info.sinfo_timetolive;
2912 } else {
2913 sp->default_stream = info.sinfo_stream;
2914 sp->default_flags = info.sinfo_flags;
2915 sp->default_ppid = info.sinfo_ppid;
2916 sp->default_context = info.sinfo_context;
2917 sp->default_timetolive = info.sinfo_timetolive;
2918 }
2919
2920 return 0;
2921}
2922
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002923/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
2924 * (SCTP_DEFAULT_SNDINFO)
2925 */
2926static int sctp_setsockopt_default_sndinfo(struct sock *sk,
2927 char __user *optval,
2928 unsigned int optlen)
2929{
2930 struct sctp_sock *sp = sctp_sk(sk);
2931 struct sctp_association *asoc;
2932 struct sctp_sndinfo info;
2933
2934 if (optlen != sizeof(info))
2935 return -EINVAL;
2936 if (copy_from_user(&info, optval, optlen))
2937 return -EFAULT;
2938 if (info.snd_flags &
2939 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2940 SCTP_ABORT | SCTP_EOF))
2941 return -EINVAL;
2942
2943 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
2944 if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
2945 return -EINVAL;
2946 if (asoc) {
2947 asoc->default_stream = info.snd_sid;
2948 asoc->default_flags = info.snd_flags;
2949 asoc->default_ppid = info.snd_ppid;
2950 asoc->default_context = info.snd_context;
2951 } else {
2952 sp->default_stream = info.snd_sid;
2953 sp->default_flags = info.snd_flags;
2954 sp->default_ppid = info.snd_ppid;
2955 sp->default_context = info.snd_context;
2956 }
2957
2958 return 0;
2959}
2960
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
2962 *
2963 * Requests that the local SCTP stack use the enclosed peer address as
2964 * the association primary. The enclosed address must be one of the
2965 * association peer's addresses.
2966 */
2967static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002968 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969{
2970 struct sctp_prim prim;
2971 struct sctp_transport *trans;
Richard Haines2277c7c2018-02-13 20:56:24 +00002972 struct sctp_af *af;
2973 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
2975 if (optlen != sizeof(struct sctp_prim))
2976 return -EINVAL;
2977
2978 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
2979 return -EFAULT;
2980
Richard Haines2277c7c2018-02-13 20:56:24 +00002981 /* Allow security module to validate address but need address len. */
2982 af = sctp_get_af_specific(prim.ssp_addr.ss_family);
2983 if (!af)
2984 return -EINVAL;
2985
2986 err = security_sctp_bind_connect(sk, SCTP_PRIMARY_ADDR,
2987 (struct sockaddr *)&prim.ssp_addr,
2988 af->sockaddr_len);
2989 if (err)
2990 return err;
2991
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
2993 if (!trans)
2994 return -EINVAL;
2995
2996 sctp_assoc_set_primary(trans->asoc, trans);
2997
2998 return 0;
2999}
3000
3001/*
3002 * 7.1.5 SCTP_NODELAY
3003 *
3004 * Turn on/off any Nagle-like algorithm. This means that packets are
3005 * generally sent as soon as possible and no unnecessary delays are
3006 * introduced, at the cost of more packets in the network. Expects an
3007 * integer boolean flag.
3008 */
3009static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003010 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011{
3012 int val;
3013
3014 if (optlen < sizeof(int))
3015 return -EINVAL;
3016 if (get_user(val, (int __user *)optval))
3017 return -EFAULT;
3018
3019 sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
3020 return 0;
3021}
3022
3023/*
3024 *
3025 * 7.1.1 SCTP_RTOINFO
3026 *
3027 * The protocol parameters used to initialize and bound retransmission
3028 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
3029 * and modify these parameters.
3030 * All parameters are time values, in milliseconds. A value of 0, when
3031 * modifying the parameters, indicates that the current value should not
3032 * be changed.
3033 *
3034 */
David S. Millerb7058842009-09-30 16:12:20 -07003035static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, unsigned int optlen)
3036{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 struct sctp_rtoinfo rtoinfo;
3038 struct sctp_association *asoc;
wangweidong85f935d2013-12-11 09:50:38 +08003039 unsigned long rto_min, rto_max;
3040 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041
3042 if (optlen != sizeof (struct sctp_rtoinfo))
3043 return -EINVAL;
3044
3045 if (copy_from_user(&rtoinfo, optval, optlen))
3046 return -EFAULT;
3047
3048 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
3049
3050 /* Set the values to the specific association */
3051 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
3052 return -EINVAL;
3053
wangweidong85f935d2013-12-11 09:50:38 +08003054 rto_max = rtoinfo.srto_max;
3055 rto_min = rtoinfo.srto_min;
3056
3057 if (rto_max)
3058 rto_max = asoc ? msecs_to_jiffies(rto_max) : rto_max;
3059 else
3060 rto_max = asoc ? asoc->rto_max : sp->rtoinfo.srto_max;
3061
3062 if (rto_min)
3063 rto_min = asoc ? msecs_to_jiffies(rto_min) : rto_min;
3064 else
3065 rto_min = asoc ? asoc->rto_min : sp->rtoinfo.srto_min;
3066
3067 if (rto_min > rto_max)
3068 return -EINVAL;
3069
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 if (asoc) {
3071 if (rtoinfo.srto_initial != 0)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003072 asoc->rto_initial =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 msecs_to_jiffies(rtoinfo.srto_initial);
wangweidong85f935d2013-12-11 09:50:38 +08003074 asoc->rto_max = rto_max;
3075 asoc->rto_min = rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 } else {
3077 /* If there is no association or the association-id = 0
3078 * set the values to the endpoint.
3079 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 if (rtoinfo.srto_initial != 0)
3081 sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
wangweidong85f935d2013-12-11 09:50:38 +08003082 sp->rtoinfo.srto_max = rto_max;
3083 sp->rtoinfo.srto_min = rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 }
3085
3086 return 0;
3087}
3088
3089/*
3090 *
3091 * 7.1.2 SCTP_ASSOCINFO
3092 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02003093 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 * of the association.
3095 * Returns an error if the new association retransmission value is
3096 * greater than the sum of the retransmission value of the peer.
3097 * See [SCTP] for more information.
3098 *
3099 */
David S. Millerb7058842009-09-30 16:12:20 -07003100static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101{
3102
3103 struct sctp_assocparams assocparams;
3104 struct sctp_association *asoc;
3105
3106 if (optlen != sizeof(struct sctp_assocparams))
3107 return -EINVAL;
3108 if (copy_from_user(&assocparams, optval, optlen))
3109 return -EFAULT;
3110
3111 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
3112
3113 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
3114 return -EINVAL;
3115
3116 /* Set the values to the specific association */
3117 if (asoc) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003118 if (assocparams.sasoc_asocmaxrxt != 0) {
3119 __u32 path_sum = 0;
3120 int paths = 0;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003121 struct sctp_transport *peer_addr;
3122
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07003123 list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
3124 transports) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003125 path_sum += peer_addr->pathmaxrxt;
3126 paths++;
3127 }
3128
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003129 /* Only validate asocmaxrxt if we have more than
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003130 * one path/transport. We do this because path
3131 * retransmissions are only counted when we have more
3132 * then one path.
3133 */
3134 if (paths > 1 &&
3135 assocparams.sasoc_asocmaxrxt > path_sum)
3136 return -EINVAL;
3137
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003139 }
3140
Daniel Borkmann52db8822013-06-25 18:17:27 +02003141 if (assocparams.sasoc_cookie_life != 0)
3142 asoc->cookie_life = ms_to_ktime(assocparams.sasoc_cookie_life);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 } else {
3144 /* Set the values to the endpoint */
3145 struct sctp_sock *sp = sctp_sk(sk);
3146
3147 if (assocparams.sasoc_asocmaxrxt != 0)
3148 sp->assocparams.sasoc_asocmaxrxt =
3149 assocparams.sasoc_asocmaxrxt;
3150 if (assocparams.sasoc_cookie_life != 0)
3151 sp->assocparams.sasoc_cookie_life =
3152 assocparams.sasoc_cookie_life;
3153 }
3154 return 0;
3155}
3156
3157/*
3158 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
3159 *
3160 * This socket option is a boolean flag which turns on or off mapped V4
3161 * addresses. If this option is turned on and the socket is type
3162 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
3163 * If this option is turned off, then no mapping will be done of V4
3164 * addresses and a user will receive both PF_INET6 and PF_INET type
3165 * addresses on the socket.
3166 */
David S. Millerb7058842009-09-30 16:12:20 -07003167static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168{
3169 int val;
3170 struct sctp_sock *sp = sctp_sk(sk);
3171
3172 if (optlen < sizeof(int))
3173 return -EINVAL;
3174 if (get_user(val, (int __user *)optval))
3175 return -EFAULT;
3176 if (val)
3177 sp->v4mapped = 1;
3178 else
3179 sp->v4mapped = 0;
3180
3181 return 0;
3182}
3183
3184/*
Wei Yongjune89c2092008-12-25 16:54:58 -08003185 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
3186 * This option will get or set the maximum size to put in any outgoing
3187 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 * fragmented by SCTP into the specified size. Note that the underlying
3189 * SCTP implementation may fragment into smaller sized chunks when the
3190 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08003191 * the user. The default value for this option is '0' which indicates
3192 * the user is NOT limiting fragmentation and only the PMTU will effect
3193 * SCTP's choice of DATA chunk size. Note also that values set larger
3194 * than the maximum size of an IP datagram will effectively let SCTP
3195 * control fragmentation (i.e. the same as setting this option to 0).
3196 *
3197 * The following structure is used to access and modify this parameter:
3198 *
3199 * struct sctp_assoc_value {
3200 * sctp_assoc_t assoc_id;
3201 * uint32_t assoc_value;
3202 * };
3203 *
3204 * assoc_id: This parameter is ignored for one-to-one style sockets.
3205 * For one-to-many style sockets this parameter indicates which
3206 * association the user is performing an action upon. Note that if
3207 * this field's value is zero then the endpoints default value is
3208 * changed (effecting future associations only).
3209 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 */
David S. Millerb7058842009-09-30 16:12:20 -07003211static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212{
Xin Longecca8f82017-11-17 14:11:11 +08003213 struct sctp_sock *sp = sctp_sk(sk);
Wei Yongjune89c2092008-12-25 16:54:58 -08003214 struct sctp_assoc_value params;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 int val;
3217
Wei Yongjune89c2092008-12-25 16:54:58 -08003218 if (optlen == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05003219 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05003220 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05003221 "Use of int in maxseg socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05003222 "Use struct sctp_assoc_value instead\n",
3223 current->comm, task_pid_nr(current));
Wei Yongjune89c2092008-12-25 16:54:58 -08003224 if (copy_from_user(&val, optval, optlen))
3225 return -EFAULT;
3226 params.assoc_id = 0;
3227 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3228 if (copy_from_user(&params, optval, optlen))
3229 return -EFAULT;
3230 val = params.assoc_value;
Xin Longecca8f82017-11-17 14:11:11 +08003231 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 return -EINVAL;
Xin Longecca8f82017-11-17 14:11:11 +08003233 }
Wei Yongjune89c2092008-12-25 16:54:58 -08003234
Marcelo Ricardo Leitner439ef032018-04-26 16:59:01 -03003235 asoc = sctp_id2assoc(sk, params.assoc_id);
3236
Xin Longecca8f82017-11-17 14:11:11 +08003237 if (val) {
3238 int min_len, max_len;
Marcelo Ricardo Leitner439ef032018-04-26 16:59:01 -03003239 __u16 datasize = asoc ? sctp_datachk_len(&asoc->stream) :
3240 sizeof(struct sctp_data_chunk);
Xin Longecca8f82017-11-17 14:11:11 +08003241
Marcelo Ricardo Leitnerfeddd6c2018-04-26 16:58:54 -03003242 min_len = sctp_mtu_payload(sp, SCTP_DEFAULT_MINSEGMENT,
Marcelo Ricardo Leitner439ef032018-04-26 16:59:01 -03003243 datasize);
3244 max_len = SCTP_MAX_CHUNK_LEN - datasize;
Xin Longecca8f82017-11-17 14:11:11 +08003245
3246 if (val < min_len || val > max_len)
3247 return -EINVAL;
3248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249
Wei Yongjune89c2092008-12-25 16:54:58 -08003250 if (asoc) {
Vlad Yasevichf68b2e02009-09-04 18:21:00 -04003251 asoc->user_frag = val;
Marcelo Ricardo Leitner2f5e3c92018-04-26 16:58:55 -03003252 sctp_assoc_update_frag_point(asoc);
Wei Yongjune89c2092008-12-25 16:54:58 -08003253 } else {
Xin Longecca8f82017-11-17 14:11:11 +08003254 if (params.assoc_id && sctp_style(sk, UDP))
3255 return -EINVAL;
Wei Yongjune89c2092008-12-25 16:54:58 -08003256 sp->user_frag = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 }
3258
3259 return 0;
3260}
3261
3262
3263/*
3264 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3265 *
3266 * Requests that the peer mark the enclosed address as the association
3267 * primary. The enclosed address must be one of the association's
3268 * locally bound addresses. The following structure is used to make a
3269 * set primary request:
3270 */
3271static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003272 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003274 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 struct sctp_association *asoc = NULL;
3277 struct sctp_setpeerprim prim;
3278 struct sctp_chunk *chunk;
Wei Yongjun40a01032010-12-07 17:11:09 +00003279 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 int err;
3281
3282 sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003284 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 return -EPERM;
3286
3287 if (optlen != sizeof(struct sctp_setpeerprim))
3288 return -EINVAL;
3289
3290 if (copy_from_user(&prim, optval, optlen))
3291 return -EFAULT;
3292
3293 asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003294 if (!asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 return -EINVAL;
3296
3297 if (!asoc->peer.asconf_capable)
3298 return -EPERM;
3299
3300 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
3301 return -EPERM;
3302
3303 if (!sctp_state(asoc, ESTABLISHED))
3304 return -ENOTCONN;
3305
Wei Yongjun40a01032010-12-07 17:11:09 +00003306 af = sctp_get_af_specific(prim.sspp_addr.ss_family);
3307 if (!af)
3308 return -EINVAL;
3309
3310 if (!af->addr_valid((union sctp_addr *)&prim.sspp_addr, sp, NULL))
3311 return -EADDRNOTAVAIL;
3312
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
3314 return -EADDRNOTAVAIL;
3315
Richard Haines2277c7c2018-02-13 20:56:24 +00003316 /* Allow security module to validate address. */
3317 err = security_sctp_bind_connect(sk, SCTP_SET_PEER_PRIMARY_ADDR,
3318 (struct sockaddr *)&prim.sspp_addr,
3319 af->sockaddr_len);
3320 if (err)
3321 return err;
3322
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 /* Create an ASCONF chunk with SET_PRIMARY parameter */
3324 chunk = sctp_make_asconf_set_prim(asoc,
3325 (union sctp_addr *)&prim.sspp_addr);
3326 if (!chunk)
3327 return -ENOMEM;
3328
3329 err = sctp_send_asconf(asoc, chunk);
3330
Daniel Borkmannbb333812013-06-28 19:49:40 +02003331 pr_debug("%s: we set peer primary addr primitively\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
3333 return err;
3334}
3335
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003336static int sctp_setsockopt_adaptation_layer(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003337 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003339 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003341 if (optlen != sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 return -EINVAL;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003343 if (copy_from_user(&adaptation, optval, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 return -EFAULT;
3345
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003346 sctp_sk(sk)->adaptation_ind = adaptation.ssb_adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
3348 return 0;
3349}
3350
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003351/*
3352 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
3353 *
3354 * The context field in the sctp_sndrcvinfo structure is normally only
3355 * used when a failed message is retrieved holding the value that was
3356 * sent down on the actual send call. This option allows the setting of
3357 * a default context on an association basis that will be received on
3358 * reading messages from the peer. This is especially helpful in the
3359 * one-2-many model for an application to keep some reference to an
3360 * internal state machine that is processing messages on the
3361 * association. Note that the setting of this value only effects
3362 * received messages from the peer and does not effect the value that is
3363 * saved with outbound messages.
3364 */
3365static int sctp_setsockopt_context(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003366 unsigned int optlen)
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003367{
3368 struct sctp_assoc_value params;
3369 struct sctp_sock *sp;
3370 struct sctp_association *asoc;
3371
3372 if (optlen != sizeof(struct sctp_assoc_value))
3373 return -EINVAL;
3374 if (copy_from_user(&params, optval, optlen))
3375 return -EFAULT;
3376
3377 sp = sctp_sk(sk);
3378
3379 if (params.assoc_id != 0) {
3380 asoc = sctp_id2assoc(sk, params.assoc_id);
3381 if (!asoc)
3382 return -EINVAL;
3383 asoc->default_rcv_context = params.assoc_value;
3384 } else {
3385 sp->default_rcv_context = params.assoc_value;
3386 }
3387
3388 return 0;
3389}
3390
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003391/*
3392 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
3393 *
3394 * This options will at a minimum specify if the implementation is doing
3395 * fragmented interleave. Fragmented interleave, for a one to many
3396 * socket, is when subsequent calls to receive a message may return
3397 * parts of messages from different associations. Some implementations
3398 * may allow you to turn this value on or off. If so, when turned off,
3399 * no fragment interleave will occur (which will cause a head of line
3400 * blocking amongst multiple associations sharing the same one to many
3401 * socket). When this option is turned on, then each receive call may
3402 * come from a different association (thus the user must receive data
3403 * with the extended calls (e.g. sctp_recvmsg) to keep track of which
3404 * association each receive belongs to.
3405 *
3406 * This option takes a boolean value. A non-zero value indicates that
3407 * fragmented interleave is on. A value of zero indicates that
3408 * fragmented interleave is off.
3409 *
3410 * Note that it is important that an implementation that allows this
3411 * option to be turned on, have it off by default. Otherwise an unaware
3412 * application using the one to many model may become confused and act
3413 * incorrectly.
3414 */
3415static int sctp_setsockopt_fragment_interleave(struct sock *sk,
3416 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003417 unsigned int optlen)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003418{
3419 int val;
3420
3421 if (optlen != sizeof(int))
3422 return -EINVAL;
3423 if (get_user(val, (int __user *)optval))
3424 return -EFAULT;
3425
Xin Long772a5862017-12-08 21:03:58 +08003426 sctp_sk(sk)->frag_interleave = !!val;
3427
3428 if (!sctp_sk(sk)->frag_interleave)
3429 sctp_sk(sk)->strm_interleave = 0;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003430
3431 return 0;
3432}
3433
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003434/*
Wei Yongjun8510b932008-12-25 16:59:03 -08003435 * 8.1.21. Set or Get the SCTP Partial Delivery Point
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003436 * (SCTP_PARTIAL_DELIVERY_POINT)
Wei Yongjun8510b932008-12-25 16:59:03 -08003437 *
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003438 * This option will set or get the SCTP partial delivery point. This
3439 * point is the size of a message where the partial delivery API will be
3440 * invoked to help free up rwnd space for the peer. Setting this to a
Wei Yongjun8510b932008-12-25 16:59:03 -08003441 * lower value will cause partial deliveries to happen more often. The
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003442 * calls argument is an integer that sets or gets the partial delivery
Wei Yongjun8510b932008-12-25 16:59:03 -08003443 * point. Note also that the call will fail if the user attempts to set
3444 * this value larger than the socket receive buffer size.
3445 *
3446 * Note that any single message having a length smaller than or equal to
3447 * the SCTP partial delivery point will be delivered in one single read
3448 * call as long as the user provided buffer is large enough to hold the
3449 * message.
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003450 */
3451static int sctp_setsockopt_partial_delivery_point(struct sock *sk,
3452 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003453 unsigned int optlen)
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003454{
3455 u32 val;
3456
3457 if (optlen != sizeof(u32))
3458 return -EINVAL;
3459 if (get_user(val, (int __user *)optval))
3460 return -EFAULT;
3461
Wei Yongjun8510b932008-12-25 16:59:03 -08003462 /* Note: We double the receive buffer from what the user sets
3463 * it to be, also initial rwnd is based on rcvbuf/2.
3464 */
3465 if (val > (sk->sk_rcvbuf >> 1))
3466 return -EINVAL;
3467
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003468 sctp_sk(sk)->pd_point = val;
3469
3470 return 0; /* is this the right error code? */
3471}
3472
Vlad Yasevich70331572007-03-23 11:34:36 -07003473/*
3474 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
3475 *
3476 * This option will allow a user to change the maximum burst of packets
3477 * that can be emitted by this association. Note that the default value
3478 * is 4, and some implementations may restrict this setting so that it
3479 * can only be lowered.
3480 *
3481 * NOTE: This text doesn't seem right. Do this on a socket basis with
3482 * future associations inheriting the socket value.
3483 */
3484static int sctp_setsockopt_maxburst(struct sock *sk,
3485 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003486 unsigned int optlen)
Vlad Yasevich70331572007-03-23 11:34:36 -07003487{
Neil Horman219b99a2008-03-05 13:44:46 -08003488 struct sctp_assoc_value params;
3489 struct sctp_sock *sp;
3490 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07003491 int val;
Neil Horman219b99a2008-03-05 13:44:46 -08003492 int assoc_id = 0;
Vlad Yasevich70331572007-03-23 11:34:36 -07003493
Neil Horman219b99a2008-03-05 13:44:46 -08003494 if (optlen == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05003495 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05003496 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05003497 "Use of int in max_burst socket option deprecated.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05003498 "Use struct sctp_assoc_value instead\n",
3499 current->comm, task_pid_nr(current));
Neil Horman219b99a2008-03-05 13:44:46 -08003500 if (copy_from_user(&val, optval, optlen))
3501 return -EFAULT;
3502 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3503 if (copy_from_user(&params, optval, optlen))
3504 return -EFAULT;
3505 val = params.assoc_value;
3506 assoc_id = params.assoc_id;
3507 } else
3508 return -EINVAL;
3509
3510 sp = sctp_sk(sk);
3511
3512 if (assoc_id != 0) {
3513 asoc = sctp_id2assoc(sk, assoc_id);
3514 if (!asoc)
3515 return -EINVAL;
3516 asoc->max_burst = val;
3517 } else
3518 sp->max_burst = val;
Vlad Yasevich70331572007-03-23 11:34:36 -07003519
3520 return 0;
3521}
3522
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003523/*
3524 * 7.1.18. Add a chunk that must be authenticated (SCTP_AUTH_CHUNK)
3525 *
3526 * This set option adds a chunk type that the user is requesting to be
3527 * received only in an authenticated way. Changes to the list of chunks
3528 * will only effect future associations on the socket.
3529 */
3530static int sctp_setsockopt_auth_chunk(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003531 char __user *optval,
3532 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003533{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003534 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003535 struct sctp_authchunk val;
3536
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003537 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003538 return -EACCES;
3539
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003540 if (optlen != sizeof(struct sctp_authchunk))
3541 return -EINVAL;
3542 if (copy_from_user(&val, optval, optlen))
3543 return -EFAULT;
3544
3545 switch (val.sauth_chunk) {
Joe Perches7fd71b12011-07-01 09:43:11 +00003546 case SCTP_CID_INIT:
3547 case SCTP_CID_INIT_ACK:
3548 case SCTP_CID_SHUTDOWN_COMPLETE:
3549 case SCTP_CID_AUTH:
3550 return -EINVAL;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003551 }
3552
3553 /* add this chunk id to the endpoint */
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003554 return sctp_auth_ep_add_chunkid(ep, val.sauth_chunk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003555}
3556
3557/*
3558 * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
3559 *
3560 * This option gets or sets the list of HMAC algorithms that the local
3561 * endpoint requires the peer to use.
3562 */
3563static int sctp_setsockopt_hmac_ident(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003564 char __user *optval,
3565 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003566{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003567 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003568 struct sctp_hmacalgo *hmacs;
Vlad Yasevichd9724052008-08-27 16:09:49 -07003569 u32 idents;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003570 int err;
3571
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003572 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003573 return -EACCES;
3574
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003575 if (optlen < sizeof(struct sctp_hmacalgo))
3576 return -EINVAL;
Marcelo Ricardo Leitner5960cef2018-01-08 19:02:28 -02003577 optlen = min_t(unsigned int, optlen, sizeof(struct sctp_hmacalgo) +
3578 SCTP_AUTH_NUM_HMACS * sizeof(u16));
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003579
wangweidongcb3f8372013-12-23 12:16:50 +08003580 hmacs = memdup_user(optval, optlen);
Shan Wei934253a2011-04-18 19:13:18 +00003581 if (IS_ERR(hmacs))
3582 return PTR_ERR(hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003583
Vlad Yasevichd9724052008-08-27 16:09:49 -07003584 idents = hmacs->shmac_num_idents;
3585 if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS ||
3586 (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo))) {
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003587 err = -EINVAL;
3588 goto out;
3589 }
3590
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003591 err = sctp_auth_ep_set_hmacs(ep, hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003592out:
3593 kfree(hmacs);
3594 return err;
3595}
3596
3597/*
3598 * 7.1.20. Set a shared key (SCTP_AUTH_KEY)
3599 *
3600 * This option will set a shared secret key which is used to build an
3601 * association shared key.
3602 */
3603static int sctp_setsockopt_auth_key(struct sock *sk,
3604 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003605 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003606{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003607 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003608 struct sctp_authkey *authkey;
3609 struct sctp_association *asoc;
3610 int ret;
3611
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003612 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003613 return -EACCES;
3614
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003615 if (optlen <= sizeof(struct sctp_authkey))
3616 return -EINVAL;
Marcelo Ricardo Leitner5960cef2018-01-08 19:02:28 -02003617 /* authkey->sca_keylength is u16, so optlen can't be bigger than
3618 * this.
3619 */
3620 optlen = min_t(unsigned int, optlen, USHRT_MAX +
3621 sizeof(struct sctp_authkey));
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003622
wangweidongcb3f8372013-12-23 12:16:50 +08003623 authkey = memdup_user(optval, optlen);
Shan Wei934253a2011-04-18 19:13:18 +00003624 if (IS_ERR(authkey))
3625 return PTR_ERR(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003626
Vlad Yasevich328fc472008-08-27 16:08:54 -07003627 if (authkey->sca_keylength > optlen - sizeof(struct sctp_authkey)) {
Vlad Yasevich30c22352008-08-25 15:16:19 -07003628 ret = -EINVAL;
3629 goto out;
3630 }
3631
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003632 asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
3633 if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) {
3634 ret = -EINVAL;
3635 goto out;
3636 }
3637
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003638 ret = sctp_auth_set_key(ep, asoc, authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003639out:
Daniel Borkmann6ba542a2013-02-08 03:04:34 +00003640 kzfree(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003641 return ret;
3642}
3643
3644/*
3645 * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
3646 *
3647 * This option will get or set the active shared key to be used to build
3648 * the association shared key.
3649 */
3650static int sctp_setsockopt_active_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003651 char __user *optval,
3652 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003653{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003654 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003655 struct sctp_authkeyid val;
3656 struct sctp_association *asoc;
3657
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003658 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003659 return -EACCES;
3660
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003661 if (optlen != sizeof(struct sctp_authkeyid))
3662 return -EINVAL;
3663 if (copy_from_user(&val, optval, optlen))
3664 return -EFAULT;
3665
3666 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3667 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3668 return -EINVAL;
3669
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003670 return sctp_auth_set_active_key(ep, asoc, val.scact_keynumber);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003671}
3672
3673/*
3674 * 7.1.22. Delete a shared key (SCTP_AUTH_DELETE_KEY)
3675 *
3676 * This set option will delete a shared secret key from use.
3677 */
3678static int sctp_setsockopt_del_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003679 char __user *optval,
3680 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003681{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003682 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003683 struct sctp_authkeyid val;
3684 struct sctp_association *asoc;
3685
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003686 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003687 return -EACCES;
3688
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003689 if (optlen != sizeof(struct sctp_authkeyid))
3690 return -EINVAL;
3691 if (copy_from_user(&val, optval, optlen))
3692 return -EFAULT;
3693
3694 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3695 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3696 return -EINVAL;
3697
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003698 return sctp_auth_del_key_id(ep, asoc, val.scact_keynumber);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003699
3700}
3701
Michio Honda7dc04d72011-04-26 20:16:31 +09003702/*
Xin Long601590e2018-03-14 19:05:32 +08003703 * 8.3.4 Deactivate a Shared Key (SCTP_AUTH_DEACTIVATE_KEY)
3704 *
3705 * This set option will deactivate a shared secret key.
3706 */
3707static int sctp_setsockopt_deactivate_key(struct sock *sk, char __user *optval,
3708 unsigned int optlen)
3709{
3710 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3711 struct sctp_authkeyid val;
3712 struct sctp_association *asoc;
3713
3714 if (!ep->auth_enable)
3715 return -EACCES;
3716
3717 if (optlen != sizeof(struct sctp_authkeyid))
3718 return -EINVAL;
3719 if (copy_from_user(&val, optval, optlen))
3720 return -EFAULT;
3721
3722 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3723 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3724 return -EINVAL;
3725
3726 return sctp_auth_deact_key_id(ep, asoc, val.scact_keynumber);
3727}
3728
3729/*
Michio Honda7dc04d72011-04-26 20:16:31 +09003730 * 8.1.23 SCTP_AUTO_ASCONF
3731 *
3732 * This option will enable or disable the use of the automatic generation of
3733 * ASCONF chunks to add and delete addresses to an existing association. Note
3734 * that this option has two caveats namely: a) it only affects sockets that
3735 * are bound to all addresses available to the SCTP stack, and b) the system
3736 * administrator may have an overriding control that turns the ASCONF feature
3737 * off no matter what setting the socket option may have.
3738 * This option expects an integer boolean flag, where a non-zero value turns on
3739 * the option, and a zero value turns off the option.
3740 * Note. In this implementation, socket operation overrides default parameter
3741 * being set by sysctl as well as FreeBSD implementation
3742 */
3743static int sctp_setsockopt_auto_asconf(struct sock *sk, char __user *optval,
3744 unsigned int optlen)
3745{
3746 int val;
3747 struct sctp_sock *sp = sctp_sk(sk);
3748
3749 if (optlen < sizeof(int))
3750 return -EINVAL;
3751 if (get_user(val, (int __user *)optval))
3752 return -EFAULT;
3753 if (!sctp_is_ep_boundall(sk) && val)
3754 return -EINVAL;
3755 if ((val && sp->do_auto_asconf) || (!val && !sp->do_auto_asconf))
3756 return 0;
3757
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03003758 spin_lock_bh(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda7dc04d72011-04-26 20:16:31 +09003759 if (val == 0 && sp->do_auto_asconf) {
3760 list_del(&sp->auto_asconf_list);
3761 sp->do_auto_asconf = 0;
3762 } else if (val && !sp->do_auto_asconf) {
3763 list_add_tail(&sp->auto_asconf_list,
Eric W. Biederman4db67e82012-08-06 08:42:04 +00003764 &sock_net(sk)->sctp.auto_asconf_splist);
Michio Honda7dc04d72011-04-26 20:16:31 +09003765 sp->do_auto_asconf = 1;
3766 }
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03003767 spin_unlock_bh(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda7dc04d72011-04-26 20:16:31 +09003768 return 0;
3769}
3770
Neil Horman5aa93bc2012-07-21 07:56:07 +00003771/*
3772 * SCTP_PEER_ADDR_THLDS
3773 *
3774 * This option allows us to alter the partially failed threshold for one or all
3775 * transports in an association. See Section 6.1 of:
3776 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
3777 */
3778static int sctp_setsockopt_paddr_thresholds(struct sock *sk,
3779 char __user *optval,
3780 unsigned int optlen)
3781{
3782 struct sctp_paddrthlds val;
3783 struct sctp_transport *trans;
3784 struct sctp_association *asoc;
3785
3786 if (optlen < sizeof(struct sctp_paddrthlds))
3787 return -EINVAL;
3788 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval,
3789 sizeof(struct sctp_paddrthlds)))
3790 return -EFAULT;
3791
3792
3793 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
3794 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
3795 if (!asoc)
3796 return -ENOENT;
3797 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
3798 transports) {
3799 if (val.spt_pathmaxrxt)
3800 trans->pathmaxrxt = val.spt_pathmaxrxt;
3801 trans->pf_retrans = val.spt_pathpfthld;
3802 }
3803
3804 if (val.spt_pathmaxrxt)
3805 asoc->pathmaxrxt = val.spt_pathmaxrxt;
3806 asoc->pf_retrans = val.spt_pathpfthld;
3807 } else {
3808 trans = sctp_addr_id2transport(sk, &val.spt_address,
3809 val.spt_assoc_id);
3810 if (!trans)
3811 return -ENOENT;
3812
3813 if (val.spt_pathmaxrxt)
3814 trans->pathmaxrxt = val.spt_pathmaxrxt;
3815 trans->pf_retrans = val.spt_pathpfthld;
3816 }
3817
3818 return 0;
3819}
3820
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02003821static int sctp_setsockopt_recvrcvinfo(struct sock *sk,
3822 char __user *optval,
3823 unsigned int optlen)
3824{
3825 int val;
3826
3827 if (optlen < sizeof(int))
3828 return -EINVAL;
3829 if (get_user(val, (int __user *) optval))
3830 return -EFAULT;
3831
3832 sctp_sk(sk)->recvrcvinfo = (val == 0) ? 0 : 1;
3833
3834 return 0;
3835}
3836
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02003837static int sctp_setsockopt_recvnxtinfo(struct sock *sk,
3838 char __user *optval,
3839 unsigned int optlen)
3840{
3841 int val;
3842
3843 if (optlen < sizeof(int))
3844 return -EINVAL;
3845 if (get_user(val, (int __user *) optval))
3846 return -EFAULT;
3847
3848 sctp_sk(sk)->recvnxtinfo = (val == 0) ? 0 : 1;
3849
3850 return 0;
3851}
3852
Xin Long28aa4c22016-07-09 19:47:40 +08003853static int sctp_setsockopt_pr_supported(struct sock *sk,
3854 char __user *optval,
3855 unsigned int optlen)
3856{
3857 struct sctp_assoc_value params;
3858 struct sctp_association *asoc;
3859 int retval = -EINVAL;
3860
3861 if (optlen != sizeof(params))
3862 goto out;
3863
3864 if (copy_from_user(&params, optval, optlen)) {
3865 retval = -EFAULT;
3866 goto out;
3867 }
3868
3869 asoc = sctp_id2assoc(sk, params.assoc_id);
3870 if (asoc) {
3871 asoc->prsctp_enable = !!params.assoc_value;
3872 } else if (!params.assoc_id) {
3873 struct sctp_sock *sp = sctp_sk(sk);
3874
3875 sp->ep->prsctp_enable = !!params.assoc_value;
3876 } else {
3877 goto out;
3878 }
3879
3880 retval = 0;
3881
3882out:
3883 return retval;
3884}
3885
Xin Longf959fb42016-07-09 19:47:41 +08003886static int sctp_setsockopt_default_prinfo(struct sock *sk,
3887 char __user *optval,
3888 unsigned int optlen)
3889{
3890 struct sctp_default_prinfo info;
3891 struct sctp_association *asoc;
3892 int retval = -EINVAL;
3893
3894 if (optlen != sizeof(info))
3895 goto out;
3896
3897 if (copy_from_user(&info, optval, sizeof(info))) {
3898 retval = -EFAULT;
3899 goto out;
3900 }
3901
3902 if (info.pr_policy & ~SCTP_PR_SCTP_MASK)
3903 goto out;
3904
3905 if (info.pr_policy == SCTP_PR_SCTP_NONE)
3906 info.pr_value = 0;
3907
3908 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
3909 if (asoc) {
3910 SCTP_PR_SET_POLICY(asoc->default_flags, info.pr_policy);
3911 asoc->default_timetolive = info.pr_value;
3912 } else if (!info.pr_assoc_id) {
3913 struct sctp_sock *sp = sctp_sk(sk);
3914
3915 SCTP_PR_SET_POLICY(sp->default_flags, info.pr_policy);
3916 sp->default_timetolive = info.pr_value;
3917 } else {
3918 goto out;
3919 }
3920
3921 retval = 0;
3922
3923out:
3924 return retval;
3925}
3926
Xin Longc0d8bab2017-03-10 12:11:12 +08003927static int sctp_setsockopt_reconfig_supported(struct sock *sk,
3928 char __user *optval,
3929 unsigned int optlen)
3930{
3931 struct sctp_assoc_value params;
3932 struct sctp_association *asoc;
3933 int retval = -EINVAL;
3934
3935 if (optlen != sizeof(params))
3936 goto out;
3937
3938 if (copy_from_user(&params, optval, optlen)) {
3939 retval = -EFAULT;
3940 goto out;
3941 }
3942
3943 asoc = sctp_id2assoc(sk, params.assoc_id);
3944 if (asoc) {
3945 asoc->reconf_enable = !!params.assoc_value;
3946 } else if (!params.assoc_id) {
3947 struct sctp_sock *sp = sctp_sk(sk);
3948
3949 sp->ep->reconf_enable = !!params.assoc_value;
3950 } else {
3951 goto out;
3952 }
3953
3954 retval = 0;
3955
3956out:
3957 return retval;
3958}
3959
Xin Long9fb657a2017-01-18 00:44:46 +08003960static int sctp_setsockopt_enable_strreset(struct sock *sk,
3961 char __user *optval,
3962 unsigned int optlen)
3963{
3964 struct sctp_assoc_value params;
3965 struct sctp_association *asoc;
3966 int retval = -EINVAL;
3967
3968 if (optlen != sizeof(params))
3969 goto out;
3970
3971 if (copy_from_user(&params, optval, optlen)) {
3972 retval = -EFAULT;
3973 goto out;
3974 }
3975
3976 if (params.assoc_value & (~SCTP_ENABLE_STRRESET_MASK))
3977 goto out;
3978
3979 asoc = sctp_id2assoc(sk, params.assoc_id);
3980 if (asoc) {
3981 asoc->strreset_enable = params.assoc_value;
3982 } else if (!params.assoc_id) {
3983 struct sctp_sock *sp = sctp_sk(sk);
3984
3985 sp->ep->strreset_enable = params.assoc_value;
3986 } else {
3987 goto out;
3988 }
3989
3990 retval = 0;
3991
3992out:
3993 return retval;
3994}
3995
Xin Long7f9d68a2017-01-18 00:44:47 +08003996static int sctp_setsockopt_reset_streams(struct sock *sk,
3997 char __user *optval,
3998 unsigned int optlen)
3999{
4000 struct sctp_reset_streams *params;
4001 struct sctp_association *asoc;
4002 int retval = -EINVAL;
4003
Xin Long2342b8d2017-12-10 15:40:51 +08004004 if (optlen < sizeof(*params))
Xin Long7f9d68a2017-01-18 00:44:47 +08004005 return -EINVAL;
Marcelo Ricardo Leitner5960cef2018-01-08 19:02:28 -02004006 /* srs_number_streams is u16, so optlen can't be bigger than this. */
4007 optlen = min_t(unsigned int, optlen, USHRT_MAX +
4008 sizeof(__u16) * sizeof(*params));
Xin Long7f9d68a2017-01-18 00:44:47 +08004009
4010 params = memdup_user(optval, optlen);
4011 if (IS_ERR(params))
4012 return PTR_ERR(params);
4013
Xin Long2342b8d2017-12-10 15:40:51 +08004014 if (params->srs_number_streams * sizeof(__u16) >
4015 optlen - sizeof(*params))
4016 goto out;
4017
Xin Long7f9d68a2017-01-18 00:44:47 +08004018 asoc = sctp_id2assoc(sk, params->srs_assoc_id);
4019 if (!asoc)
4020 goto out;
4021
4022 retval = sctp_send_reset_streams(asoc, params);
4023
4024out:
4025 kfree(params);
4026 return retval;
4027}
4028
Xin Longa92ce1a2017-02-09 01:18:18 +08004029static int sctp_setsockopt_reset_assoc(struct sock *sk,
4030 char __user *optval,
4031 unsigned int optlen)
4032{
4033 struct sctp_association *asoc;
4034 sctp_assoc_t associd;
4035 int retval = -EINVAL;
4036
4037 if (optlen != sizeof(associd))
4038 goto out;
4039
4040 if (copy_from_user(&associd, optval, optlen)) {
4041 retval = -EFAULT;
4042 goto out;
4043 }
4044
4045 asoc = sctp_id2assoc(sk, associd);
4046 if (!asoc)
4047 goto out;
4048
4049 retval = sctp_send_reset_assoc(asoc);
4050
4051out:
4052 return retval;
4053}
4054
Xin Long242bd2d2017-02-09 01:18:20 +08004055static int sctp_setsockopt_add_streams(struct sock *sk,
4056 char __user *optval,
4057 unsigned int optlen)
4058{
4059 struct sctp_association *asoc;
4060 struct sctp_add_streams params;
4061 int retval = -EINVAL;
4062
4063 if (optlen != sizeof(params))
4064 goto out;
4065
4066 if (copy_from_user(&params, optval, optlen)) {
4067 retval = -EFAULT;
4068 goto out;
4069 }
4070
4071 asoc = sctp_id2assoc(sk, params.sas_assoc_id);
4072 if (!asoc)
4073 goto out;
4074
4075 retval = sctp_send_add_streams(asoc, &params);
4076
4077out:
4078 return retval;
4079}
4080
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004081static int sctp_setsockopt_scheduler(struct sock *sk,
4082 char __user *optval,
4083 unsigned int optlen)
4084{
4085 struct sctp_association *asoc;
4086 struct sctp_assoc_value params;
4087 int retval = -EINVAL;
4088
4089 if (optlen < sizeof(params))
4090 goto out;
4091
4092 optlen = sizeof(params);
4093 if (copy_from_user(&params, optval, optlen)) {
4094 retval = -EFAULT;
4095 goto out;
4096 }
4097
4098 if (params.assoc_value > SCTP_SS_MAX)
4099 goto out;
4100
4101 asoc = sctp_id2assoc(sk, params.assoc_id);
4102 if (!asoc)
4103 goto out;
4104
4105 retval = sctp_sched_set_sched(asoc, params.assoc_value);
4106
4107out:
4108 return retval;
4109}
4110
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004111static int sctp_setsockopt_scheduler_value(struct sock *sk,
4112 char __user *optval,
4113 unsigned int optlen)
4114{
4115 struct sctp_association *asoc;
4116 struct sctp_stream_value params;
4117 int retval = -EINVAL;
4118
4119 if (optlen < sizeof(params))
4120 goto out;
4121
4122 optlen = sizeof(params);
4123 if (copy_from_user(&params, optval, optlen)) {
4124 retval = -EFAULT;
4125 goto out;
4126 }
4127
4128 asoc = sctp_id2assoc(sk, params.assoc_id);
4129 if (!asoc)
4130 goto out;
4131
4132 retval = sctp_sched_set_value(asoc, params.stream_id,
4133 params.stream_value, GFP_KERNEL);
4134
4135out:
4136 return retval;
4137}
4138
Xin Long772a5862017-12-08 21:03:58 +08004139static int sctp_setsockopt_interleaving_supported(struct sock *sk,
4140 char __user *optval,
4141 unsigned int optlen)
4142{
4143 struct sctp_sock *sp = sctp_sk(sk);
4144 struct net *net = sock_net(sk);
4145 struct sctp_assoc_value params;
4146 int retval = -EINVAL;
4147
4148 if (optlen < sizeof(params))
4149 goto out;
4150
4151 optlen = sizeof(params);
4152 if (copy_from_user(&params, optval, optlen)) {
4153 retval = -EFAULT;
4154 goto out;
4155 }
4156
4157 if (params.assoc_id)
4158 goto out;
4159
4160 if (!net->sctp.intl_enable || !sp->frag_interleave) {
4161 retval = -EPERM;
4162 goto out;
4163 }
4164
4165 sp->strm_interleave = !!params.assoc_value;
4166
4167 retval = 0;
4168
4169out:
4170 return retval;
4171}
4172
Xin Longb0e9a2f2018-06-28 15:31:00 +08004173static int sctp_setsockopt_reuse_port(struct sock *sk, char __user *optval,
4174 unsigned int optlen)
4175{
4176 int val;
4177
4178 if (!sctp_style(sk, TCP))
4179 return -EOPNOTSUPP;
4180
4181 if (sctp_sk(sk)->ep->base.bind_addr.port)
4182 return -EFAULT;
4183
4184 if (optlen < sizeof(int))
4185 return -EINVAL;
4186
4187 if (get_user(val, (int __user *)optval))
4188 return -EFAULT;
4189
4190 sctp_sk(sk)->reuse = !!val;
4191
4192 return 0;
4193}
4194
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195/* API 6.2 setsockopt(), getsockopt()
4196 *
4197 * Applications use setsockopt() and getsockopt() to set or retrieve
4198 * socket options. Socket options are used to change the default
4199 * behavior of sockets calls. They are described in Section 7.
4200 *
4201 * The syntax is:
4202 *
4203 * ret = getsockopt(int sd, int level, int optname, void __user *optval,
4204 * int __user *optlen);
4205 * ret = setsockopt(int sd, int level, int optname, const void __user *optval,
4206 * int optlen);
4207 *
4208 * sd - the socket descript.
4209 * level - set to IPPROTO_SCTP for all SCTP options.
4210 * optname - the option name.
4211 * optval - the buffer to store the value of the option.
4212 * optlen - the size of the buffer.
4213 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004214static int sctp_setsockopt(struct sock *sk, int level, int optname,
4215 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216{
4217 int retval = 0;
4218
Daniel Borkmannbb333812013-06-28 19:49:40 +02004219 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220
4221 /* I can hardly begin to describe how wrong this is. This is
4222 * so broken as to be worse than useless. The API draft
4223 * REALLY is NOT helpful here... I am not convinced that the
4224 * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
4225 * are at all well-founded.
4226 */
4227 if (level != SOL_SCTP) {
4228 struct sctp_af *af = sctp_sk(sk)->pf->af;
4229 retval = af->setsockopt(sk, level, optname, optval, optlen);
4230 goto out_nounlock;
4231 }
4232
wangweidong048ed4b2014-01-21 15:44:11 +08004233 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234
4235 switch (optname) {
4236 case SCTP_SOCKOPT_BINDX_ADD:
4237 /* 'optlen' is the size of the addresses buffer. */
4238 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
4239 optlen, SCTP_BINDX_ADD_ADDR);
4240 break;
4241
4242 case SCTP_SOCKOPT_BINDX_REM:
4243 /* 'optlen' is the size of the addresses buffer. */
4244 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
4245 optlen, SCTP_BINDX_REM_ADDR);
4246 break;
4247
Vlad Yasevich88a0a942008-05-09 15:14:11 -07004248 case SCTP_SOCKOPT_CONNECTX_OLD:
4249 /* 'optlen' is the size of the addresses buffer. */
4250 retval = sctp_setsockopt_connectx_old(sk,
4251 (struct sockaddr __user *)optval,
4252 optlen);
4253 break;
4254
Frank Filz3f7a87d2005-06-20 13:14:57 -07004255 case SCTP_SOCKOPT_CONNECTX:
4256 /* 'optlen' is the size of the addresses buffer. */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07004257 retval = sctp_setsockopt_connectx(sk,
4258 (struct sockaddr __user *)optval,
4259 optlen);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004260 break;
4261
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262 case SCTP_DISABLE_FRAGMENTS:
4263 retval = sctp_setsockopt_disable_fragments(sk, optval, optlen);
4264 break;
4265
4266 case SCTP_EVENTS:
4267 retval = sctp_setsockopt_events(sk, optval, optlen);
4268 break;
4269
4270 case SCTP_AUTOCLOSE:
4271 retval = sctp_setsockopt_autoclose(sk, optval, optlen);
4272 break;
4273
4274 case SCTP_PEER_ADDR_PARAMS:
4275 retval = sctp_setsockopt_peer_addr_params(sk, optval, optlen);
4276 break;
4277
Shan Wei4580ccc2011-01-18 22:39:00 +00004278 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07004279 retval = sctp_setsockopt_delayed_ack(sk, optval, optlen);
Frank Filz77086102005-12-22 11:37:30 -08004280 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07004281 case SCTP_PARTIAL_DELIVERY_POINT:
4282 retval = sctp_setsockopt_partial_delivery_point(sk, optval, optlen);
4283 break;
Frank Filz77086102005-12-22 11:37:30 -08004284
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 case SCTP_INITMSG:
4286 retval = sctp_setsockopt_initmsg(sk, optval, optlen);
4287 break;
4288 case SCTP_DEFAULT_SEND_PARAM:
4289 retval = sctp_setsockopt_default_send_param(sk, optval,
4290 optlen);
4291 break;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02004292 case SCTP_DEFAULT_SNDINFO:
4293 retval = sctp_setsockopt_default_sndinfo(sk, optval, optlen);
4294 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 case SCTP_PRIMARY_ADDR:
4296 retval = sctp_setsockopt_primary_addr(sk, optval, optlen);
4297 break;
4298 case SCTP_SET_PEER_PRIMARY_ADDR:
4299 retval = sctp_setsockopt_peer_primary_addr(sk, optval, optlen);
4300 break;
4301 case SCTP_NODELAY:
4302 retval = sctp_setsockopt_nodelay(sk, optval, optlen);
4303 break;
4304 case SCTP_RTOINFO:
4305 retval = sctp_setsockopt_rtoinfo(sk, optval, optlen);
4306 break;
4307 case SCTP_ASSOCINFO:
4308 retval = sctp_setsockopt_associnfo(sk, optval, optlen);
4309 break;
4310 case SCTP_I_WANT_MAPPED_V4_ADDR:
4311 retval = sctp_setsockopt_mappedv4(sk, optval, optlen);
4312 break;
4313 case SCTP_MAXSEG:
4314 retval = sctp_setsockopt_maxseg(sk, optval, optlen);
4315 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004316 case SCTP_ADAPTATION_LAYER:
4317 retval = sctp_setsockopt_adaptation_layer(sk, optval, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004319 case SCTP_CONTEXT:
4320 retval = sctp_setsockopt_context(sk, optval, optlen);
4321 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004322 case SCTP_FRAGMENT_INTERLEAVE:
4323 retval = sctp_setsockopt_fragment_interleave(sk, optval, optlen);
4324 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07004325 case SCTP_MAX_BURST:
4326 retval = sctp_setsockopt_maxburst(sk, optval, optlen);
4327 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07004328 case SCTP_AUTH_CHUNK:
4329 retval = sctp_setsockopt_auth_chunk(sk, optval, optlen);
4330 break;
4331 case SCTP_HMAC_IDENT:
4332 retval = sctp_setsockopt_hmac_ident(sk, optval, optlen);
4333 break;
4334 case SCTP_AUTH_KEY:
4335 retval = sctp_setsockopt_auth_key(sk, optval, optlen);
4336 break;
4337 case SCTP_AUTH_ACTIVE_KEY:
4338 retval = sctp_setsockopt_active_key(sk, optval, optlen);
4339 break;
4340 case SCTP_AUTH_DELETE_KEY:
4341 retval = sctp_setsockopt_del_key(sk, optval, optlen);
4342 break;
Xin Long601590e2018-03-14 19:05:32 +08004343 case SCTP_AUTH_DEACTIVATE_KEY:
4344 retval = sctp_setsockopt_deactivate_key(sk, optval, optlen);
4345 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09004346 case SCTP_AUTO_ASCONF:
4347 retval = sctp_setsockopt_auto_asconf(sk, optval, optlen);
4348 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00004349 case SCTP_PEER_ADDR_THLDS:
4350 retval = sctp_setsockopt_paddr_thresholds(sk, optval, optlen);
4351 break;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004352 case SCTP_RECVRCVINFO:
4353 retval = sctp_setsockopt_recvrcvinfo(sk, optval, optlen);
4354 break;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02004355 case SCTP_RECVNXTINFO:
4356 retval = sctp_setsockopt_recvnxtinfo(sk, optval, optlen);
4357 break;
Xin Long28aa4c22016-07-09 19:47:40 +08004358 case SCTP_PR_SUPPORTED:
4359 retval = sctp_setsockopt_pr_supported(sk, optval, optlen);
4360 break;
Xin Longf959fb42016-07-09 19:47:41 +08004361 case SCTP_DEFAULT_PRINFO:
4362 retval = sctp_setsockopt_default_prinfo(sk, optval, optlen);
4363 break;
Xin Longc0d8bab2017-03-10 12:11:12 +08004364 case SCTP_RECONFIG_SUPPORTED:
4365 retval = sctp_setsockopt_reconfig_supported(sk, optval, optlen);
4366 break;
Xin Long9fb657a2017-01-18 00:44:46 +08004367 case SCTP_ENABLE_STREAM_RESET:
4368 retval = sctp_setsockopt_enable_strreset(sk, optval, optlen);
4369 break;
Xin Long7f9d68a2017-01-18 00:44:47 +08004370 case SCTP_RESET_STREAMS:
4371 retval = sctp_setsockopt_reset_streams(sk, optval, optlen);
4372 break;
Xin Longa92ce1a2017-02-09 01:18:18 +08004373 case SCTP_RESET_ASSOC:
4374 retval = sctp_setsockopt_reset_assoc(sk, optval, optlen);
4375 break;
Xin Long242bd2d2017-02-09 01:18:20 +08004376 case SCTP_ADD_STREAMS:
4377 retval = sctp_setsockopt_add_streams(sk, optval, optlen);
4378 break;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004379 case SCTP_STREAM_SCHEDULER:
4380 retval = sctp_setsockopt_scheduler(sk, optval, optlen);
4381 break;
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004382 case SCTP_STREAM_SCHEDULER_VALUE:
4383 retval = sctp_setsockopt_scheduler_value(sk, optval, optlen);
4384 break;
Xin Long772a5862017-12-08 21:03:58 +08004385 case SCTP_INTERLEAVING_SUPPORTED:
4386 retval = sctp_setsockopt_interleaving_supported(sk, optval,
4387 optlen);
4388 break;
Xin Longb0e9a2f2018-06-28 15:31:00 +08004389 case SCTP_REUSE_PORT:
4390 retval = sctp_setsockopt_reuse_port(sk, optval, optlen);
4391 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392 default:
4393 retval = -ENOPROTOOPT;
4394 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07004395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396
wangweidong048ed4b2014-01-21 15:44:11 +08004397 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398
4399out_nounlock:
4400 return retval;
4401}
4402
4403/* API 3.1.6 connect() - UDP Style Syntax
4404 *
4405 * An application may use the connect() call in the UDP model to initiate an
4406 * association without sending data.
4407 *
4408 * The syntax is:
4409 *
4410 * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
4411 *
4412 * sd: the socket descriptor to have a new association added to.
4413 *
4414 * nam: the address structure (either struct sockaddr_in or struct
4415 * sockaddr_in6 defined in RFC2553 [7]).
4416 *
4417 * len: the size of the address.
4418 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004419static int sctp_connect(struct sock *sk, struct sockaddr *addr,
Xin Long644fbde2018-05-20 16:39:10 +08004420 int addr_len, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421{
Xin Long644fbde2018-05-20 16:39:10 +08004422 struct inet_sock *inet = inet_sk(sk);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004423 struct sctp_af *af;
Xin Long644fbde2018-05-20 16:39:10 +08004424 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425
wangweidong048ed4b2014-01-21 15:44:11 +08004426 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427
Daniel Borkmannbb333812013-06-28 19:49:40 +02004428 pr_debug("%s: sk:%p, sockaddr:%p, addr_len:%d\n", __func__, sk,
4429 addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430
Xin Long644fbde2018-05-20 16:39:10 +08004431 /* We may need to bind the socket. */
4432 if (!inet->inet_num) {
4433 if (sk->sk_prot->get_port(sk, 0)) {
4434 release_sock(sk);
4435 return -EAGAIN;
4436 }
4437 inet->inet_sport = htons(inet->inet_num);
4438 }
4439
Frank Filz3f7a87d2005-06-20 13:14:57 -07004440 /* Validate addr_len before calling common connect/connectx routine. */
4441 af = sctp_get_af_specific(addr->sa_family);
4442 if (!af || addr_len < af->sockaddr_len) {
4443 err = -EINVAL;
4444 } else {
4445 /* Pass correct addr len to common routine (so it knows there
4446 * is only one address being passed.
4447 */
Xin Long644fbde2018-05-20 16:39:10 +08004448 err = __sctp_connect(sk, addr, af->sockaddr_len, flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449 }
4450
wangweidong048ed4b2014-01-21 15:44:11 +08004451 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452 return err;
4453}
4454
Xin Long644fbde2018-05-20 16:39:10 +08004455int sctp_inet_connect(struct socket *sock, struct sockaddr *uaddr,
4456 int addr_len, int flags)
4457{
4458 if (addr_len < sizeof(uaddr->sa_family))
4459 return -EINVAL;
4460
4461 if (uaddr->sa_family == AF_UNSPEC)
4462 return -EOPNOTSUPP;
4463
4464 return sctp_connect(sock->sk, uaddr, addr_len, flags);
4465}
4466
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467/* FIXME: Write comments. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004468static int sctp_disconnect(struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469{
4470 return -EOPNOTSUPP; /* STUB */
4471}
4472
4473/* 4.1.4 accept() - TCP Style Syntax
4474 *
4475 * Applications use accept() call to remove an established SCTP
4476 * association from the accept queue of the endpoint. A new socket
4477 * descriptor will be returned from accept() to represent the newly
4478 * formed association.
4479 */
David Howellscdfbabf2017-03-09 08:09:05 +00004480static struct sock *sctp_accept(struct sock *sk, int flags, int *err, bool kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481{
4482 struct sctp_sock *sp;
4483 struct sctp_endpoint *ep;
4484 struct sock *newsk = NULL;
4485 struct sctp_association *asoc;
4486 long timeo;
4487 int error = 0;
4488
wangweidong048ed4b2014-01-21 15:44:11 +08004489 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490
4491 sp = sctp_sk(sk);
4492 ep = sp->ep;
4493
4494 if (!sctp_style(sk, TCP)) {
4495 error = -EOPNOTSUPP;
4496 goto out;
4497 }
4498
4499 if (!sctp_sstate(sk, LISTENING)) {
4500 error = -EINVAL;
4501 goto out;
4502 }
4503
Sridhar Samudrala8abfedd2006-08-22 00:24:09 -07004504 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505
4506 error = sctp_wait_for_accept(sk, timeo);
4507 if (error)
4508 goto out;
4509
4510 /* We treat the list of associations on the endpoint as the accept
4511 * queue and pick the first association on the list.
4512 */
4513 asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
4514
David Howellscdfbabf2017-03-09 08:09:05 +00004515 newsk = sp->pf->create_accept_sk(sk, asoc, kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 if (!newsk) {
4517 error = -ENOMEM;
4518 goto out;
4519 }
4520
4521 /* Populate the fields of the newsk from the oldsk and migrate the
4522 * asoc to the newsk.
4523 */
4524 sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
4525
4526out:
wangweidong048ed4b2014-01-21 15:44:11 +08004527 release_sock(sk);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004528 *err = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529 return newsk;
4530}
4531
4532/* The SCTP ioctl handler. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004533static int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534{
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004535 int rc = -ENOTCONN;
4536
wangweidong048ed4b2014-01-21 15:44:11 +08004537 lock_sock(sk);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004538
4539 /*
4540 * SEQPACKET-style sockets in LISTENING state are valid, for
4541 * SCTP, so only discard TCP-style sockets in LISTENING state.
4542 */
4543 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
4544 goto out;
4545
4546 switch (cmd) {
4547 case SIOCINQ: {
4548 struct sk_buff *skb;
4549 unsigned int amount = 0;
4550
4551 skb = skb_peek(&sk->sk_receive_queue);
4552 if (skb != NULL) {
4553 /*
4554 * We will only return the amount of this packet since
4555 * that is all that will be read.
4556 */
4557 amount = skb->len;
4558 }
4559 rc = put_user(amount, (int __user *)arg);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004560 break;
David S. Miller9a7241c2010-10-03 22:14:37 -07004561 }
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004562 default:
4563 rc = -ENOIOCTLCMD;
4564 break;
4565 }
4566out:
wangweidong048ed4b2014-01-21 15:44:11 +08004567 release_sock(sk);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004568 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569}
4570
4571/* This is the function which gets called during socket creation to
4572 * initialized the SCTP-specific portion of the sock.
4573 * The sock structure should already be zero-filled memory.
4574 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004575static int sctp_init_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004577 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578 struct sctp_sock *sp;
4579
Daniel Borkmannbb333812013-06-28 19:49:40 +02004580 pr_debug("%s: sk:%p\n", __func__, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581
4582 sp = sctp_sk(sk);
4583
4584 /* Initialize the SCTP per socket area. */
4585 switch (sk->sk_type) {
4586 case SOCK_SEQPACKET:
4587 sp->type = SCTP_SOCKET_UDP;
4588 break;
4589 case SOCK_STREAM:
4590 sp->type = SCTP_SOCKET_TCP;
4591 break;
4592 default:
4593 return -ESOCKTNOSUPPORT;
4594 }
4595
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -03004596 sk->sk_gso_type = SKB_GSO_SCTP;
4597
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598 /* Initialize default send parameters. These parameters can be
4599 * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
4600 */
4601 sp->default_stream = 0;
4602 sp->default_ppid = 0;
4603 sp->default_flags = 0;
4604 sp->default_context = 0;
4605 sp->default_timetolive = 0;
4606
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004607 sp->default_rcv_context = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004608 sp->max_burst = net->sctp.max_burst;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004609
Neil Horman3c681982012-10-24 09:20:03 +00004610 sp->sctp_hmac_alg = net->sctp.sctp_hmac_alg;
4611
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 /* Initialize default setup parameters. These parameters
4613 * can be modified with the SCTP_INITMSG socket option or
4614 * overridden by the SCTP_INIT CMSG.
4615 */
4616 sp->initmsg.sinit_num_ostreams = sctp_max_outstreams;
4617 sp->initmsg.sinit_max_instreams = sctp_max_instreams;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004618 sp->initmsg.sinit_max_attempts = net->sctp.max_retrans_init;
4619 sp->initmsg.sinit_max_init_timeo = net->sctp.rto_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620
4621 /* Initialize default RTO related parameters. These parameters can
4622 * be modified for with the SCTP_RTOINFO socket option.
4623 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004624 sp->rtoinfo.srto_initial = net->sctp.rto_initial;
4625 sp->rtoinfo.srto_max = net->sctp.rto_max;
4626 sp->rtoinfo.srto_min = net->sctp.rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627
4628 /* Initialize default association related parameters. These parameters
4629 * can be modified with the SCTP_ASSOCINFO socket option.
4630 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004631 sp->assocparams.sasoc_asocmaxrxt = net->sctp.max_retrans_association;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632 sp->assocparams.sasoc_number_peer_destinations = 0;
4633 sp->assocparams.sasoc_peer_rwnd = 0;
4634 sp->assocparams.sasoc_local_rwnd = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004635 sp->assocparams.sasoc_cookie_life = net->sctp.valid_cookie_life;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636
4637 /* Initialize default event subscriptions. By default, all the
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004638 * options are off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 */
4640 memset(&sp->subscribe, 0, sizeof(struct sctp_event_subscribe));
4641
4642 /* Default Peer Address Parameters. These defaults can
4643 * be modified via SCTP_PEER_ADDR_PARAMS
4644 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004645 sp->hbinterval = net->sctp.hb_interval;
4646 sp->pathmaxrxt = net->sctp.max_retrans_path;
wangweidong4e2d52b2013-12-23 12:16:54 +08004647 sp->pathmtu = 0; /* allow default discovery */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004648 sp->sackdelay = net->sctp.sack_timeout;
Vlad Yasevich7bfe8bdb2008-06-09 15:45:05 -07004649 sp->sackfreq = 2;
Frank Filz52ccb8e2005-12-22 11:36:46 -08004650 sp->param_flags = SPP_HB_ENABLE |
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004651 SPP_PMTUD_ENABLE |
4652 SPP_SACKDELAY_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653
4654 /* If enabled no SCTP message fragmentation will be performed.
4655 * Configure through SCTP_DISABLE_FRAGMENTS socket option.
4656 */
4657 sp->disable_fragments = 0;
4658
Sridhar Samudrala208edef2006-09-29 17:08:01 -07004659 /* Enable Nagle algorithm by default. */
4660 sp->nodelay = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004662 sp->recvrcvinfo = 0;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02004663 sp->recvnxtinfo = 0;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004664
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665 /* Enable by default. */
4666 sp->v4mapped = 1;
4667
4668 /* Auto-close idle associations after the configured
4669 * number of seconds. A value of 0 disables this
4670 * feature. Configure through the SCTP_AUTOCLOSE socket option,
4671 * for UDP-style sockets only.
4672 */
4673 sp->autoclose = 0;
4674
4675 /* User specified fragmentation limit. */
4676 sp->user_frag = 0;
4677
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004678 sp->adaptation_ind = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679
4680 sp->pf = sctp_get_pf_specific(sk->sk_family);
4681
4682 /* Control variables for partial data delivery. */
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004683 atomic_set(&sp->pd_mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684 skb_queue_head_init(&sp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004685 sp->frag_interleave = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686
4687 /* Create a per socket endpoint structure. Even if we
4688 * change the data structure relationships, this may still
4689 * be useful for storing pre-connect address information.
4690 */
Daniel Borkmannc164b832013-06-14 18:24:06 +02004691 sp->ep = sctp_endpoint_new(sk, GFP_KERNEL);
4692 if (!sp->ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693 return -ENOMEM;
4694
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695 sp->hmac = NULL;
4696
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004697 sk->sk_destruct = sctp_destruct_sock;
4698
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 SCTP_DBG_OBJCNT_INC(sock);
David S. Miller6f756a82008-11-23 17:34:03 -08004700
4701 local_bh_disable();
Tonghao Zhang8cb38a62017-12-22 10:15:20 -08004702 sk_sockets_allocated_inc(sk);
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004703 sock_prot_inuse_add(net, sk->sk_prot, 1);
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004704
4705 /* Nothing can fail after this block, otherwise
4706 * sctp_destroy_sock() will be called without addr_wq_lock held
4707 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004708 if (net->sctp.default_auto_asconf) {
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004709 spin_lock(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda9f7d6532011-04-26 19:32:51 +09004710 list_add_tail(&sp->auto_asconf_list,
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004711 &net->sctp.auto_asconf_splist);
Michio Honda9f7d6532011-04-26 19:32:51 +09004712 sp->do_auto_asconf = 1;
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004713 spin_unlock(&sock_net(sk)->sctp.addr_wq_lock);
4714 } else {
Michio Honda9f7d6532011-04-26 19:32:51 +09004715 sp->do_auto_asconf = 0;
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004716 }
4717
David S. Miller6f756a82008-11-23 17:34:03 -08004718 local_bh_enable();
4719
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720 return 0;
4721}
4722
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004723/* Cleanup any SCTP per socket resources. Must be called with
4724 * sock_net(sk)->sctp.addr_wq_lock held if sp->do_auto_asconf is true
4725 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004726static void sctp_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727{
Michio Honda9f7d6532011-04-26 19:32:51 +09004728 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729
Daniel Borkmannbb333812013-06-28 19:49:40 +02004730 pr_debug("%s: sk:%p\n", __func__, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731
4732 /* Release our hold on the endpoint. */
Michio Honda9f7d6532011-04-26 19:32:51 +09004733 sp = sctp_sk(sk);
Daniel Borkmann1abd1652013-06-06 15:53:47 +02004734 /* This could happen during socket init, thus we bail out
4735 * early, since the rest of the below is not setup either.
4736 */
4737 if (sp->ep == NULL)
4738 return;
4739
Michio Honda9f7d6532011-04-26 19:32:51 +09004740 if (sp->do_auto_asconf) {
4741 sp->do_auto_asconf = 0;
4742 list_del(&sp->auto_asconf_list);
4743 }
4744 sctp_endpoint_free(sp->ep);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004745 local_bh_disable();
Tonghao Zhang8cb38a62017-12-22 10:15:20 -08004746 sk_sockets_allocated_dec(sk);
Eric Dumazet9a57f7f2008-11-17 02:41:00 -08004747 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004748 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749}
4750
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004751/* Triggered when there are no references on the socket anymore */
4752static void sctp_destruct_sock(struct sock *sk)
4753{
4754 struct sctp_sock *sp = sctp_sk(sk);
4755
4756 /* Free up the HMAC transform. */
Herbert Xu5821c762016-01-24 21:20:12 +08004757 crypto_free_shash(sp->hmac);
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004758
4759 inet_sock_destruct(sk);
4760}
4761
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762/* API 4.1.7 shutdown() - TCP Style Syntax
4763 * int shutdown(int socket, int how);
4764 *
4765 * sd - the socket descriptor of the association to be closed.
4766 * how - Specifies the type of shutdown. The values are
4767 * as follows:
4768 * SHUT_RD
4769 * Disables further receive operations. No SCTP
4770 * protocol action is taken.
4771 * SHUT_WR
4772 * Disables further send operations, and initiates
4773 * the SCTP shutdown sequence.
4774 * SHUT_RDWR
4775 * Disables further send and receive operations
4776 * and initiates the SCTP shutdown sequence.
4777 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004778static void sctp_shutdown(struct sock *sk, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00004780 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 struct sctp_endpoint *ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782
4783 if (!sctp_style(sk, TCP))
4784 return;
4785
Xin Long5bf35dd2016-11-13 21:44:37 +08004786 ep = sctp_sk(sk)->ep;
4787 if (how & SEND_SHUTDOWN && !list_empty(&ep->asocs)) {
4788 struct sctp_association *asoc;
4789
Yafang Shaocbabf462017-12-20 11:12:54 +08004790 inet_sk_set_state(sk, SCTP_SS_CLOSING);
Xin Long5bf35dd2016-11-13 21:44:37 +08004791 asoc = list_entry(ep->asocs.next,
4792 struct sctp_association, asocs);
4793 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 }
4795}
4796
Xin Long52c52a62016-04-14 15:35:30 +08004797int sctp_get_sctp_info(struct sock *sk, struct sctp_association *asoc,
4798 struct sctp_info *info)
4799{
4800 struct sctp_transport *prim;
4801 struct list_head *pos;
4802 int mask;
4803
4804 memset(info, 0, sizeof(*info));
4805 if (!asoc) {
4806 struct sctp_sock *sp = sctp_sk(sk);
4807
4808 info->sctpi_s_autoclose = sp->autoclose;
4809 info->sctpi_s_adaptation_ind = sp->adaptation_ind;
4810 info->sctpi_s_pd_point = sp->pd_point;
4811 info->sctpi_s_nodelay = sp->nodelay;
4812 info->sctpi_s_disable_fragments = sp->disable_fragments;
4813 info->sctpi_s_v4mapped = sp->v4mapped;
4814 info->sctpi_s_frag_interleave = sp->frag_interleave;
Xin Long40eb90e92016-05-29 17:42:13 +08004815 info->sctpi_s_type = sp->type;
Xin Long52c52a62016-04-14 15:35:30 +08004816
4817 return 0;
4818 }
4819
4820 info->sctpi_tag = asoc->c.my_vtag;
4821 info->sctpi_state = asoc->state;
4822 info->sctpi_rwnd = asoc->a_rwnd;
4823 info->sctpi_unackdata = asoc->unack_data;
4824 info->sctpi_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
Xin Longcee360a2017-05-31 16:36:31 +08004825 info->sctpi_instrms = asoc->stream.incnt;
4826 info->sctpi_outstrms = asoc->stream.outcnt;
Xin Long52c52a62016-04-14 15:35:30 +08004827 list_for_each(pos, &asoc->base.inqueue.in_chunk_list)
4828 info->sctpi_inqueue++;
4829 list_for_each(pos, &asoc->outqueue.out_chunk_list)
4830 info->sctpi_outqueue++;
4831 info->sctpi_overall_error = asoc->overall_error_count;
4832 info->sctpi_max_burst = asoc->max_burst;
4833 info->sctpi_maxseg = asoc->frag_point;
4834 info->sctpi_peer_rwnd = asoc->peer.rwnd;
4835 info->sctpi_peer_tag = asoc->c.peer_vtag;
4836
4837 mask = asoc->peer.ecn_capable << 1;
4838 mask = (mask | asoc->peer.ipv4_address) << 1;
4839 mask = (mask | asoc->peer.ipv6_address) << 1;
4840 mask = (mask | asoc->peer.hostname_address) << 1;
4841 mask = (mask | asoc->peer.asconf_capable) << 1;
4842 mask = (mask | asoc->peer.prsctp_capable) << 1;
4843 mask = (mask | asoc->peer.auth_capable);
4844 info->sctpi_peer_capable = mask;
4845 mask = asoc->peer.sack_needed << 1;
4846 mask = (mask | asoc->peer.sack_generation) << 1;
4847 mask = (mask | asoc->peer.zero_window_announced);
4848 info->sctpi_peer_sack = mask;
4849
4850 info->sctpi_isacks = asoc->stats.isacks;
4851 info->sctpi_osacks = asoc->stats.osacks;
4852 info->sctpi_opackets = asoc->stats.opackets;
4853 info->sctpi_ipackets = asoc->stats.ipackets;
4854 info->sctpi_rtxchunks = asoc->stats.rtxchunks;
4855 info->sctpi_outofseqtsns = asoc->stats.outofseqtsns;
4856 info->sctpi_idupchunks = asoc->stats.idupchunks;
4857 info->sctpi_gapcnt = asoc->stats.gapcnt;
4858 info->sctpi_ouodchunks = asoc->stats.ouodchunks;
4859 info->sctpi_iuodchunks = asoc->stats.iuodchunks;
4860 info->sctpi_oodchunks = asoc->stats.oodchunks;
4861 info->sctpi_iodchunks = asoc->stats.iodchunks;
4862 info->sctpi_octrlchunks = asoc->stats.octrlchunks;
4863 info->sctpi_ictrlchunks = asoc->stats.ictrlchunks;
4864
4865 prim = asoc->peer.primary_path;
Stefano Brivioee6c88b2017-08-23 13:27:13 +02004866 memcpy(&info->sctpi_p_address, &prim->ipaddr, sizeof(prim->ipaddr));
Xin Long52c52a62016-04-14 15:35:30 +08004867 info->sctpi_p_state = prim->state;
4868 info->sctpi_p_cwnd = prim->cwnd;
4869 info->sctpi_p_srtt = prim->srtt;
4870 info->sctpi_p_rto = jiffies_to_msecs(prim->rto);
4871 info->sctpi_p_hbinterval = prim->hbinterval;
4872 info->sctpi_p_pathmaxrxt = prim->pathmaxrxt;
4873 info->sctpi_p_sackdelay = jiffies_to_msecs(prim->sackdelay);
4874 info->sctpi_p_ssthresh = prim->ssthresh;
4875 info->sctpi_p_partial_bytes_acked = prim->partial_bytes_acked;
4876 info->sctpi_p_flight_size = prim->flight_size;
4877 info->sctpi_p_error = prim->error_count;
4878
4879 return 0;
4880}
4881EXPORT_SYMBOL_GPL(sctp_get_sctp_info);
4882
Xin Long626d16f2016-04-14 15:35:31 +08004883/* use callback to avoid exporting the core structure */
Tom Herbert97a6ec42017-12-04 10:31:41 -08004884void sctp_transport_walk_start(struct rhashtable_iter *iter)
Xin Long626d16f2016-04-14 15:35:31 +08004885{
Xin Long7fda702f2016-11-15 23:23:11 +08004886 rhltable_walk_enter(&sctp_transport_hashtable, iter);
Xin Long626d16f2016-04-14 15:35:31 +08004887
Tom Herbert97a6ec42017-12-04 10:31:41 -08004888 rhashtable_walk_start(iter);
Xin Long626d16f2016-04-14 15:35:31 +08004889}
4890
4891void sctp_transport_walk_stop(struct rhashtable_iter *iter)
4892{
4893 rhashtable_walk_stop(iter);
4894 rhashtable_walk_exit(iter);
4895}
4896
4897struct sctp_transport *sctp_transport_get_next(struct net *net,
4898 struct rhashtable_iter *iter)
4899{
4900 struct sctp_transport *t;
4901
4902 t = rhashtable_walk_next(iter);
4903 for (; t; t = rhashtable_walk_next(iter)) {
4904 if (IS_ERR(t)) {
4905 if (PTR_ERR(t) == -EAGAIN)
4906 continue;
4907 break;
4908 }
4909
4910 if (net_eq(sock_net(t->asoc->base.sk), net) &&
4911 t->asoc->peer.primary_path == t)
4912 break;
4913 }
4914
4915 return t;
4916}
4917
4918struct sctp_transport *sctp_transport_get_idx(struct net *net,
4919 struct rhashtable_iter *iter,
4920 int pos)
4921{
4922 void *obj = SEQ_START_TOKEN;
4923
4924 while (pos && (obj = sctp_transport_get_next(net, iter)) &&
4925 !IS_ERR(obj))
4926 pos--;
4927
4928 return obj;
4929}
4930
4931int sctp_for_each_endpoint(int (*cb)(struct sctp_endpoint *, void *),
4932 void *p) {
4933 int err = 0;
4934 int hash = 0;
4935 struct sctp_ep_common *epb;
4936 struct sctp_hashbucket *head;
4937
4938 for (head = sctp_ep_hashtable; hash < sctp_ep_hashsize;
4939 hash++, head++) {
Xin Long581409d2017-06-10 14:48:14 +08004940 read_lock_bh(&head->lock);
Xin Long626d16f2016-04-14 15:35:31 +08004941 sctp_for_each_hentry(epb, &head->chain) {
4942 err = cb(sctp_ep(epb), p);
4943 if (err)
4944 break;
4945 }
Xin Long581409d2017-06-10 14:48:14 +08004946 read_unlock_bh(&head->lock);
Xin Long626d16f2016-04-14 15:35:31 +08004947 }
4948
4949 return err;
4950}
4951EXPORT_SYMBOL_GPL(sctp_for_each_endpoint);
4952
4953int sctp_transport_lookup_process(int (*cb)(struct sctp_transport *, void *),
4954 struct net *net,
4955 const union sctp_addr *laddr,
4956 const union sctp_addr *paddr, void *p)
4957{
4958 struct sctp_transport *transport;
Xin Long08abb792016-12-15 23:05:52 +08004959 int err;
Xin Long626d16f2016-04-14 15:35:31 +08004960
4961 rcu_read_lock();
4962 transport = sctp_addrs_lookup_transport(net, laddr, paddr);
Xin Long626d16f2016-04-14 15:35:31 +08004963 rcu_read_unlock();
Xin Long08abb792016-12-15 23:05:52 +08004964 if (!transport)
4965 return -ENOENT;
4966
Xin Long1cceda782016-09-29 02:55:44 +08004967 err = cb(transport, p);
Xin Longcd26da42016-10-31 20:32:31 +08004968 sctp_transport_put(transport);
Xin Long1cceda782016-09-29 02:55:44 +08004969
Xin Long626d16f2016-04-14 15:35:31 +08004970 return err;
4971}
4972EXPORT_SYMBOL_GPL(sctp_transport_lookup_process);
4973
4974int sctp_for_each_transport(int (*cb)(struct sctp_transport *, void *),
Xin Longd25adbe2017-09-15 11:02:21 +08004975 int (*cb_done)(struct sctp_transport *, void *),
4976 struct net *net, int *pos, void *p) {
Xin Long626d16f2016-04-14 15:35:31 +08004977 struct rhashtable_iter hti;
Xin Longd25adbe2017-09-15 11:02:21 +08004978 struct sctp_transport *tsp;
4979 int ret;
Xin Long626d16f2016-04-14 15:35:31 +08004980
Xin Longd25adbe2017-09-15 11:02:21 +08004981again:
Xin Longf53d77e2018-01-23 18:22:25 +08004982 ret = 0;
Tom Herbert97a6ec42017-12-04 10:31:41 -08004983 sctp_transport_walk_start(&hti);
Xin Long626d16f2016-04-14 15:35:31 +08004984
Xin Longd25adbe2017-09-15 11:02:21 +08004985 tsp = sctp_transport_get_idx(net, &hti, *pos + 1);
4986 for (; !IS_ERR_OR_NULL(tsp); tsp = sctp_transport_get_next(net, &hti)) {
4987 if (!sctp_transport_hold(tsp))
Xin Long626d16f2016-04-14 15:35:31 +08004988 continue;
Xin Longd25adbe2017-09-15 11:02:21 +08004989 ret = cb(tsp, p);
4990 if (ret)
Xin Long626d16f2016-04-14 15:35:31 +08004991 break;
Xin Longd25adbe2017-09-15 11:02:21 +08004992 (*pos)++;
4993 sctp_transport_put(tsp);
Xin Long626d16f2016-04-14 15:35:31 +08004994 }
Xin Long626d16f2016-04-14 15:35:31 +08004995 sctp_transport_walk_stop(&hti);
Xin Long53fa1032016-04-14 15:35:35 +08004996
Xin Longd25adbe2017-09-15 11:02:21 +08004997 if (ret) {
4998 if (cb_done && !cb_done(tsp, p)) {
4999 (*pos)++;
5000 sctp_transport_put(tsp);
5001 goto again;
5002 }
5003 sctp_transport_put(tsp);
5004 }
5005
5006 return ret;
Xin Long626d16f2016-04-14 15:35:31 +08005007}
5008EXPORT_SYMBOL_GPL(sctp_for_each_transport);
5009
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010/* 7.2.1 Association Status (SCTP_STATUS)
5011
5012 * Applications can retrieve current status information about an
5013 * association, including association state, peer receiver window size,
5014 * number of unacked data chunks, and number of data chunks pending
5015 * receipt. This information is read-only.
5016 */
5017static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
5018 char __user *optval,
5019 int __user *optlen)
5020{
5021 struct sctp_status status;
5022 struct sctp_association *asoc = NULL;
5023 struct sctp_transport *transport;
5024 sctp_assoc_t associd;
5025 int retval = 0;
5026
Neil Horman408f22e2007-06-16 14:03:45 -04005027 if (len < sizeof(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028 retval = -EINVAL;
5029 goto out;
5030 }
5031
Neil Horman408f22e2007-06-16 14:03:45 -04005032 len = sizeof(status);
5033 if (copy_from_user(&status, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034 retval = -EFAULT;
5035 goto out;
5036 }
5037
5038 associd = status.sstat_assoc_id;
5039 asoc = sctp_id2assoc(sk, associd);
5040 if (!asoc) {
5041 retval = -EINVAL;
5042 goto out;
5043 }
5044
5045 transport = asoc->peer.primary_path;
5046
5047 status.sstat_assoc_id = sctp_assoc2id(asoc);
Daniel Borkmann38ab1fa2014-08-28 15:28:26 +02005048 status.sstat_state = sctp_assoc_to_state(asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049 status.sstat_rwnd = asoc->peer.rwnd;
5050 status.sstat_unackdata = asoc->unack_data;
5051
5052 status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
Xin Longcee360a2017-05-31 16:36:31 +08005053 status.sstat_instrms = asoc->stream.incnt;
5054 status.sstat_outstrms = asoc->stream.outcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055 status.sstat_fragmentation_point = asoc->frag_point;
5056 status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Al Viro8cec6b82006-11-20 17:23:01 -08005057 memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
5058 transport->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059 /* Map ipv4 address into v4-mapped-on-v6 address. */
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005060 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061 (union sctp_addr *)&status.sstat_primary.spinfo_address);
Frank Filz3f7a87d2005-06-20 13:14:57 -07005062 status.sstat_primary.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063 status.sstat_primary.spinfo_cwnd = transport->cwnd;
5064 status.sstat_primary.spinfo_srtt = transport->srtt;
5065 status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005066 status.sstat_primary.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067
Frank Filz3f7a87d2005-06-20 13:14:57 -07005068 if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
5069 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
5070
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071 if (put_user(len, optlen)) {
5072 retval = -EFAULT;
5073 goto out;
5074 }
5075
Daniel Borkmannbb333812013-06-28 19:49:40 +02005076 pr_debug("%s: len:%d, state:%d, rwnd:%d, assoc_id:%d\n",
5077 __func__, len, status.sstat_state, status.sstat_rwnd,
5078 status.sstat_assoc_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079
5080 if (copy_to_user(optval, &status, len)) {
5081 retval = -EFAULT;
5082 goto out;
5083 }
5084
5085out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00005086 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087}
5088
5089
5090/* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
5091 *
5092 * Applications can retrieve information about a specific peer address
5093 * of an association, including its reachability state, congestion
5094 * window, and retransmission timer values. This information is
5095 * read-only.
5096 */
5097static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
5098 char __user *optval,
5099 int __user *optlen)
5100{
5101 struct sctp_paddrinfo pinfo;
5102 struct sctp_transport *transport;
5103 int retval = 0;
5104
Neil Horman408f22e2007-06-16 14:03:45 -04005105 if (len < sizeof(pinfo)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106 retval = -EINVAL;
5107 goto out;
5108 }
5109
Neil Horman408f22e2007-06-16 14:03:45 -04005110 len = sizeof(pinfo);
5111 if (copy_from_user(&pinfo, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112 retval = -EFAULT;
5113 goto out;
5114 }
5115
5116 transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
5117 pinfo.spinfo_assoc_id);
5118 if (!transport)
5119 return -EINVAL;
5120
5121 pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07005122 pinfo.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123 pinfo.spinfo_cwnd = transport->cwnd;
5124 pinfo.spinfo_srtt = transport->srtt;
5125 pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005126 pinfo.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127
Frank Filz3f7a87d2005-06-20 13:14:57 -07005128 if (pinfo.spinfo_state == SCTP_UNKNOWN)
5129 pinfo.spinfo_state = SCTP_ACTIVE;
5130
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131 if (put_user(len, optlen)) {
5132 retval = -EFAULT;
5133 goto out;
5134 }
5135
5136 if (copy_to_user(optval, &pinfo, len)) {
5137 retval = -EFAULT;
5138 goto out;
5139 }
5140
5141out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00005142 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143}
5144
5145/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
5146 *
5147 * This option is a on/off flag. If enabled no SCTP message
5148 * fragmentation will be performed. Instead if a message being sent
5149 * exceeds the current PMTU size, the message will NOT be sent and
5150 * instead a error will be indicated to the user.
5151 */
5152static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
5153 char __user *optval, int __user *optlen)
5154{
5155 int val;
5156
5157 if (len < sizeof(int))
5158 return -EINVAL;
5159
5160 len = sizeof(int);
5161 val = (sctp_sk(sk)->disable_fragments == 1);
5162 if (put_user(len, optlen))
5163 return -EFAULT;
5164 if (copy_to_user(optval, &val, len))
5165 return -EFAULT;
5166 return 0;
5167}
5168
5169/* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
5170 *
5171 * This socket option is used to specify various notifications and
5172 * ancillary data the user wishes to receive.
5173 */
5174static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
5175 int __user *optlen)
5176{
Jiri Slabya4b8e712016-10-21 14:13:24 +02005177 if (len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178 return -EINVAL;
Thomas Grafacdd5982012-04-03 22:17:53 +00005179 if (len > sizeof(struct sctp_event_subscribe))
5180 len = sizeof(struct sctp_event_subscribe);
Neil Horman408f22e2007-06-16 14:03:45 -04005181 if (put_user(len, optlen))
5182 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183 if (copy_to_user(optval, &sctp_sk(sk)->subscribe, len))
5184 return -EFAULT;
5185 return 0;
5186}
5187
5188/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
5189 *
5190 * This socket option is applicable to the UDP-style socket only. When
5191 * set it will cause associations that are idle for more than the
5192 * specified number of seconds to automatically close. An association
5193 * being idle is defined an association that has NOT sent or received
5194 * user data. The special value of '0' indicates that no automatic
5195 * close of any associations should be performed. The option expects an
5196 * integer defining the number of seconds of idle time before an
5197 * association is closed.
5198 */
5199static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
5200{
5201 /* Applicable to UDP-style socket only */
5202 if (sctp_style(sk, TCP))
5203 return -EOPNOTSUPP;
Neil Horman408f22e2007-06-16 14:03:45 -04005204 if (len < sizeof(int))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005206 len = sizeof(int);
5207 if (put_user(len, optlen))
5208 return -EFAULT;
David Windsorb2ce04c2017-06-10 22:50:43 -04005209 if (put_user(sctp_sk(sk)->autoclose, (int __user *)optval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210 return -EFAULT;
5211 return 0;
5212}
5213
5214/* Helper routine to branch off an association to a new socket. */
Benjamin Poirier0343c552012-03-08 05:55:58 +00005215int sctp_do_peeloff(struct sock *sk, sctp_assoc_t id, struct socket **sockp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216{
Benjamin Poirier0343c552012-03-08 05:55:58 +00005217 struct sctp_association *asoc = sctp_id2assoc(sk, id);
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005218 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219 struct socket *sock;
5220 int err = 0;
5221
Xin Longdf80cd92017-10-17 23:26:10 +08005222 /* Do not peel off from one netns to another one. */
5223 if (!net_eq(current->nsproxy->net_ns, sock_net(sk)))
5224 return -EINVAL;
5225
Benjamin Poirier0343c552012-03-08 05:55:58 +00005226 if (!asoc)
5227 return -EINVAL;
5228
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229 /* An association cannot be branched off from an already peeled-off
5230 * socket, nor is this supported for tcp style sockets.
5231 */
5232 if (!sctp_style(sk, UDP))
5233 return -EINVAL;
5234
5235 /* Create a new socket. */
5236 err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
5237 if (err < 0)
5238 return err;
5239
Vlad Yasevich914e1c82009-02-13 08:33:44 +00005240 sctp_copy_sock(sock->sk, sk, asoc);
Vlad Yasevich4f444302006-10-30 18:54:32 -08005241
5242 /* Make peeled-off sockets more like 1-1 accepted sockets.
Richard Hainesb7e10c22018-02-24 16:18:51 +00005243 * Set the daddr and initialize id to something more random and also
5244 * copy over any ip options.
Vlad Yasevich4f444302006-10-30 18:54:32 -08005245 */
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005246 sp->pf->to_sk_daddr(&asoc->peer.primary_addr, sk);
Richard Hainesb7e10c22018-02-24 16:18:51 +00005247 sp->pf->copy_ip_options(sk, sock->sk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00005248
5249 /* Populate the fields of the newsk from the oldsk and migrate the
5250 * asoc to the newsk.
5251 */
5252 sctp_sock_migrate(sk, sock->sk, asoc, SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
Vlad Yasevich4f444302006-10-30 18:54:32 -08005253
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254 *sockp = sock;
5255
5256 return err;
5257}
Benjamin Poirier0343c552012-03-08 05:55:58 +00005258EXPORT_SYMBOL(sctp_do_peeloff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005260static int sctp_getsockopt_peeloff_common(struct sock *sk, sctp_peeloff_arg_t *peeloff,
5261 struct file **newfile, unsigned flags)
5262{
5263 struct socket *newsock;
5264 int retval;
5265
5266 retval = sctp_do_peeloff(sk, peeloff->associd, &newsock);
5267 if (retval < 0)
5268 goto out;
5269
5270 /* Map the socket to an unused fd that can be returned to the user. */
5271 retval = get_unused_fd_flags(flags & SOCK_CLOEXEC);
5272 if (retval < 0) {
5273 sock_release(newsock);
5274 goto out;
5275 }
5276
5277 *newfile = sock_alloc_file(newsock, 0, NULL);
5278 if (IS_ERR(*newfile)) {
5279 put_unused_fd(retval);
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005280 retval = PTR_ERR(*newfile);
5281 *newfile = NULL;
5282 return retval;
5283 }
5284
5285 pr_debug("%s: sk:%p, newsk:%p, sd:%d\n", __func__, sk, newsock->sk,
5286 retval);
5287
5288 peeloff->sd = retval;
5289
5290 if (flags & SOCK_NONBLOCK)
5291 (*newfile)->f_flags |= O_NONBLOCK;
5292out:
5293 return retval;
5294}
5295
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
5297{
5298 sctp_peeloff_arg_t peeloff;
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005299 struct file *newfile = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005301
Neil Horman408f22e2007-06-16 14:03:45 -04005302 if (len < sizeof(sctp_peeloff_arg_t))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005304 len = sizeof(sctp_peeloff_arg_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305 if (copy_from_user(&peeloff, optval, len))
5306 return -EFAULT;
5307
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005308 retval = sctp_getsockopt_peeloff_common(sk, &peeloff, &newfile, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005309 if (retval < 0)
5310 goto out;
5311
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312 /* Return the fd mapped to the new socket. */
Al Viro56b31d12012-08-18 00:25:51 -04005313 if (put_user(len, optlen)) {
5314 fput(newfile);
5315 put_unused_fd(retval);
Neil Horman408f22e2007-06-16 14:03:45 -04005316 return -EFAULT;
Al Viro56b31d12012-08-18 00:25:51 -04005317 }
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005318
5319 if (copy_to_user(optval, &peeloff, len)) {
5320 fput(newfile);
5321 put_unused_fd(retval);
5322 return -EFAULT;
5323 }
5324 fd_install(retval, newfile);
5325out:
5326 return retval;
5327}
5328
5329static int sctp_getsockopt_peeloff_flags(struct sock *sk, int len,
5330 char __user *optval, int __user *optlen)
5331{
5332 sctp_peeloff_flags_arg_t peeloff;
5333 struct file *newfile = NULL;
5334 int retval = 0;
5335
5336 if (len < sizeof(sctp_peeloff_flags_arg_t))
5337 return -EINVAL;
5338 len = sizeof(sctp_peeloff_flags_arg_t);
5339 if (copy_from_user(&peeloff, optval, len))
5340 return -EFAULT;
5341
5342 retval = sctp_getsockopt_peeloff_common(sk, &peeloff.p_arg,
5343 &newfile, peeloff.flags);
5344 if (retval < 0)
5345 goto out;
5346
5347 /* Return the fd mapped to the new socket. */
5348 if (put_user(len, optlen)) {
5349 fput(newfile);
5350 put_unused_fd(retval);
5351 return -EFAULT;
5352 }
5353
Al Viro56b31d12012-08-18 00:25:51 -04005354 if (copy_to_user(optval, &peeloff, len)) {
5355 fput(newfile);
5356 put_unused_fd(retval);
5357 return -EFAULT;
5358 }
5359 fd_install(retval, newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360out:
5361 return retval;
5362}
5363
5364/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
5365 *
5366 * Applications can enable or disable heartbeats for any peer address of
5367 * an association, modify an address's heartbeat interval, force a
5368 * heartbeat to be sent immediately, and adjust the address's maximum
5369 * number of retransmissions sent before an address is considered
5370 * unreachable. The following structure is used to access and modify an
5371 * address's parameters:
5372 *
5373 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08005374 * sctp_assoc_t spp_assoc_id;
5375 * struct sockaddr_storage spp_address;
5376 * uint32_t spp_hbinterval;
5377 * uint16_t spp_pathmaxrxt;
5378 * uint32_t spp_pathmtu;
5379 * uint32_t spp_sackdelay;
5380 * uint32_t spp_flags;
5381 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08005383 * spp_assoc_id - (one-to-many style socket) This is filled in the
5384 * application, and identifies the association for
5385 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386 * spp_address - This specifies which address is of interest.
5387 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08005388 * in milliseconds. If a value of zero
5389 * is present in this field then no changes are to
5390 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391 * spp_pathmaxrxt - This contains the maximum number of
5392 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08005393 * considered unreachable. If a value of zero
5394 * is present in this field then no changes are to
5395 * be made to this parameter.
5396 * spp_pathmtu - When Path MTU discovery is disabled the value
5397 * specified here will be the "fixed" path mtu.
5398 * Note that if the spp_address field is empty
5399 * then all associations on this address will
5400 * have this fixed path mtu set upon them.
5401 *
5402 * spp_sackdelay - When delayed sack is enabled, this value specifies
5403 * the number of milliseconds that sacks will be delayed
5404 * for. This value will apply to all addresses of an
5405 * association if the spp_address field is empty. Note
5406 * also, that if delayed sack is enabled and this
5407 * value is set to 0, no change is made to the last
5408 * recorded delayed sack timer value.
5409 *
5410 * spp_flags - These flags are used to control various features
5411 * on an association. The flag field may contain
5412 * zero or more of the following options.
5413 *
5414 * SPP_HB_ENABLE - Enable heartbeats on the
5415 * specified address. Note that if the address
5416 * field is empty all addresses for the association
5417 * have heartbeats enabled upon them.
5418 *
5419 * SPP_HB_DISABLE - Disable heartbeats on the
5420 * speicifed address. Note that if the address
5421 * field is empty all addresses for the association
5422 * will have their heartbeats disabled. Note also
5423 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
5424 * mutually exclusive, only one of these two should
5425 * be specified. Enabling both fields will have
5426 * undetermined results.
5427 *
5428 * SPP_HB_DEMAND - Request a user initiated heartbeat
5429 * to be made immediately.
5430 *
5431 * SPP_PMTUD_ENABLE - This field will enable PMTU
5432 * discovery upon the specified address. Note that
5433 * if the address feild is empty then all addresses
5434 * on the association are effected.
5435 *
5436 * SPP_PMTUD_DISABLE - This field will disable PMTU
5437 * discovery upon the specified address. Note that
5438 * if the address feild is empty then all addresses
5439 * on the association are effected. Not also that
5440 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
5441 * exclusive. Enabling both will have undetermined
5442 * results.
5443 *
5444 * SPP_SACKDELAY_ENABLE - Setting this flag turns
5445 * on delayed sack. The time specified in spp_sackdelay
5446 * is used to specify the sack delay for this address. Note
5447 * that if spp_address is empty then all addresses will
5448 * enable delayed sack and take on the sack delay
5449 * value specified in spp_sackdelay.
5450 * SPP_SACKDELAY_DISABLE - Setting this flag turns
5451 * off delayed sack. If the spp_address field is blank then
5452 * delayed sack is disabled for the entire association. Note
5453 * also that this field is mutually exclusive to
5454 * SPP_SACKDELAY_ENABLE, setting both will have undefined
5455 * results.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456 */
5457static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
Frank Filz52ccb8e2005-12-22 11:36:46 -08005458 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459{
Frank Filz52ccb8e2005-12-22 11:36:46 -08005460 struct sctp_paddrparams params;
5461 struct sctp_transport *trans = NULL;
5462 struct sctp_association *asoc = NULL;
5463 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464
Neil Horman408f22e2007-06-16 14:03:45 -04005465 if (len < sizeof(struct sctp_paddrparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005467 len = sizeof(struct sctp_paddrparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468 if (copy_from_user(&params, optval, len))
5469 return -EFAULT;
5470
Frank Filz52ccb8e2005-12-22 11:36:46 -08005471 /* If an address other than INADDR_ANY is specified, and
5472 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473 */
wangweidongcb3f8372013-12-23 12:16:50 +08005474 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08005475 trans = sctp_addr_id2transport(sk, &params.spp_address,
5476 params.spp_assoc_id);
5477 if (!trans) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02005478 pr_debug("%s: failed no transport\n", __func__);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005479 return -EINVAL;
5480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481 }
5482
Frank Filz52ccb8e2005-12-22 11:36:46 -08005483 /* Get association, if assoc_id != 0 and the socket is a one
5484 * to many style socket, and an association was not found, then
5485 * the id was invalid.
5486 */
5487 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
5488 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP)) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02005489 pr_debug("%s: failed no association\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08005491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492
Frank Filz52ccb8e2005-12-22 11:36:46 -08005493 if (trans) {
5494 /* Fetch transport values. */
5495 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
5496 params.spp_pathmtu = trans->pathmtu;
5497 params.spp_pathmaxrxt = trans->pathmaxrxt;
5498 params.spp_sackdelay = jiffies_to_msecs(trans->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499
Frank Filz52ccb8e2005-12-22 11:36:46 -08005500 /*draft-11 doesn't say what to return in spp_flags*/
5501 params.spp_flags = trans->param_flags;
5502 } else if (asoc) {
5503 /* Fetch association values. */
5504 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
5505 params.spp_pathmtu = asoc->pathmtu;
5506 params.spp_pathmaxrxt = asoc->pathmaxrxt;
5507 params.spp_sackdelay = jiffies_to_msecs(asoc->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508
Frank Filz52ccb8e2005-12-22 11:36:46 -08005509 /*draft-11 doesn't say what to return in spp_flags*/
5510 params.spp_flags = asoc->param_flags;
5511 } else {
5512 /* Fetch socket values. */
5513 params.spp_hbinterval = sp->hbinterval;
5514 params.spp_pathmtu = sp->pathmtu;
5515 params.spp_sackdelay = sp->sackdelay;
5516 params.spp_pathmaxrxt = sp->pathmaxrxt;
5517
5518 /*draft-11 doesn't say what to return in spp_flags*/
5519 params.spp_flags = sp->param_flags;
5520 }
5521
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522 if (copy_to_user(optval, &params, len))
5523 return -EFAULT;
5524
5525 if (put_user(len, optlen))
5526 return -EFAULT;
5527
5528 return 0;
5529}
5530
Wei Yongjund364d922008-05-09 15:13:26 -07005531/*
5532 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08005533 *
Wei Yongjund364d922008-05-09 15:13:26 -07005534 * This option will effect the way delayed acks are performed. This
5535 * option allows you to get or set the delayed ack time, in
5536 * milliseconds. It also allows changing the delayed ack frequency.
5537 * Changing the frequency to 1 disables the delayed sack algorithm. If
5538 * the assoc_id is 0, then this sets or gets the endpoints default
5539 * values. If the assoc_id field is non-zero, then the set or get
5540 * effects the specified association for the one to many model (the
5541 * assoc_id field is ignored by the one to one model). Note that if
5542 * sack_delay or sack_freq are 0 when setting this option, then the
5543 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08005544 *
Wei Yongjund364d922008-05-09 15:13:26 -07005545 * struct sctp_sack_info {
5546 * sctp_assoc_t sack_assoc_id;
5547 * uint32_t sack_delay;
5548 * uint32_t sack_freq;
5549 * };
Frank Filz77086102005-12-22 11:37:30 -08005550 *
Wei Yongjund364d922008-05-09 15:13:26 -07005551 * sack_assoc_id - This parameter, indicates which association the user
5552 * is performing an action upon. Note that if this field's value is
5553 * zero then the endpoints default value is changed (effecting future
5554 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08005555 *
Wei Yongjund364d922008-05-09 15:13:26 -07005556 * sack_delay - This parameter contains the number of milliseconds that
5557 * the user is requesting the delayed ACK timer be set to. Note that
5558 * this value is defined in the standard to be between 200 and 500
5559 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08005560 *
Wei Yongjund364d922008-05-09 15:13:26 -07005561 * sack_freq - This parameter contains the number of packets that must
5562 * be received before a sack is sent without waiting for the delay
5563 * timer to expire. The default value for this is 2, setting this
5564 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08005565 */
Wei Yongjund364d922008-05-09 15:13:26 -07005566static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
Frank Filz77086102005-12-22 11:37:30 -08005567 char __user *optval,
5568 int __user *optlen)
5569{
Wei Yongjund364d922008-05-09 15:13:26 -07005570 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08005571 struct sctp_association *asoc = NULL;
5572 struct sctp_sock *sp = sctp_sk(sk);
5573
Wei Yongjund364d922008-05-09 15:13:26 -07005574 if (len >= sizeof(struct sctp_sack_info)) {
5575 len = sizeof(struct sctp_sack_info);
5576
5577 if (copy_from_user(&params, optval, len))
5578 return -EFAULT;
5579 } else if (len == sizeof(struct sctp_assoc_value)) {
Neil Horman94f65192013-12-23 08:29:43 -05005580 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05005581 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05005582 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05005583 "Use struct sctp_sack_info instead\n",
5584 current->comm, task_pid_nr(current));
Wei Yongjund364d922008-05-09 15:13:26 -07005585 if (copy_from_user(&params, optval, len))
5586 return -EFAULT;
5587 } else
wangweidongcb3f8372013-12-23 12:16:50 +08005588 return -EINVAL;
Frank Filz77086102005-12-22 11:37:30 -08005589
Wei Yongjund364d922008-05-09 15:13:26 -07005590 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08005591 * to many style socket, and an association was not found, then
5592 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005593 */
Wei Yongjund364d922008-05-09 15:13:26 -07005594 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
5595 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08005596 return -EINVAL;
5597
5598 if (asoc) {
5599 /* Fetch association values. */
Wei Yongjund364d922008-05-09 15:13:26 -07005600 if (asoc->param_flags & SPP_SACKDELAY_ENABLE) {
5601 params.sack_delay = jiffies_to_msecs(
Frank Filz77086102005-12-22 11:37:30 -08005602 asoc->sackdelay);
Wei Yongjund364d922008-05-09 15:13:26 -07005603 params.sack_freq = asoc->sackfreq;
5604
5605 } else {
5606 params.sack_delay = 0;
5607 params.sack_freq = 1;
5608 }
Frank Filz77086102005-12-22 11:37:30 -08005609 } else {
5610 /* Fetch socket values. */
Wei Yongjund364d922008-05-09 15:13:26 -07005611 if (sp->param_flags & SPP_SACKDELAY_ENABLE) {
5612 params.sack_delay = sp->sackdelay;
5613 params.sack_freq = sp->sackfreq;
5614 } else {
5615 params.sack_delay = 0;
5616 params.sack_freq = 1;
5617 }
Frank Filz77086102005-12-22 11:37:30 -08005618 }
5619
5620 if (copy_to_user(optval, &params, len))
5621 return -EFAULT;
5622
5623 if (put_user(len, optlen))
5624 return -EFAULT;
5625
5626 return 0;
5627}
5628
Linus Torvalds1da177e2005-04-16 15:20:36 -07005629/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
5630 *
5631 * Applications can specify protocol parameters for the default association
5632 * initialization. The option name argument to setsockopt() and getsockopt()
5633 * is SCTP_INITMSG.
5634 *
5635 * Setting initialization parameters is effective only on an unconnected
5636 * socket (for UDP-style sockets only future associations are effected
5637 * by the change). With TCP-style sockets, this option is inherited by
5638 * sockets derived from a listener socket.
5639 */
5640static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
5641{
Neil Horman408f22e2007-06-16 14:03:45 -04005642 if (len < sizeof(struct sctp_initmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005644 len = sizeof(struct sctp_initmsg);
5645 if (put_user(len, optlen))
5646 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647 if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
5648 return -EFAULT;
5649 return 0;
5650}
5651
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005653static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
5654 char __user *optval, int __user *optlen)
5655{
5656 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005657 int cnt = 0;
5658 struct sctp_getaddrs getaddrs;
5659 struct sctp_transport *from;
5660 void __user *to;
5661 union sctp_addr temp;
5662 struct sctp_sock *sp = sctp_sk(sk);
5663 int addrlen;
5664 size_t space_left;
5665 int bytes_copied;
5666
5667 if (len < sizeof(struct sctp_getaddrs))
5668 return -EINVAL;
5669
5670 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
5671 return -EFAULT;
5672
5673 /* For UDP-style sockets, id specifies the association to query. */
5674 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
5675 if (!asoc)
5676 return -EINVAL;
5677
wangweidongcb3f8372013-12-23 12:16:50 +08005678 to = optval + offsetof(struct sctp_getaddrs, addrs);
5679 space_left = len - offsetof(struct sctp_getaddrs, addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005680
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07005681 list_for_each_entry(from, &asoc->peer.transport_addr_list,
5682 transports) {
Al Virob3f5b3b2006-11-20 17:22:43 -08005683 memcpy(&temp, &from->ipaddr, sizeof(temp));
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005684 addrlen = sctp_get_pf_specific(sk->sk_family)
5685 ->addr_to_user(sp, &temp);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005686 if (space_left < addrlen)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005687 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005688 if (copy_to_user(to, &temp, addrlen))
5689 return -EFAULT;
5690 to += addrlen;
5691 cnt++;
5692 space_left -= addrlen;
5693 }
5694
5695 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
5696 return -EFAULT;
5697 bytes_copied = ((char __user *)to) - optval;
5698 if (put_user(bytes_copied, optlen))
5699 return -EFAULT;
5700
5701 return 0;
5702}
5703
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005704static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to,
5705 size_t space_left, int *bytes_copied)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005706{
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005707 struct sctp_sockaddr_entry *addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005708 union sctp_addr temp;
5709 int cnt = 0;
5710 int addrlen;
Eric W. Biederman4db67e82012-08-06 08:42:04 +00005711 struct net *net = sock_net(sk);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005712
Vlad Yasevich29303542007-09-16 16:02:12 -07005713 rcu_read_lock();
Eric W. Biederman4db67e82012-08-06 08:42:04 +00005714 list_for_each_entry_rcu(addr, &net->sctp.local_addr_list, list) {
Vlad Yasevich29303542007-09-16 16:02:12 -07005715 if (!addr->valid)
5716 continue;
5717
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005718 if ((PF_INET == sk->sk_family) &&
Al Viro6244be42006-11-20 17:21:44 -08005719 (AF_INET6 == addr->a.sa.sa_family))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005720 continue;
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07005721 if ((PF_INET6 == sk->sk_family) &&
5722 inet_v6_ipv6only(sk) &&
5723 (AF_INET == addr->a.sa.sa_family))
5724 continue;
Al Viro6244be42006-11-20 17:21:44 -08005725 memcpy(&temp, &addr->a, sizeof(temp));
Vlad Yasevichb46ae362008-01-28 14:25:36 -05005726 if (!temp.v4.sin_port)
5727 temp.v4.sin_port = htons(port);
5728
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005729 addrlen = sctp_get_pf_specific(sk->sk_family)
5730 ->addr_to_user(sctp_sk(sk), &temp);
5731
Vlad Yasevich29303542007-09-16 16:02:12 -07005732 if (space_left < addrlen) {
5733 cnt = -ENOMEM;
5734 break;
5735 }
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005736 memcpy(to, &temp, addrlen);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08005737
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005738 to += addrlen;
wangweidongcb3f8372013-12-23 12:16:50 +08005739 cnt++;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005740 space_left -= addrlen;
Vlad Yasevich3663c302007-07-03 12:43:12 -04005741 *bytes_copied += addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005742 }
Vlad Yasevich29303542007-09-16 16:02:12 -07005743 rcu_read_unlock();
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005744
5745 return cnt;
5746}
5747
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005749static int sctp_getsockopt_local_addrs(struct sock *sk, int len,
5750 char __user *optval, int __user *optlen)
5751{
5752 struct sctp_bind_addr *bp;
5753 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005754 int cnt = 0;
5755 struct sctp_getaddrs getaddrs;
5756 struct sctp_sockaddr_entry *addr;
5757 void __user *to;
5758 union sctp_addr temp;
5759 struct sctp_sock *sp = sctp_sk(sk);
5760 int addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005761 int err = 0;
5762 size_t space_left;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005763 int bytes_copied = 0;
5764 void *addrs;
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005765 void *buf;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005766
Neil Horman408f22e2007-06-16 14:03:45 -04005767 if (len < sizeof(struct sctp_getaddrs))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005768 return -EINVAL;
5769
5770 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
5771 return -EFAULT;
5772
5773 /*
5774 * For UDP-style sockets, id specifies the association to query.
5775 * If the id field is set to the value '0' then the locally bound
5776 * addresses are returned without regard to any particular
5777 * association.
5778 */
5779 if (0 == getaddrs.assoc_id) {
5780 bp = &sctp_sk(sk)->ep->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005781 } else {
5782 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
5783 if (!asoc)
5784 return -EINVAL;
5785 bp = &asoc->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005786 }
5787
wangweidongcb3f8372013-12-23 12:16:50 +08005788 to = optval + offsetof(struct sctp_getaddrs, addrs);
5789 space_left = len - offsetof(struct sctp_getaddrs, addrs);
Neil Horman186e2342007-06-18 19:59:16 -04005790
Marcelo Ricardo Leitnercacc0622015-11-30 14:32:54 -02005791 addrs = kmalloc(space_left, GFP_USER | __GFP_NOWARN);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005792 if (!addrs)
5793 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005794
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005795 /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
5796 * addresses from the global local address list.
5797 */
5798 if (sctp_list_single_entry(&bp->address_list)) {
5799 addr = list_entry(bp->address_list.next,
5800 struct sctp_sockaddr_entry, list);
Vlad Yasevich52cae8f2008-08-18 10:34:34 -04005801 if (sctp_is_any(sk, &addr->a)) {
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005802 cnt = sctp_copy_laddrs(sk, bp->port, addrs,
5803 space_left, &bytes_copied);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005804 if (cnt < 0) {
5805 err = cnt;
Vlad Yasevich559cf712007-09-16 16:03:28 -07005806 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005807 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005808 goto copy_getaddrs;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005809 }
5810 }
5811
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005812 buf = addrs;
Vlad Yasevich559cf712007-09-16 16:03:28 -07005813 /* Protection on the bound address list is not needed since
5814 * in the socket option context we hold a socket lock and
5815 * thus the bound address list can't change.
5816 */
5817 list_for_each_entry(addr, &bp->address_list, list) {
Al Viro6244be42006-11-20 17:21:44 -08005818 memcpy(&temp, &addr->a, sizeof(temp));
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005819 addrlen = sctp_get_pf_specific(sk->sk_family)
5820 ->addr_to_user(sp, &temp);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005821 if (space_left < addrlen) {
5822 err = -ENOMEM; /*fixme: right error?*/
Vlad Yasevich559cf712007-09-16 16:03:28 -07005823 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005824 }
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005825 memcpy(buf, &temp, addrlen);
5826 buf += addrlen;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005827 bytes_copied += addrlen;
wangweidongcb3f8372013-12-23 12:16:50 +08005828 cnt++;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005829 space_left -= addrlen;
5830 }
5831
5832copy_getaddrs:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005833 if (copy_to_user(to, addrs, bytes_copied)) {
5834 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02005835 goto out;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005836 }
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04005837 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num)) {
5838 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02005839 goto out;
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04005840 }
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02005841 /* XXX: We should have accounted for sizeof(struct sctp_getaddrs) too,
5842 * but we can't change it anymore.
5843 */
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005844 if (put_user(bytes_copied, optlen))
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04005845 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02005846out:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005847 kfree(addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005848 return err;
5849}
5850
Linus Torvalds1da177e2005-04-16 15:20:36 -07005851/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
5852 *
5853 * Requests that the local SCTP stack use the enclosed peer address as
5854 * the association primary. The enclosed address must be one of the
5855 * association peer's addresses.
5856 */
5857static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
5858 char __user *optval, int __user *optlen)
5859{
5860 struct sctp_prim prim;
5861 struct sctp_association *asoc;
5862 struct sctp_sock *sp = sctp_sk(sk);
5863
Neil Horman408f22e2007-06-16 14:03:45 -04005864 if (len < sizeof(struct sctp_prim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865 return -EINVAL;
5866
Neil Horman408f22e2007-06-16 14:03:45 -04005867 len = sizeof(struct sctp_prim);
5868
5869 if (copy_from_user(&prim, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870 return -EFAULT;
5871
5872 asoc = sctp_id2assoc(sk, prim.ssp_assoc_id);
5873 if (!asoc)
5874 return -EINVAL;
5875
5876 if (!asoc->peer.primary_path)
5877 return -ENOTCONN;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005878
Al Viro8cec6b82006-11-20 17:23:01 -08005879 memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr,
5880 asoc->peer.primary_path->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005882 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005883 (union sctp_addr *)&prim.ssp_addr);
5884
Neil Horman408f22e2007-06-16 14:03:45 -04005885 if (put_user(len, optlen))
5886 return -EFAULT;
5887 if (copy_to_user(optval, &prim, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888 return -EFAULT;
5889
5890 return 0;
5891}
5892
5893/*
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005894 * 7.1.11 Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895 *
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005896 * Requests that the local endpoint set the specified Adaptation Layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897 * Indication parameter for all future INIT and INIT-ACK exchanges.
5898 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005899static int sctp_getsockopt_adaptation_layer(struct sock *sk, int len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900 char __user *optval, int __user *optlen)
5901{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005902 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005903
Neil Horman408f22e2007-06-16 14:03:45 -04005904 if (len < sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905 return -EINVAL;
5906
Neil Horman408f22e2007-06-16 14:03:45 -04005907 len = sizeof(struct sctp_setadaptation);
5908
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005909 adaptation.ssb_adaptation_ind = sctp_sk(sk)->adaptation_ind;
Neil Horman408f22e2007-06-16 14:03:45 -04005910
5911 if (put_user(len, optlen))
5912 return -EFAULT;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005913 if (copy_to_user(optval, &adaptation, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914 return -EFAULT;
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07005915
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916 return 0;
5917}
5918
5919/*
5920 *
5921 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
5922 *
5923 * Applications that wish to use the sendto() system call may wish to
5924 * specify a default set of parameters that would normally be supplied
5925 * through the inclusion of ancillary data. This socket option allows
5926 * such an application to set the default sctp_sndrcvinfo structure.
5927
5928
5929 * The application that wishes to use this socket option simply passes
5930 * in to this call the sctp_sndrcvinfo structure defined in Section
5931 * 5.2.2) The input parameters accepted by this call include
5932 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
5933 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
5934 * to this call if the caller is using the UDP model.
5935 *
5936 * For getsockopt, it get the default sctp_sndrcvinfo structure.
5937 */
5938static int sctp_getsockopt_default_send_param(struct sock *sk,
5939 int len, char __user *optval,
5940 int __user *optlen)
5941{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005942 struct sctp_sock *sp = sctp_sk(sk);
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005943 struct sctp_association *asoc;
5944 struct sctp_sndrcvinfo info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005946 if (len < sizeof(info))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005948
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005949 len = sizeof(info);
Neil Horman408f22e2007-06-16 14:03:45 -04005950
5951 if (copy_from_user(&info, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952 return -EFAULT;
5953
5954 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
5955 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
5956 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957 if (asoc) {
5958 info.sinfo_stream = asoc->default_stream;
5959 info.sinfo_flags = asoc->default_flags;
5960 info.sinfo_ppid = asoc->default_ppid;
5961 info.sinfo_context = asoc->default_context;
5962 info.sinfo_timetolive = asoc->default_timetolive;
5963 } else {
5964 info.sinfo_stream = sp->default_stream;
5965 info.sinfo_flags = sp->default_flags;
5966 info.sinfo_ppid = sp->default_ppid;
5967 info.sinfo_context = sp->default_context;
5968 info.sinfo_timetolive = sp->default_timetolive;
5969 }
5970
Neil Horman408f22e2007-06-16 14:03:45 -04005971 if (put_user(len, optlen))
5972 return -EFAULT;
5973 if (copy_to_user(optval, &info, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974 return -EFAULT;
5975
5976 return 0;
5977}
5978
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005979/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
5980 * (SCTP_DEFAULT_SNDINFO)
5981 */
5982static int sctp_getsockopt_default_sndinfo(struct sock *sk, int len,
5983 char __user *optval,
5984 int __user *optlen)
5985{
5986 struct sctp_sock *sp = sctp_sk(sk);
5987 struct sctp_association *asoc;
5988 struct sctp_sndinfo info;
5989
5990 if (len < sizeof(info))
5991 return -EINVAL;
5992
5993 len = sizeof(info);
5994
5995 if (copy_from_user(&info, optval, len))
5996 return -EFAULT;
5997
5998 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
5999 if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
6000 return -EINVAL;
6001 if (asoc) {
6002 info.snd_sid = asoc->default_stream;
6003 info.snd_flags = asoc->default_flags;
6004 info.snd_ppid = asoc->default_ppid;
6005 info.snd_context = asoc->default_context;
6006 } else {
6007 info.snd_sid = sp->default_stream;
6008 info.snd_flags = sp->default_flags;
6009 info.snd_ppid = sp->default_ppid;
6010 info.snd_context = sp->default_context;
6011 }
6012
6013 if (put_user(len, optlen))
6014 return -EFAULT;
6015 if (copy_to_user(optval, &info, len))
6016 return -EFAULT;
6017
6018 return 0;
6019}
6020
Linus Torvalds1da177e2005-04-16 15:20:36 -07006021/*
6022 *
6023 * 7.1.5 SCTP_NODELAY
6024 *
6025 * Turn on/off any Nagle-like algorithm. This means that packets are
6026 * generally sent as soon as possible and no unnecessary delays are
6027 * introduced, at the cost of more packets in the network. Expects an
6028 * integer boolean flag.
6029 */
6030
6031static int sctp_getsockopt_nodelay(struct sock *sk, int len,
6032 char __user *optval, int __user *optlen)
6033{
6034 int val;
6035
6036 if (len < sizeof(int))
6037 return -EINVAL;
6038
6039 len = sizeof(int);
6040 val = (sctp_sk(sk)->nodelay == 1);
6041 if (put_user(len, optlen))
6042 return -EFAULT;
6043 if (copy_to_user(optval, &val, len))
6044 return -EFAULT;
6045 return 0;
6046}
6047
6048/*
6049 *
6050 * 7.1.1 SCTP_RTOINFO
6051 *
6052 * The protocol parameters used to initialize and bound retransmission
6053 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
6054 * and modify these parameters.
6055 * All parameters are time values, in milliseconds. A value of 0, when
6056 * modifying the parameters, indicates that the current value should not
6057 * be changed.
6058 *
6059 */
6060static int sctp_getsockopt_rtoinfo(struct sock *sk, int len,
6061 char __user *optval,
6062 int __user *optlen) {
6063 struct sctp_rtoinfo rtoinfo;
6064 struct sctp_association *asoc;
6065
Neil Horman408f22e2007-06-16 14:03:45 -04006066 if (len < sizeof (struct sctp_rtoinfo))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067 return -EINVAL;
6068
Neil Horman408f22e2007-06-16 14:03:45 -04006069 len = sizeof(struct sctp_rtoinfo);
6070
6071 if (copy_from_user(&rtoinfo, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006072 return -EFAULT;
6073
6074 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
6075
6076 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
6077 return -EINVAL;
6078
6079 /* Values corresponding to the specific association. */
6080 if (asoc) {
6081 rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial);
6082 rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max);
6083 rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min);
6084 } else {
6085 /* Values corresponding to the endpoint. */
6086 struct sctp_sock *sp = sctp_sk(sk);
6087
6088 rtoinfo.srto_initial = sp->rtoinfo.srto_initial;
6089 rtoinfo.srto_max = sp->rtoinfo.srto_max;
6090 rtoinfo.srto_min = sp->rtoinfo.srto_min;
6091 }
6092
6093 if (put_user(len, optlen))
6094 return -EFAULT;
6095
6096 if (copy_to_user(optval, &rtoinfo, len))
6097 return -EFAULT;
6098
6099 return 0;
6100}
6101
6102/*
6103 *
6104 * 7.1.2 SCTP_ASSOCINFO
6105 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02006106 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07006107 * of the association.
6108 * Returns an error if the new association retransmission value is
6109 * greater than the sum of the retransmission value of the peer.
6110 * See [SCTP] for more information.
6111 *
6112 */
6113static int sctp_getsockopt_associnfo(struct sock *sk, int len,
6114 char __user *optval,
6115 int __user *optlen)
6116{
6117
6118 struct sctp_assocparams assocparams;
6119 struct sctp_association *asoc;
6120 struct list_head *pos;
6121 int cnt = 0;
6122
Neil Horman408f22e2007-06-16 14:03:45 -04006123 if (len < sizeof (struct sctp_assocparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006124 return -EINVAL;
6125
Neil Horman408f22e2007-06-16 14:03:45 -04006126 len = sizeof(struct sctp_assocparams);
6127
6128 if (copy_from_user(&assocparams, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129 return -EFAULT;
6130
6131 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
6132
6133 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
6134 return -EINVAL;
6135
6136 /* Values correspoinding to the specific association */
Vladislav Yasevich17337212005-04-28 11:57:54 -07006137 if (asoc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138 assocparams.sasoc_asocmaxrxt = asoc->max_retrans;
6139 assocparams.sasoc_peer_rwnd = asoc->peer.rwnd;
6140 assocparams.sasoc_local_rwnd = asoc->a_rwnd;
Daniel Borkmann52db8822013-06-25 18:17:27 +02006141 assocparams.sasoc_cookie_life = ktime_to_ms(asoc->cookie_life);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006142
6143 list_for_each(pos, &asoc->peer.transport_addr_list) {
wangweidongcb3f8372013-12-23 12:16:50 +08006144 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006145 }
6146
6147 assocparams.sasoc_number_peer_destinations = cnt;
6148 } else {
6149 /* Values corresponding to the endpoint */
6150 struct sctp_sock *sp = sctp_sk(sk);
6151
6152 assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt;
6153 assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd;
6154 assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd;
6155 assocparams.sasoc_cookie_life =
6156 sp->assocparams.sasoc_cookie_life;
6157 assocparams.sasoc_number_peer_destinations =
6158 sp->assocparams.
6159 sasoc_number_peer_destinations;
6160 }
6161
6162 if (put_user(len, optlen))
6163 return -EFAULT;
6164
6165 if (copy_to_user(optval, &assocparams, len))
6166 return -EFAULT;
6167
6168 return 0;
6169}
6170
6171/*
6172 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
6173 *
6174 * This socket option is a boolean flag which turns on or off mapped V4
6175 * addresses. If this option is turned on and the socket is type
6176 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
6177 * If this option is turned off, then no mapping will be done of V4
6178 * addresses and a user will receive both PF_INET6 and PF_INET type
6179 * addresses on the socket.
6180 */
6181static int sctp_getsockopt_mappedv4(struct sock *sk, int len,
6182 char __user *optval, int __user *optlen)
6183{
6184 int val;
6185 struct sctp_sock *sp = sctp_sk(sk);
6186
6187 if (len < sizeof(int))
6188 return -EINVAL;
6189
6190 len = sizeof(int);
6191 val = sp->v4mapped;
6192 if (put_user(len, optlen))
6193 return -EFAULT;
6194 if (copy_to_user(optval, &val, len))
6195 return -EFAULT;
6196
6197 return 0;
6198}
6199
6200/*
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006201 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
6202 * (chapter and verse is quoted at sctp_setsockopt_context())
6203 */
6204static int sctp_getsockopt_context(struct sock *sk, int len,
6205 char __user *optval, int __user *optlen)
6206{
6207 struct sctp_assoc_value params;
6208 struct sctp_sock *sp;
6209 struct sctp_association *asoc;
6210
Neil Horman408f22e2007-06-16 14:03:45 -04006211 if (len < sizeof(struct sctp_assoc_value))
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006212 return -EINVAL;
6213
Neil Horman408f22e2007-06-16 14:03:45 -04006214 len = sizeof(struct sctp_assoc_value);
6215
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006216 if (copy_from_user(&params, optval, len))
6217 return -EFAULT;
6218
6219 sp = sctp_sk(sk);
6220
6221 if (params.assoc_id != 0) {
6222 asoc = sctp_id2assoc(sk, params.assoc_id);
6223 if (!asoc)
6224 return -EINVAL;
6225 params.assoc_value = asoc->default_rcv_context;
6226 } else {
6227 params.assoc_value = sp->default_rcv_context;
6228 }
6229
6230 if (put_user(len, optlen))
6231 return -EFAULT;
6232 if (copy_to_user(optval, &params, len))
6233 return -EFAULT;
6234
6235 return 0;
6236}
6237
6238/*
Wei Yongjune89c2092008-12-25 16:54:58 -08006239 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
6240 * This option will get or set the maximum size to put in any outgoing
6241 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07006242 * fragmented by SCTP into the specified size. Note that the underlying
6243 * SCTP implementation may fragment into smaller sized chunks when the
6244 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08006245 * the user. The default value for this option is '0' which indicates
6246 * the user is NOT limiting fragmentation and only the PMTU will effect
6247 * SCTP's choice of DATA chunk size. Note also that values set larger
6248 * than the maximum size of an IP datagram will effectively let SCTP
6249 * control fragmentation (i.e. the same as setting this option to 0).
6250 *
6251 * The following structure is used to access and modify this parameter:
6252 *
6253 * struct sctp_assoc_value {
6254 * sctp_assoc_t assoc_id;
6255 * uint32_t assoc_value;
6256 * };
6257 *
6258 * assoc_id: This parameter is ignored for one-to-one style sockets.
6259 * For one-to-many style sockets this parameter indicates which
6260 * association the user is performing an action upon. Note that if
6261 * this field's value is zero then the endpoints default value is
6262 * changed (effecting future associations only).
6263 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006264 */
6265static int sctp_getsockopt_maxseg(struct sock *sk, int len,
6266 char __user *optval, int __user *optlen)
6267{
Wei Yongjune89c2092008-12-25 16:54:58 -08006268 struct sctp_assoc_value params;
6269 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270
Wei Yongjune89c2092008-12-25 16:54:58 -08006271 if (len == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05006272 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05006273 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05006274 "Use of int in maxseg socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05006275 "Use struct sctp_assoc_value instead\n",
6276 current->comm, task_pid_nr(current));
Wei Yongjune89c2092008-12-25 16:54:58 -08006277 params.assoc_id = 0;
6278 } else if (len >= sizeof(struct sctp_assoc_value)) {
6279 len = sizeof(struct sctp_assoc_value);
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006280 if (copy_from_user(&params, optval, len))
Wei Yongjune89c2092008-12-25 16:54:58 -08006281 return -EFAULT;
6282 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283 return -EINVAL;
6284
Wei Yongjune89c2092008-12-25 16:54:58 -08006285 asoc = sctp_id2assoc(sk, params.assoc_id);
6286 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
6287 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006288
Wei Yongjune89c2092008-12-25 16:54:58 -08006289 if (asoc)
6290 params.assoc_value = asoc->frag_point;
6291 else
6292 params.assoc_value = sctp_sk(sk)->user_frag;
6293
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294 if (put_user(len, optlen))
6295 return -EFAULT;
Wei Yongjune89c2092008-12-25 16:54:58 -08006296 if (len == sizeof(int)) {
6297 if (copy_to_user(optval, &params.assoc_value, len))
6298 return -EFAULT;
6299 } else {
6300 if (copy_to_user(optval, &params, len))
6301 return -EFAULT;
6302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303
6304 return 0;
6305}
6306
Vlad Yasevichb6e13312007-04-20 12:23:15 -07006307/*
6308 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
6309 * (chapter and verse is quoted at sctp_setsockopt_fragment_interleave())
6310 */
6311static int sctp_getsockopt_fragment_interleave(struct sock *sk, int len,
6312 char __user *optval, int __user *optlen)
6313{
6314 int val;
6315
6316 if (len < sizeof(int))
6317 return -EINVAL;
6318
6319 len = sizeof(int);
6320
6321 val = sctp_sk(sk)->frag_interleave;
6322 if (put_user(len, optlen))
6323 return -EFAULT;
6324 if (copy_to_user(optval, &val, len))
6325 return -EFAULT;
6326
6327 return 0;
6328}
6329
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006330/*
6331 * 7.1.25. Set or Get the sctp partial delivery point
6332 * (chapter and verse is quoted at sctp_setsockopt_partial_delivery_point())
6333 */
6334static int sctp_getsockopt_partial_delivery_point(struct sock *sk, int len,
6335 char __user *optval,
6336 int __user *optlen)
6337{
YOSHIFUJI Hideaki9cbcbf42007-07-19 10:44:50 +09006338 u32 val;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006339
6340 if (len < sizeof(u32))
6341 return -EINVAL;
6342
6343 len = sizeof(u32);
6344
6345 val = sctp_sk(sk)->pd_point;
6346 if (put_user(len, optlen))
6347 return -EFAULT;
6348 if (copy_to_user(optval, &val, len))
6349 return -EFAULT;
6350
Wei Yongjun7d743b72010-12-14 16:10:41 +00006351 return 0;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006352}
6353
Vlad Yasevich70331572007-03-23 11:34:36 -07006354/*
6355 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
6356 * (chapter and verse is quoted at sctp_setsockopt_maxburst())
6357 */
6358static int sctp_getsockopt_maxburst(struct sock *sk, int len,
6359 char __user *optval,
6360 int __user *optlen)
6361{
Neil Horman219b99a2008-03-05 13:44:46 -08006362 struct sctp_assoc_value params;
6363 struct sctp_sock *sp;
6364 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07006365
Neil Horman219b99a2008-03-05 13:44:46 -08006366 if (len == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05006367 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05006368 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05006369 "Use of int in max_burst socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05006370 "Use struct sctp_assoc_value instead\n",
6371 current->comm, task_pid_nr(current));
Neil Horman219b99a2008-03-05 13:44:46 -08006372 params.assoc_id = 0;
Wei Yongjunc6db93a2009-03-02 09:46:12 +00006373 } else if (len >= sizeof(struct sctp_assoc_value)) {
6374 len = sizeof(struct sctp_assoc_value);
Neil Horman219b99a2008-03-05 13:44:46 -08006375 if (copy_from_user(&params, optval, len))
6376 return -EFAULT;
6377 } else
6378 return -EINVAL;
Vlad Yasevich70331572007-03-23 11:34:36 -07006379
Neil Horman219b99a2008-03-05 13:44:46 -08006380 sp = sctp_sk(sk);
Vlad Yasevich70331572007-03-23 11:34:36 -07006381
Neil Horman219b99a2008-03-05 13:44:46 -08006382 if (params.assoc_id != 0) {
6383 asoc = sctp_id2assoc(sk, params.assoc_id);
6384 if (!asoc)
6385 return -EINVAL;
6386 params.assoc_value = asoc->max_burst;
6387 } else
6388 params.assoc_value = sp->max_burst;
6389
6390 if (len == sizeof(int)) {
6391 if (copy_to_user(optval, &params.assoc_value, len))
6392 return -EFAULT;
6393 } else {
6394 if (copy_to_user(optval, &params, len))
6395 return -EFAULT;
6396 }
6397
6398 return 0;
6399
Vlad Yasevich70331572007-03-23 11:34:36 -07006400}
6401
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006402static int sctp_getsockopt_hmac_ident(struct sock *sk, int len,
6403 char __user *optval, int __user *optlen)
6404{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006405 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006406 struct sctp_hmacalgo __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006407 struct sctp_hmac_algo_param *hmacs;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006408 __u16 data_len = 0;
6409 u32 num_idents;
Xin Long7a84bd42016-02-03 23:33:30 +08006410 int i;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006411
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006412 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006413 return -EACCES;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006414
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006415 hmacs = ep->auth_hmacs_list;
Xin Long3c918702017-06-30 11:52:16 +08006416 data_len = ntohs(hmacs->param_hdr.length) -
6417 sizeof(struct sctp_paramhdr);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006418
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006419 if (len < sizeof(struct sctp_hmacalgo) + data_len)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006420 return -EINVAL;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006421
6422 len = sizeof(struct sctp_hmacalgo) + data_len;
6423 num_idents = data_len / sizeof(u16);
6424
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006425 if (put_user(len, optlen))
6426 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006427 if (put_user(num_idents, &p->shmac_num_idents))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006428 return -EFAULT;
Xin Long7a84bd42016-02-03 23:33:30 +08006429 for (i = 0; i < num_idents; i++) {
6430 __u16 hmacid = ntohs(hmacs->hmac_ids[i]);
6431
6432 if (copy_to_user(&p->shmac_idents[i], &hmacid, sizeof(__u16)))
6433 return -EFAULT;
6434 }
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006435 return 0;
6436}
6437
6438static int sctp_getsockopt_active_key(struct sock *sk, int len,
6439 char __user *optval, int __user *optlen)
6440{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006441 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006442 struct sctp_authkeyid val;
6443 struct sctp_association *asoc;
6444
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006445 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006446 return -EACCES;
6447
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006448 if (len < sizeof(struct sctp_authkeyid))
6449 return -EINVAL;
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006450
6451 len = sizeof(struct sctp_authkeyid);
6452 if (copy_from_user(&val, optval, len))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006453 return -EFAULT;
6454
6455 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
6456 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
6457 return -EINVAL;
6458
6459 if (asoc)
6460 val.scact_keynumber = asoc->active_key_id;
6461 else
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006462 val.scact_keynumber = ep->active_key_id;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006463
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006464 if (put_user(len, optlen))
6465 return -EFAULT;
6466 if (copy_to_user(optval, &val, len))
6467 return -EFAULT;
6468
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006469 return 0;
6470}
6471
6472static int sctp_getsockopt_peer_auth_chunks(struct sock *sk, int len,
6473 char __user *optval, int __user *optlen)
6474{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006475 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Al Viro411223c2007-10-14 19:21:20 +01006476 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006477 struct sctp_authchunks val;
6478 struct sctp_association *asoc;
6479 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006480 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006481 char __user *to;
6482
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006483 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006484 return -EACCES;
6485
6486 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006487 return -EINVAL;
6488
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006489 if (copy_from_user(&val, optval, sizeof(val)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006490 return -EFAULT;
6491
Al Viro411223c2007-10-14 19:21:20 +01006492 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006493 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6494 if (!asoc)
6495 return -EINVAL;
6496
6497 ch = asoc->peer.peer_chunks;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006498 if (!ch)
6499 goto num;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006500
6501 /* See if the user provided enough room for all the data */
Xin Long3c918702017-06-30 11:52:16 +08006502 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
Vlad Yasevichb40db682008-02-27 14:40:37 -05006503 if (len < num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006504 return -EINVAL;
6505
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006506 if (copy_to_user(to, ch->chunks, num_chunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006507 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006508num:
6509 len = sizeof(struct sctp_authchunks) + num_chunks;
wangweidong8d726512013-12-23 12:16:53 +08006510 if (put_user(len, optlen))
6511 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05006512 if (put_user(num_chunks, &p->gauth_number_of_chunks))
6513 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006514 return 0;
6515}
6516
6517static int sctp_getsockopt_local_auth_chunks(struct sock *sk, int len,
6518 char __user *optval, int __user *optlen)
6519{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006520 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Al Viro411223c2007-10-14 19:21:20 +01006521 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006522 struct sctp_authchunks val;
6523 struct sctp_association *asoc;
6524 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006525 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006526 char __user *to;
6527
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006528 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006529 return -EACCES;
6530
6531 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006532 return -EINVAL;
6533
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006534 if (copy_from_user(&val, optval, sizeof(val)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006535 return -EFAULT;
6536
Al Viro411223c2007-10-14 19:21:20 +01006537 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006538 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6539 if (!asoc && val.gauth_assoc_id && sctp_style(sk, UDP))
6540 return -EINVAL;
6541
6542 if (asoc)
wangweidong26ac8e52013-12-23 12:16:51 +08006543 ch = (struct sctp_chunks_param *)asoc->c.auth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006544 else
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006545 ch = ep->auth_chunk_list;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006546
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006547 if (!ch)
6548 goto num;
6549
Xin Long3c918702017-06-30 11:52:16 +08006550 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006551 if (len < sizeof(struct sctp_authchunks) + num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006552 return -EINVAL;
6553
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006554 if (copy_to_user(to, ch->chunks, num_chunks))
6555 return -EFAULT;
6556num:
6557 len = sizeof(struct sctp_authchunks) + num_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006558 if (put_user(len, optlen))
6559 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05006560 if (put_user(num_chunks, &p->gauth_number_of_chunks))
6561 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006562
6563 return 0;
6564}
6565
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08006566/*
6567 * 8.2.5. Get the Current Number of Associations (SCTP_GET_ASSOC_NUMBER)
6568 * This option gets the current number of associations that are attached
6569 * to a one-to-many style socket. The option value is an uint32_t.
6570 */
6571static int sctp_getsockopt_assoc_number(struct sock *sk, int len,
6572 char __user *optval, int __user *optlen)
6573{
6574 struct sctp_sock *sp = sctp_sk(sk);
6575 struct sctp_association *asoc;
6576 u32 val = 0;
6577
6578 if (sctp_style(sk, TCP))
6579 return -EOPNOTSUPP;
6580
6581 if (len < sizeof(u32))
6582 return -EINVAL;
6583
6584 len = sizeof(u32);
6585
6586 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6587 val++;
6588 }
6589
6590 if (put_user(len, optlen))
6591 return -EFAULT;
6592 if (copy_to_user(optval, &val, len))
6593 return -EFAULT;
6594
6595 return 0;
6596}
6597
Wei Yongjun209ba422011-04-17 17:27:08 +00006598/*
Michio Honda7dc04d72011-04-26 20:16:31 +09006599 * 8.1.23 SCTP_AUTO_ASCONF
6600 * See the corresponding setsockopt entry as description
6601 */
6602static int sctp_getsockopt_auto_asconf(struct sock *sk, int len,
6603 char __user *optval, int __user *optlen)
6604{
6605 int val = 0;
6606
6607 if (len < sizeof(int))
6608 return -EINVAL;
6609
6610 len = sizeof(int);
6611 if (sctp_sk(sk)->do_auto_asconf && sctp_is_ep_boundall(sk))
6612 val = 1;
6613 if (put_user(len, optlen))
6614 return -EFAULT;
6615 if (copy_to_user(optval, &val, len))
6616 return -EFAULT;
6617 return 0;
6618}
6619
6620/*
Wei Yongjun209ba422011-04-17 17:27:08 +00006621 * 8.2.6. Get the Current Identifiers of Associations
6622 * (SCTP_GET_ASSOC_ID_LIST)
6623 *
6624 * This option gets the current list of SCTP association identifiers of
6625 * the SCTP associations handled by a one-to-many style socket.
6626 */
6627static int sctp_getsockopt_assoc_ids(struct sock *sk, int len,
6628 char __user *optval, int __user *optlen)
6629{
6630 struct sctp_sock *sp = sctp_sk(sk);
6631 struct sctp_association *asoc;
6632 struct sctp_assoc_ids *ids;
6633 u32 num = 0;
6634
6635 if (sctp_style(sk, TCP))
6636 return -EOPNOTSUPP;
6637
6638 if (len < sizeof(struct sctp_assoc_ids))
6639 return -EINVAL;
6640
6641 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6642 num++;
6643 }
6644
6645 if (len < sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num)
6646 return -EINVAL;
6647
6648 len = sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num;
6649
Marcelo Ricardo Leitner9ba0b962015-12-23 16:28:40 -02006650 ids = kmalloc(len, GFP_USER | __GFP_NOWARN);
Wei Yongjun209ba422011-04-17 17:27:08 +00006651 if (unlikely(!ids))
6652 return -ENOMEM;
6653
6654 ids->gaids_number_of_ids = num;
6655 num = 0;
6656 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6657 ids->gaids_assoc_id[num++] = asoc->assoc_id;
6658 }
6659
6660 if (put_user(len, optlen) || copy_to_user(optval, ids, len)) {
6661 kfree(ids);
6662 return -EFAULT;
6663 }
6664
6665 kfree(ids);
6666 return 0;
6667}
6668
Neil Horman5aa93bc2012-07-21 07:56:07 +00006669/*
6670 * SCTP_PEER_ADDR_THLDS
6671 *
6672 * This option allows us to fetch the partially failed threshold for one or all
6673 * transports in an association. See Section 6.1 of:
6674 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
6675 */
6676static int sctp_getsockopt_paddr_thresholds(struct sock *sk,
6677 char __user *optval,
6678 int len,
6679 int __user *optlen)
6680{
6681 struct sctp_paddrthlds val;
6682 struct sctp_transport *trans;
6683 struct sctp_association *asoc;
6684
6685 if (len < sizeof(struct sctp_paddrthlds))
6686 return -EINVAL;
6687 len = sizeof(struct sctp_paddrthlds);
6688 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval, len))
6689 return -EFAULT;
6690
6691 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
6692 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
6693 if (!asoc)
6694 return -ENOENT;
6695
6696 val.spt_pathpfthld = asoc->pf_retrans;
6697 val.spt_pathmaxrxt = asoc->pathmaxrxt;
6698 } else {
6699 trans = sctp_addr_id2transport(sk, &val.spt_address,
6700 val.spt_assoc_id);
6701 if (!trans)
6702 return -ENOENT;
6703
6704 val.spt_pathmaxrxt = trans->pathmaxrxt;
6705 val.spt_pathpfthld = trans->pf_retrans;
6706 }
6707
6708 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
6709 return -EFAULT;
6710
6711 return 0;
6712}
6713
Michele Baldessari196d6752012-12-01 04:49:42 +00006714/*
6715 * SCTP_GET_ASSOC_STATS
6716 *
6717 * This option retrieves local per endpoint statistics. It is modeled
6718 * after OpenSolaris' implementation
6719 */
6720static int sctp_getsockopt_assoc_stats(struct sock *sk, int len,
6721 char __user *optval,
6722 int __user *optlen)
6723{
6724 struct sctp_assoc_stats sas;
6725 struct sctp_association *asoc = NULL;
6726
6727 /* User must provide at least the assoc id */
6728 if (len < sizeof(sctp_assoc_t))
6729 return -EINVAL;
6730
Guenter Roeck726bc6b2013-02-27 10:57:31 +00006731 /* Allow the struct to grow and fill in as much as possible */
6732 len = min_t(size_t, len, sizeof(sas));
6733
Michele Baldessari196d6752012-12-01 04:49:42 +00006734 if (copy_from_user(&sas, optval, len))
6735 return -EFAULT;
6736
6737 asoc = sctp_id2assoc(sk, sas.sas_assoc_id);
6738 if (!asoc)
6739 return -EINVAL;
6740
6741 sas.sas_rtxchunks = asoc->stats.rtxchunks;
6742 sas.sas_gapcnt = asoc->stats.gapcnt;
6743 sas.sas_outofseqtsns = asoc->stats.outofseqtsns;
6744 sas.sas_osacks = asoc->stats.osacks;
6745 sas.sas_isacks = asoc->stats.isacks;
6746 sas.sas_octrlchunks = asoc->stats.octrlchunks;
6747 sas.sas_ictrlchunks = asoc->stats.ictrlchunks;
6748 sas.sas_oodchunks = asoc->stats.oodchunks;
6749 sas.sas_iodchunks = asoc->stats.iodchunks;
6750 sas.sas_ouodchunks = asoc->stats.ouodchunks;
6751 sas.sas_iuodchunks = asoc->stats.iuodchunks;
6752 sas.sas_idupchunks = asoc->stats.idupchunks;
6753 sas.sas_opackets = asoc->stats.opackets;
6754 sas.sas_ipackets = asoc->stats.ipackets;
6755
6756 /* New high max rto observed, will return 0 if not a single
6757 * RTO update took place. obs_rto_ipaddr will be bogus
6758 * in such a case
6759 */
6760 sas.sas_maxrto = asoc->stats.max_obs_rto;
6761 memcpy(&sas.sas_obs_rto_ipaddr, &asoc->stats.obs_rto_ipaddr,
6762 sizeof(struct sockaddr_storage));
6763
6764 /* Mark beginning of a new observation period */
6765 asoc->stats.max_obs_rto = asoc->rto_min;
6766
Michele Baldessari196d6752012-12-01 04:49:42 +00006767 if (put_user(len, optlen))
6768 return -EFAULT;
6769
Daniel Borkmannbb333812013-06-28 19:49:40 +02006770 pr_debug("%s: len:%d, assoc_id:%d\n", __func__, len, sas.sas_assoc_id);
Michele Baldessari196d6752012-12-01 04:49:42 +00006771
6772 if (copy_to_user(optval, &sas, len))
6773 return -EFAULT;
6774
6775 return 0;
6776}
6777
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02006778static int sctp_getsockopt_recvrcvinfo(struct sock *sk, int len,
6779 char __user *optval,
6780 int __user *optlen)
6781{
6782 int val = 0;
6783
6784 if (len < sizeof(int))
6785 return -EINVAL;
6786
6787 len = sizeof(int);
6788 if (sctp_sk(sk)->recvrcvinfo)
6789 val = 1;
6790 if (put_user(len, optlen))
6791 return -EFAULT;
6792 if (copy_to_user(optval, &val, len))
6793 return -EFAULT;
6794
6795 return 0;
6796}
6797
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02006798static int sctp_getsockopt_recvnxtinfo(struct sock *sk, int len,
6799 char __user *optval,
6800 int __user *optlen)
6801{
6802 int val = 0;
6803
6804 if (len < sizeof(int))
6805 return -EINVAL;
6806
6807 len = sizeof(int);
6808 if (sctp_sk(sk)->recvnxtinfo)
6809 val = 1;
6810 if (put_user(len, optlen))
6811 return -EFAULT;
6812 if (copy_to_user(optval, &val, len))
6813 return -EFAULT;
6814
6815 return 0;
6816}
6817
Xin Long28aa4c22016-07-09 19:47:40 +08006818static int sctp_getsockopt_pr_supported(struct sock *sk, int len,
6819 char __user *optval,
6820 int __user *optlen)
6821{
6822 struct sctp_assoc_value params;
6823 struct sctp_association *asoc;
6824 int retval = -EFAULT;
6825
6826 if (len < sizeof(params)) {
6827 retval = -EINVAL;
6828 goto out;
6829 }
6830
6831 len = sizeof(params);
6832 if (copy_from_user(&params, optval, len))
6833 goto out;
6834
6835 asoc = sctp_id2assoc(sk, params.assoc_id);
6836 if (asoc) {
6837 params.assoc_value = asoc->prsctp_enable;
6838 } else if (!params.assoc_id) {
6839 struct sctp_sock *sp = sctp_sk(sk);
6840
6841 params.assoc_value = sp->ep->prsctp_enable;
6842 } else {
6843 retval = -EINVAL;
6844 goto out;
6845 }
6846
6847 if (put_user(len, optlen))
6848 goto out;
6849
6850 if (copy_to_user(optval, &params, len))
6851 goto out;
6852
6853 retval = 0;
6854
6855out:
6856 return retval;
6857}
6858
Xin Longf959fb42016-07-09 19:47:41 +08006859static int sctp_getsockopt_default_prinfo(struct sock *sk, int len,
6860 char __user *optval,
6861 int __user *optlen)
6862{
6863 struct sctp_default_prinfo info;
6864 struct sctp_association *asoc;
6865 int retval = -EFAULT;
6866
6867 if (len < sizeof(info)) {
6868 retval = -EINVAL;
6869 goto out;
6870 }
6871
6872 len = sizeof(info);
6873 if (copy_from_user(&info, optval, len))
6874 goto out;
6875
6876 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
6877 if (asoc) {
6878 info.pr_policy = SCTP_PR_POLICY(asoc->default_flags);
6879 info.pr_value = asoc->default_timetolive;
6880 } else if (!info.pr_assoc_id) {
6881 struct sctp_sock *sp = sctp_sk(sk);
6882
6883 info.pr_policy = SCTP_PR_POLICY(sp->default_flags);
6884 info.pr_value = sp->default_timetolive;
6885 } else {
6886 retval = -EINVAL;
6887 goto out;
6888 }
6889
6890 if (put_user(len, optlen))
6891 goto out;
6892
6893 if (copy_to_user(optval, &info, len))
6894 goto out;
6895
6896 retval = 0;
6897
6898out:
6899 return retval;
6900}
6901
Xin Long826d2532016-07-09 19:47:42 +08006902static int sctp_getsockopt_pr_assocstatus(struct sock *sk, int len,
6903 char __user *optval,
6904 int __user *optlen)
6905{
6906 struct sctp_prstatus params;
6907 struct sctp_association *asoc;
6908 int policy;
6909 int retval = -EINVAL;
6910
6911 if (len < sizeof(params))
6912 goto out;
6913
6914 len = sizeof(params);
6915 if (copy_from_user(&params, optval, len)) {
6916 retval = -EFAULT;
6917 goto out;
6918 }
6919
6920 policy = params.sprstat_policy;
6921 if (policy & ~SCTP_PR_SCTP_MASK)
6922 goto out;
6923
6924 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
6925 if (!asoc)
6926 goto out;
6927
6928 if (policy == SCTP_PR_SCTP_NONE) {
6929 params.sprstat_abandoned_unsent = 0;
6930 params.sprstat_abandoned_sent = 0;
6931 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
6932 params.sprstat_abandoned_unsent +=
6933 asoc->abandoned_unsent[policy];
6934 params.sprstat_abandoned_sent +=
6935 asoc->abandoned_sent[policy];
6936 }
6937 } else {
6938 params.sprstat_abandoned_unsent =
6939 asoc->abandoned_unsent[__SCTP_PR_INDEX(policy)];
6940 params.sprstat_abandoned_sent =
6941 asoc->abandoned_sent[__SCTP_PR_INDEX(policy)];
6942 }
6943
6944 if (put_user(len, optlen)) {
6945 retval = -EFAULT;
6946 goto out;
6947 }
6948
6949 if (copy_to_user(optval, &params, len)) {
6950 retval = -EFAULT;
6951 goto out;
6952 }
6953
6954 retval = 0;
6955
6956out:
6957 return retval;
6958}
6959
Xin Longd229d482017-04-01 17:07:46 +08006960static int sctp_getsockopt_pr_streamstatus(struct sock *sk, int len,
6961 char __user *optval,
6962 int __user *optlen)
6963{
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03006964 struct sctp_stream_out_ext *streamoute;
Xin Longd229d482017-04-01 17:07:46 +08006965 struct sctp_association *asoc;
6966 struct sctp_prstatus params;
6967 int retval = -EINVAL;
6968 int policy;
6969
6970 if (len < sizeof(params))
6971 goto out;
6972
6973 len = sizeof(params);
6974 if (copy_from_user(&params, optval, len)) {
6975 retval = -EFAULT;
6976 goto out;
6977 }
6978
6979 policy = params.sprstat_policy;
6980 if (policy & ~SCTP_PR_SCTP_MASK)
6981 goto out;
6982
6983 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
Xin Longcee360a2017-05-31 16:36:31 +08006984 if (!asoc || params.sprstat_sid >= asoc->stream.outcnt)
Xin Longd229d482017-04-01 17:07:46 +08006985 goto out;
6986
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03006987 streamoute = asoc->stream.out[params.sprstat_sid].ext;
6988 if (!streamoute) {
6989 /* Not allocated yet, means all stats are 0 */
6990 params.sprstat_abandoned_unsent = 0;
6991 params.sprstat_abandoned_sent = 0;
6992 retval = 0;
6993 goto out;
6994 }
6995
Xin Longd229d482017-04-01 17:07:46 +08006996 if (policy == SCTP_PR_SCTP_NONE) {
6997 params.sprstat_abandoned_unsent = 0;
6998 params.sprstat_abandoned_sent = 0;
6999 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
7000 params.sprstat_abandoned_unsent +=
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007001 streamoute->abandoned_unsent[policy];
Xin Longd229d482017-04-01 17:07:46 +08007002 params.sprstat_abandoned_sent +=
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007003 streamoute->abandoned_sent[policy];
Xin Longd229d482017-04-01 17:07:46 +08007004 }
7005 } else {
7006 params.sprstat_abandoned_unsent =
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007007 streamoute->abandoned_unsent[__SCTP_PR_INDEX(policy)];
Xin Longd229d482017-04-01 17:07:46 +08007008 params.sprstat_abandoned_sent =
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007009 streamoute->abandoned_sent[__SCTP_PR_INDEX(policy)];
Xin Longd229d482017-04-01 17:07:46 +08007010 }
7011
7012 if (put_user(len, optlen) || copy_to_user(optval, &params, len)) {
7013 retval = -EFAULT;
7014 goto out;
7015 }
7016
7017 retval = 0;
7018
7019out:
7020 return retval;
7021}
7022
Xin Longc0d8bab2017-03-10 12:11:12 +08007023static int sctp_getsockopt_reconfig_supported(struct sock *sk, int len,
7024 char __user *optval,
7025 int __user *optlen)
7026{
7027 struct sctp_assoc_value params;
7028 struct sctp_association *asoc;
7029 int retval = -EFAULT;
7030
7031 if (len < sizeof(params)) {
7032 retval = -EINVAL;
7033 goto out;
7034 }
7035
7036 len = sizeof(params);
7037 if (copy_from_user(&params, optval, len))
7038 goto out;
7039
7040 asoc = sctp_id2assoc(sk, params.assoc_id);
7041 if (asoc) {
7042 params.assoc_value = asoc->reconf_enable;
7043 } else if (!params.assoc_id) {
7044 struct sctp_sock *sp = sctp_sk(sk);
7045
7046 params.assoc_value = sp->ep->reconf_enable;
7047 } else {
7048 retval = -EINVAL;
7049 goto out;
7050 }
7051
7052 if (put_user(len, optlen))
7053 goto out;
7054
7055 if (copy_to_user(optval, &params, len))
7056 goto out;
7057
7058 retval = 0;
7059
7060out:
7061 return retval;
7062}
7063
Xin Long9fb657a2017-01-18 00:44:46 +08007064static int sctp_getsockopt_enable_strreset(struct sock *sk, int len,
7065 char __user *optval,
7066 int __user *optlen)
7067{
7068 struct sctp_assoc_value params;
7069 struct sctp_association *asoc;
7070 int retval = -EFAULT;
7071
7072 if (len < sizeof(params)) {
7073 retval = -EINVAL;
7074 goto out;
7075 }
7076
7077 len = sizeof(params);
7078 if (copy_from_user(&params, optval, len))
7079 goto out;
7080
7081 asoc = sctp_id2assoc(sk, params.assoc_id);
7082 if (asoc) {
7083 params.assoc_value = asoc->strreset_enable;
7084 } else if (!params.assoc_id) {
7085 struct sctp_sock *sp = sctp_sk(sk);
7086
7087 params.assoc_value = sp->ep->strreset_enable;
7088 } else {
7089 retval = -EINVAL;
7090 goto out;
7091 }
7092
7093 if (put_user(len, optlen))
7094 goto out;
7095
7096 if (copy_to_user(optval, &params, len))
7097 goto out;
7098
7099 retval = 0;
7100
7101out:
7102 return retval;
7103}
7104
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03007105static int sctp_getsockopt_scheduler(struct sock *sk, int len,
7106 char __user *optval,
7107 int __user *optlen)
7108{
7109 struct sctp_assoc_value params;
7110 struct sctp_association *asoc;
7111 int retval = -EFAULT;
7112
7113 if (len < sizeof(params)) {
7114 retval = -EINVAL;
7115 goto out;
7116 }
7117
7118 len = sizeof(params);
7119 if (copy_from_user(&params, optval, len))
7120 goto out;
7121
7122 asoc = sctp_id2assoc(sk, params.assoc_id);
7123 if (!asoc) {
7124 retval = -EINVAL;
7125 goto out;
7126 }
7127
7128 params.assoc_value = sctp_sched_get_sched(asoc);
7129
7130 if (put_user(len, optlen))
7131 goto out;
7132
7133 if (copy_to_user(optval, &params, len))
7134 goto out;
7135
7136 retval = 0;
7137
7138out:
7139 return retval;
7140}
7141
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03007142static int sctp_getsockopt_scheduler_value(struct sock *sk, int len,
7143 char __user *optval,
7144 int __user *optlen)
7145{
7146 struct sctp_stream_value params;
7147 struct sctp_association *asoc;
7148 int retval = -EFAULT;
7149
7150 if (len < sizeof(params)) {
7151 retval = -EINVAL;
7152 goto out;
7153 }
7154
7155 len = sizeof(params);
7156 if (copy_from_user(&params, optval, len))
7157 goto out;
7158
7159 asoc = sctp_id2assoc(sk, params.assoc_id);
7160 if (!asoc) {
7161 retval = -EINVAL;
7162 goto out;
7163 }
7164
7165 retval = sctp_sched_get_value(asoc, params.stream_id,
7166 &params.stream_value);
7167 if (retval)
7168 goto out;
7169
7170 if (put_user(len, optlen)) {
7171 retval = -EFAULT;
7172 goto out;
7173 }
7174
7175 if (copy_to_user(optval, &params, len)) {
7176 retval = -EFAULT;
7177 goto out;
7178 }
7179
7180out:
7181 return retval;
7182}
7183
Xin Long772a5862017-12-08 21:03:58 +08007184static int sctp_getsockopt_interleaving_supported(struct sock *sk, int len,
7185 char __user *optval,
7186 int __user *optlen)
7187{
7188 struct sctp_assoc_value params;
7189 struct sctp_association *asoc;
7190 int retval = -EFAULT;
7191
7192 if (len < sizeof(params)) {
7193 retval = -EINVAL;
7194 goto out;
7195 }
7196
7197 len = sizeof(params);
7198 if (copy_from_user(&params, optval, len))
7199 goto out;
7200
7201 asoc = sctp_id2assoc(sk, params.assoc_id);
7202 if (asoc) {
7203 params.assoc_value = asoc->intl_enable;
7204 } else if (!params.assoc_id) {
7205 struct sctp_sock *sp = sctp_sk(sk);
7206
7207 params.assoc_value = sp->strm_interleave;
7208 } else {
7209 retval = -EINVAL;
7210 goto out;
7211 }
7212
7213 if (put_user(len, optlen))
7214 goto out;
7215
7216 if (copy_to_user(optval, &params, len))
7217 goto out;
7218
7219 retval = 0;
7220
7221out:
7222 return retval;
7223}
7224
Xin Longb0e9a2f2018-06-28 15:31:00 +08007225static int sctp_getsockopt_reuse_port(struct sock *sk, int len,
7226 char __user *optval,
7227 int __user *optlen)
7228{
7229 int val;
7230
7231 if (len < sizeof(int))
7232 return -EINVAL;
7233
7234 len = sizeof(int);
7235 val = sctp_sk(sk)->reuse;
7236 if (put_user(len, optlen))
7237 return -EFAULT;
7238
7239 if (copy_to_user(optval, &val, len))
7240 return -EFAULT;
7241
7242 return 0;
7243}
7244
Daniel Borkmanndda91922013-06-17 11:40:05 +02007245static int sctp_getsockopt(struct sock *sk, int level, int optname,
7246 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007247{
7248 int retval = 0;
7249 int len;
7250
Daniel Borkmannbb333812013-06-28 19:49:40 +02007251 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007252
7253 /* I can hardly begin to describe how wrong this is. This is
7254 * so broken as to be worse than useless. The API draft
7255 * REALLY is NOT helpful here... I am not convinced that the
7256 * semantics of getsockopt() with a level OTHER THAN SOL_SCTP
7257 * are at all well-founded.
7258 */
7259 if (level != SOL_SCTP) {
7260 struct sctp_af *af = sctp_sk(sk)->pf->af;
7261
7262 retval = af->getsockopt(sk, level, optname, optval, optlen);
7263 return retval;
7264 }
7265
7266 if (get_user(len, optlen))
7267 return -EFAULT;
7268
Jiri Slabya4b8e712016-10-21 14:13:24 +02007269 if (len < 0)
7270 return -EINVAL;
7271
wangweidong048ed4b2014-01-21 15:44:11 +08007272 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007273
7274 switch (optname) {
7275 case SCTP_STATUS:
7276 retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen);
7277 break;
7278 case SCTP_DISABLE_FRAGMENTS:
7279 retval = sctp_getsockopt_disable_fragments(sk, len, optval,
7280 optlen);
7281 break;
7282 case SCTP_EVENTS:
7283 retval = sctp_getsockopt_events(sk, len, optval, optlen);
7284 break;
7285 case SCTP_AUTOCLOSE:
7286 retval = sctp_getsockopt_autoclose(sk, len, optval, optlen);
7287 break;
7288 case SCTP_SOCKOPT_PEELOFF:
7289 retval = sctp_getsockopt_peeloff(sk, len, optval, optlen);
7290 break;
Neil Horman2cb5c8e2017-06-30 13:32:57 -04007291 case SCTP_SOCKOPT_PEELOFF_FLAGS:
7292 retval = sctp_getsockopt_peeloff_flags(sk, len, optval, optlen);
7293 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007294 case SCTP_PEER_ADDR_PARAMS:
7295 retval = sctp_getsockopt_peer_addr_params(sk, len, optval,
7296 optlen);
7297 break;
Shan Wei4580ccc2011-01-18 22:39:00 +00007298 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07007299 retval = sctp_getsockopt_delayed_ack(sk, len, optval,
Frank Filz77086102005-12-22 11:37:30 -08007300 optlen);
7301 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007302 case SCTP_INITMSG:
7303 retval = sctp_getsockopt_initmsg(sk, len, optval, optlen);
7304 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007305 case SCTP_GET_PEER_ADDRS:
7306 retval = sctp_getsockopt_peer_addrs(sk, len, optval,
7307 optlen);
7308 break;
7309 case SCTP_GET_LOCAL_ADDRS:
7310 retval = sctp_getsockopt_local_addrs(sk, len, optval,
7311 optlen);
7312 break;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04007313 case SCTP_SOCKOPT_CONNECTX3:
7314 retval = sctp_getsockopt_connectx3(sk, len, optval, optlen);
7315 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007316 case SCTP_DEFAULT_SEND_PARAM:
7317 retval = sctp_getsockopt_default_send_param(sk, len,
7318 optval, optlen);
7319 break;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02007320 case SCTP_DEFAULT_SNDINFO:
7321 retval = sctp_getsockopt_default_sndinfo(sk, len,
7322 optval, optlen);
7323 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007324 case SCTP_PRIMARY_ADDR:
7325 retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen);
7326 break;
7327 case SCTP_NODELAY:
7328 retval = sctp_getsockopt_nodelay(sk, len, optval, optlen);
7329 break;
7330 case SCTP_RTOINFO:
7331 retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen);
7332 break;
7333 case SCTP_ASSOCINFO:
7334 retval = sctp_getsockopt_associnfo(sk, len, optval, optlen);
7335 break;
7336 case SCTP_I_WANT_MAPPED_V4_ADDR:
7337 retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen);
7338 break;
7339 case SCTP_MAXSEG:
7340 retval = sctp_getsockopt_maxseg(sk, len, optval, optlen);
7341 break;
7342 case SCTP_GET_PEER_ADDR_INFO:
7343 retval = sctp_getsockopt_peer_addr_info(sk, len, optval,
7344 optlen);
7345 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08007346 case SCTP_ADAPTATION_LAYER:
7347 retval = sctp_getsockopt_adaptation_layer(sk, len, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007348 optlen);
7349 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08007350 case SCTP_CONTEXT:
7351 retval = sctp_getsockopt_context(sk, len, optval, optlen);
7352 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07007353 case SCTP_FRAGMENT_INTERLEAVE:
7354 retval = sctp_getsockopt_fragment_interleave(sk, len, optval,
7355 optlen);
7356 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07007357 case SCTP_PARTIAL_DELIVERY_POINT:
7358 retval = sctp_getsockopt_partial_delivery_point(sk, len, optval,
7359 optlen);
7360 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07007361 case SCTP_MAX_BURST:
7362 retval = sctp_getsockopt_maxburst(sk, len, optval, optlen);
7363 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007364 case SCTP_AUTH_KEY:
7365 case SCTP_AUTH_CHUNK:
7366 case SCTP_AUTH_DELETE_KEY:
Xin Long601590e2018-03-14 19:05:32 +08007367 case SCTP_AUTH_DEACTIVATE_KEY:
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007368 retval = -EOPNOTSUPP;
7369 break;
7370 case SCTP_HMAC_IDENT:
7371 retval = sctp_getsockopt_hmac_ident(sk, len, optval, optlen);
7372 break;
7373 case SCTP_AUTH_ACTIVE_KEY:
7374 retval = sctp_getsockopt_active_key(sk, len, optval, optlen);
7375 break;
7376 case SCTP_PEER_AUTH_CHUNKS:
7377 retval = sctp_getsockopt_peer_auth_chunks(sk, len, optval,
7378 optlen);
7379 break;
7380 case SCTP_LOCAL_AUTH_CHUNKS:
7381 retval = sctp_getsockopt_local_auth_chunks(sk, len, optval,
7382 optlen);
7383 break;
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08007384 case SCTP_GET_ASSOC_NUMBER:
7385 retval = sctp_getsockopt_assoc_number(sk, len, optval, optlen);
7386 break;
Wei Yongjun209ba422011-04-17 17:27:08 +00007387 case SCTP_GET_ASSOC_ID_LIST:
7388 retval = sctp_getsockopt_assoc_ids(sk, len, optval, optlen);
7389 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09007390 case SCTP_AUTO_ASCONF:
7391 retval = sctp_getsockopt_auto_asconf(sk, len, optval, optlen);
7392 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00007393 case SCTP_PEER_ADDR_THLDS:
7394 retval = sctp_getsockopt_paddr_thresholds(sk, optval, len, optlen);
7395 break;
Michele Baldessari196d6752012-12-01 04:49:42 +00007396 case SCTP_GET_ASSOC_STATS:
7397 retval = sctp_getsockopt_assoc_stats(sk, len, optval, optlen);
7398 break;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02007399 case SCTP_RECVRCVINFO:
7400 retval = sctp_getsockopt_recvrcvinfo(sk, len, optval, optlen);
7401 break;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02007402 case SCTP_RECVNXTINFO:
7403 retval = sctp_getsockopt_recvnxtinfo(sk, len, optval, optlen);
7404 break;
Xin Long28aa4c22016-07-09 19:47:40 +08007405 case SCTP_PR_SUPPORTED:
7406 retval = sctp_getsockopt_pr_supported(sk, len, optval, optlen);
7407 break;
Xin Longf959fb42016-07-09 19:47:41 +08007408 case SCTP_DEFAULT_PRINFO:
7409 retval = sctp_getsockopt_default_prinfo(sk, len, optval,
7410 optlen);
7411 break;
Xin Long826d2532016-07-09 19:47:42 +08007412 case SCTP_PR_ASSOC_STATUS:
7413 retval = sctp_getsockopt_pr_assocstatus(sk, len, optval,
7414 optlen);
7415 break;
Xin Longd229d482017-04-01 17:07:46 +08007416 case SCTP_PR_STREAM_STATUS:
7417 retval = sctp_getsockopt_pr_streamstatus(sk, len, optval,
7418 optlen);
7419 break;
Xin Longc0d8bab2017-03-10 12:11:12 +08007420 case SCTP_RECONFIG_SUPPORTED:
7421 retval = sctp_getsockopt_reconfig_supported(sk, len, optval,
7422 optlen);
7423 break;
Xin Long9fb657a2017-01-18 00:44:46 +08007424 case SCTP_ENABLE_STREAM_RESET:
7425 retval = sctp_getsockopt_enable_strreset(sk, len, optval,
7426 optlen);
7427 break;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03007428 case SCTP_STREAM_SCHEDULER:
7429 retval = sctp_getsockopt_scheduler(sk, len, optval,
7430 optlen);
7431 break;
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03007432 case SCTP_STREAM_SCHEDULER_VALUE:
7433 retval = sctp_getsockopt_scheduler_value(sk, len, optval,
7434 optlen);
7435 break;
Xin Long772a5862017-12-08 21:03:58 +08007436 case SCTP_INTERLEAVING_SUPPORTED:
7437 retval = sctp_getsockopt_interleaving_supported(sk, len, optval,
7438 optlen);
7439 break;
Xin Longb0e9a2f2018-06-28 15:31:00 +08007440 case SCTP_REUSE_PORT:
7441 retval = sctp_getsockopt_reuse_port(sk, len, optval, optlen);
7442 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007443 default:
7444 retval = -ENOPROTOOPT;
7445 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07007446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447
wangweidong048ed4b2014-01-21 15:44:11 +08007448 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007449 return retval;
7450}
7451
Craig Gallek086c6532016-02-10 11:50:35 -05007452static int sctp_hash(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007453{
7454 /* STUB */
Craig Gallek086c6532016-02-10 11:50:35 -05007455 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007456}
7457
7458static void sctp_unhash(struct sock *sk)
7459{
7460 /* STUB */
7461}
7462
7463/* Check if port is acceptable. Possibly find first available port.
7464 *
7465 * The port hash table (contained in the 'global' SCTP protocol storage
7466 * returned by struct sctp_protocol *sctp_get_protocol()). The hash
7467 * table is an array of 4096 lists (sctp_bind_hashbucket). Each
7468 * list (the list number is the port number hashed out, so as you
7469 * would expect from a hash function, all the ports in a given list have
7470 * such a number that hashes out to the same list number; you were
7471 * expecting that, right?); so each list has a set of ports, with a
7472 * link to the socket (struct sock) that uses it, the port number and
7473 * a fastreuse flag (FIXME: NPI ipg).
7474 */
7475static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007476 struct sctp_bind_hashbucket *head, struct net *, unsigned short snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007477
7478static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
7479{
Xin Longb0e9a2f2018-06-28 15:31:00 +08007480 bool reuse = (sk->sk_reuse || sctp_sk(sk)->reuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007481 struct sctp_bind_hashbucket *head; /* hash list */
Sasha Levinb67bfe02013-02-27 17:06:00 -08007482 struct sctp_bind_bucket *pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007483 unsigned short snum;
7484 int ret;
7485
Al Viro04afd8b2006-11-20 17:02:01 -08007486 snum = ntohs(addr->v4.sin_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007487
Daniel Borkmannbb333812013-06-28 19:49:40 +02007488 pr_debug("%s: begins, snum:%d\n", __func__, snum);
7489
wangweidong79b91132014-01-21 15:44:07 +08007490 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007491
7492 if (snum == 0) {
Stephen Hemminger06393002007-10-10 17:30:18 -07007493 /* Search for an available port. */
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007494 int low, high, remaining, index;
7495 unsigned int rover;
WANG Cong122ff242014-05-12 16:04:53 -07007496 struct net *net = sock_net(sk);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007497
WANG Cong122ff242014-05-12 16:04:53 -07007498 inet_get_local_port_range(net, &low, &high);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007499 remaining = (high - low) + 1;
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05007500 rover = prandom_u32() % remaining + low;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007501
Linus Torvalds1da177e2005-04-16 15:20:36 -07007502 do {
7503 rover++;
7504 if ((rover < low) || (rover > high))
7505 rover = low;
WANG Cong122ff242014-05-12 16:04:53 -07007506 if (inet_is_local_reserved_port(net, rover))
Amerigo Wange3826f12010-05-05 00:27:06 +00007507 continue;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007508 index = sctp_phashfn(sock_net(sk), rover);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007509 head = &sctp_port_hashtable[index];
wangweidong3c8e43b2014-01-21 15:44:08 +08007510 spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08007511 sctp_for_each_hentry(pp, &head->chain)
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007512 if ((pp->port == rover) &&
7513 net_eq(sock_net(sk), pp->net))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007514 goto next;
7515 break;
7516 next:
wangweidong3c8e43b2014-01-21 15:44:08 +08007517 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007518 } while (--remaining > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007519
7520 /* Exhausted local port range during search? */
7521 ret = 1;
7522 if (remaining <= 0)
7523 goto fail;
7524
7525 /* OK, here is the one we will use. HEAD (the port
7526 * hash table list entry) is non-NULL and we hold it's
7527 * mutex.
7528 */
7529 snum = rover;
7530 } else {
7531 /* We are given an specific port number; we verify
7532 * that it is not being used. If it is used, we will
7533 * exahust the search in the hash list corresponding
7534 * to the port number (snum) - we detect that with the
7535 * port iterator, pp being NULL.
7536 */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007537 head = &sctp_port_hashtable[sctp_phashfn(sock_net(sk), snum)];
wangweidong3c8e43b2014-01-21 15:44:08 +08007538 spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08007539 sctp_for_each_hentry(pp, &head->chain) {
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007540 if ((pp->port == snum) && net_eq(pp->net, sock_net(sk)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007541 goto pp_found;
7542 }
7543 }
7544 pp = NULL;
7545 goto pp_not_found;
7546pp_found:
7547 if (!hlist_empty(&pp->owner)) {
7548 /* We had a port hash table hit - there is an
7549 * available port (pp != NULL) and it is being
7550 * used by other socket (pp->owner not empty); that other
7551 * socket is going to be sk2.
7552 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007553 struct sock *sk2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007554
Daniel Borkmannbb333812013-06-28 19:49:40 +02007555 pr_debug("%s: found a possible match\n", __func__);
7556
Xin Longb0e9a2f2018-06-28 15:31:00 +08007557 if (pp->fastreuse && reuse && sk->sk_state != SCTP_SS_LISTENING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007558 goto success;
7559
7560 /* Run through the list of sockets bound to the port
7561 * (pp->port) [via the pointers bind_next and
7562 * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one,
7563 * we get the endpoint they describe and run through
7564 * the endpoint's list of IP (v4 or v6) addresses,
7565 * comparing each of the addresses with the address of
7566 * the socket sk. If we find a match, then that means
7567 * that this port/socket (sk) combination are already
7568 * in an endpoint.
7569 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08007570 sk_for_each_bound(sk2, &pp->owner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007571 struct sctp_endpoint *ep2;
7572 ep2 = sctp_sk(sk2)->ep;
7573
Vlad Yasevich4e540642008-07-18 23:06:32 -07007574 if (sk == sk2 ||
Xin Longb0e9a2f2018-06-28 15:31:00 +08007575 (reuse && (sk2->sk_reuse || sctp_sk(sk2)->reuse) &&
Vlad Yasevich4e540642008-07-18 23:06:32 -07007576 sk2->sk_state != SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007577 continue;
7578
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07007579 if (sctp_bind_addr_conflict(&ep2->base.bind_addr, addr,
7580 sctp_sk(sk2), sctp_sk(sk))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007581 ret = (long)sk2;
7582 goto fail_unlock;
7583 }
7584 }
Daniel Borkmannbb333812013-06-28 19:49:40 +02007585
7586 pr_debug("%s: found a match\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007587 }
7588pp_not_found:
7589 /* If there was a hash table miss, create a new port. */
7590 ret = 1;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007591 if (!pp && !(pp = sctp_bucket_create(head, sock_net(sk), snum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007592 goto fail_unlock;
7593
7594 /* In either case (hit or miss), make sure fastreuse is 1 only
7595 * if sk->sk_reuse is too (that is, if the caller requested
7596 * SO_REUSEADDR on this socket -sk-).
7597 */
Vlad Yasevichce5325c2007-05-04 13:34:49 -07007598 if (hlist_empty(&pp->owner)) {
Xin Longb0e9a2f2018-06-28 15:31:00 +08007599 if (reuse && sk->sk_state != SCTP_SS_LISTENING)
Vlad Yasevichce5325c2007-05-04 13:34:49 -07007600 pp->fastreuse = 1;
7601 else
7602 pp->fastreuse = 0;
7603 } else if (pp->fastreuse &&
Xin Longb0e9a2f2018-06-28 15:31:00 +08007604 (!reuse || sk->sk_state == SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007605 pp->fastreuse = 0;
7606
7607 /* We are set, so fill up all the data in the hash table
7608 * entry, tie the socket list information with the rest of the
7609 * sockets FIXME: Blurry, NPI (ipg).
7610 */
7611success:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007612 if (!sctp_sk(sk)->bind_hash) {
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007613 inet_sk(sk)->inet_num = snum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007614 sk_add_bind_node(sk, &pp->owner);
7615 sctp_sk(sk)->bind_hash = pp;
7616 }
7617 ret = 0;
7618
7619fail_unlock:
wangweidong3c8e43b2014-01-21 15:44:08 +08007620 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007621
7622fail:
wangweidong79b91132014-01-21 15:44:07 +08007623 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007624 return ret;
7625}
7626
7627/* Assign a 'snum' port to the socket. If snum == 0, an ephemeral
7628 * port is requested.
7629 */
7630static int sctp_get_port(struct sock *sk, unsigned short snum)
7631{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007632 union sctp_addr addr;
7633 struct sctp_af *af = sctp_sk(sk)->pf->af;
7634
7635 /* Set up a dummy address struct from the sk. */
7636 af->from_sk(&addr, sk);
7637 addr.v4.sin_port = htons(snum);
7638
7639 /* Note: sk->sk_num gets filled in if ephemeral port request. */
Daniel Borkmann62208f12013-06-25 18:17:30 +02007640 return !!sctp_get_port_local(sk, &addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007641}
7642
7643/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007644 * Move a socket to LISTENING state.
7645 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02007646static int sctp_listen_start(struct sock *sk, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007647{
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007648 struct sctp_sock *sp = sctp_sk(sk);
7649 struct sctp_endpoint *ep = sp->ep;
Herbert Xu5821c762016-01-24 21:20:12 +08007650 struct crypto_shash *tfm = NULL;
Neil Horman3c681982012-10-24 09:20:03 +00007651 char alg[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007652
7653 /* Allocate HMAC for generating cookie. */
Neil Horman3c681982012-10-24 09:20:03 +00007654 if (!sp->hmac && sp->sctp_hmac_alg) {
7655 sprintf(alg, "hmac(%s)", sp->sctp_hmac_alg);
Herbert Xu5821c762016-01-24 21:20:12 +08007656 tfm = crypto_alloc_shash(alg, 0, 0);
Vlad Yasevich8dc49842007-05-09 13:50:20 -07007657 if (IS_ERR(tfm)) {
Joe Perchese87cc472012-05-13 21:56:26 +00007658 net_info_ratelimited("failed to load transform for %s: %ld\n",
Neil Horman3c681982012-10-24 09:20:03 +00007659 sp->sctp_hmac_alg, PTR_ERR(tfm));
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007660 return -ENOSYS;
7661 }
7662 sctp_sk(sk)->hmac = tfm;
7663 }
7664
7665 /*
7666 * If a bind() or sctp_bindx() is not called prior to a listen()
7667 * call that allows new associations to be accepted, the system
7668 * picks an ephemeral port and will choose an address set equivalent
7669 * to binding with a wildcard address.
7670 *
7671 * This is not currently spelled out in the SCTP sockets
7672 * extensions draft, but follows the practice as seen in TCP
7673 * sockets.
7674 *
7675 */
Yafang Shaocbabf462017-12-20 11:12:54 +08007676 inet_sk_set_state(sk, SCTP_SS_LISTENING);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007677 if (!ep->base.bind_addr.port) {
7678 if (sctp_autobind(sk))
7679 return -EAGAIN;
7680 } else {
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007681 if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
Yafang Shaocbabf462017-12-20 11:12:54 +08007682 inet_sk_set_state(sk, SCTP_SS_CLOSED);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007683 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007684 }
7685 }
7686
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007687 sk->sk_max_ack_backlog = backlog;
7688 sctp_hash_endpoint(ep);
7689 return 0;
7690}
7691
7692/*
7693 * 4.1.3 / 5.1.3 listen()
7694 *
7695 * By default, new associations are not accepted for UDP style sockets.
7696 * An application uses listen() to mark a socket as being able to
7697 * accept new associations.
7698 *
7699 * On TCP style sockets, applications use listen() to ready the SCTP
7700 * endpoint for accepting inbound associations.
7701 *
7702 * On both types of endpoints a backlog of '0' disables listening.
7703 *
7704 * Move a socket to LISTENING state.
7705 */
7706int sctp_inet_listen(struct socket *sock, int backlog)
7707{
7708 struct sock *sk = sock->sk;
7709 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
7710 int err = -EINVAL;
7711
7712 if (unlikely(backlog < 0))
7713 return err;
7714
wangweidong048ed4b2014-01-21 15:44:11 +08007715 lock_sock(sk);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007716
7717 /* Peeled-off sockets are not allowed to listen(). */
7718 if (sctp_style(sk, UDP_HIGH_BANDWIDTH))
7719 goto out;
7720
7721 if (sock->state != SS_UNCONNECTED)
7722 goto out;
7723
Xin Long34b27892017-04-06 13:10:52 +08007724 if (!sctp_sstate(sk, LISTENING) && !sctp_sstate(sk, CLOSED))
7725 goto out;
7726
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007727 /* If backlog is zero, disable listening. */
7728 if (!backlog) {
7729 if (sctp_sstate(sk, CLOSED))
7730 goto out;
7731
7732 err = 0;
7733 sctp_unhash_endpoint(ep);
7734 sk->sk_state = SCTP_SS_CLOSED;
Xin Longb0e9a2f2018-06-28 15:31:00 +08007735 if (sk->sk_reuse || sctp_sk(sk)->reuse)
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007736 sctp_sk(sk)->bind_hash->fastreuse = 1;
7737 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07007738 }
7739
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007740 /* If we are already listening, just update the backlog */
7741 if (sctp_sstate(sk, LISTENING))
7742 sk->sk_max_ack_backlog = backlog;
7743 else {
7744 err = sctp_listen_start(sk, backlog);
7745 if (err)
7746 goto out;
7747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007749 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007750out:
wangweidong048ed4b2014-01-21 15:44:11 +08007751 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007752 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007753}
7754
7755/*
7756 * This function is done by modeling the current datagram_poll() and the
7757 * tcp_poll(). Note that, based on these implementations, we don't
7758 * lock the socket in this function, even though it seems that,
7759 * ideally, locking or some other mechanisms can be used to ensure
Neil Horman9bffc4a2005-12-19 14:24:40 -08007760 * the integrity of the counters (sndbuf and wmem_alloc) used
Linus Torvalds1da177e2005-04-16 15:20:36 -07007761 * in this place. We assume that we don't need locks either until proven
7762 * otherwise.
7763 *
7764 * Another thing to note is that we include the Async I/O support
7765 * here, again, by modeling the current TCP/UDP code. We don't have
7766 * a good way to test with it yet.
7767 */
Christoph Hellwig568ea882017-12-31 16:37:35 +01007768__poll_t sctp_poll_mask(struct socket *sock, __poll_t events)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007769{
7770 struct sock *sk = sock->sk;
7771 struct sctp_sock *sp = sctp_sk(sk);
Al Viroade994f2017-07-03 00:01:49 -04007772 __poll_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007773
Marcelo Ricardo Leitner486bdee2016-04-12 18:11:31 -03007774 sock_rps_record_flow(sk);
7775
Linus Torvalds1da177e2005-04-16 15:20:36 -07007776 /* A TCP-style listening socket becomes readable when the accept queue
7777 * is not empty.
7778 */
7779 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
7780 return (!list_empty(&sp->ep->asocs)) ?
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007781 (EPOLLIN | EPOLLRDNORM) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007782
7783 mask = 0;
7784
7785 /* Is there any exceptional events? */
7786 if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007787 mask |= EPOLLERR |
7788 (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? EPOLLPRI : 0);
Davide Libenzif348d702006-03-25 03:07:39 -08007789 if (sk->sk_shutdown & RCV_SHUTDOWN)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007790 mask |= EPOLLRDHUP | EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007791 if (sk->sk_shutdown == SHUTDOWN_MASK)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007792 mask |= EPOLLHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007793
7794 /* Is it readable? Reconsider this code with TCP-style support. */
Eric Dumazetdb409802010-09-06 11:13:50 +00007795 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007796 mask |= EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007797
7798 /* The association is either gone or not ready. */
7799 if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED))
7800 return mask;
7801
7802 /* Is it writable? */
7803 if (sctp_writeable(sk)) {
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007804 mask |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007805 } else {
Eric Dumazet9cd3e072015-11-29 20:03:10 -08007806 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007807 /*
7808 * Since the socket is not locked, the buffer
7809 * might be made available after the writeable check and
7810 * before the bit is set. This could cause a lost I/O
7811 * signal. tcp_poll() has a race breaker for this race
7812 * condition. Based on their implementation, we put
7813 * in the following code to cover it as well.
7814 */
7815 if (sctp_writeable(sk))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007816 mask |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007817 }
7818 return mask;
7819}
7820
7821/********************************************************************
7822 * 2nd Level Abstractions
7823 ********************************************************************/
7824
7825static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007826 struct sctp_bind_hashbucket *head, struct net *net, unsigned short snum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007827{
7828 struct sctp_bind_bucket *pp;
7829
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08007830 pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007831 if (pp) {
Li Zefan935a7f62008-04-10 01:58:06 -07007832 SCTP_DBG_OBJCNT_INC(bind_bucket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007833 pp->port = snum;
7834 pp->fastreuse = 0;
7835 INIT_HLIST_HEAD(&pp->owner);
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007836 pp->net = net;
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05007837 hlist_add_head(&pp->node, &head->chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007838 }
7839 return pp;
7840}
7841
7842/* Caller must hold hashbucket lock for this tb with local BH disabled */
7843static void sctp_bucket_destroy(struct sctp_bind_bucket *pp)
7844{
Sridhar Samudrala37fa6872006-07-21 14:45:47 -07007845 if (pp && hlist_empty(&pp->owner)) {
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05007846 __hlist_del(&pp->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007847 kmem_cache_free(sctp_bucket_cachep, pp);
7848 SCTP_DBG_OBJCNT_DEC(bind_bucket);
7849 }
7850}
7851
7852/* Release this socket's reference to a local port. */
7853static inline void __sctp_put_port(struct sock *sk)
7854{
7855 struct sctp_bind_hashbucket *head =
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007856 &sctp_port_hashtable[sctp_phashfn(sock_net(sk),
7857 inet_sk(sk)->inet_num)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007858 struct sctp_bind_bucket *pp;
7859
wangweidong3c8e43b2014-01-21 15:44:08 +08007860 spin_lock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007861 pp = sctp_sk(sk)->bind_hash;
7862 __sk_del_bind_node(sk);
7863 sctp_sk(sk)->bind_hash = NULL;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007864 inet_sk(sk)->inet_num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007865 sctp_bucket_destroy(pp);
wangweidong3c8e43b2014-01-21 15:44:08 +08007866 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007867}
7868
7869void sctp_put_port(struct sock *sk)
7870{
wangweidong79b91132014-01-21 15:44:07 +08007871 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007872 __sctp_put_port(sk);
wangweidong79b91132014-01-21 15:44:07 +08007873 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007874}
7875
7876/*
7877 * The system picks an ephemeral port and choose an address set equivalent
7878 * to binding with a wildcard address.
7879 * One of those addresses will be the primary address for the association.
7880 * This automatically enables the multihoming capability of SCTP.
7881 */
7882static int sctp_autobind(struct sock *sk)
7883{
7884 union sctp_addr autoaddr;
7885 struct sctp_af *af;
Al Viro6fbfa9f2006-11-20 17:24:53 -08007886 __be16 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007887
7888 /* Initialize a local sockaddr structure to INADDR_ANY. */
7889 af = sctp_sk(sk)->pf->af;
7890
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007891 port = htons(inet_sk(sk)->inet_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007892 af->inaddr_any(&autoaddr, port);
7893
7894 return sctp_do_bind(sk, &autoaddr, af->sockaddr_len);
7895}
7896
7897/* Parse out IPPROTO_SCTP CMSG headers. Perform only minimal validation.
7898 *
7899 * From RFC 2292
7900 * 4.2 The cmsghdr Structure *
7901 *
7902 * When ancillary data is sent or received, any number of ancillary data
7903 * objects can be specified by the msg_control and msg_controllen members of
7904 * the msghdr structure, because each object is preceded by
7905 * a cmsghdr structure defining the object's length (the cmsg_len member).
7906 * Historically Berkeley-derived implementations have passed only one object
7907 * at a time, but this API allows multiple objects to be
7908 * passed in a single call to sendmsg() or recvmsg(). The following example
7909 * shows two ancillary data objects in a control buffer.
7910 *
7911 * |<--------------------------- msg_controllen -------------------------->|
7912 * | |
7913 *
7914 * |<----- ancillary data object ----->|<----- ancillary data object ----->|
7915 *
7916 * |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->|
7917 * | | |
7918 *
7919 * |<---------- cmsg_len ---------->| |<--------- cmsg_len ----------->| |
7920 *
7921 * |<--------- CMSG_LEN() --------->| |<-------- CMSG_LEN() ---------->| |
7922 * | | | | |
7923 *
7924 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
7925 * |cmsg_|cmsg_|cmsg_|XX| |XX|cmsg_|cmsg_|cmsg_|XX| |XX|
7926 *
7927 * |len |level|type |XX|cmsg_data[]|XX|len |level|type |XX|cmsg_data[]|XX|
7928 *
7929 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
7930 * ^
7931 * |
7932 *
7933 * msg_control
7934 * points here
7935 */
Xin Longa05437a2017-08-11 10:23:48 +08007936static int sctp_msghdr_parse(const struct msghdr *msg, struct sctp_cmsgs *cmsgs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007937{
Vlad Yasevichab38fb02008-04-12 18:40:06 -07007938 struct msghdr *my_msg = (struct msghdr *)msg;
Xin Longa05437a2017-08-11 10:23:48 +08007939 struct cmsghdr *cmsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007940
Gu Zhengf95b4142014-12-11 11:22:04 +08007941 for_each_cmsghdr(cmsg, my_msg) {
Vlad Yasevichab38fb02008-04-12 18:40:06 -07007942 if (!CMSG_OK(my_msg, cmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007943 return -EINVAL;
7944
7945 /* Should we parse this header or ignore? */
7946 if (cmsg->cmsg_level != IPPROTO_SCTP)
7947 continue;
7948
7949 /* Strictly check lengths following example in SCM code. */
7950 switch (cmsg->cmsg_type) {
7951 case SCTP_INIT:
7952 /* SCTP Socket API Extension
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007953 * 5.3.1 SCTP Initiation Structure (SCTP_INIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007954 *
7955 * This cmsghdr structure provides information for
7956 * initializing new SCTP associations with sendmsg().
7957 * The SCTP_INITMSG socket option uses this same data
7958 * structure. This structure is not used for
7959 * recvmsg().
7960 *
7961 * cmsg_level cmsg_type cmsg_data[]
7962 * ------------ ------------ ----------------------
7963 * IPPROTO_SCTP SCTP_INIT struct sctp_initmsg
7964 */
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007965 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_initmsg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007966 return -EINVAL;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007967
7968 cmsgs->init = CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007969 break;
7970
7971 case SCTP_SNDRCV:
7972 /* SCTP Socket API Extension
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007973 * 5.3.2 SCTP Header Information Structure(SCTP_SNDRCV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007974 *
7975 * This cmsghdr structure specifies SCTP options for
7976 * sendmsg() and describes SCTP header information
7977 * about a received message through recvmsg().
7978 *
7979 * cmsg_level cmsg_type cmsg_data[]
7980 * ------------ ------------ ----------------------
7981 * IPPROTO_SCTP SCTP_SNDRCV struct sctp_sndrcvinfo
7982 */
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007983 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndrcvinfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007984 return -EINVAL;
7985
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007986 cmsgs->srinfo = CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007987
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007988 if (cmsgs->srinfo->sinfo_flags &
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07007989 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
Xin Long49102802018-03-05 20:44:20 +08007990 SCTP_SACK_IMMEDIATELY | SCTP_SENDALL |
7991 SCTP_PR_SCTP_MASK | SCTP_ABORT | SCTP_EOF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007992 return -EINVAL;
7993 break;
7994
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007995 case SCTP_SNDINFO:
7996 /* SCTP Socket API Extension
7997 * 5.3.4 SCTP Send Information Structure (SCTP_SNDINFO)
7998 *
7999 * This cmsghdr structure specifies SCTP options for
8000 * sendmsg(). This structure and SCTP_RCVINFO replaces
8001 * SCTP_SNDRCV which has been deprecated.
8002 *
8003 * cmsg_level cmsg_type cmsg_data[]
8004 * ------------ ------------ ---------------------
8005 * IPPROTO_SCTP SCTP_SNDINFO struct sctp_sndinfo
8006 */
8007 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndinfo)))
8008 return -EINVAL;
8009
8010 cmsgs->sinfo = CMSG_DATA(cmsg);
8011
8012 if (cmsgs->sinfo->snd_flags &
8013 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
Xin Long49102802018-03-05 20:44:20 +08008014 SCTP_SACK_IMMEDIATELY | SCTP_SENDALL |
8015 SCTP_PR_SCTP_MASK | SCTP_ABORT | SCTP_EOF))
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008016 return -EINVAL;
8017 break;
Xin Longed63afb2018-03-05 20:44:18 +08008018 case SCTP_PRINFO:
8019 /* SCTP Socket API Extension
8020 * 5.3.7 SCTP PR-SCTP Information Structure (SCTP_PRINFO)
8021 *
8022 * This cmsghdr structure specifies SCTP options for sendmsg().
8023 *
8024 * cmsg_level cmsg_type cmsg_data[]
8025 * ------------ ------------ ---------------------
8026 * IPPROTO_SCTP SCTP_PRINFO struct sctp_prinfo
8027 */
8028 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_prinfo)))
8029 return -EINVAL;
8030
8031 cmsgs->prinfo = CMSG_DATA(cmsg);
8032 if (cmsgs->prinfo->pr_policy & ~SCTP_PR_SCTP_MASK)
8033 return -EINVAL;
8034
8035 if (cmsgs->prinfo->pr_policy == SCTP_PR_SCTP_NONE)
8036 cmsgs->prinfo->pr_value = 0;
8037 break;
Xin Long3ff547c2018-03-14 19:05:31 +08008038 case SCTP_AUTHINFO:
8039 /* SCTP Socket API Extension
8040 * 5.3.8 SCTP AUTH Information Structure (SCTP_AUTHINFO)
8041 *
8042 * This cmsghdr structure specifies SCTP options for sendmsg().
8043 *
8044 * cmsg_level cmsg_type cmsg_data[]
8045 * ------------ ------------ ---------------------
8046 * IPPROTO_SCTP SCTP_AUTHINFO struct sctp_authinfo
8047 */
8048 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_authinfo)))
8049 return -EINVAL;
8050
8051 cmsgs->authinfo = CMSG_DATA(cmsg);
8052 break;
Xin Long2c0dbaa2018-03-05 20:44:19 +08008053 case SCTP_DSTADDRV4:
8054 case SCTP_DSTADDRV6:
8055 /* SCTP Socket API Extension
8056 * 5.3.9/10 SCTP Destination IPv4/6 Address Structure (SCTP_DSTADDRV4/6)
8057 *
8058 * This cmsghdr structure specifies SCTP options for sendmsg().
8059 *
8060 * cmsg_level cmsg_type cmsg_data[]
8061 * ------------ ------------ ---------------------
8062 * IPPROTO_SCTP SCTP_DSTADDRV4 struct in_addr
8063 * ------------ ------------ ---------------------
8064 * IPPROTO_SCTP SCTP_DSTADDRV6 struct in6_addr
8065 */
8066 cmsgs->addrs_msg = my_msg;
8067 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008068 default:
8069 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07008070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008071 }
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008072
Linus Torvalds1da177e2005-04-16 15:20:36 -07008073 return 0;
8074}
8075
8076/*
8077 * Wait for a packet..
8078 * Note: This function is the same function as in core/datagram.c
8079 * with a few modifications to make lksctp work.
8080 */
wangweidong26ac8e52013-12-23 12:16:51 +08008081static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008082{
8083 int error;
8084 DEFINE_WAIT(wait);
8085
Eric Dumazetaa395142010-04-20 13:03:51 +00008086 prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008087
8088 /* Socket errors? */
8089 error = sock_error(sk);
8090 if (error)
8091 goto out;
8092
8093 if (!skb_queue_empty(&sk->sk_receive_queue))
8094 goto ready;
8095
8096 /* Socket shut down? */
8097 if (sk->sk_shutdown & RCV_SHUTDOWN)
8098 goto out;
8099
8100 /* Sequenced packets can come disconnected. If so we report the
8101 * problem.
8102 */
8103 error = -ENOTCONN;
8104
8105 /* Is there a good reason to think that we may receive some data? */
8106 if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING))
8107 goto out;
8108
8109 /* Handle signals. */
8110 if (signal_pending(current))
8111 goto interrupted;
8112
8113 /* Let another process have a go. Since we are going to sleep
8114 * anyway. Note: This may cause odd behaviors if the message
8115 * does not fit in the user's buffer, but this seems to be the
8116 * only way to honor MSG_DONTWAIT realistically.
8117 */
wangweidong048ed4b2014-01-21 15:44:11 +08008118 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008119 *timeo_p = schedule_timeout(*timeo_p);
wangweidong048ed4b2014-01-21 15:44:11 +08008120 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008121
8122ready:
Eric Dumazetaa395142010-04-20 13:03:51 +00008123 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008124 return 0;
8125
8126interrupted:
8127 error = sock_intr_errno(*timeo_p);
8128
8129out:
Eric Dumazetaa395142010-04-20 13:03:51 +00008130 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008131 *err = error;
8132 return error;
8133}
8134
8135/* Receive a datagram.
8136 * Note: This is pretty much the same routine as in core/datagram.c
8137 * with a few changes to make lksctp work.
8138 */
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02008139struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags,
8140 int noblock, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008141{
8142 int error;
8143 struct sk_buff *skb;
8144 long timeo;
8145
Linus Torvalds1da177e2005-04-16 15:20:36 -07008146 timeo = sock_rcvtimeo(sk, noblock);
8147
Daniel Borkmannbb333812013-06-28 19:49:40 +02008148 pr_debug("%s: timeo:%ld, max:%ld\n", __func__, timeo,
8149 MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008150
8151 do {
8152 /* Again only user level code calls this function,
8153 * so nothing interrupt level
8154 * will suddenly eat the receive_queue.
8155 *
8156 * Look at current nfs client by the way...
David Shwatrz8917a3c2010-12-02 09:01:55 +00008157 * However, this function was correct in any case. 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008158 */
8159 if (flags & MSG_PEEK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008160 skb = skb_peek(&sk->sk_receive_queue);
8161 if (skb)
Reshetova, Elena63354792017-06-30 13:07:58 +03008162 refcount_inc(&skb->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008163 } else {
Marcelo Ricardo Leitner311b2172016-04-13 19:12:29 -03008164 skb = __skb_dequeue(&sk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008165 }
8166
8167 if (skb)
8168 return skb;
8169
Neil Horman6736dc32005-12-02 20:30:06 -08008170 /* Caller is allowed not to check sk->sk_err before calling. */
8171 error = sock_error(sk);
8172 if (error)
8173 goto no_packet;
8174
Linus Torvalds1da177e2005-04-16 15:20:36 -07008175 if (sk->sk_shutdown & RCV_SHUTDOWN)
8176 break;
8177
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07008178 if (sk_can_busy_loop(sk)) {
8179 sk_busy_loop(sk, noblock);
8180
8181 if (!skb_queue_empty(&sk->sk_receive_queue))
8182 continue;
8183 }
Neil Horman8465a5f2014-04-17 15:26:51 -04008184
Linus Torvalds1da177e2005-04-16 15:20:36 -07008185 /* User doesn't want to wait. */
8186 error = -EAGAIN;
8187 if (!timeo)
8188 goto no_packet;
8189 } while (sctp_wait_for_packet(sk, err, &timeo) == 0);
8190
8191 return NULL;
8192
8193no_packet:
8194 *err = error;
8195 return NULL;
8196}
8197
8198/* If sndbuf has changed, wake up per association sndbuf waiters. */
8199static void __sctp_write_space(struct sctp_association *asoc)
8200{
8201 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008202
Eric Dumazetceb5d582015-11-29 20:03:11 -08008203 if (sctp_wspace(asoc) <= 0)
8204 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008205
Eric Dumazetceb5d582015-11-29 20:03:11 -08008206 if (waitqueue_active(&asoc->wait))
8207 wake_up_interruptible(&asoc->wait);
Eric Dumazeteaefd112011-02-18 03:26:36 +00008208
Eric Dumazetceb5d582015-11-29 20:03:11 -08008209 if (sctp_writeable(sk)) {
8210 struct socket_wq *wq;
8211
8212 rcu_read_lock();
8213 wq = rcu_dereference(sk->sk_wq);
8214 if (wq) {
8215 if (waitqueue_active(&wq->wait))
8216 wake_up_interruptible(&wq->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008217
8218 /* Note that we try to include the Async I/O support
8219 * here by modeling from the current TCP/UDP code.
8220 * We have not tested with it yet.
8221 */
Eric Dumazeteaefd112011-02-18 03:26:36 +00008222 if (!(sk->sk_shutdown & SEND_SHUTDOWN))
Eric Dumazetceb5d582015-11-29 20:03:11 -08008223 sock_wake_async(wq, SOCK_WAKE_SPACE, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008224 }
Eric Dumazetceb5d582015-11-29 20:03:11 -08008225 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008226 }
8227}
8228
Daniel Borkmann52c35be2014-04-08 17:26:13 +02008229static void sctp_wake_up_waiters(struct sock *sk,
8230 struct sctp_association *asoc)
8231{
8232 struct sctp_association *tmp = asoc;
8233
8234 /* We do accounting for the sndbuf space per association,
8235 * so we only need to wake our own association.
8236 */
8237 if (asoc->ep->sndbuf_policy)
8238 return __sctp_write_space(asoc);
8239
Daniel Borkmann1e1cdf82014-04-09 16:10:20 +02008240 /* If association goes down and is just flushing its
8241 * outq, then just normally notify others.
8242 */
8243 if (asoc->base.dead)
8244 return sctp_write_space(sk);
8245
Daniel Borkmann52c35be2014-04-08 17:26:13 +02008246 /* Accounting for the sndbuf space is per socket, so we
8247 * need to wake up others, try to be fair and in case of
8248 * other associations, let them have a go first instead
8249 * of just doing a sctp_write_space() call.
8250 *
8251 * Note that we reach sctp_wake_up_waiters() only when
8252 * associations free up queued chunks, thus we are under
8253 * lock and the list of associations on a socket is
8254 * guaranteed not to change.
8255 */
8256 for (tmp = list_next_entry(tmp, asocs); 1;
8257 tmp = list_next_entry(tmp, asocs)) {
8258 /* Manually skip the head element. */
8259 if (&tmp->asocs == &((sctp_sk(sk))->ep->asocs))
8260 continue;
8261 /* Wake up association. */
8262 __sctp_write_space(tmp);
8263 /* We've reached the end. */
8264 if (tmp == asoc)
8265 break;
8266 }
8267}
8268
Linus Torvalds1da177e2005-04-16 15:20:36 -07008269/* Do accounting for the sndbuf space.
8270 * Decrement the used sndbuf space of the corresponding association by the
8271 * data size which was just transmitted(freed).
8272 */
8273static void sctp_wfree(struct sk_buff *skb)
8274{
Daniel Borkmannf869c912014-11-20 01:54:48 +01008275 struct sctp_chunk *chunk = skb_shinfo(skb)->destructor_arg;
8276 struct sctp_association *asoc = chunk->asoc;
8277 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008278
Neil Horman4eb701d2005-04-28 12:02:04 -07008279 asoc->sndbuf_used -= SCTP_DATA_SNDSIZE(chunk) +
8280 sizeof(struct sk_buff) +
8281 sizeof(struct sctp_chunk);
8282
Reshetova, Elena14afee42017-06-30 13:08:00 +03008283 WARN_ON(refcount_sub_and_test(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc));
Neil Horman4eb701d2005-04-28 12:02:04 -07008284
Neil Horman4d93df02007-08-15 16:07:44 -07008285 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008286 * This undoes what is done via sctp_set_owner_w and sk_mem_charge
Neil Horman4d93df02007-08-15 16:07:44 -07008287 */
8288 sk->sk_wmem_queued -= skb->truesize;
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008289 sk_mem_uncharge(sk, skb->truesize);
Neil Horman4d93df02007-08-15 16:07:44 -07008290
Xin Longec2e5062018-03-14 19:05:33 +08008291 if (chunk->shkey) {
8292 struct sctp_shared_key *shkey = chunk->shkey;
8293
8294 /* refcnt == 2 and !list_empty mean after this release, it's
8295 * not being used anywhere, and it's time to notify userland
8296 * that this shkey can be freed if it's been deactivated.
8297 */
8298 if (shkey->deactivated && !list_empty(&shkey->key_list) &&
8299 refcount_read(&shkey->refcnt) == 2) {
8300 struct sctp_ulpevent *ev;
8301
8302 ev = sctp_ulpevent_make_authkey(asoc, shkey->key_id,
8303 SCTP_AUTH_FREE_KEY,
8304 GFP_KERNEL);
8305 if (ev)
8306 asoc->stream.si->enqueue_event(&asoc->ulpq, ev);
8307 }
Xin Long1b1e0bc2018-03-14 19:05:30 +08008308 sctp_auth_shkey_release(chunk->shkey);
Xin Longec2e5062018-03-14 19:05:33 +08008309 }
Xin Long1b1e0bc2018-03-14 19:05:30 +08008310
Neil Horman4eb701d2005-04-28 12:02:04 -07008311 sock_wfree(skb);
Daniel Borkmann52c35be2014-04-08 17:26:13 +02008312 sctp_wake_up_waiters(sk, asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008313
8314 sctp_association_put(asoc);
8315}
8316
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07008317/* Do accounting for the receive space on the socket.
8318 * Accounting for the association is done in ulpevent.c
8319 * We set this as a destructor for the cloned data skbs so that
8320 * accounting is done at the correct time.
8321 */
8322void sctp_sock_rfree(struct sk_buff *skb)
8323{
8324 struct sock *sk = skb->sk;
8325 struct sctp_ulpevent *event = sctp_skb2event(skb);
8326
8327 atomic_sub(event->rmem_len, &sk->sk_rmem_alloc);
Neil Horman4d93df02007-08-15 16:07:44 -07008328
8329 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008330 * Mimic the behavior of sock_rfree
Neil Horman4d93df02007-08-15 16:07:44 -07008331 */
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008332 sk_mem_uncharge(sk, event->rmem_len);
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07008333}
8334
8335
Linus Torvalds1da177e2005-04-16 15:20:36 -07008336/* Helper function to wait for space in the sndbuf. */
8337static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
Xin Longa0ff6602018-01-15 17:01:36 +08008338 size_t msg_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008339{
8340 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008341 long current_timeo = *timeo_p;
8342 DEFINE_WAIT(wait);
Xin Longa0ff6602018-01-15 17:01:36 +08008343 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008344
Daniel Borkmannbb333812013-06-28 19:49:40 +02008345 pr_debug("%s: asoc:%p, timeo:%ld, msg_len:%zu\n", __func__, asoc,
8346 *timeo_p, msg_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008347
8348 /* Increment the association's refcnt. */
8349 sctp_association_hold(asoc);
8350
8351 /* Wait on the association specific sndbuf space. */
8352 for (;;) {
8353 prepare_to_wait_exclusive(&asoc->wait, &wait,
8354 TASK_INTERRUPTIBLE);
Xin Longca3af4d2017-11-15 16:55:54 +08008355 if (asoc->base.dead)
8356 goto do_dead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008357 if (!*timeo_p)
8358 goto do_nonblock;
Xin Longca3af4d2017-11-15 16:55:54 +08008359 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008360 goto do_error;
8361 if (signal_pending(current))
8362 goto do_interrupted;
8363 if (msg_len <= sctp_wspace(asoc))
8364 break;
8365
8366 /* Let another process have a go. Since we are going
8367 * to sleep anyway.
8368 */
wangweidong048ed4b2014-01-21 15:44:11 +08008369 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008370 current_timeo = schedule_timeout(current_timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08008371 lock_sock(sk);
Xin Longa0ff6602018-01-15 17:01:36 +08008372 if (sk != asoc->base.sk)
8373 goto do_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008374
8375 *timeo_p = current_timeo;
8376 }
8377
8378out:
8379 finish_wait(&asoc->wait, &wait);
8380
8381 /* Release the association's refcnt. */
8382 sctp_association_put(asoc);
8383
8384 return err;
8385
Xin Longca3af4d2017-11-15 16:55:54 +08008386do_dead:
8387 err = -ESRCH;
8388 goto out;
8389
Linus Torvalds1da177e2005-04-16 15:20:36 -07008390do_error:
8391 err = -EPIPE;
8392 goto out;
8393
8394do_interrupted:
8395 err = sock_intr_errno(*timeo_p);
8396 goto out;
8397
8398do_nonblock:
8399 err = -EAGAIN;
8400 goto out;
8401}
8402
David S. Miller676d2362014-04-11 16:15:36 -04008403void sctp_data_ready(struct sock *sk)
Wei Yongjun561b1732010-04-28 08:47:18 +00008404{
David S. Miller7ef52732010-05-02 21:43:40 -07008405 struct socket_wq *wq;
8406
8407 rcu_read_lock();
8408 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08008409 if (skwq_has_sleeper(wq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008410 wake_up_interruptible_sync_poll(&wq->wait, EPOLLIN |
8411 EPOLLRDNORM | EPOLLRDBAND);
Wei Yongjun561b1732010-04-28 08:47:18 +00008412 sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
David S. Miller7ef52732010-05-02 21:43:40 -07008413 rcu_read_unlock();
Wei Yongjun561b1732010-04-28 08:47:18 +00008414}
8415
Linus Torvalds1da177e2005-04-16 15:20:36 -07008416/* If socket sndbuf has changed, wake up all per association waiters. */
8417void sctp_write_space(struct sock *sk)
8418{
8419 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008420
8421 /* Wake up the tasks in each wait queue. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07008422 list_for_each_entry(asoc, &((sctp_sk(sk))->ep->asocs), asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008423 __sctp_write_space(asoc);
8424 }
8425}
8426
8427/* Is there any sndbuf space available on the socket?
8428 *
Neil Horman9bffc4a2005-12-19 14:24:40 -08008429 * Note that sk_wmem_alloc is the sum of the send buffers on all of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07008430 * associations on the same socket. For a UDP-style socket with
8431 * multiple associations, it is possible for it to be "unwriteable"
8432 * prematurely. I assume that this is acceptable because
8433 * a premature "unwriteable" is better than an accidental "writeable" which
8434 * would cause an unwanted block under certain circumstances. For the 1-1
8435 * UDP-style sockets or TCP-style sockets, this code should work.
8436 * - Daisy
8437 */
8438static int sctp_writeable(struct sock *sk)
8439{
8440 int amt = 0;
8441
Eric Dumazet31e6d362009-06-17 19:05:41 -07008442 amt = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008443 if (amt < 0)
8444 amt = 0;
8445 return amt;
8446}
8447
8448/* Wait for an association to go into ESTABLISHED state. If timeout is 0,
8449 * returns immediately with EINPROGRESS.
8450 */
8451static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p)
8452{
8453 struct sock *sk = asoc->base.sk;
8454 int err = 0;
8455 long current_timeo = *timeo_p;
8456 DEFINE_WAIT(wait);
8457
Daniel Borkmannbb333812013-06-28 19:49:40 +02008458 pr_debug("%s: asoc:%p, timeo:%ld\n", __func__, asoc, *timeo_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008459
8460 /* Increment the association's refcnt. */
8461 sctp_association_hold(asoc);
8462
8463 for (;;) {
8464 prepare_to_wait_exclusive(&asoc->wait, &wait,
8465 TASK_INTERRUPTIBLE);
8466 if (!*timeo_p)
8467 goto do_nonblock;
8468 if (sk->sk_shutdown & RCV_SHUTDOWN)
8469 break;
8470 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
8471 asoc->base.dead)
8472 goto do_error;
8473 if (signal_pending(current))
8474 goto do_interrupted;
8475
8476 if (sctp_state(asoc, ESTABLISHED))
8477 break;
8478
8479 /* Let another process have a go. Since we are going
8480 * to sleep anyway.
8481 */
wangweidong048ed4b2014-01-21 15:44:11 +08008482 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008483 current_timeo = schedule_timeout(current_timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08008484 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008485
8486 *timeo_p = current_timeo;
8487 }
8488
8489out:
8490 finish_wait(&asoc->wait, &wait);
8491
8492 /* Release the association's refcnt. */
8493 sctp_association_put(asoc);
8494
8495 return err;
8496
8497do_error:
Vlad Yasevich81845c22006-01-30 15:59:54 -08008498 if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008499 err = -ETIMEDOUT;
8500 else
8501 err = -ECONNREFUSED;
8502 goto out;
8503
8504do_interrupted:
8505 err = sock_intr_errno(*timeo_p);
8506 goto out;
8507
8508do_nonblock:
8509 err = -EINPROGRESS;
8510 goto out;
8511}
8512
8513static int sctp_wait_for_accept(struct sock *sk, long timeo)
8514{
8515 struct sctp_endpoint *ep;
8516 int err = 0;
8517 DEFINE_WAIT(wait);
8518
8519 ep = sctp_sk(sk)->ep;
8520
8521
8522 for (;;) {
Eric Dumazetaa395142010-04-20 13:03:51 +00008523 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008524 TASK_INTERRUPTIBLE);
8525
8526 if (list_empty(&ep->asocs)) {
wangweidong048ed4b2014-01-21 15:44:11 +08008527 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008528 timeo = schedule_timeout(timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08008529 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008530 }
8531
8532 err = -EINVAL;
8533 if (!sctp_sstate(sk, LISTENING))
8534 break;
8535
8536 err = 0;
8537 if (!list_empty(&ep->asocs))
8538 break;
8539
8540 err = sock_intr_errno(timeo);
8541 if (signal_pending(current))
8542 break;
8543
8544 err = -EAGAIN;
8545 if (!timeo)
8546 break;
8547 }
8548
Eric Dumazetaa395142010-04-20 13:03:51 +00008549 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008550
8551 return err;
8552}
8553
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +02008554static void sctp_wait_for_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008555{
8556 DEFINE_WAIT(wait);
8557
8558 do {
Eric Dumazetaa395142010-04-20 13:03:51 +00008559 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008560 if (list_empty(&sctp_sk(sk)->ep->asocs))
8561 break;
wangweidong048ed4b2014-01-21 15:44:11 +08008562 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008563 timeout = schedule_timeout(timeout);
wangweidong048ed4b2014-01-21 15:44:11 +08008564 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008565 } while (!signal_pending(current) && timeout);
8566
Eric Dumazetaa395142010-04-20 13:03:51 +00008567 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008568}
8569
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008570static void sctp_skb_set_owner_r_frag(struct sk_buff *skb, struct sock *sk)
8571{
8572 struct sk_buff *frag;
8573
8574 if (!skb->data_len)
8575 goto done;
8576
8577 /* Don't forget the fragments. */
David S. Miller1b003be2009-06-09 00:22:35 -07008578 skb_walk_frags(skb, frag)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008579 sctp_skb_set_owner_r_frag(frag, sk);
8580
8581done:
8582 sctp_skb_set_owner_r(skb, sk);
8583}
8584
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008585void sctp_copy_sock(struct sock *newsk, struct sock *sk,
8586 struct sctp_association *asoc)
8587{
8588 struct inet_sock *inet = inet_sk(sk);
Julia Lawall09cb47a2010-01-21 02:43:20 -08008589 struct inet_sock *newinet;
Richard Haines2277c7c2018-02-13 20:56:24 +00008590 struct sctp_sock *sp = sctp_sk(sk);
8591 struct sctp_endpoint *ep = sp->ep;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008592
8593 newsk->sk_type = sk->sk_type;
8594 newsk->sk_bound_dev_if = sk->sk_bound_dev_if;
8595 newsk->sk_flags = sk->sk_flags;
Marcelo Ricardo Leitner50a5ffb2015-12-04 15:14:05 -02008596 newsk->sk_tsflags = sk->sk_tsflags;
Tom Herbert28448b82014-05-23 08:47:19 -07008597 newsk->sk_no_check_tx = sk->sk_no_check_tx;
8598 newsk->sk_no_check_rx = sk->sk_no_check_rx;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008599 newsk->sk_reuse = sk->sk_reuse;
Xin Longb0e9a2f2018-06-28 15:31:00 +08008600 sctp_sk(newsk)->reuse = sp->reuse;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008601
8602 newsk->sk_shutdown = sk->sk_shutdown;
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02008603 newsk->sk_destruct = sctp_destruct_sock;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008604 newsk->sk_family = sk->sk_family;
8605 newsk->sk_protocol = IPPROTO_SCTP;
8606 newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
8607 newsk->sk_sndbuf = sk->sk_sndbuf;
8608 newsk->sk_rcvbuf = sk->sk_rcvbuf;
8609 newsk->sk_lingertime = sk->sk_lingertime;
8610 newsk->sk_rcvtimeo = sk->sk_rcvtimeo;
8611 newsk->sk_sndtimeo = sk->sk_sndtimeo;
Marcelo Ricardo Leitner486bdee2016-04-12 18:11:31 -03008612 newsk->sk_rxhash = sk->sk_rxhash;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008613
8614 newinet = inet_sk(newsk);
8615
8616 /* Initialize sk's sport, dport, rcv_saddr and daddr for
8617 * getsockname() and getpeername()
8618 */
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008619 newinet->inet_sport = inet->inet_sport;
8620 newinet->inet_saddr = inet->inet_saddr;
8621 newinet->inet_rcv_saddr = inet->inet_rcv_saddr;
8622 newinet->inet_dport = htons(asoc->peer.port);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008623 newinet->pmtudisc = inet->pmtudisc;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008624 newinet->inet_id = asoc->next_tsn ^ jiffies;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008625
8626 newinet->uc_ttl = inet->uc_ttl;
8627 newinet->mc_loop = 1;
8628 newinet->mc_ttl = 1;
8629 newinet->mc_index = 0;
8630 newinet->mc_list = NULL;
Marcelo Ricardo Leitner01ce63c2015-12-04 15:14:04 -02008631
8632 if (newsk->sk_flags & SK_FLAGS_TIMESTAMP)
8633 net_enable_timestamp();
Marcelo Ricardo Leitner3538a5c2015-12-23 16:44:09 -02008634
Richard Haines2277c7c2018-02-13 20:56:24 +00008635 /* Set newsk security attributes from orginal sk and connection
8636 * security attribute from ep.
8637 */
8638 security_sctp_sk_clone(ep, sk, newsk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008639}
8640
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03008641static inline void sctp_copy_descendant(struct sock *sk_to,
8642 const struct sock *sk_from)
8643{
8644 int ancestor_size = sizeof(struct inet_sock) +
8645 sizeof(struct sctp_sock) -
8646 offsetof(struct sctp_sock, auto_asconf_list);
8647
8648 if (sk_from->sk_family == PF_INET6)
8649 ancestor_size += sizeof(struct ipv6_pinfo);
8650
8651 __inet_sk_copy_descendant(sk_to, sk_from, ancestor_size);
8652}
8653
Linus Torvalds1da177e2005-04-16 15:20:36 -07008654/* Populate the fields of the newsk from the oldsk and migrate the assoc
8655 * and its messages to the newsk.
8656 */
8657static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
8658 struct sctp_association *assoc,
Xin Longb7ef2612017-08-11 10:23:50 +08008659 enum sctp_socket_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008660{
8661 struct sctp_sock *oldsp = sctp_sk(oldsk);
8662 struct sctp_sock *newsp = sctp_sk(newsk);
8663 struct sctp_bind_bucket *pp; /* hash list port iterator */
8664 struct sctp_endpoint *newep = newsp->ep;
8665 struct sk_buff *skb, *tmp;
8666 struct sctp_ulpevent *event;
Vlad Yasevichf26f7c42007-12-06 22:50:27 -08008667 struct sctp_bind_hashbucket *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008668
8669 /* Migrate socket buffer sizes and all the socket level options to the
8670 * new socket.
8671 */
8672 newsk->sk_sndbuf = oldsk->sk_sndbuf;
8673 newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
8674 /* Brute force copy old sctp opt. */
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03008675 sctp_copy_descendant(newsk, oldsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008676
8677 /* Restore the ep value that was overwritten with the above structure
8678 * copy.
8679 */
8680 newsp->ep = newep;
8681 newsp->hmac = NULL;
8682
8683 /* Hook this new socket in to the bind_hash list. */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008684 head = &sctp_port_hashtable[sctp_phashfn(sock_net(oldsk),
8685 inet_sk(oldsk)->inet_num)];
Nicholas Mc Guire489ce5f2016-03-13 11:48:24 +01008686 spin_lock_bh(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008687 pp = sctp_sk(oldsk)->bind_hash;
8688 sk_add_bind_node(newsk, &pp->owner);
8689 sctp_sk(newsk)->bind_hash = pp;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008690 inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num;
Nicholas Mc Guire489ce5f2016-03-13 11:48:24 +01008691 spin_unlock_bh(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008692
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07008693 /* Copy the bind_addr list from the original endpoint to the new
8694 * endpoint so that we can handle restarts properly
8695 */
Vlad Yasevich8e71a112007-12-06 22:50:54 -08008696 sctp_bind_addr_dup(&newsp->ep->base.bind_addr,
8697 &oldsp->ep->base.bind_addr, GFP_KERNEL);
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07008698
Linus Torvalds1da177e2005-04-16 15:20:36 -07008699 /* Move any messages in the old socket's receive queue that are for the
8700 * peeled off association to the new socket's receive queue.
8701 */
8702 sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) {
8703 event = sctp_skb2event(skb);
8704 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07008705 __skb_unlink(skb, &oldsk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008706 __skb_queue_tail(&newsk->sk_receive_queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008707 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008708 }
8709 }
8710
8711 /* Clean up any messages pending delivery due to partial
8712 * delivery. Three cases:
8713 * 1) No partial deliver; no work.
8714 * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby.
8715 * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue.
8716 */
8717 skb_queue_head_init(&newsp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008718 atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008719
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008720 if (atomic_read(&sctp_sk(oldsk)->pd_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008721 struct sk_buff_head *queue;
8722
8723 /* Decide which queue to move pd_lobby skbs to. */
8724 if (assoc->ulpq.pd_mode) {
8725 queue = &newsp->pd_lobby;
8726 } else
8727 queue = &newsk->sk_receive_queue;
8728
8729 /* Walk through the pd_lobby, looking for skbs that
8730 * need moved to the new socket.
8731 */
8732 sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) {
8733 event = sctp_skb2event(skb);
8734 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07008735 __skb_unlink(skb, &oldsp->pd_lobby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008736 __skb_queue_tail(queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008737 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008738 }
8739 }
8740
8741 /* Clear up any skbs waiting for the partial
8742 * delivery to finish.
8743 */
8744 if (assoc->ulpq.pd_mode)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008745 sctp_clear_pd(oldsk, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008746
8747 }
8748
Xin Long13228232017-12-08 21:04:09 +08008749 sctp_for_each_rx_skb(assoc, newsk, sctp_skb_set_owner_r_frag);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008750
Linus Torvalds1da177e2005-04-16 15:20:36 -07008751 /* Set the type of socket to indicate that it is peeled off from the
8752 * original UDP-style socket or created with the accept() call on a
8753 * TCP-style socket..
8754 */
8755 newsp->type = type;
8756
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07008757 /* Mark the new socket "in-use" by the user so that any packets
8758 * that may arrive on the association after we've moved it are
8759 * queued to the backlog. This prevents a potential race between
8760 * backlog processing on the old socket and new-packet processing
8761 * on the new socket.
Zach Brown5131a182007-06-22 15:14:46 -07008762 *
8763 * The caller has just allocated newsk so we can guarantee that other
8764 * paths won't try to lock it and then oldsk.
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07008765 */
Zach Brown5131a182007-06-22 15:14:46 -07008766 lock_sock_nested(newsk, SINGLE_DEPTH_NESTING);
Xin Longd04adf12017-10-28 02:13:29 +08008767 sctp_for_each_tx_datachunk(assoc, sctp_clear_owner_w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008768 sctp_assoc_migrate(assoc, newsk);
Xin Longd04adf12017-10-28 02:13:29 +08008769 sctp_for_each_tx_datachunk(assoc, sctp_set_owner_w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008770
8771 /* If the association on the newsk is already closed before accept()
8772 * is called, set RCV_SHUTDOWN flag.
8773 */
Xin Longd46e4162016-06-09 22:48:18 +08008774 if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP)) {
Yafang Shaocbabf462017-12-20 11:12:54 +08008775 inet_sk_set_state(newsk, SCTP_SS_CLOSED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008776 newsk->sk_shutdown |= RCV_SHUTDOWN;
Xin Longd46e4162016-06-09 22:48:18 +08008777 } else {
Yafang Shaocbabf462017-12-20 11:12:54 +08008778 inet_sk_set_state(newsk, SCTP_SS_ESTABLISHED);
Xin Longd46e4162016-06-09 22:48:18 +08008779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008780
wangweidong048ed4b2014-01-21 15:44:11 +08008781 release_sock(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008782}
8783
Neil Horman4d93df02007-08-15 16:07:44 -07008784
Linus Torvalds1da177e2005-04-16 15:20:36 -07008785/* This proto struct describes the ULP interface for SCTP. */
8786struct proto sctp_prot = {
8787 .name = "SCTP",
8788 .owner = THIS_MODULE,
8789 .close = sctp_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008790 .disconnect = sctp_disconnect,
8791 .accept = sctp_accept,
8792 .ioctl = sctp_ioctl,
8793 .init = sctp_init_sock,
8794 .destroy = sctp_destroy_sock,
8795 .shutdown = sctp_shutdown,
8796 .setsockopt = sctp_setsockopt,
8797 .getsockopt = sctp_getsockopt,
8798 .sendmsg = sctp_sendmsg,
8799 .recvmsg = sctp_recvmsg,
8800 .bind = sctp_bind,
8801 .backlog_rcv = sctp_backlog_rcv,
8802 .hash = sctp_hash,
8803 .unhash = sctp_unhash,
8804 .get_port = sctp_get_port,
8805 .obj_size = sizeof(struct sctp_sock),
David Windsorab9ee8e2017-08-24 16:57:57 -07008806 .useroffset = offsetof(struct sctp_sock, subscribe),
8807 .usersize = offsetof(struct sctp_sock, initmsg) -
8808 offsetof(struct sctp_sock, subscribe) +
8809 sizeof_field(struct sctp_sock, initmsg),
Neil Horman4d93df02007-08-15 16:07:44 -07008810 .sysctl_mem = sysctl_sctp_mem,
8811 .sysctl_rmem = sysctl_sctp_rmem,
8812 .sysctl_wmem = sysctl_sctp_wmem,
8813 .memory_pressure = &sctp_memory_pressure,
8814 .enter_memory_pressure = sctp_enter_memory_pressure,
8815 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08008816 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008817};
8818
Eric Dumazetdfd56b82011-12-10 09:48:31 +00008819#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazet8295b6d2007-11-05 23:40:28 -08008820
Eric Dumazet602dd622015-12-01 07:20:07 -08008821#include <net/transp_v6.h>
8822static void sctp_v6_destroy_sock(struct sock *sk)
8823{
8824 sctp_destroy_sock(sk);
8825 inet6_destroy_sock(sk);
8826}
8827
Linus Torvalds1da177e2005-04-16 15:20:36 -07008828struct proto sctpv6_prot = {
8829 .name = "SCTPv6",
8830 .owner = THIS_MODULE,
8831 .close = sctp_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008832 .disconnect = sctp_disconnect,
8833 .accept = sctp_accept,
8834 .ioctl = sctp_ioctl,
8835 .init = sctp_init_sock,
Eric Dumazet602dd622015-12-01 07:20:07 -08008836 .destroy = sctp_v6_destroy_sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008837 .shutdown = sctp_shutdown,
8838 .setsockopt = sctp_setsockopt,
8839 .getsockopt = sctp_getsockopt,
8840 .sendmsg = sctp_sendmsg,
8841 .recvmsg = sctp_recvmsg,
8842 .bind = sctp_bind,
8843 .backlog_rcv = sctp_backlog_rcv,
8844 .hash = sctp_hash,
8845 .unhash = sctp_unhash,
8846 .get_port = sctp_get_port,
8847 .obj_size = sizeof(struct sctp6_sock),
David Windsorab9ee8e2017-08-24 16:57:57 -07008848 .useroffset = offsetof(struct sctp6_sock, sctp.subscribe),
8849 .usersize = offsetof(struct sctp6_sock, sctp.initmsg) -
8850 offsetof(struct sctp6_sock, sctp.subscribe) +
8851 sizeof_field(struct sctp6_sock, sctp.initmsg),
Neil Horman4d93df02007-08-15 16:07:44 -07008852 .sysctl_mem = sysctl_sctp_mem,
8853 .sysctl_rmem = sysctl_sctp_rmem,
8854 .sysctl_wmem = sysctl_sctp_wmem,
8855 .memory_pressure = &sctp_memory_pressure,
8856 .enter_memory_pressure = sctp_enter_memory_pressure,
8857 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08008858 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008859};
Eric Dumazetdfd56b82011-12-10 09:48:31 +00008860#endif /* IS_ENABLED(CONFIG_IPV6) */