blob: a93b60a28cc5fff0ebe299905fb31cb37de43d88 [file] [log] [blame]
Vlad Yasevich60c778b2008-01-11 09:57:09 -05001/* SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999-2000 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 * Copyright (c) 2001-2003 Intel Corp.
6 * Copyright (c) 2001-2002 Nokia, Inc.
7 * Copyright (c) 2001 La Monte H.P. Yarroll
8 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05009 * This file is part of the SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * These functions interface with the sockets layer to implement the
12 * SCTP Extensions for the Sockets API.
13 *
14 * Note that the descriptions from the specification are USER level
15 * functions--this file is the functions which populate the struct proto
16 * for SCTP which is the BOTTOM of the sockets interface.
17 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050018 * This SCTP implementation is free software;
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * you can redistribute it and/or modify it under the terms of
20 * the GNU General Public License as published by
21 * the Free Software Foundation; either version 2, or (at your option)
22 * any later version.
23 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050024 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
26 * ************************
27 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
28 * See the GNU General Public License for more details.
29 *
30 * You should have received a copy of the GNU General Public License
Jeff Kirsher4b2f13a2013-12-06 06:28:48 -080031 * along with GNU CC; see the file COPYING. If not, see
32 * <http://www.gnu.org/licenses/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 *
34 * Please send any bug reports or fixes you make to the
35 * email address(es):
Daniel Borkmann91705c62013-07-23 14:51:47 +020036 * lksctp developers <linux-sctp@vger.kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * Written or modified by:
39 * La Monte H.P. Yarroll <piggy@acm.org>
40 * Narasimha Budihal <narsi@refcode.org>
41 * Karl Knutson <karl@athena.chicago.il.us>
42 * Jon Grimm <jgrimm@us.ibm.com>
43 * Xingang Guo <xingang.guo@intel.com>
44 * Daisy Chang <daisyc@us.ibm.com>
45 * Sridhar Samudrala <samudrala@us.ibm.com>
46 * Inaky Perez-Gonzalez <inaky.gonzalez@intel.com>
47 * Ardelle Fan <ardelle.fan@intel.com>
48 * Ryan Layer <rmlayer@us.ibm.com>
49 * Anup Pemmaiah <pemmaiah@cc.usu.edu>
50 * Kevin Gao <kevin.gao@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 */
52
Joe Perches145ce502010-08-24 13:21:08 +000053#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
54
Herbert Xu5821c762016-01-24 21:20:12 +080055#include <crypto/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <linux/types.h>
57#include <linux/kernel.h>
58#include <linux/wait.h>
59#include <linux/time.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010060#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/ip.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080062#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/fcntl.h>
64#include <linux/poll.h>
65#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090066#include <linux/slab.h>
Al Viro56b31d12012-08-18 00:25:51 -040067#include <linux/file.h>
Daniel Borkmannffd59392014-02-17 12:11:11 +010068#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70#include <net/ip.h>
71#include <net/icmp.h>
72#include <net/route.h>
73#include <net/ipv6.h>
74#include <net/inet_common.h>
Neil Horman8465a5f2014-04-17 15:26:51 -040075#include <net/busy_poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77#include <linux/socket.h> /* for sa_family_t */
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040078#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <net/sock.h>
80#include <net/sctp/sctp.h>
81#include <net/sctp/sm.h>
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -030082#include <net/sctp/stream_sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/* Forward declarations for internal helper functions. */
85static int sctp_writeable(struct sock *sk);
86static void sctp_wfree(struct sk_buff *skb);
Xin Longcea0cc82017-11-15 16:57:26 +080087static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
Xin Longa0ff6602018-01-15 17:01:36 +080088 size_t msg_len);
wangweidong26ac8e52013-12-23 12:16:51 +080089static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
91static int sctp_wait_for_accept(struct sock *sk, long timeo);
92static void sctp_wait_for_close(struct sock *sk, long timeo);
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +020093static void sctp_destruct_sock(struct sock *sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
95 union sctp_addr *addr, int len);
96static int sctp_bindx_add(struct sock *, struct sockaddr *, int);
97static int sctp_bindx_rem(struct sock *, struct sockaddr *, int);
98static int sctp_send_asconf_add_ip(struct sock *, struct sockaddr *, int);
99static int sctp_send_asconf_del_ip(struct sock *, struct sockaddr *, int);
100static int sctp_send_asconf(struct sctp_association *asoc,
101 struct sctp_chunk *chunk);
102static int sctp_do_bind(struct sock *, union sctp_addr *, int);
103static int sctp_autobind(struct sock *sk);
Xin Longb7ef2612017-08-11 10:23:50 +0800104static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
105 struct sctp_association *assoc,
106 enum sctp_socket_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Eric Dumazet06044752017-06-07 13:29:12 -0700108static unsigned long sctp_memory_pressure;
Eric Dumazet8d987e52010-11-09 23:24:26 +0000109static atomic_long_t sctp_memory_allocated;
Eric Dumazet17483762008-11-25 21:16:35 -0800110struct percpu_counter sctp_sockets_allocated;
Neil Horman4d93df02007-08-15 16:07:44 -0700111
Pavel Emelyanov5c52ba12008-07-16 20:28:10 -0700112static void sctp_enter_memory_pressure(struct sock *sk)
Neil Horman4d93df02007-08-15 16:07:44 -0700113{
114 sctp_memory_pressure = 1;
115}
116
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118/* Get the sndbuf space available at the time on the association. */
119static inline int sctp_wspace(struct sctp_association *asoc)
120{
Neil Horman4d93df02007-08-15 16:07:44 -0700121 int amt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Neil Horman4d93df02007-08-15 16:07:44 -0700123 if (asoc->ep->sndbuf_policy)
124 amt = asoc->sndbuf_used;
125 else
Eric Dumazet31e6d362009-06-17 19:05:41 -0700126 amt = sk_wmem_alloc_get(asoc->base.sk);
Neil Horman4d93df02007-08-15 16:07:44 -0700127
128 if (amt >= asoc->base.sk->sk_sndbuf) {
129 if (asoc->base.sk->sk_userlocks & SOCK_SNDBUF_LOCK)
130 amt = 0;
131 else {
132 amt = sk_stream_wspace(asoc->base.sk);
133 if (amt < 0)
134 amt = 0;
135 }
Neil Horman4eb701d2005-04-28 12:02:04 -0700136 } else {
Neil Horman4d93df02007-08-15 16:07:44 -0700137 amt = asoc->base.sk->sk_sndbuf - amt;
Neil Horman4eb701d2005-04-28 12:02:04 -0700138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return amt;
140}
141
142/* Increment the used sndbuf space count of the corresponding association by
143 * the size of the outgoing data chunk.
144 * Also, set the skb destructor for sndbuf accounting later.
145 *
146 * Since it is always 1-1 between chunk and skb, and also a new skb is always
147 * allocated for chunk bundling in sctp_packet_transmit(), we can use the
148 * destructor in the data chunk skb for the purpose of the sndbuf space
149 * tracking.
150 */
151static inline void sctp_set_owner_w(struct sctp_chunk *chunk)
152{
153 struct sctp_association *asoc = chunk->asoc;
154 struct sock *sk = asoc->base.sk;
155
156 /* The sndbuf space is tracked per association. */
157 sctp_association_hold(asoc);
158
Xin Long1b1e0bc2018-03-14 19:05:30 +0800159 if (chunk->shkey)
160 sctp_auth_shkey_hold(chunk->shkey);
161
Neil Horman4eb701d2005-04-28 12:02:04 -0700162 skb_set_owner_w(chunk->skb, sk);
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 chunk->skb->destructor = sctp_wfree;
165 /* Save the chunk pointer in skb for sctp_wfree to use later. */
Daniel Borkmannf869c912014-11-20 01:54:48 +0100166 skb_shinfo(chunk->skb)->destructor_arg = chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Neil Horman4eb701d2005-04-28 12:02:04 -0700168 asoc->sndbuf_used += SCTP_DATA_SNDSIZE(chunk) +
169 sizeof(struct sk_buff) +
170 sizeof(struct sctp_chunk);
171
Reshetova, Elena14afee42017-06-30 13:08:00 +0300172 refcount_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800173 sk->sk_wmem_queued += chunk->skb->truesize;
174 sk_mem_charge(sk, chunk->skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
Xin Longd04adf12017-10-28 02:13:29 +0800177static void sctp_clear_owner_w(struct sctp_chunk *chunk)
178{
179 skb_orphan(chunk->skb);
180}
181
182static void sctp_for_each_tx_datachunk(struct sctp_association *asoc,
183 void (*cb)(struct sctp_chunk *))
184
185{
186 struct sctp_outq *q = &asoc->outqueue;
187 struct sctp_transport *t;
188 struct sctp_chunk *chunk;
189
190 list_for_each_entry(t, &asoc->peer.transport_addr_list, transports)
191 list_for_each_entry(chunk, &t->transmitted, transmitted_list)
192 cb(chunk);
193
Xin Longa8dd3972017-11-26 20:56:07 +0800194 list_for_each_entry(chunk, &q->retransmit, transmitted_list)
Xin Longd04adf12017-10-28 02:13:29 +0800195 cb(chunk);
196
Xin Longa8dd3972017-11-26 20:56:07 +0800197 list_for_each_entry(chunk, &q->sacked, transmitted_list)
Xin Longd04adf12017-10-28 02:13:29 +0800198 cb(chunk);
199
Xin Longa8dd3972017-11-26 20:56:07 +0800200 list_for_each_entry(chunk, &q->abandoned, transmitted_list)
Xin Longd04adf12017-10-28 02:13:29 +0800201 cb(chunk);
202
203 list_for_each_entry(chunk, &q->out_chunk_list, list)
204 cb(chunk);
205}
206
Xin Long13228232017-12-08 21:04:09 +0800207static void sctp_for_each_rx_skb(struct sctp_association *asoc, struct sock *sk,
208 void (*cb)(struct sk_buff *, struct sock *))
209
210{
211 struct sk_buff *skb, *tmp;
212
213 sctp_skb_for_each(skb, &asoc->ulpq.lobby, tmp)
214 cb(skb, sk);
215
216 sctp_skb_for_each(skb, &asoc->ulpq.reasm, tmp)
217 cb(skb, sk);
218
219 sctp_skb_for_each(skb, &asoc->ulpq.reasm_uo, tmp)
220 cb(skb, sk);
221}
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223/* Verify that this is a valid address. */
224static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr,
225 int len)
226{
227 struct sctp_af *af;
228
229 /* Verify basic sockaddr. */
230 af = sctp_sockaddr_af(sctp_sk(sk), addr, len);
231 if (!af)
232 return -EINVAL;
233
234 /* Is this a valid SCTP address? */
Vlad Yasevich5636bef2006-06-17 22:55:35 -0700235 if (!af->addr_valid(addr, sctp_sk(sk), NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return -EINVAL;
237
238 if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr)))
239 return -EINVAL;
240
241 return 0;
242}
243
244/* Look up the association by its id. If this is not a UDP-style
245 * socket, the ID field is always ignored.
246 */
247struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
248{
249 struct sctp_association *asoc = NULL;
250
251 /* If this is not a UDP-style socket, assoc id should be ignored. */
252 if (!sctp_style(sk, UDP)) {
253 /* Return NULL if the socket state is not ESTABLISHED. It
254 * could be a TCP-style listening socket or a socket which
255 * hasn't yet called connect() to establish an association.
256 */
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -0300257 if (!sctp_sstate(sk, ESTABLISHED) && !sctp_sstate(sk, CLOSING))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return NULL;
259
260 /* Get the first and the only association from the list. */
261 if (!list_empty(&sctp_sk(sk)->ep->asocs))
262 asoc = list_entry(sctp_sk(sk)->ep->asocs.next,
263 struct sctp_association, asocs);
264 return asoc;
265 }
266
267 /* Otherwise this is a UDP-style socket. */
268 if (!id || (id == (sctp_assoc_t)-1))
269 return NULL;
270
271 spin_lock_bh(&sctp_assocs_id_lock);
272 asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id);
273 spin_unlock_bh(&sctp_assocs_id_lock);
274
275 if (!asoc || (asoc->base.sk != sk) || asoc->base.dead)
276 return NULL;
277
278 return asoc;
279}
280
281/* Look up the transport from an address and an assoc id. If both address and
282 * id are specified, the associations matching the address and the id should be
283 * the same.
284 */
285static struct sctp_transport *sctp_addr_id2transport(struct sock *sk,
286 struct sockaddr_storage *addr,
287 sctp_assoc_t id)
288{
289 struct sctp_association *addr_asoc = NULL, *id_asoc = NULL;
Xin Long6f29a132017-01-24 14:01:53 +0800290 struct sctp_af *af = sctp_get_af_specific(addr->ss_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 union sctp_addr *laddr = (union sctp_addr *)addr;
Xin Long6f29a132017-01-24 14:01:53 +0800292 struct sctp_transport *transport;
293
Xin Long912964e2017-02-07 20:56:08 +0800294 if (!af || sctp_verify_addr(sk, laddr, af->sockaddr_len))
Xin Long6f29a132017-01-24 14:01:53 +0800295 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
Al Virocd4ff032006-11-20 17:11:33 -0800298 laddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 &transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 if (!addr_asoc)
302 return NULL;
303
304 id_asoc = sctp_id2assoc(sk, id);
305 if (id_asoc && (id_asoc != addr_asoc))
306 return NULL;
307
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600308 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 (union sctp_addr *)addr);
310
311 return transport;
312}
313
314/* API 3.1.2 bind() - UDP Style Syntax
315 * The syntax of bind() is,
316 *
317 * ret = bind(int sd, struct sockaddr *addr, int addrlen);
318 *
319 * sd - the socket descriptor returned by socket().
320 * addr - the address structure (struct sockaddr_in or struct
321 * sockaddr_in6 [RFC 2553]),
322 * addr_len - the size of the address structure.
323 */
Daniel Borkmanndda91922013-06-17 11:40:05 +0200324static int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
326 int retval = 0;
327
wangweidong048ed4b2014-01-21 15:44:11 +0800328 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Daniel Borkmannbb333812013-06-28 19:49:40 +0200330 pr_debug("%s: sk:%p, addr:%p, addr_len:%d\n", __func__, sk,
331 addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333 /* Disallow binding twice. */
334 if (!sctp_sk(sk)->ep->base.bind_addr.port)
Frank Filz3f7a87d2005-06-20 13:14:57 -0700335 retval = sctp_do_bind(sk, (union sctp_addr *)addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 addr_len);
337 else
338 retval = -EINVAL;
339
wangweidong048ed4b2014-01-21 15:44:11 +0800340 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 return retval;
343}
344
345static long sctp_get_port_local(struct sock *, union sctp_addr *);
346
347/* Verify this is a valid sockaddr. */
348static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
349 union sctp_addr *addr, int len)
350{
351 struct sctp_af *af;
352
353 /* Check minimum size. */
354 if (len < sizeof (struct sockaddr))
355 return NULL;
356
Xin Longc5006b82018-01-15 17:02:00 +0800357 if (!opt->pf->af_supported(addr->sa.sa_family, opt))
358 return NULL;
359
Eric Dumazet81e98372018-04-08 07:52:08 -0700360 if (addr->sa.sa_family == AF_INET6) {
361 if (len < SIN6_LEN_RFC2133)
362 return NULL;
363 /* V4 mapped address are really of AF_INET family */
364 if (ipv6_addr_v4mapped(&addr->v6.sin6_addr) &&
365 !opt->pf->af_supported(AF_INET, opt))
366 return NULL;
367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 /* If we get this far, af is valid. */
370 af = sctp_get_af_specific(addr->sa.sa_family);
371
372 if (len < af->sockaddr_len)
373 return NULL;
374
375 return af;
376}
377
378/* Bind a local address either to an endpoint or to an association. */
Daniel Borkmanndda91922013-06-17 11:40:05 +0200379static int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Eric W. Biederman35946982012-11-16 03:03:12 +0000381 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 struct sctp_sock *sp = sctp_sk(sk);
383 struct sctp_endpoint *ep = sp->ep;
384 struct sctp_bind_addr *bp = &ep->base.bind_addr;
385 struct sctp_af *af;
386 unsigned short snum;
387 int ret = 0;
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 /* Common sockaddr verification. */
390 af = sctp_sockaddr_af(sp, addr, len);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700391 if (!af) {
Daniel Borkmannbb333812013-06-28 19:49:40 +0200392 pr_debug("%s: sk:%p, newaddr:%p, len:%d EINVAL\n",
393 __func__, sk, addr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return -EINVAL;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700395 }
396
397 snum = ntohs(addr->v4.sin_port);
398
Daniel Borkmannbb333812013-06-28 19:49:40 +0200399 pr_debug("%s: sk:%p, new addr:%pISc, port:%d, new port:%d, len:%d\n",
400 __func__, sk, &addr->sa, bp->port, snum, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 /* PF specific bind() address verification. */
403 if (!sp->pf->bind_verify(sp, addr))
404 return -EADDRNOTAVAIL;
405
Vlad Yasevich8b358052007-05-15 17:14:58 -0400406 /* We must either be unbound, or bind to the same port.
407 * It's OK to allow 0 ports if we are already bound.
408 * We'll just inhert an already bound port in this case
409 */
410 if (bp->port) {
411 if (!snum)
412 snum = bp->port;
413 else if (snum != bp->port) {
Daniel Borkmannbb333812013-06-28 19:49:40 +0200414 pr_debug("%s: new port %d doesn't match existing port "
415 "%d\n", __func__, snum, bp->port);
Vlad Yasevich8b358052007-05-15 17:14:58 -0400416 return -EINVAL;
417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
419
Krister Johansen4548b682017-01-20 17:49:11 -0800420 if (snum && snum < inet_prot_sock(net) &&
Eric W. Biederman35946982012-11-16 03:03:12 +0000421 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return -EACCES;
423
Vlad Yasevich4e540642008-07-18 23:06:32 -0700424 /* See if the address matches any of the addresses we may have
425 * already bound before checking against other endpoints.
426 */
427 if (sctp_bind_addr_match(bp, addr, sp))
428 return -EINVAL;
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 /* Make sure we are allowed to bind here.
431 * The function sctp_get_port_local() does duplicate address
432 * detection.
433 */
Vlad Yasevich2772b492007-08-21 14:24:30 +0900434 addr->v4.sin_port = htons(snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if ((ret = sctp_get_port_local(sk, addr))) {
Vlad Yasevich4e540642008-07-18 23:06:32 -0700436 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
438
439 /* Refresh ephemeral port. */
440 if (!bp->port)
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000441 bp->port = inet_sk(sk)->inet_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Vlad Yasevich559cf712007-09-16 16:03:28 -0700443 /* Add the address to the bind address list.
444 * Use GFP_ATOMIC since BHs will be disabled.
445 */
Marcelo Ricardo Leitner133800d2016-03-08 10:34:28 -0300446 ret = sctp_add_bind_addr(bp, addr, af->sockaddr_len,
447 SCTP_ADDR_SRC, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 /* Copy back into socket for getsockname() use. */
450 if (!ret) {
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000451 inet_sk(sk)->inet_sport = htons(inet_sk(sk)->inet_num);
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600452 sp->pf->to_sk_saddr(addr, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
454
455 return ret;
456}
457
458 /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
459 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900460 * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 * at any one time. If a sender, after sending an ASCONF chunk, decides
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900462 * it needs to transfer another ASCONF Chunk, it MUST wait until the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900464 * subsequent ASCONF. Note this restriction binds each side, so at any
465 * time two ASCONF may be in-transit on any given association (one sent
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 * from each endpoint).
467 */
468static int sctp_send_asconf(struct sctp_association *asoc,
469 struct sctp_chunk *chunk)
470{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +0000471 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 int retval = 0;
473
474 /* If there is an outstanding ASCONF chunk, queue it for later
475 * transmission.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900476 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (asoc->addip_last_asconf) {
David S. Miller79af02c2005-07-08 21:47:49 -0700478 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900479 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481
482 /* Hold the chunk until an ASCONF_ACK is received. */
483 sctp_chunk_hold(chunk);
Eric W. Biederman55e26eb2012-08-07 07:25:24 +0000484 retval = sctp_primitive_ASCONF(net, asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 if (retval)
486 sctp_chunk_free(chunk);
487 else
488 asoc->addip_last_asconf = chunk;
489
490out:
491 return retval;
492}
493
494/* Add a list of addresses as bind addresses to local endpoint or
495 * association.
496 *
497 * Basically run through each address specified in the addrs/addrcnt
498 * array/length pair, determine if it is IPv6 or IPv4 and call
499 * sctp_do_bind() on it.
500 *
501 * If any of them fails, then the operation will be reversed and the
502 * ones that were added will be removed.
503 *
504 * Only sctp_setsockopt_bindx() is supposed to call this function.
505 */
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +0200506static int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
508 int cnt;
509 int retval = 0;
510 void *addr_buf;
511 struct sockaddr *sa_addr;
512 struct sctp_af *af;
513
Daniel Borkmannbb333812013-06-28 19:49:40 +0200514 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n", __func__, sk,
515 addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 addr_buf = addrs;
518 for (cnt = 0; cnt < addrcnt; cnt++) {
519 /* The list may contain either IPv4 or IPv6 address;
520 * determine the address length for walking thru the list.
521 */
Joe Perchesea110732011-06-13 16:21:26 +0000522 sa_addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 af = sctp_get_af_specific(sa_addr->sa_family);
524 if (!af) {
525 retval = -EINVAL;
526 goto err_bindx_add;
527 }
528
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900529 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 af->sockaddr_len);
531
532 addr_buf += af->sockaddr_len;
533
534err_bindx_add:
535 if (retval < 0) {
536 /* Failed. Cleanup the ones that have been added */
537 if (cnt > 0)
538 sctp_bindx_rem(sk, addrs, cnt);
539 return retval;
540 }
541 }
542
543 return retval;
544}
545
546/* Send an ASCONF chunk with Add IP address parameters to all the peers of the
547 * associations that are part of the endpoint indicating that a list of local
548 * addresses are added to the endpoint.
549 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900550 * If any of the addresses is already in the bind address list of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 * association, we do not send the chunk for that association. But it will not
552 * affect other associations.
553 *
554 * Only sctp_setsockopt_bindx() is supposed to call this function.
555 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900556static int sctp_send_asconf_add_ip(struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 struct sockaddr *addrs,
558 int addrcnt)
559{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000560 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 struct sctp_sock *sp;
562 struct sctp_endpoint *ep;
563 struct sctp_association *asoc;
564 struct sctp_bind_addr *bp;
565 struct sctp_chunk *chunk;
566 struct sctp_sockaddr_entry *laddr;
567 union sctp_addr *addr;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700568 union sctp_addr saveaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 void *addr_buf;
570 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 struct list_head *p;
572 int i;
573 int retval = 0;
574
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000575 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 return retval;
577
578 sp = sctp_sk(sk);
579 ep = sp->ep;
580
Daniel Borkmannbb333812013-06-28 19:49:40 +0200581 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
582 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700584 list_for_each_entry(asoc, &ep->asocs, asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (!asoc->peer.asconf_capable)
586 continue;
587
588 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_ADD_IP)
589 continue;
590
591 if (!sctp_state(asoc, ESTABLISHED))
592 continue;
593
594 /* Check if any address in the packed array of addresses is
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900595 * in the bind address list of the association. If so,
596 * do not send the asconf chunk to its peer, but continue with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 * other associations.
598 */
599 addr_buf = addrs;
600 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000601 addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 af = sctp_get_af_specific(addr->v4.sin_family);
603 if (!af) {
604 retval = -EINVAL;
605 goto out;
606 }
607
608 if (sctp_assoc_lookup_laddr(asoc, addr))
609 break;
610
611 addr_buf += af->sockaddr_len;
612 }
613 if (i < addrcnt)
614 continue;
615
Vlad Yasevich559cf712007-09-16 16:03:28 -0700616 /* Use the first valid address in bind addr list of
617 * association as Address Parameter of ASCONF CHUNK.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 bp = &asoc->base.bind_addr;
620 p = bp->address_list.next;
621 laddr = list_entry(p, struct sctp_sockaddr_entry, list);
Al Viro5ae955c2006-11-20 17:22:08 -0800622 chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 addrcnt, SCTP_PARAM_ADD_IP);
624 if (!chunk) {
625 retval = -ENOMEM;
626 goto out;
627 }
628
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700629 /* Add the new addresses to the bind address list with
630 * use_as_src set to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700632 addr_buf = addrs;
633 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000634 addr = addr_buf;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700635 af = sctp_get_af_specific(addr->v4.sin_family);
636 memcpy(&saveaddr, addr, af->sockaddr_len);
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800637 retval = sctp_add_bind_addr(bp, &saveaddr,
Marcelo Ricardo Leitner133800d2016-03-08 10:34:28 -0300638 sizeof(saveaddr),
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800639 SCTP_ADDR_NEW, GFP_ATOMIC);
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700640 addr_buf += af->sockaddr_len;
641 }
Michio Honda8a07eb02011-04-26 20:19:36 +0900642 if (asoc->src_out_of_asoc_ok) {
643 struct sctp_transport *trans;
644
645 list_for_each_entry(trans,
646 &asoc->peer.transport_addr_list, transports) {
647 /* Clear the source and route cache */
Julian Anastasovc86a7732017-02-06 23:14:13 +0200648 sctp_transport_dst_release(trans);
Michio Honda8a07eb02011-04-26 20:19:36 +0900649 trans->cwnd = min(4*asoc->pathmtu, max_t(__u32,
650 2*asoc->pathmtu, 4380));
651 trans->ssthresh = asoc->peer.i.a_rwnd;
652 trans->rto = asoc->rto_initial;
Michele Baldessari196d6752012-12-01 04:49:42 +0000653 sctp_max_rto(asoc, trans);
Michio Honda8a07eb02011-04-26 20:19:36 +0900654 trans->rtt = trans->srtt = trans->rttvar = 0;
655 sctp_transport_route(trans, NULL,
656 sctp_sk(asoc->base.sk));
657 }
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) {
Julian Anastasovc86a7732017-02-06 23:14:13 +0200899 sctp_transport_dst_release(transport);
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700900 sctp_transport_route(transport, NULL,
901 sctp_sk(asoc->base.sk));
902 }
903
Michio Honda8a07eb02011-04-26 20:19:36 +0900904 if (stored)
905 /* We don't need to transmit ASCONF */
906 continue;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700907 retval = sctp_send_asconf(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 }
909out:
910 return retval;
911}
912
Michio Honda9f7d6532011-04-26 19:32:51 +0900913/* set addr events to assocs in the endpoint. ep and addr_wq must be locked */
914int sctp_asconf_mgmt(struct sctp_sock *sp, struct sctp_sockaddr_entry *addrw)
915{
916 struct sock *sk = sctp_opt2sk(sp);
917 union sctp_addr *addr;
918 struct sctp_af *af;
919
920 /* It is safe to write port space in caller. */
921 addr = &addrw->a;
922 addr->v4.sin_port = htons(sp->ep->base.bind_addr.port);
923 af = sctp_get_af_specific(addr->sa.sa_family);
924 if (!af)
925 return -EINVAL;
926 if (sctp_verify_addr(sk, addr, af->sockaddr_len))
927 return -EINVAL;
928
929 if (addrw->state == SCTP_ADDR_NEW)
930 return sctp_send_asconf_add_ip(sk, (struct sockaddr *)addr, 1);
931 else
932 return sctp_send_asconf_del_ip(sk, (struct sockaddr *)addr, 1);
933}
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935/* Helper for tunneling sctp_bindx() requests through sctp_setsockopt()
936 *
937 * API 8.1
938 * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt,
939 * int flags);
940 *
941 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
942 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
943 * or IPv6 addresses.
944 *
945 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
946 * Section 3.1.2 for this usage.
947 *
948 * addrs is a pointer to an array of one or more socket addresses. Each
949 * address is contained in its appropriate structure (i.e. struct
950 * sockaddr_in or struct sockaddr_in6) the family of the address type
Ville Nuorvala23c435f2006-10-16 22:08:28 -0700951 * must be used to distinguish the address length (note that this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 * representation is termed a "packed array" of addresses). The caller
953 * specifies the number of addresses in the array with addrcnt.
954 *
955 * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns
956 * -1, and sets errno to the appropriate error code.
957 *
958 * For SCTP, the port given in each socket address must be the same, or
959 * sctp_bindx() will fail, setting errno to EINVAL.
960 *
961 * The flags parameter is formed from the bitwise OR of zero or more of
962 * the following currently defined flags:
963 *
964 * SCTP_BINDX_ADD_ADDR
965 *
966 * SCTP_BINDX_REM_ADDR
967 *
968 * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the
969 * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given
970 * addresses from the association. The two flags are mutually exclusive;
971 * if both are given, sctp_bindx() will fail with EINVAL. A caller may
972 * not remove all addresses from an association; sctp_bindx() will
973 * reject such an attempt with EINVAL.
974 *
975 * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate
976 * additional addresses with an endpoint after calling bind(). Or use
977 * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening
978 * socket is associated with so that no new association accepted will be
979 * associated with those addresses. If the endpoint supports dynamic
980 * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a
981 * endpoint to send the appropriate message to the peer to change the
982 * peers address lists.
983 *
984 * Adding and removing addresses from a connected association is
985 * optional functionality. Implementations that do not support this
986 * functionality should return EOPNOTSUPP.
987 *
988 * Basically do nothing but copying the addresses from user to kernel
989 * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk.
Frank Filz3f7a87d2005-06-20 13:14:57 -0700990 * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
991 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
994 * it.
995 *
996 * sk The sk of the socket
997 * addrs The pointer to the addresses in user land
998 * addrssize Size of the addrs buffer
999 * op Operation to perform (add or remove, see the flags of
1000 * sctp_bindx)
1001 *
1002 * Returns 0 if ok, <0 errno code on error.
1003 */
wangweidong26ac8e52013-12-23 12:16:51 +08001004static int sctp_setsockopt_bindx(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001005 struct sockaddr __user *addrs,
1006 int addrs_size, int op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007{
1008 struct sockaddr *kaddrs;
1009 int err;
1010 int addrcnt = 0;
1011 int walk_size = 0;
1012 struct sockaddr *sa_addr;
1013 void *addr_buf;
1014 struct sctp_af *af;
1015
Daniel Borkmannbb333812013-06-28 19:49:40 +02001016 pr_debug("%s: sk:%p addrs:%p addrs_size:%d opt:%d\n",
1017 __func__, sk, addrs, addrs_size, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 if (unlikely(addrs_size <= 0))
1020 return -EINVAL;
1021
Al Viroc981f252018-01-07 13:19:09 -05001022 kaddrs = vmemdup_user(addrs, addrs_size);
1023 if (unlikely(IS_ERR(kaddrs)))
1024 return PTR_ERR(kaddrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001026 /* Walk through the addrs buffer and count the number of addresses. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 addr_buf = kaddrs;
1028 while (walk_size < addrs_size) {
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001029 if (walk_size + sizeof(sa_family_t) > addrs_size) {
Al Viroc981f252018-01-07 13:19:09 -05001030 kvfree(kaddrs);
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001031 return -EINVAL;
1032 }
1033
Joe Perchesea110732011-06-13 16:21:26 +00001034 sa_addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 af = sctp_get_af_specific(sa_addr->sa_family);
1036
1037 /* If the address family is not supported or if this address
1038 * causes the address buffer to overflow return EINVAL.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001039 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
Al Viroc981f252018-01-07 13:19:09 -05001041 kvfree(kaddrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 return -EINVAL;
1043 }
1044 addrcnt++;
1045 addr_buf += af->sockaddr_len;
1046 walk_size += af->sockaddr_len;
1047 }
1048
1049 /* Do the work. */
1050 switch (op) {
1051 case SCTP_BINDX_ADD_ADDR:
Richard Haines2277c7c2018-02-13 20:56:24 +00001052 /* Allow security module to validate bindx addresses. */
1053 err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_BINDX_ADD,
1054 (struct sockaddr *)kaddrs,
1055 addrs_size);
1056 if (err)
1057 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 err = sctp_bindx_add(sk, kaddrs, addrcnt);
1059 if (err)
1060 goto out;
1061 err = sctp_send_asconf_add_ip(sk, kaddrs, addrcnt);
1062 break;
1063
1064 case SCTP_BINDX_REM_ADDR:
1065 err = sctp_bindx_rem(sk, kaddrs, addrcnt);
1066 if (err)
1067 goto out;
1068 err = sctp_send_asconf_del_ip(sk, kaddrs, addrcnt);
1069 break;
1070
1071 default:
1072 err = -EINVAL;
1073 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076out:
Al Viroc981f252018-01-07 13:19:09 -05001077 kvfree(kaddrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079 return err;
1080}
1081
Frank Filz3f7a87d2005-06-20 13:14:57 -07001082/* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size)
1083 *
1084 * Common routine for handling connect() and sctp_connectx().
1085 * Connect will come in with just a single address.
1086 */
wangweidong26ac8e52013-12-23 12:16:51 +08001087static int __sctp_connect(struct sock *sk,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001088 struct sockaddr *kaddrs,
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001089 int addrs_size,
1090 sctp_assoc_t *assoc_id)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001091{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001092 struct net *net = sock_net(sk);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001093 struct sctp_sock *sp;
1094 struct sctp_endpoint *ep;
1095 struct sctp_association *asoc = NULL;
1096 struct sctp_association *asoc2;
1097 struct sctp_transport *transport;
1098 union sctp_addr to;
Xin Long1c662012017-08-05 19:59:54 +08001099 enum sctp_scope scope;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001100 long timeo;
1101 int err = 0;
1102 int addrcnt = 0;
1103 int walk_size = 0;
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001104 union sctp_addr *sa_addr = NULL;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001105 void *addr_buf;
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001106 unsigned short port;
Vlad Yasevichf50f95c2007-07-03 12:47:40 -04001107 unsigned int f_flags = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001108
1109 sp = sctp_sk(sk);
1110 ep = sp->ep;
1111
1112 /* connect() cannot be done on a socket that is already in ESTABLISHED
1113 * state - UDP-style peeled off socket or a TCP-style socket that
1114 * is already connected.
1115 * It cannot be done even on a TCP-style listening socket.
1116 */
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -03001117 if (sctp_sstate(sk, ESTABLISHED) || sctp_sstate(sk, CLOSING) ||
Frank Filz3f7a87d2005-06-20 13:14:57 -07001118 (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))) {
1119 err = -EISCONN;
1120 goto out_free;
1121 }
1122
1123 /* Walk through the addrs buffer and count the number of addresses. */
1124 addr_buf = kaddrs;
1125 while (walk_size < addrs_size) {
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001126 struct sctp_af *af;
1127
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001128 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1129 err = -EINVAL;
1130 goto out_free;
1131 }
1132
Joe Perchesea110732011-06-13 16:21:26 +00001133 sa_addr = addr_buf;
Al Viro4bdf4b52006-11-20 17:10:20 -08001134 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001135
1136 /* If the address family is not supported or if this address
1137 * causes the address buffer to overflow return EINVAL.
1138 */
1139 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1140 err = -EINVAL;
1141 goto out_free;
1142 }
1143
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001144 port = ntohs(sa_addr->v4.sin_port);
1145
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001146 /* Save current address so we can work with it */
1147 memcpy(&to, sa_addr, af->sockaddr_len);
1148
1149 err = sctp_verify_addr(sk, &to, af->sockaddr_len);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001150 if (err)
1151 goto out_free;
1152
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001153 /* Make sure the destination port is correctly set
1154 * in all addresses.
1155 */
Wei Yongjun524fba62013-04-03 03:02:28 +00001156 if (asoc && asoc->peer.port && asoc->peer.port != port) {
1157 err = -EINVAL;
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001158 goto out_free;
Wei Yongjun524fba62013-04-03 03:02:28 +00001159 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001160
1161 /* Check if there already is a matching association on the
1162 * endpoint (other than the one created here).
1163 */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001164 asoc2 = sctp_endpoint_lookup_assoc(ep, &to, &transport);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001165 if (asoc2 && asoc2 != asoc) {
1166 if (asoc2->state >= SCTP_STATE_ESTABLISHED)
1167 err = -EISCONN;
1168 else
1169 err = -EALREADY;
1170 goto out_free;
1171 }
1172
1173 /* If we could not find a matching association on the endpoint,
1174 * make sure that there is no peeled-off association matching
1175 * the peer address even on another socket.
1176 */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001177 if (sctp_endpoint_is_peeled_off(ep, &to)) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07001178 err = -EADDRNOTAVAIL;
1179 goto out_free;
1180 }
1181
1182 if (!asoc) {
1183 /* If a bind() or sctp_bindx() is not called prior to
1184 * an sctp_connectx() call, the system picks an
1185 * ephemeral port and will choose an address set
1186 * equivalent to binding with a wildcard address.
1187 */
1188 if (!ep->base.bind_addr.port) {
1189 if (sctp_autobind(sk)) {
1190 err = -EAGAIN;
1191 goto out_free;
1192 }
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001193 } else {
1194 /*
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001195 * If an unprivileged user inherits a 1-many
1196 * style socket with open associations on a
1197 * privileged port, it MAY be permitted to
1198 * accept new associations, but it SHOULD NOT
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001199 * be permitted to open new associations.
1200 */
Krister Johansen4548b682017-01-20 17:49:11 -08001201 if (ep->base.bind_addr.port <
1202 inet_prot_sock(net) &&
1203 !ns_capable(net->user_ns,
1204 CAP_NET_BIND_SERVICE)) {
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001205 err = -EACCES;
1206 goto out_free;
1207 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001208 }
1209
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001210 scope = sctp_scope(&to);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001211 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1212 if (!asoc) {
1213 err = -ENOMEM;
1214 goto out_free;
1215 }
Vlad Yasevich409b95a2009-11-10 08:57:34 +00001216
1217 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope,
1218 GFP_KERNEL);
1219 if (err < 0) {
1220 goto out_free;
1221 }
1222
Frank Filz3f7a87d2005-06-20 13:14:57 -07001223 }
1224
1225 /* Prime the peer's transport structures. */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001226 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001227 SCTP_UNKNOWN);
1228 if (!transport) {
1229 err = -ENOMEM;
1230 goto out_free;
1231 }
1232
1233 addrcnt++;
1234 addr_buf += af->sockaddr_len;
1235 walk_size += af->sockaddr_len;
1236 }
1237
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001238 /* In case the user of sctp_connectx() wants an association
1239 * id back, assign one now.
1240 */
1241 if (assoc_id) {
1242 err = sctp_assoc_set_id(asoc, GFP_KERNEL);
1243 if (err < 0)
1244 goto out_free;
1245 }
1246
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001247 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001248 if (err < 0) {
1249 goto out_free;
1250 }
1251
1252 /* Initialize sk's dport and daddr for getpeername() */
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001253 inet_sk(sk)->inet_dport = htons(asoc->peer.port);
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001254 sp->pf->to_sk_daddr(sa_addr, sk);
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07001255 sk->sk_err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001256
Vlad Yasevichf50f95c2007-07-03 12:47:40 -04001257 /* in-kernel sockets don't generally have a file allocated to them
1258 * if all they do is call sock_create_kern().
1259 */
1260 if (sk->sk_socket->file)
1261 f_flags = sk->sk_socket->file->f_flags;
1262
1263 timeo = sock_sndtimeo(sk, f_flags & O_NONBLOCK);
1264
Marcelo Ricardo Leitner7233bc82016-11-03 17:03:41 -02001265 if (assoc_id)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001266 *assoc_id = asoc->assoc_id;
Richard Haines2277c7c2018-02-13 20:56:24 +00001267
Marcelo Ricardo Leitner7233bc82016-11-03 17:03:41 -02001268 err = sctp_wait_for_connect(asoc, &timeo);
1269 /* Note: the asoc may be freed after the return of
1270 * sctp_wait_for_connect.
1271 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07001272
1273 /* Don't free association on exit. */
1274 asoc = NULL;
1275
1276out_free:
Daniel Borkmannbb333812013-06-28 19:49:40 +02001277 pr_debug("%s: took out_free path with asoc:%p kaddrs:%p err:%d\n",
1278 __func__, asoc, kaddrs, err);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001279
Neil Horman2eebc1e2012-07-16 09:13:51 +00001280 if (asoc) {
1281 /* sctp_primitive_ASSOCIATE may have added this association
1282 * To the hash table, try to unhash it, just in case, its a noop
1283 * if it wasn't hashed so we're safe
1284 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07001285 sctp_association_free(asoc);
Neil Horman2eebc1e2012-07-16 09:13:51 +00001286 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001287 return err;
1288}
1289
1290/* Helper for tunneling sctp_connectx() requests through sctp_setsockopt()
1291 *
1292 * API 8.9
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001293 * int sctp_connectx(int sd, struct sockaddr *addrs, int addrcnt,
1294 * sctp_assoc_t *asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001295 *
1296 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
1297 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
1298 * or IPv6 addresses.
1299 *
1300 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
1301 * Section 3.1.2 for this usage.
1302 *
1303 * addrs is a pointer to an array of one or more socket addresses. Each
1304 * address is contained in its appropriate structure (i.e. struct
1305 * sockaddr_in or struct sockaddr_in6) the family of the address type
1306 * must be used to distengish the address length (note that this
1307 * representation is termed a "packed array" of addresses). The caller
1308 * specifies the number of addresses in the array with addrcnt.
1309 *
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001310 * On success, sctp_connectx() returns 0. It also sets the assoc_id to
1311 * the association id of the new association. On failure, sctp_connectx()
1312 * returns -1, and sets errno to the appropriate error code. The assoc_id
1313 * is not touched by the kernel.
Frank Filz3f7a87d2005-06-20 13:14:57 -07001314 *
1315 * For SCTP, the port given in each socket address must be the same, or
1316 * sctp_connectx() will fail, setting errno to EINVAL.
1317 *
1318 * An application can use sctp_connectx to initiate an association with
1319 * an endpoint that is multi-homed. Much like sctp_bindx() this call
1320 * allows a caller to specify multiple addresses at which a peer can be
1321 * reached. The way the SCTP stack uses the list of addresses to set up
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001322 * the association is implementation dependent. This function only
Frank Filz3f7a87d2005-06-20 13:14:57 -07001323 * specifies that the stack will try to make use of all the addresses in
1324 * the list when needed.
1325 *
1326 * Note that the list of addresses passed in is only used for setting up
1327 * the association. It does not necessarily equal the set of addresses
1328 * the peer uses for the resulting association. If the caller wants to
1329 * find out the set of peer addresses, it must use sctp_getpaddrs() to
1330 * retrieve them after the association has been set up.
1331 *
1332 * Basically do nothing but copying the addresses from user to kernel
1333 * land and invoking either sctp_connectx(). This is used for tunneling
1334 * the sctp_connectx() request through sctp_setsockopt() from userspace.
1335 *
Frank Filz3f7a87d2005-06-20 13:14:57 -07001336 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
1337 * it.
1338 *
1339 * sk The sk of the socket
1340 * addrs The pointer to the addresses in user land
1341 * addrssize Size of the addrs buffer
1342 *
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001343 * Returns >=0 if ok, <0 errno code on error.
Frank Filz3f7a87d2005-06-20 13:14:57 -07001344 */
wangweidong26ac8e52013-12-23 12:16:51 +08001345static int __sctp_setsockopt_connectx(struct sock *sk,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001346 struct sockaddr __user *addrs,
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001347 int addrs_size,
1348 sctp_assoc_t *assoc_id)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001349{
Frank Filz3f7a87d2005-06-20 13:14:57 -07001350 struct sockaddr *kaddrs;
Marcelo Ricardo Leitner9ba0b962015-12-23 16:28:40 -02001351 int err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001352
Daniel Borkmannbb333812013-06-28 19:49:40 +02001353 pr_debug("%s: sk:%p addrs:%p addrs_size:%d\n",
1354 __func__, sk, addrs, addrs_size);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001355
1356 if (unlikely(addrs_size <= 0))
1357 return -EINVAL;
1358
Al Viroc981f252018-01-07 13:19:09 -05001359 kaddrs = vmemdup_user(addrs, addrs_size);
1360 if (unlikely(IS_ERR(kaddrs)))
1361 return PTR_ERR(kaddrs);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001362
Richard Haines2277c7c2018-02-13 20:56:24 +00001363 /* Allow security module to validate connectx addresses. */
1364 err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_CONNECTX,
1365 (struct sockaddr *)kaddrs,
1366 addrs_size);
1367 if (err)
1368 goto out_free;
1369
Al Viroc981f252018-01-07 13:19:09 -05001370 err = __sctp_connect(sk, kaddrs, addrs_size, assoc_id);
Richard Haines2277c7c2018-02-13 20:56:24 +00001371
1372out_free:
Al Viroc981f252018-01-07 13:19:09 -05001373 kvfree(kaddrs);
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001374
Frank Filz3f7a87d2005-06-20 13:14:57 -07001375 return err;
1376}
1377
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001378/*
1379 * This is an older interface. It's kept for backward compatibility
1380 * to the option that doesn't provide association id.
1381 */
wangweidong26ac8e52013-12-23 12:16:51 +08001382static int sctp_setsockopt_connectx_old(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001383 struct sockaddr __user *addrs,
1384 int addrs_size)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001385{
1386 return __sctp_setsockopt_connectx(sk, addrs, addrs_size, NULL);
1387}
1388
1389/*
1390 * New interface for the API. The since the API is done with a socket
1391 * option, to make it simple we feed back the association id is as a return
1392 * indication to the call. Error is always negative and association id is
1393 * always positive.
1394 */
wangweidong26ac8e52013-12-23 12:16:51 +08001395static int sctp_setsockopt_connectx(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001396 struct sockaddr __user *addrs,
1397 int addrs_size)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001398{
1399 sctp_assoc_t assoc_id = 0;
1400 int err = 0;
1401
1402 err = __sctp_setsockopt_connectx(sk, addrs, addrs_size, &assoc_id);
1403
1404 if (err)
1405 return err;
1406 else
1407 return assoc_id;
1408}
1409
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001410/*
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001411 * New (hopefully final) interface for the API.
1412 * We use the sctp_getaddrs_old structure so that use-space library
Daniel Borkmannffd59392014-02-17 12:11:11 +01001413 * can avoid any unnecessary allocations. The only different part
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001414 * is that we store the actual length of the address buffer into the
Daniel Borkmannffd59392014-02-17 12:11:11 +01001415 * addrs_num structure member. That way we can re-use the existing
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001416 * code.
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001417 */
Daniel Borkmannffd59392014-02-17 12:11:11 +01001418#ifdef CONFIG_COMPAT
1419struct compat_sctp_getaddrs_old {
1420 sctp_assoc_t assoc_id;
1421 s32 addr_num;
1422 compat_uptr_t addrs; /* struct sockaddr * */
1423};
1424#endif
1425
wangweidong26ac8e52013-12-23 12:16:51 +08001426static int sctp_getsockopt_connectx3(struct sock *sk, int len,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001427 char __user *optval,
1428 int __user *optlen)
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001429{
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001430 struct sctp_getaddrs_old param;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001431 sctp_assoc_t assoc_id = 0;
1432 int err = 0;
1433
Daniel Borkmannffd59392014-02-17 12:11:11 +01001434#ifdef CONFIG_COMPAT
Andy Lutomirski96c0e0a2016-03-22 14:25:07 -07001435 if (in_compat_syscall()) {
Daniel Borkmannffd59392014-02-17 12:11:11 +01001436 struct compat_sctp_getaddrs_old param32;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001437
Daniel Borkmannffd59392014-02-17 12:11:11 +01001438 if (len < sizeof(param32))
1439 return -EINVAL;
1440 if (copy_from_user(&param32, optval, sizeof(param32)))
1441 return -EFAULT;
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001442
Daniel Borkmannffd59392014-02-17 12:11:11 +01001443 param.assoc_id = param32.assoc_id;
1444 param.addr_num = param32.addr_num;
1445 param.addrs = compat_ptr(param32.addrs);
1446 } else
1447#endif
1448 {
1449 if (len < sizeof(param))
1450 return -EINVAL;
1451 if (copy_from_user(&param, optval, sizeof(param)))
1452 return -EFAULT;
1453 }
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001454
Daniel Borkmannffd59392014-02-17 12:11:11 +01001455 err = __sctp_setsockopt_connectx(sk, (struct sockaddr __user *)
1456 param.addrs, param.addr_num,
1457 &assoc_id);
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001458 if (err == 0 || err == -EINPROGRESS) {
1459 if (copy_to_user(optval, &assoc_id, sizeof(assoc_id)))
1460 return -EFAULT;
1461 if (put_user(sizeof(assoc_id), optlen))
1462 return -EFAULT;
1463 }
1464
1465 return err;
1466}
1467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468/* API 3.1.4 close() - UDP Style Syntax
1469 * Applications use close() to perform graceful shutdown (as described in
1470 * Section 10.1 of [SCTP]) on ALL the associations currently represented
1471 * by a UDP-style socket.
1472 *
1473 * The syntax is
1474 *
1475 * ret = close(int sd);
1476 *
1477 * sd - the socket descriptor of the associations to be closed.
1478 *
1479 * To gracefully shutdown a specific association represented by the
1480 * UDP-style socket, an application should use the sendmsg() call,
1481 * passing no user data, but including the appropriate flag in the
1482 * ancillary data (see Section xxxx).
1483 *
1484 * If sd in the close() call is a branched-off socket representing only
1485 * one association, the shutdown is performed on that association only.
1486 *
1487 * 4.1.6 close() - TCP Style Syntax
1488 *
1489 * Applications use close() to gracefully close down an association.
1490 *
1491 * The syntax is:
1492 *
1493 * int close(int sd);
1494 *
1495 * sd - the socket descriptor of the association to be closed.
1496 *
1497 * After an application calls close() on a socket descriptor, no further
1498 * socket operations will succeed on that descriptor.
1499 *
1500 * API 7.1.4 SO_LINGER
1501 *
1502 * An application using the TCP-style socket can use this option to
1503 * perform the SCTP ABORT primitive. The linger option structure is:
1504 *
1505 * struct linger {
1506 * int l_onoff; // option on/off
1507 * int l_linger; // linger time
1508 * };
1509 *
1510 * To enable the option, set l_onoff to 1. If the l_linger value is set
1511 * to 0, calling close() is the same as the ABORT primitive. If the
1512 * value is set to a negative value, the setsockopt() call will return
1513 * an error. If the value is set to a positive value linger_time, the
1514 * close() can be blocked for at most linger_time ms. If the graceful
1515 * shutdown phase does not finish during this period, close() will
1516 * return but the graceful shutdown phase continues in the system.
1517 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02001518static void sctp_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001520 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 struct sctp_endpoint *ep;
1522 struct sctp_association *asoc;
1523 struct list_head *pos, *temp;
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001524 unsigned int data_was_unread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Daniel Borkmannbb333812013-06-28 19:49:40 +02001526 pr_debug("%s: sk:%p, timeout:%ld\n", __func__, sk, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Xin Long6dfe4b92017-06-10 14:56:56 +08001528 lock_sock_nested(sk, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 sk->sk_shutdown = SHUTDOWN_MASK;
Yafang Shaocbabf462017-12-20 11:12:54 +08001530 inet_sk_set_state(sk, SCTP_SS_CLOSING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
1532 ep = sctp_sk(sk)->ep;
1533
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001534 /* Clean up any skbs sitting on the receive queue. */
1535 data_was_unread = sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1536 data_was_unread += sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1537
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07001538 /* Walk all associations on an endpoint. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 list_for_each_safe(pos, temp, &ep->asocs) {
1540 asoc = list_entry(pos, struct sctp_association, asocs);
1541
1542 if (sctp_style(sk, TCP)) {
1543 /* A closed association can still be in the list if
1544 * it belongs to a TCP-style listening socket that is
1545 * not yet accepted. If so, free it. If not, send an
1546 * ABORT or SHUTDOWN based on the linger options.
1547 */
1548 if (sctp_state(asoc, CLOSED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 sctp_association_free(asoc);
Vladislav Yasevichb89498a2006-05-19 14:32:06 -07001550 continue;
1551 }
1552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001554 if (data_was_unread || !skb_queue_empty(&asoc->ulpq.lobby) ||
1555 !skb_queue_empty(&asoc->ulpq.reasm) ||
Xin Long13228232017-12-08 21:04:09 +08001556 !skb_queue_empty(&asoc->ulpq.reasm_uo) ||
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001557 (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) {
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001558 struct sctp_chunk *chunk;
1559
1560 chunk = sctp_make_abort_user(asoc, NULL, 0);
Xin Long068d8bd2015-12-29 17:49:25 +08001561 sctp_primitive_ABORT(net, asoc, chunk);
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001562 } else
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001563 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 }
1565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 /* On a TCP-style socket, block for at most linger_time if set. */
1567 if (sctp_style(sk, TCP) && timeout)
1568 sctp_wait_for_close(sk, timeout);
1569
1570 /* This will run the backlog queue. */
wangweidong048ed4b2014-01-21 15:44:11 +08001571 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
1573 /* Supposedly, no process has access to the socket, but
1574 * the net layers still may.
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001575 * Also, sctp_destroy_sock() needs to be called with addr_wq_lock
1576 * held and that should be grabbed before socket lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 */
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001578 spin_lock_bh(&net->sctp.addr_wq_lock);
Xin Long6dfe4b92017-06-10 14:56:56 +08001579 bh_lock_sock_nested(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
1581 /* Hold the sock, since sk_common_release() will put sock_put()
1582 * and we have just a little more cleanup.
1583 */
1584 sock_hold(sk);
1585 sk_common_release(sk);
1586
wangweidong5bc1d1b2014-01-21 15:44:12 +08001587 bh_unlock_sock(sk);
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001588 spin_unlock_bh(&net->sctp.addr_wq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
1590 sock_put(sk);
1591
1592 SCTP_DBG_OBJCNT_DEC(sock);
1593}
1594
1595/* Handle EPIPE error. */
1596static int sctp_error(struct sock *sk, int flags, int err)
1597{
1598 if (err == -EPIPE)
1599 err = sock_error(sk) ? : -EPIPE;
1600 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1601 send_sig(SIGPIPE, current, 0);
1602 return err;
1603}
1604
1605/* API 3.1.3 sendmsg() - UDP Style Syntax
1606 *
1607 * An application uses sendmsg() and recvmsg() calls to transmit data to
1608 * and receive data from its peer.
1609 *
1610 * ssize_t sendmsg(int socket, const struct msghdr *message,
1611 * int flags);
1612 *
1613 * socket - the socket descriptor of the endpoint.
1614 * message - pointer to the msghdr structure which contains a single
1615 * user message and possibly some ancillary data.
1616 *
1617 * See Section 5 for complete description of the data
1618 * structures.
1619 *
1620 * flags - flags sent or received with the user message, see Section
1621 * 5 for complete description of the flags.
1622 *
1623 * Note: This function could use a rewrite especially when explicit
1624 * connect support comes in.
1625 */
1626/* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */
1627
Xin Longa05437a2017-08-11 10:23:48 +08001628static int sctp_msghdr_parse(const struct msghdr *msg,
1629 struct sctp_cmsgs *cmsgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Xin Long204f8172018-03-01 23:05:14 +08001631static int sctp_sendmsg_parse(struct sock *sk, struct sctp_cmsgs *cmsgs,
1632 struct sctp_sndrcvinfo *srinfo,
1633 const struct msghdr *msg, size_t msg_len)
1634{
1635 __u16 sflags;
1636 int err;
1637
1638 if (sctp_sstate(sk, LISTENING) && sctp_style(sk, TCP))
1639 return -EPIPE;
1640
1641 if (msg_len > sk->sk_sndbuf)
1642 return -EMSGSIZE;
1643
1644 memset(cmsgs, 0, sizeof(*cmsgs));
1645 err = sctp_msghdr_parse(msg, cmsgs);
1646 if (err) {
1647 pr_debug("%s: msghdr parse err:%x\n", __func__, err);
1648 return err;
1649 }
1650
1651 memset(srinfo, 0, sizeof(*srinfo));
1652 if (cmsgs->srinfo) {
1653 srinfo->sinfo_stream = cmsgs->srinfo->sinfo_stream;
1654 srinfo->sinfo_flags = cmsgs->srinfo->sinfo_flags;
1655 srinfo->sinfo_ppid = cmsgs->srinfo->sinfo_ppid;
1656 srinfo->sinfo_context = cmsgs->srinfo->sinfo_context;
1657 srinfo->sinfo_assoc_id = cmsgs->srinfo->sinfo_assoc_id;
1658 srinfo->sinfo_timetolive = cmsgs->srinfo->sinfo_timetolive;
1659 }
1660
1661 if (cmsgs->sinfo) {
1662 srinfo->sinfo_stream = cmsgs->sinfo->snd_sid;
1663 srinfo->sinfo_flags = cmsgs->sinfo->snd_flags;
1664 srinfo->sinfo_ppid = cmsgs->sinfo->snd_ppid;
1665 srinfo->sinfo_context = cmsgs->sinfo->snd_context;
1666 srinfo->sinfo_assoc_id = cmsgs->sinfo->snd_assoc_id;
1667 }
1668
Xin Longed63afb2018-03-05 20:44:18 +08001669 if (cmsgs->prinfo) {
1670 srinfo->sinfo_timetolive = cmsgs->prinfo->pr_value;
1671 SCTP_PR_SET_POLICY(srinfo->sinfo_flags,
1672 cmsgs->prinfo->pr_policy);
1673 }
1674
Xin Long204f8172018-03-01 23:05:14 +08001675 sflags = srinfo->sinfo_flags;
1676 if (!sflags && msg_len)
1677 return 0;
1678
1679 if (sctp_style(sk, TCP) && (sflags & (SCTP_EOF | SCTP_ABORT)))
1680 return -EINVAL;
1681
1682 if (((sflags & SCTP_EOF) && msg_len > 0) ||
1683 (!(sflags & (SCTP_EOF | SCTP_ABORT)) && msg_len == 0))
1684 return -EINVAL;
1685
1686 if ((sflags & SCTP_ADDR_OVER) && !msg->msg_name)
1687 return -EINVAL;
1688
1689 return 0;
1690}
1691
Xin Long2bfd80f2018-03-01 23:05:11 +08001692static int sctp_sendmsg_new_asoc(struct sock *sk, __u16 sflags,
1693 struct sctp_cmsgs *cmsgs,
1694 union sctp_addr *daddr,
1695 struct sctp_transport **tp)
1696{
1697 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
1698 struct net *net = sock_net(sk);
1699 struct sctp_association *asoc;
1700 enum sctp_scope scope;
Xin Long2c0dbaa2018-03-05 20:44:19 +08001701 struct cmsghdr *cmsg;
Linus Torvalds9eda2d22018-04-06 15:39:26 -07001702 struct sctp_af *af;
Wei Yongjund98985d2018-03-13 03:03:30 +00001703 int err;
Xin Long2bfd80f2018-03-01 23:05:11 +08001704
1705 *tp = NULL;
1706
1707 if (sflags & (SCTP_EOF | SCTP_ABORT))
1708 return -EINVAL;
1709
1710 if (sctp_style(sk, TCP) && (sctp_sstate(sk, ESTABLISHED) ||
1711 sctp_sstate(sk, CLOSING)))
1712 return -EADDRNOTAVAIL;
1713
1714 if (sctp_endpoint_is_peeled_off(ep, daddr))
1715 return -EADDRNOTAVAIL;
1716
1717 if (!ep->base.bind_addr.port) {
1718 if (sctp_autobind(sk))
1719 return -EAGAIN;
1720 } else {
1721 if (ep->base.bind_addr.port < inet_prot_sock(net) &&
1722 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
1723 return -EACCES;
1724 }
1725
1726 scope = sctp_scope(daddr);
1727
Linus Torvalds9eda2d22018-04-06 15:39:26 -07001728 /* Label connection socket for first association 1-to-many
1729 * style for client sequence socket()->sendmsg(). This
1730 * needs to be done before sctp_assoc_add_peer() as that will
1731 * set up the initial packet that needs to account for any
1732 * security ip options (CIPSO/CALIPSO) added to the packet.
1733 */
1734 af = sctp_get_af_specific(daddr->sa.sa_family);
1735 if (!af)
1736 return -EINVAL;
1737 err = security_sctp_bind_connect(sk, SCTP_SENDMSG_CONNECT,
1738 (struct sockaddr *)daddr,
1739 af->sockaddr_len);
1740 if (err < 0)
1741 return err;
1742
Xin Long2bfd80f2018-03-01 23:05:11 +08001743 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1744 if (!asoc)
1745 return -ENOMEM;
1746
1747 if (sctp_assoc_set_bind_addr_from_ep(asoc, scope, GFP_KERNEL) < 0) {
1748 err = -ENOMEM;
1749 goto free;
1750 }
1751
1752 if (cmsgs->init) {
1753 struct sctp_initmsg *init = cmsgs->init;
1754
1755 if (init->sinit_num_ostreams) {
1756 __u16 outcnt = init->sinit_num_ostreams;
1757
1758 asoc->c.sinit_num_ostreams = outcnt;
1759 /* outcnt has been changed, need to re-init stream */
1760 err = sctp_stream_init(&asoc->stream, outcnt, 0,
1761 GFP_KERNEL);
1762 if (err)
1763 goto free;
1764 }
1765
1766 if (init->sinit_max_instreams)
1767 asoc->c.sinit_max_instreams = init->sinit_max_instreams;
1768
1769 if (init->sinit_max_attempts)
1770 asoc->max_init_attempts = init->sinit_max_attempts;
1771
1772 if (init->sinit_max_init_timeo)
1773 asoc->max_init_timeo =
1774 msecs_to_jiffies(init->sinit_max_init_timeo);
1775 }
1776
1777 *tp = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL, SCTP_UNKNOWN);
1778 if (!*tp) {
1779 err = -ENOMEM;
1780 goto free;
1781 }
1782
Xin Long2c0dbaa2018-03-05 20:44:19 +08001783 if (!cmsgs->addrs_msg)
1784 return 0;
1785
1786 /* sendv addr list parse */
1787 for_each_cmsghdr(cmsg, cmsgs->addrs_msg) {
1788 struct sctp_transport *transport;
1789 struct sctp_association *old;
1790 union sctp_addr _daddr;
1791 int dlen;
1792
1793 if (cmsg->cmsg_level != IPPROTO_SCTP ||
1794 (cmsg->cmsg_type != SCTP_DSTADDRV4 &&
1795 cmsg->cmsg_type != SCTP_DSTADDRV6))
1796 continue;
1797
1798 daddr = &_daddr;
1799 memset(daddr, 0, sizeof(*daddr));
1800 dlen = cmsg->cmsg_len - sizeof(struct cmsghdr);
1801 if (cmsg->cmsg_type == SCTP_DSTADDRV4) {
Wei Yongjund98985d2018-03-13 03:03:30 +00001802 if (dlen < sizeof(struct in_addr)) {
1803 err = -EINVAL;
Xin Long2c0dbaa2018-03-05 20:44:19 +08001804 goto free;
Wei Yongjund98985d2018-03-13 03:03:30 +00001805 }
Xin Long2c0dbaa2018-03-05 20:44:19 +08001806
1807 dlen = sizeof(struct in_addr);
1808 daddr->v4.sin_family = AF_INET;
1809 daddr->v4.sin_port = htons(asoc->peer.port);
1810 memcpy(&daddr->v4.sin_addr, CMSG_DATA(cmsg), dlen);
1811 } else {
Wei Yongjund98985d2018-03-13 03:03:30 +00001812 if (dlen < sizeof(struct in6_addr)) {
1813 err = -EINVAL;
Xin Long2c0dbaa2018-03-05 20:44:19 +08001814 goto free;
Wei Yongjund98985d2018-03-13 03:03:30 +00001815 }
Xin Long2c0dbaa2018-03-05 20:44:19 +08001816
1817 dlen = sizeof(struct in6_addr);
1818 daddr->v6.sin6_family = AF_INET6;
1819 daddr->v6.sin6_port = htons(asoc->peer.port);
1820 memcpy(&daddr->v6.sin6_addr, CMSG_DATA(cmsg), dlen);
1821 }
1822 err = sctp_verify_addr(sk, daddr, sizeof(*daddr));
1823 if (err)
1824 goto free;
1825
1826 old = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
1827 if (old && old != asoc) {
1828 if (old->state >= SCTP_STATE_ESTABLISHED)
1829 err = -EISCONN;
1830 else
1831 err = -EALREADY;
1832 goto free;
1833 }
1834
1835 if (sctp_endpoint_is_peeled_off(ep, daddr)) {
1836 err = -EADDRNOTAVAIL;
1837 goto free;
1838 }
1839
1840 transport = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL,
1841 SCTP_UNKNOWN);
1842 if (!transport) {
1843 err = -ENOMEM;
1844 goto free;
1845 }
1846 }
1847
Xin Long2bfd80f2018-03-01 23:05:11 +08001848 return 0;
1849
1850free:
1851 sctp_association_free(asoc);
1852 return err;
1853}
1854
Xin Longc2666de2018-03-01 23:05:12 +08001855static int sctp_sendmsg_check_sflags(struct sctp_association *asoc,
1856 __u16 sflags, struct msghdr *msg,
1857 size_t msg_len)
1858{
1859 struct sock *sk = asoc->base.sk;
1860 struct net *net = sock_net(sk);
1861
1862 if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP))
1863 return -EPIPE;
1864
Xin Long49102802018-03-05 20:44:20 +08001865 if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP) &&
1866 !sctp_state(asoc, ESTABLISHED))
1867 return 0;
1868
Xin Longc2666de2018-03-01 23:05:12 +08001869 if (sflags & SCTP_EOF) {
1870 pr_debug("%s: shutting down association:%p\n", __func__, asoc);
1871 sctp_primitive_SHUTDOWN(net, asoc, NULL);
1872
1873 return 0;
1874 }
1875
1876 if (sflags & SCTP_ABORT) {
1877 struct sctp_chunk *chunk;
1878
1879 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1880 if (!chunk)
1881 return -ENOMEM;
1882
1883 pr_debug("%s: aborting association:%p\n", __func__, asoc);
1884 sctp_primitive_ABORT(net, asoc, chunk);
1885
1886 return 0;
1887 }
1888
1889 return 1;
1890}
1891
Xin Longf84af332018-03-01 23:05:10 +08001892static int sctp_sendmsg_to_asoc(struct sctp_association *asoc,
1893 struct msghdr *msg, size_t msg_len,
1894 struct sctp_transport *transport,
1895 struct sctp_sndrcvinfo *sinfo)
1896{
1897 struct sock *sk = asoc->base.sk;
1898 struct net *net = sock_net(sk);
1899 struct sctp_datamsg *datamsg;
1900 bool wait_connect = false;
1901 struct sctp_chunk *chunk;
1902 long timeo;
1903 int err;
1904
1905 if (sinfo->sinfo_stream >= asoc->stream.outcnt) {
1906 err = -EINVAL;
1907 goto err;
1908 }
1909
1910 if (unlikely(!asoc->stream.out[sinfo->sinfo_stream].ext)) {
1911 err = sctp_stream_init_ext(&asoc->stream, sinfo->sinfo_stream);
1912 if (err)
1913 goto err;
1914 }
1915
1916 if (sctp_sk(sk)->disable_fragments && msg_len > asoc->frag_point) {
1917 err = -EMSGSIZE;
1918 goto err;
1919 }
1920
Marcelo Ricardo Leitner25216802018-04-26 16:58:56 -03001921 if (asoc->pmtu_pending) {
1922 sctp_assoc_sync_pmtu(asoc);
1923 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
1941 if (sctp_sk(sk)->strm_interleave) {
1942 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);
Richard Hainesb7e10c22018-02-24 16:18:51 +00003214 struct sctp_af *af = sp->pf->af;
Wei Yongjune89c2092008-12-25 16:54:58 -08003215 struct sctp_assoc_value params;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 int val;
3218
Wei Yongjune89c2092008-12-25 16:54:58 -08003219 if (optlen == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05003220 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05003221 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05003222 "Use of int in maxseg socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05003223 "Use struct sctp_assoc_value instead\n",
3224 current->comm, task_pid_nr(current));
Wei Yongjune89c2092008-12-25 16:54:58 -08003225 if (copy_from_user(&val, optval, optlen))
3226 return -EFAULT;
3227 params.assoc_id = 0;
3228 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3229 if (copy_from_user(&params, optval, optlen))
3230 return -EFAULT;
3231 val = params.assoc_value;
Xin Longecca8f82017-11-17 14:11:11 +08003232 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 return -EINVAL;
Xin Longecca8f82017-11-17 14:11:11 +08003234 }
Wei Yongjune89c2092008-12-25 16:54:58 -08003235
Xin Longecca8f82017-11-17 14:11:11 +08003236 if (val) {
3237 int min_len, max_len;
3238
Marcelo Ricardo Leitnerfeddd6c2018-04-26 16:58:54 -03003239 min_len = sctp_mtu_payload(sp, SCTP_DEFAULT_MINSEGMENT,
3240 sizeof(struct sctp_data_chunk));
Xin Longecca8f82017-11-17 14:11:11 +08003241 max_len = SCTP_MAX_CHUNK_LEN - sizeof(struct sctp_data_chunk);
3242
3243 if (val < min_len || val > max_len)
3244 return -EINVAL;
3245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
Wei Yongjune89c2092008-12-25 16:54:58 -08003247 asoc = sctp_id2assoc(sk, params.assoc_id);
Wei Yongjune89c2092008-12-25 16:54:58 -08003248 if (asoc) {
3249 if (val == 0) {
Richard Hainesb7e10c22018-02-24 16:18:51 +00003250 val = asoc->pathmtu - af->net_header_len;
3251 val -= af->ip_options_len(sk);
Wei Yongjune89c2092008-12-25 16:54:58 -08003252 val -= sizeof(struct sctphdr) +
Xin Long668c9be2017-12-08 21:04:02 +08003253 sctp_datachk_len(&asoc->stream);
Wei Yongjune89c2092008-12-25 16:54:58 -08003254 }
Vlad Yasevichf68b2e02009-09-04 18:21:00 -04003255 asoc->user_frag = val;
Marcelo Ricardo Leitner2f5e3c92018-04-26 16:58:55 -03003256 sctp_assoc_update_frag_point(asoc);
Wei Yongjune89c2092008-12-25 16:54:58 -08003257 } else {
Xin Longecca8f82017-11-17 14:11:11 +08003258 if (params.assoc_id && sctp_style(sk, UDP))
3259 return -EINVAL;
Wei Yongjune89c2092008-12-25 16:54:58 -08003260 sp->user_frag = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 }
3262
3263 return 0;
3264}
3265
3266
3267/*
3268 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3269 *
3270 * Requests that the peer mark the enclosed address as the association
3271 * primary. The enclosed address must be one of the association's
3272 * locally bound addresses. The following structure is used to make a
3273 * set primary request:
3274 */
3275static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003276 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003278 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 struct sctp_association *asoc = NULL;
3281 struct sctp_setpeerprim prim;
3282 struct sctp_chunk *chunk;
Wei Yongjun40a01032010-12-07 17:11:09 +00003283 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 int err;
3285
3286 sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003288 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 return -EPERM;
3290
3291 if (optlen != sizeof(struct sctp_setpeerprim))
3292 return -EINVAL;
3293
3294 if (copy_from_user(&prim, optval, optlen))
3295 return -EFAULT;
3296
3297 asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003298 if (!asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 return -EINVAL;
3300
3301 if (!asoc->peer.asconf_capable)
3302 return -EPERM;
3303
3304 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
3305 return -EPERM;
3306
3307 if (!sctp_state(asoc, ESTABLISHED))
3308 return -ENOTCONN;
3309
Wei Yongjun40a01032010-12-07 17:11:09 +00003310 af = sctp_get_af_specific(prim.sspp_addr.ss_family);
3311 if (!af)
3312 return -EINVAL;
3313
3314 if (!af->addr_valid((union sctp_addr *)&prim.sspp_addr, sp, NULL))
3315 return -EADDRNOTAVAIL;
3316
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
3318 return -EADDRNOTAVAIL;
3319
Richard Haines2277c7c2018-02-13 20:56:24 +00003320 /* Allow security module to validate address. */
3321 err = security_sctp_bind_connect(sk, SCTP_SET_PEER_PRIMARY_ADDR,
3322 (struct sockaddr *)&prim.sspp_addr,
3323 af->sockaddr_len);
3324 if (err)
3325 return err;
3326
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 /* Create an ASCONF chunk with SET_PRIMARY parameter */
3328 chunk = sctp_make_asconf_set_prim(asoc,
3329 (union sctp_addr *)&prim.sspp_addr);
3330 if (!chunk)
3331 return -ENOMEM;
3332
3333 err = sctp_send_asconf(asoc, chunk);
3334
Daniel Borkmannbb333812013-06-28 19:49:40 +02003335 pr_debug("%s: we set peer primary addr primitively\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336
3337 return err;
3338}
3339
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003340static int sctp_setsockopt_adaptation_layer(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003341 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003343 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003345 if (optlen != sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 return -EINVAL;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003347 if (copy_from_user(&adaptation, optval, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 return -EFAULT;
3349
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003350 sctp_sk(sk)->adaptation_ind = adaptation.ssb_adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351
3352 return 0;
3353}
3354
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003355/*
3356 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
3357 *
3358 * The context field in the sctp_sndrcvinfo structure is normally only
3359 * used when a failed message is retrieved holding the value that was
3360 * sent down on the actual send call. This option allows the setting of
3361 * a default context on an association basis that will be received on
3362 * reading messages from the peer. This is especially helpful in the
3363 * one-2-many model for an application to keep some reference to an
3364 * internal state machine that is processing messages on the
3365 * association. Note that the setting of this value only effects
3366 * received messages from the peer and does not effect the value that is
3367 * saved with outbound messages.
3368 */
3369static int sctp_setsockopt_context(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003370 unsigned int optlen)
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003371{
3372 struct sctp_assoc_value params;
3373 struct sctp_sock *sp;
3374 struct sctp_association *asoc;
3375
3376 if (optlen != sizeof(struct sctp_assoc_value))
3377 return -EINVAL;
3378 if (copy_from_user(&params, optval, optlen))
3379 return -EFAULT;
3380
3381 sp = sctp_sk(sk);
3382
3383 if (params.assoc_id != 0) {
3384 asoc = sctp_id2assoc(sk, params.assoc_id);
3385 if (!asoc)
3386 return -EINVAL;
3387 asoc->default_rcv_context = params.assoc_value;
3388 } else {
3389 sp->default_rcv_context = params.assoc_value;
3390 }
3391
3392 return 0;
3393}
3394
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003395/*
3396 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
3397 *
3398 * This options will at a minimum specify if the implementation is doing
3399 * fragmented interleave. Fragmented interleave, for a one to many
3400 * socket, is when subsequent calls to receive a message may return
3401 * parts of messages from different associations. Some implementations
3402 * may allow you to turn this value on or off. If so, when turned off,
3403 * no fragment interleave will occur (which will cause a head of line
3404 * blocking amongst multiple associations sharing the same one to many
3405 * socket). When this option is turned on, then each receive call may
3406 * come from a different association (thus the user must receive data
3407 * with the extended calls (e.g. sctp_recvmsg) to keep track of which
3408 * association each receive belongs to.
3409 *
3410 * This option takes a boolean value. A non-zero value indicates that
3411 * fragmented interleave is on. A value of zero indicates that
3412 * fragmented interleave is off.
3413 *
3414 * Note that it is important that an implementation that allows this
3415 * option to be turned on, have it off by default. Otherwise an unaware
3416 * application using the one to many model may become confused and act
3417 * incorrectly.
3418 */
3419static int sctp_setsockopt_fragment_interleave(struct sock *sk,
3420 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003421 unsigned int optlen)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003422{
3423 int val;
3424
3425 if (optlen != sizeof(int))
3426 return -EINVAL;
3427 if (get_user(val, (int __user *)optval))
3428 return -EFAULT;
3429
Xin Long772a5862017-12-08 21:03:58 +08003430 sctp_sk(sk)->frag_interleave = !!val;
3431
3432 if (!sctp_sk(sk)->frag_interleave)
3433 sctp_sk(sk)->strm_interleave = 0;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003434
3435 return 0;
3436}
3437
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003438/*
Wei Yongjun8510b932008-12-25 16:59:03 -08003439 * 8.1.21. Set or Get the SCTP Partial Delivery Point
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003440 * (SCTP_PARTIAL_DELIVERY_POINT)
Wei Yongjun8510b932008-12-25 16:59:03 -08003441 *
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003442 * This option will set or get the SCTP partial delivery point. This
3443 * point is the size of a message where the partial delivery API will be
3444 * invoked to help free up rwnd space for the peer. Setting this to a
Wei Yongjun8510b932008-12-25 16:59:03 -08003445 * lower value will cause partial deliveries to happen more often. The
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003446 * calls argument is an integer that sets or gets the partial delivery
Wei Yongjun8510b932008-12-25 16:59:03 -08003447 * point. Note also that the call will fail if the user attempts to set
3448 * this value larger than the socket receive buffer size.
3449 *
3450 * Note that any single message having a length smaller than or equal to
3451 * the SCTP partial delivery point will be delivered in one single read
3452 * call as long as the user provided buffer is large enough to hold the
3453 * message.
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003454 */
3455static int sctp_setsockopt_partial_delivery_point(struct sock *sk,
3456 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003457 unsigned int optlen)
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003458{
3459 u32 val;
3460
3461 if (optlen != sizeof(u32))
3462 return -EINVAL;
3463 if (get_user(val, (int __user *)optval))
3464 return -EFAULT;
3465
Wei Yongjun8510b932008-12-25 16:59:03 -08003466 /* Note: We double the receive buffer from what the user sets
3467 * it to be, also initial rwnd is based on rcvbuf/2.
3468 */
3469 if (val > (sk->sk_rcvbuf >> 1))
3470 return -EINVAL;
3471
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003472 sctp_sk(sk)->pd_point = val;
3473
3474 return 0; /* is this the right error code? */
3475}
3476
Vlad Yasevich70331572007-03-23 11:34:36 -07003477/*
3478 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
3479 *
3480 * This option will allow a user to change the maximum burst of packets
3481 * that can be emitted by this association. Note that the default value
3482 * is 4, and some implementations may restrict this setting so that it
3483 * can only be lowered.
3484 *
3485 * NOTE: This text doesn't seem right. Do this on a socket basis with
3486 * future associations inheriting the socket value.
3487 */
3488static int sctp_setsockopt_maxburst(struct sock *sk,
3489 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003490 unsigned int optlen)
Vlad Yasevich70331572007-03-23 11:34:36 -07003491{
Neil Horman219b99a2008-03-05 13:44:46 -08003492 struct sctp_assoc_value params;
3493 struct sctp_sock *sp;
3494 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07003495 int val;
Neil Horman219b99a2008-03-05 13:44:46 -08003496 int assoc_id = 0;
Vlad Yasevich70331572007-03-23 11:34:36 -07003497
Neil Horman219b99a2008-03-05 13:44:46 -08003498 if (optlen == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05003499 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05003500 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05003501 "Use of int in max_burst socket option deprecated.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05003502 "Use struct sctp_assoc_value instead\n",
3503 current->comm, task_pid_nr(current));
Neil Horman219b99a2008-03-05 13:44:46 -08003504 if (copy_from_user(&val, optval, optlen))
3505 return -EFAULT;
3506 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3507 if (copy_from_user(&params, optval, optlen))
3508 return -EFAULT;
3509 val = params.assoc_value;
3510 assoc_id = params.assoc_id;
3511 } else
3512 return -EINVAL;
3513
3514 sp = sctp_sk(sk);
3515
3516 if (assoc_id != 0) {
3517 asoc = sctp_id2assoc(sk, assoc_id);
3518 if (!asoc)
3519 return -EINVAL;
3520 asoc->max_burst = val;
3521 } else
3522 sp->max_burst = val;
Vlad Yasevich70331572007-03-23 11:34:36 -07003523
3524 return 0;
3525}
3526
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003527/*
3528 * 7.1.18. Add a chunk that must be authenticated (SCTP_AUTH_CHUNK)
3529 *
3530 * This set option adds a chunk type that the user is requesting to be
3531 * received only in an authenticated way. Changes to the list of chunks
3532 * will only effect future associations on the socket.
3533 */
3534static int sctp_setsockopt_auth_chunk(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003535 char __user *optval,
3536 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003537{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003538 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003539 struct sctp_authchunk val;
3540
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003541 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003542 return -EACCES;
3543
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003544 if (optlen != sizeof(struct sctp_authchunk))
3545 return -EINVAL;
3546 if (copy_from_user(&val, optval, optlen))
3547 return -EFAULT;
3548
3549 switch (val.sauth_chunk) {
Joe Perches7fd71b12011-07-01 09:43:11 +00003550 case SCTP_CID_INIT:
3551 case SCTP_CID_INIT_ACK:
3552 case SCTP_CID_SHUTDOWN_COMPLETE:
3553 case SCTP_CID_AUTH:
3554 return -EINVAL;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003555 }
3556
3557 /* add this chunk id to the endpoint */
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003558 return sctp_auth_ep_add_chunkid(ep, val.sauth_chunk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003559}
3560
3561/*
3562 * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
3563 *
3564 * This option gets or sets the list of HMAC algorithms that the local
3565 * endpoint requires the peer to use.
3566 */
3567static int sctp_setsockopt_hmac_ident(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003568 char __user *optval,
3569 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003570{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003571 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003572 struct sctp_hmacalgo *hmacs;
Vlad Yasevichd9724052008-08-27 16:09:49 -07003573 u32 idents;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003574 int err;
3575
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003576 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003577 return -EACCES;
3578
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003579 if (optlen < sizeof(struct sctp_hmacalgo))
3580 return -EINVAL;
Marcelo Ricardo Leitner5960cef2018-01-08 19:02:28 -02003581 optlen = min_t(unsigned int, optlen, sizeof(struct sctp_hmacalgo) +
3582 SCTP_AUTH_NUM_HMACS * sizeof(u16));
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003583
wangweidongcb3f8372013-12-23 12:16:50 +08003584 hmacs = memdup_user(optval, optlen);
Shan Wei934253a2011-04-18 19:13:18 +00003585 if (IS_ERR(hmacs))
3586 return PTR_ERR(hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003587
Vlad Yasevichd9724052008-08-27 16:09:49 -07003588 idents = hmacs->shmac_num_idents;
3589 if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS ||
3590 (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo))) {
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003591 err = -EINVAL;
3592 goto out;
3593 }
3594
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003595 err = sctp_auth_ep_set_hmacs(ep, hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003596out:
3597 kfree(hmacs);
3598 return err;
3599}
3600
3601/*
3602 * 7.1.20. Set a shared key (SCTP_AUTH_KEY)
3603 *
3604 * This option will set a shared secret key which is used to build an
3605 * association shared key.
3606 */
3607static int sctp_setsockopt_auth_key(struct sock *sk,
3608 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003609 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003610{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003611 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003612 struct sctp_authkey *authkey;
3613 struct sctp_association *asoc;
3614 int ret;
3615
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003616 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003617 return -EACCES;
3618
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003619 if (optlen <= sizeof(struct sctp_authkey))
3620 return -EINVAL;
Marcelo Ricardo Leitner5960cef2018-01-08 19:02:28 -02003621 /* authkey->sca_keylength is u16, so optlen can't be bigger than
3622 * this.
3623 */
3624 optlen = min_t(unsigned int, optlen, USHRT_MAX +
3625 sizeof(struct sctp_authkey));
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003626
wangweidongcb3f8372013-12-23 12:16:50 +08003627 authkey = memdup_user(optval, optlen);
Shan Wei934253a2011-04-18 19:13:18 +00003628 if (IS_ERR(authkey))
3629 return PTR_ERR(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003630
Vlad Yasevich328fc472008-08-27 16:08:54 -07003631 if (authkey->sca_keylength > optlen - sizeof(struct sctp_authkey)) {
Vlad Yasevich30c22352008-08-25 15:16:19 -07003632 ret = -EINVAL;
3633 goto out;
3634 }
3635
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003636 asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
3637 if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) {
3638 ret = -EINVAL;
3639 goto out;
3640 }
3641
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003642 ret = sctp_auth_set_key(ep, asoc, authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003643out:
Daniel Borkmann6ba542a2013-02-08 03:04:34 +00003644 kzfree(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003645 return ret;
3646}
3647
3648/*
3649 * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
3650 *
3651 * This option will get or set the active shared key to be used to build
3652 * the association shared key.
3653 */
3654static int sctp_setsockopt_active_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003655 char __user *optval,
3656 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003657{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003658 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003659 struct sctp_authkeyid val;
3660 struct sctp_association *asoc;
3661
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003662 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003663 return -EACCES;
3664
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003665 if (optlen != sizeof(struct sctp_authkeyid))
3666 return -EINVAL;
3667 if (copy_from_user(&val, optval, optlen))
3668 return -EFAULT;
3669
3670 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3671 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3672 return -EINVAL;
3673
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003674 return sctp_auth_set_active_key(ep, asoc, val.scact_keynumber);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003675}
3676
3677/*
3678 * 7.1.22. Delete a shared key (SCTP_AUTH_DELETE_KEY)
3679 *
3680 * This set option will delete a shared secret key from use.
3681 */
3682static int sctp_setsockopt_del_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003683 char __user *optval,
3684 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003685{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003686 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003687 struct sctp_authkeyid val;
3688 struct sctp_association *asoc;
3689
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003690 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003691 return -EACCES;
3692
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003693 if (optlen != sizeof(struct sctp_authkeyid))
3694 return -EINVAL;
3695 if (copy_from_user(&val, optval, optlen))
3696 return -EFAULT;
3697
3698 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3699 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3700 return -EINVAL;
3701
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003702 return sctp_auth_del_key_id(ep, asoc, val.scact_keynumber);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003703
3704}
3705
Michio Honda7dc04d72011-04-26 20:16:31 +09003706/*
Xin Long601590e2018-03-14 19:05:32 +08003707 * 8.3.4 Deactivate a Shared Key (SCTP_AUTH_DEACTIVATE_KEY)
3708 *
3709 * This set option will deactivate a shared secret key.
3710 */
3711static int sctp_setsockopt_deactivate_key(struct sock *sk, char __user *optval,
3712 unsigned int optlen)
3713{
3714 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3715 struct sctp_authkeyid val;
3716 struct sctp_association *asoc;
3717
3718 if (!ep->auth_enable)
3719 return -EACCES;
3720
3721 if (optlen != sizeof(struct sctp_authkeyid))
3722 return -EINVAL;
3723 if (copy_from_user(&val, optval, optlen))
3724 return -EFAULT;
3725
3726 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3727 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3728 return -EINVAL;
3729
3730 return sctp_auth_deact_key_id(ep, asoc, val.scact_keynumber);
3731}
3732
3733/*
Michio Honda7dc04d72011-04-26 20:16:31 +09003734 * 8.1.23 SCTP_AUTO_ASCONF
3735 *
3736 * This option will enable or disable the use of the automatic generation of
3737 * ASCONF chunks to add and delete addresses to an existing association. Note
3738 * that this option has two caveats namely: a) it only affects sockets that
3739 * are bound to all addresses available to the SCTP stack, and b) the system
3740 * administrator may have an overriding control that turns the ASCONF feature
3741 * off no matter what setting the socket option may have.
3742 * This option expects an integer boolean flag, where a non-zero value turns on
3743 * the option, and a zero value turns off the option.
3744 * Note. In this implementation, socket operation overrides default parameter
3745 * being set by sysctl as well as FreeBSD implementation
3746 */
3747static int sctp_setsockopt_auto_asconf(struct sock *sk, char __user *optval,
3748 unsigned int optlen)
3749{
3750 int val;
3751 struct sctp_sock *sp = sctp_sk(sk);
3752
3753 if (optlen < sizeof(int))
3754 return -EINVAL;
3755 if (get_user(val, (int __user *)optval))
3756 return -EFAULT;
3757 if (!sctp_is_ep_boundall(sk) && val)
3758 return -EINVAL;
3759 if ((val && sp->do_auto_asconf) || (!val && !sp->do_auto_asconf))
3760 return 0;
3761
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03003762 spin_lock_bh(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda7dc04d72011-04-26 20:16:31 +09003763 if (val == 0 && sp->do_auto_asconf) {
3764 list_del(&sp->auto_asconf_list);
3765 sp->do_auto_asconf = 0;
3766 } else if (val && !sp->do_auto_asconf) {
3767 list_add_tail(&sp->auto_asconf_list,
Eric W. Biederman4db67e82012-08-06 08:42:04 +00003768 &sock_net(sk)->sctp.auto_asconf_splist);
Michio Honda7dc04d72011-04-26 20:16:31 +09003769 sp->do_auto_asconf = 1;
3770 }
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03003771 spin_unlock_bh(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda7dc04d72011-04-26 20:16:31 +09003772 return 0;
3773}
3774
Neil Horman5aa93bc2012-07-21 07:56:07 +00003775/*
3776 * SCTP_PEER_ADDR_THLDS
3777 *
3778 * This option allows us to alter the partially failed threshold for one or all
3779 * transports in an association. See Section 6.1 of:
3780 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
3781 */
3782static int sctp_setsockopt_paddr_thresholds(struct sock *sk,
3783 char __user *optval,
3784 unsigned int optlen)
3785{
3786 struct sctp_paddrthlds val;
3787 struct sctp_transport *trans;
3788 struct sctp_association *asoc;
3789
3790 if (optlen < sizeof(struct sctp_paddrthlds))
3791 return -EINVAL;
3792 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval,
3793 sizeof(struct sctp_paddrthlds)))
3794 return -EFAULT;
3795
3796
3797 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
3798 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
3799 if (!asoc)
3800 return -ENOENT;
3801 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
3802 transports) {
3803 if (val.spt_pathmaxrxt)
3804 trans->pathmaxrxt = val.spt_pathmaxrxt;
3805 trans->pf_retrans = val.spt_pathpfthld;
3806 }
3807
3808 if (val.spt_pathmaxrxt)
3809 asoc->pathmaxrxt = val.spt_pathmaxrxt;
3810 asoc->pf_retrans = val.spt_pathpfthld;
3811 } else {
3812 trans = sctp_addr_id2transport(sk, &val.spt_address,
3813 val.spt_assoc_id);
3814 if (!trans)
3815 return -ENOENT;
3816
3817 if (val.spt_pathmaxrxt)
3818 trans->pathmaxrxt = val.spt_pathmaxrxt;
3819 trans->pf_retrans = val.spt_pathpfthld;
3820 }
3821
3822 return 0;
3823}
3824
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02003825static int sctp_setsockopt_recvrcvinfo(struct sock *sk,
3826 char __user *optval,
3827 unsigned int optlen)
3828{
3829 int val;
3830
3831 if (optlen < sizeof(int))
3832 return -EINVAL;
3833 if (get_user(val, (int __user *) optval))
3834 return -EFAULT;
3835
3836 sctp_sk(sk)->recvrcvinfo = (val == 0) ? 0 : 1;
3837
3838 return 0;
3839}
3840
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02003841static int sctp_setsockopt_recvnxtinfo(struct sock *sk,
3842 char __user *optval,
3843 unsigned int optlen)
3844{
3845 int val;
3846
3847 if (optlen < sizeof(int))
3848 return -EINVAL;
3849 if (get_user(val, (int __user *) optval))
3850 return -EFAULT;
3851
3852 sctp_sk(sk)->recvnxtinfo = (val == 0) ? 0 : 1;
3853
3854 return 0;
3855}
3856
Xin Long28aa4c22016-07-09 19:47:40 +08003857static int sctp_setsockopt_pr_supported(struct sock *sk,
3858 char __user *optval,
3859 unsigned int optlen)
3860{
3861 struct sctp_assoc_value params;
3862 struct sctp_association *asoc;
3863 int retval = -EINVAL;
3864
3865 if (optlen != sizeof(params))
3866 goto out;
3867
3868 if (copy_from_user(&params, optval, optlen)) {
3869 retval = -EFAULT;
3870 goto out;
3871 }
3872
3873 asoc = sctp_id2assoc(sk, params.assoc_id);
3874 if (asoc) {
3875 asoc->prsctp_enable = !!params.assoc_value;
3876 } else if (!params.assoc_id) {
3877 struct sctp_sock *sp = sctp_sk(sk);
3878
3879 sp->ep->prsctp_enable = !!params.assoc_value;
3880 } else {
3881 goto out;
3882 }
3883
3884 retval = 0;
3885
3886out:
3887 return retval;
3888}
3889
Xin Longf959fb42016-07-09 19:47:41 +08003890static int sctp_setsockopt_default_prinfo(struct sock *sk,
3891 char __user *optval,
3892 unsigned int optlen)
3893{
3894 struct sctp_default_prinfo info;
3895 struct sctp_association *asoc;
3896 int retval = -EINVAL;
3897
3898 if (optlen != sizeof(info))
3899 goto out;
3900
3901 if (copy_from_user(&info, optval, sizeof(info))) {
3902 retval = -EFAULT;
3903 goto out;
3904 }
3905
3906 if (info.pr_policy & ~SCTP_PR_SCTP_MASK)
3907 goto out;
3908
3909 if (info.pr_policy == SCTP_PR_SCTP_NONE)
3910 info.pr_value = 0;
3911
3912 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
3913 if (asoc) {
3914 SCTP_PR_SET_POLICY(asoc->default_flags, info.pr_policy);
3915 asoc->default_timetolive = info.pr_value;
3916 } else if (!info.pr_assoc_id) {
3917 struct sctp_sock *sp = sctp_sk(sk);
3918
3919 SCTP_PR_SET_POLICY(sp->default_flags, info.pr_policy);
3920 sp->default_timetolive = info.pr_value;
3921 } else {
3922 goto out;
3923 }
3924
3925 retval = 0;
3926
3927out:
3928 return retval;
3929}
3930
Xin Longc0d8bab2017-03-10 12:11:12 +08003931static int sctp_setsockopt_reconfig_supported(struct sock *sk,
3932 char __user *optval,
3933 unsigned int optlen)
3934{
3935 struct sctp_assoc_value params;
3936 struct sctp_association *asoc;
3937 int retval = -EINVAL;
3938
3939 if (optlen != sizeof(params))
3940 goto out;
3941
3942 if (copy_from_user(&params, optval, optlen)) {
3943 retval = -EFAULT;
3944 goto out;
3945 }
3946
3947 asoc = sctp_id2assoc(sk, params.assoc_id);
3948 if (asoc) {
3949 asoc->reconf_enable = !!params.assoc_value;
3950 } else if (!params.assoc_id) {
3951 struct sctp_sock *sp = sctp_sk(sk);
3952
3953 sp->ep->reconf_enable = !!params.assoc_value;
3954 } else {
3955 goto out;
3956 }
3957
3958 retval = 0;
3959
3960out:
3961 return retval;
3962}
3963
Xin Long9fb657a2017-01-18 00:44:46 +08003964static int sctp_setsockopt_enable_strreset(struct sock *sk,
3965 char __user *optval,
3966 unsigned int optlen)
3967{
3968 struct sctp_assoc_value params;
3969 struct sctp_association *asoc;
3970 int retval = -EINVAL;
3971
3972 if (optlen != sizeof(params))
3973 goto out;
3974
3975 if (copy_from_user(&params, optval, optlen)) {
3976 retval = -EFAULT;
3977 goto out;
3978 }
3979
3980 if (params.assoc_value & (~SCTP_ENABLE_STRRESET_MASK))
3981 goto out;
3982
3983 asoc = sctp_id2assoc(sk, params.assoc_id);
3984 if (asoc) {
3985 asoc->strreset_enable = params.assoc_value;
3986 } else if (!params.assoc_id) {
3987 struct sctp_sock *sp = sctp_sk(sk);
3988
3989 sp->ep->strreset_enable = params.assoc_value;
3990 } else {
3991 goto out;
3992 }
3993
3994 retval = 0;
3995
3996out:
3997 return retval;
3998}
3999
Xin Long7f9d68a2017-01-18 00:44:47 +08004000static int sctp_setsockopt_reset_streams(struct sock *sk,
4001 char __user *optval,
4002 unsigned int optlen)
4003{
4004 struct sctp_reset_streams *params;
4005 struct sctp_association *asoc;
4006 int retval = -EINVAL;
4007
Xin Long2342b8d2017-12-10 15:40:51 +08004008 if (optlen < sizeof(*params))
Xin Long7f9d68a2017-01-18 00:44:47 +08004009 return -EINVAL;
Marcelo Ricardo Leitner5960cef2018-01-08 19:02:28 -02004010 /* srs_number_streams is u16, so optlen can't be bigger than this. */
4011 optlen = min_t(unsigned int, optlen, USHRT_MAX +
4012 sizeof(__u16) * sizeof(*params));
Xin Long7f9d68a2017-01-18 00:44:47 +08004013
4014 params = memdup_user(optval, optlen);
4015 if (IS_ERR(params))
4016 return PTR_ERR(params);
4017
Xin Long2342b8d2017-12-10 15:40:51 +08004018 if (params->srs_number_streams * sizeof(__u16) >
4019 optlen - sizeof(*params))
4020 goto out;
4021
Xin Long7f9d68a2017-01-18 00:44:47 +08004022 asoc = sctp_id2assoc(sk, params->srs_assoc_id);
4023 if (!asoc)
4024 goto out;
4025
4026 retval = sctp_send_reset_streams(asoc, params);
4027
4028out:
4029 kfree(params);
4030 return retval;
4031}
4032
Xin Longa92ce1a2017-02-09 01:18:18 +08004033static int sctp_setsockopt_reset_assoc(struct sock *sk,
4034 char __user *optval,
4035 unsigned int optlen)
4036{
4037 struct sctp_association *asoc;
4038 sctp_assoc_t associd;
4039 int retval = -EINVAL;
4040
4041 if (optlen != sizeof(associd))
4042 goto out;
4043
4044 if (copy_from_user(&associd, optval, optlen)) {
4045 retval = -EFAULT;
4046 goto out;
4047 }
4048
4049 asoc = sctp_id2assoc(sk, associd);
4050 if (!asoc)
4051 goto out;
4052
4053 retval = sctp_send_reset_assoc(asoc);
4054
4055out:
4056 return retval;
4057}
4058
Xin Long242bd2d2017-02-09 01:18:20 +08004059static int sctp_setsockopt_add_streams(struct sock *sk,
4060 char __user *optval,
4061 unsigned int optlen)
4062{
4063 struct sctp_association *asoc;
4064 struct sctp_add_streams params;
4065 int retval = -EINVAL;
4066
4067 if (optlen != sizeof(params))
4068 goto out;
4069
4070 if (copy_from_user(&params, optval, optlen)) {
4071 retval = -EFAULT;
4072 goto out;
4073 }
4074
4075 asoc = sctp_id2assoc(sk, params.sas_assoc_id);
4076 if (!asoc)
4077 goto out;
4078
4079 retval = sctp_send_add_streams(asoc, &params);
4080
4081out:
4082 return retval;
4083}
4084
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004085static int sctp_setsockopt_scheduler(struct sock *sk,
4086 char __user *optval,
4087 unsigned int optlen)
4088{
4089 struct sctp_association *asoc;
4090 struct sctp_assoc_value params;
4091 int retval = -EINVAL;
4092
4093 if (optlen < sizeof(params))
4094 goto out;
4095
4096 optlen = sizeof(params);
4097 if (copy_from_user(&params, optval, optlen)) {
4098 retval = -EFAULT;
4099 goto out;
4100 }
4101
4102 if (params.assoc_value > SCTP_SS_MAX)
4103 goto out;
4104
4105 asoc = sctp_id2assoc(sk, params.assoc_id);
4106 if (!asoc)
4107 goto out;
4108
4109 retval = sctp_sched_set_sched(asoc, params.assoc_value);
4110
4111out:
4112 return retval;
4113}
4114
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004115static int sctp_setsockopt_scheduler_value(struct sock *sk,
4116 char __user *optval,
4117 unsigned int optlen)
4118{
4119 struct sctp_association *asoc;
4120 struct sctp_stream_value params;
4121 int retval = -EINVAL;
4122
4123 if (optlen < sizeof(params))
4124 goto out;
4125
4126 optlen = sizeof(params);
4127 if (copy_from_user(&params, optval, optlen)) {
4128 retval = -EFAULT;
4129 goto out;
4130 }
4131
4132 asoc = sctp_id2assoc(sk, params.assoc_id);
4133 if (!asoc)
4134 goto out;
4135
4136 retval = sctp_sched_set_value(asoc, params.stream_id,
4137 params.stream_value, GFP_KERNEL);
4138
4139out:
4140 return retval;
4141}
4142
Xin Long772a5862017-12-08 21:03:58 +08004143static int sctp_setsockopt_interleaving_supported(struct sock *sk,
4144 char __user *optval,
4145 unsigned int optlen)
4146{
4147 struct sctp_sock *sp = sctp_sk(sk);
4148 struct net *net = sock_net(sk);
4149 struct sctp_assoc_value params;
4150 int retval = -EINVAL;
4151
4152 if (optlen < sizeof(params))
4153 goto out;
4154
4155 optlen = sizeof(params);
4156 if (copy_from_user(&params, optval, optlen)) {
4157 retval = -EFAULT;
4158 goto out;
4159 }
4160
4161 if (params.assoc_id)
4162 goto out;
4163
4164 if (!net->sctp.intl_enable || !sp->frag_interleave) {
4165 retval = -EPERM;
4166 goto out;
4167 }
4168
4169 sp->strm_interleave = !!params.assoc_value;
4170
4171 retval = 0;
4172
4173out:
4174 return retval;
4175}
4176
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177/* API 6.2 setsockopt(), getsockopt()
4178 *
4179 * Applications use setsockopt() and getsockopt() to set or retrieve
4180 * socket options. Socket options are used to change the default
4181 * behavior of sockets calls. They are described in Section 7.
4182 *
4183 * The syntax is:
4184 *
4185 * ret = getsockopt(int sd, int level, int optname, void __user *optval,
4186 * int __user *optlen);
4187 * ret = setsockopt(int sd, int level, int optname, const void __user *optval,
4188 * int optlen);
4189 *
4190 * sd - the socket descript.
4191 * level - set to IPPROTO_SCTP for all SCTP options.
4192 * optname - the option name.
4193 * optval - the buffer to store the value of the option.
4194 * optlen - the size of the buffer.
4195 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004196static int sctp_setsockopt(struct sock *sk, int level, int optname,
4197 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198{
4199 int retval = 0;
4200
Daniel Borkmannbb333812013-06-28 19:49:40 +02004201 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202
4203 /* I can hardly begin to describe how wrong this is. This is
4204 * so broken as to be worse than useless. The API draft
4205 * REALLY is NOT helpful here... I am not convinced that the
4206 * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
4207 * are at all well-founded.
4208 */
4209 if (level != SOL_SCTP) {
4210 struct sctp_af *af = sctp_sk(sk)->pf->af;
4211 retval = af->setsockopt(sk, level, optname, optval, optlen);
4212 goto out_nounlock;
4213 }
4214
wangweidong048ed4b2014-01-21 15:44:11 +08004215 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216
4217 switch (optname) {
4218 case SCTP_SOCKOPT_BINDX_ADD:
4219 /* 'optlen' is the size of the addresses buffer. */
4220 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
4221 optlen, SCTP_BINDX_ADD_ADDR);
4222 break;
4223
4224 case SCTP_SOCKOPT_BINDX_REM:
4225 /* 'optlen' is the size of the addresses buffer. */
4226 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
4227 optlen, SCTP_BINDX_REM_ADDR);
4228 break;
4229
Vlad Yasevich88a0a942008-05-09 15:14:11 -07004230 case SCTP_SOCKOPT_CONNECTX_OLD:
4231 /* 'optlen' is the size of the addresses buffer. */
4232 retval = sctp_setsockopt_connectx_old(sk,
4233 (struct sockaddr __user *)optval,
4234 optlen);
4235 break;
4236
Frank Filz3f7a87d2005-06-20 13:14:57 -07004237 case SCTP_SOCKOPT_CONNECTX:
4238 /* 'optlen' is the size of the addresses buffer. */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07004239 retval = sctp_setsockopt_connectx(sk,
4240 (struct sockaddr __user *)optval,
4241 optlen);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004242 break;
4243
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 case SCTP_DISABLE_FRAGMENTS:
4245 retval = sctp_setsockopt_disable_fragments(sk, optval, optlen);
4246 break;
4247
4248 case SCTP_EVENTS:
4249 retval = sctp_setsockopt_events(sk, optval, optlen);
4250 break;
4251
4252 case SCTP_AUTOCLOSE:
4253 retval = sctp_setsockopt_autoclose(sk, optval, optlen);
4254 break;
4255
4256 case SCTP_PEER_ADDR_PARAMS:
4257 retval = sctp_setsockopt_peer_addr_params(sk, optval, optlen);
4258 break;
4259
Shan Wei4580ccc2011-01-18 22:39:00 +00004260 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07004261 retval = sctp_setsockopt_delayed_ack(sk, optval, optlen);
Frank Filz77086102005-12-22 11:37:30 -08004262 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07004263 case SCTP_PARTIAL_DELIVERY_POINT:
4264 retval = sctp_setsockopt_partial_delivery_point(sk, optval, optlen);
4265 break;
Frank Filz77086102005-12-22 11:37:30 -08004266
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 case SCTP_INITMSG:
4268 retval = sctp_setsockopt_initmsg(sk, optval, optlen);
4269 break;
4270 case SCTP_DEFAULT_SEND_PARAM:
4271 retval = sctp_setsockopt_default_send_param(sk, optval,
4272 optlen);
4273 break;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02004274 case SCTP_DEFAULT_SNDINFO:
4275 retval = sctp_setsockopt_default_sndinfo(sk, optval, optlen);
4276 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277 case SCTP_PRIMARY_ADDR:
4278 retval = sctp_setsockopt_primary_addr(sk, optval, optlen);
4279 break;
4280 case SCTP_SET_PEER_PRIMARY_ADDR:
4281 retval = sctp_setsockopt_peer_primary_addr(sk, optval, optlen);
4282 break;
4283 case SCTP_NODELAY:
4284 retval = sctp_setsockopt_nodelay(sk, optval, optlen);
4285 break;
4286 case SCTP_RTOINFO:
4287 retval = sctp_setsockopt_rtoinfo(sk, optval, optlen);
4288 break;
4289 case SCTP_ASSOCINFO:
4290 retval = sctp_setsockopt_associnfo(sk, optval, optlen);
4291 break;
4292 case SCTP_I_WANT_MAPPED_V4_ADDR:
4293 retval = sctp_setsockopt_mappedv4(sk, optval, optlen);
4294 break;
4295 case SCTP_MAXSEG:
4296 retval = sctp_setsockopt_maxseg(sk, optval, optlen);
4297 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004298 case SCTP_ADAPTATION_LAYER:
4299 retval = sctp_setsockopt_adaptation_layer(sk, optval, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004301 case SCTP_CONTEXT:
4302 retval = sctp_setsockopt_context(sk, optval, optlen);
4303 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004304 case SCTP_FRAGMENT_INTERLEAVE:
4305 retval = sctp_setsockopt_fragment_interleave(sk, optval, optlen);
4306 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07004307 case SCTP_MAX_BURST:
4308 retval = sctp_setsockopt_maxburst(sk, optval, optlen);
4309 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07004310 case SCTP_AUTH_CHUNK:
4311 retval = sctp_setsockopt_auth_chunk(sk, optval, optlen);
4312 break;
4313 case SCTP_HMAC_IDENT:
4314 retval = sctp_setsockopt_hmac_ident(sk, optval, optlen);
4315 break;
4316 case SCTP_AUTH_KEY:
4317 retval = sctp_setsockopt_auth_key(sk, optval, optlen);
4318 break;
4319 case SCTP_AUTH_ACTIVE_KEY:
4320 retval = sctp_setsockopt_active_key(sk, optval, optlen);
4321 break;
4322 case SCTP_AUTH_DELETE_KEY:
4323 retval = sctp_setsockopt_del_key(sk, optval, optlen);
4324 break;
Xin Long601590e2018-03-14 19:05:32 +08004325 case SCTP_AUTH_DEACTIVATE_KEY:
4326 retval = sctp_setsockopt_deactivate_key(sk, optval, optlen);
4327 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09004328 case SCTP_AUTO_ASCONF:
4329 retval = sctp_setsockopt_auto_asconf(sk, optval, optlen);
4330 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00004331 case SCTP_PEER_ADDR_THLDS:
4332 retval = sctp_setsockopt_paddr_thresholds(sk, optval, optlen);
4333 break;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004334 case SCTP_RECVRCVINFO:
4335 retval = sctp_setsockopt_recvrcvinfo(sk, optval, optlen);
4336 break;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02004337 case SCTP_RECVNXTINFO:
4338 retval = sctp_setsockopt_recvnxtinfo(sk, optval, optlen);
4339 break;
Xin Long28aa4c22016-07-09 19:47:40 +08004340 case SCTP_PR_SUPPORTED:
4341 retval = sctp_setsockopt_pr_supported(sk, optval, optlen);
4342 break;
Xin Longf959fb42016-07-09 19:47:41 +08004343 case SCTP_DEFAULT_PRINFO:
4344 retval = sctp_setsockopt_default_prinfo(sk, optval, optlen);
4345 break;
Xin Longc0d8bab2017-03-10 12:11:12 +08004346 case SCTP_RECONFIG_SUPPORTED:
4347 retval = sctp_setsockopt_reconfig_supported(sk, optval, optlen);
4348 break;
Xin Long9fb657a2017-01-18 00:44:46 +08004349 case SCTP_ENABLE_STREAM_RESET:
4350 retval = sctp_setsockopt_enable_strreset(sk, optval, optlen);
4351 break;
Xin Long7f9d68a2017-01-18 00:44:47 +08004352 case SCTP_RESET_STREAMS:
4353 retval = sctp_setsockopt_reset_streams(sk, optval, optlen);
4354 break;
Xin Longa92ce1a2017-02-09 01:18:18 +08004355 case SCTP_RESET_ASSOC:
4356 retval = sctp_setsockopt_reset_assoc(sk, optval, optlen);
4357 break;
Xin Long242bd2d2017-02-09 01:18:20 +08004358 case SCTP_ADD_STREAMS:
4359 retval = sctp_setsockopt_add_streams(sk, optval, optlen);
4360 break;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004361 case SCTP_STREAM_SCHEDULER:
4362 retval = sctp_setsockopt_scheduler(sk, optval, optlen);
4363 break;
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004364 case SCTP_STREAM_SCHEDULER_VALUE:
4365 retval = sctp_setsockopt_scheduler_value(sk, optval, optlen);
4366 break;
Xin Long772a5862017-12-08 21:03:58 +08004367 case SCTP_INTERLEAVING_SUPPORTED:
4368 retval = sctp_setsockopt_interleaving_supported(sk, optval,
4369 optlen);
4370 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 default:
4372 retval = -ENOPROTOOPT;
4373 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07004374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375
wangweidong048ed4b2014-01-21 15:44:11 +08004376 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377
4378out_nounlock:
4379 return retval;
4380}
4381
4382/* API 3.1.6 connect() - UDP Style Syntax
4383 *
4384 * An application may use the connect() call in the UDP model to initiate an
4385 * association without sending data.
4386 *
4387 * The syntax is:
4388 *
4389 * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
4390 *
4391 * sd: the socket descriptor to have a new association added to.
4392 *
4393 * nam: the address structure (either struct sockaddr_in or struct
4394 * sockaddr_in6 defined in RFC2553 [7]).
4395 *
4396 * len: the size of the address.
4397 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004398static int sctp_connect(struct sock *sk, struct sockaddr *addr,
4399 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401 int err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07004402 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403
wangweidong048ed4b2014-01-21 15:44:11 +08004404 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405
Daniel Borkmannbb333812013-06-28 19:49:40 +02004406 pr_debug("%s: sk:%p, sockaddr:%p, addr_len:%d\n", __func__, sk,
4407 addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408
Frank Filz3f7a87d2005-06-20 13:14:57 -07004409 /* Validate addr_len before calling common connect/connectx routine. */
4410 af = sctp_get_af_specific(addr->sa_family);
4411 if (!af || addr_len < af->sockaddr_len) {
4412 err = -EINVAL;
4413 } else {
4414 /* Pass correct addr len to common routine (so it knows there
4415 * is only one address being passed.
4416 */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07004417 err = __sctp_connect(sk, addr, af->sockaddr_len, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418 }
4419
wangweidong048ed4b2014-01-21 15:44:11 +08004420 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421 return err;
4422}
4423
4424/* FIXME: Write comments. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004425static int sctp_disconnect(struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426{
4427 return -EOPNOTSUPP; /* STUB */
4428}
4429
4430/* 4.1.4 accept() - TCP Style Syntax
4431 *
4432 * Applications use accept() call to remove an established SCTP
4433 * association from the accept queue of the endpoint. A new socket
4434 * descriptor will be returned from accept() to represent the newly
4435 * formed association.
4436 */
David Howellscdfbabf2017-03-09 08:09:05 +00004437static struct sock *sctp_accept(struct sock *sk, int flags, int *err, bool kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438{
4439 struct sctp_sock *sp;
4440 struct sctp_endpoint *ep;
4441 struct sock *newsk = NULL;
4442 struct sctp_association *asoc;
4443 long timeo;
4444 int error = 0;
4445
wangweidong048ed4b2014-01-21 15:44:11 +08004446 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447
4448 sp = sctp_sk(sk);
4449 ep = sp->ep;
4450
4451 if (!sctp_style(sk, TCP)) {
4452 error = -EOPNOTSUPP;
4453 goto out;
4454 }
4455
4456 if (!sctp_sstate(sk, LISTENING)) {
4457 error = -EINVAL;
4458 goto out;
4459 }
4460
Sridhar Samudrala8abfedd2006-08-22 00:24:09 -07004461 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462
4463 error = sctp_wait_for_accept(sk, timeo);
4464 if (error)
4465 goto out;
4466
4467 /* We treat the list of associations on the endpoint as the accept
4468 * queue and pick the first association on the list.
4469 */
4470 asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
4471
David Howellscdfbabf2017-03-09 08:09:05 +00004472 newsk = sp->pf->create_accept_sk(sk, asoc, kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 if (!newsk) {
4474 error = -ENOMEM;
4475 goto out;
4476 }
4477
4478 /* Populate the fields of the newsk from the oldsk and migrate the
4479 * asoc to the newsk.
4480 */
4481 sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
4482
4483out:
wangweidong048ed4b2014-01-21 15:44:11 +08004484 release_sock(sk);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004485 *err = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486 return newsk;
4487}
4488
4489/* The SCTP ioctl handler. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004490static int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491{
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004492 int rc = -ENOTCONN;
4493
wangweidong048ed4b2014-01-21 15:44:11 +08004494 lock_sock(sk);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004495
4496 /*
4497 * SEQPACKET-style sockets in LISTENING state are valid, for
4498 * SCTP, so only discard TCP-style sockets in LISTENING state.
4499 */
4500 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
4501 goto out;
4502
4503 switch (cmd) {
4504 case SIOCINQ: {
4505 struct sk_buff *skb;
4506 unsigned int amount = 0;
4507
4508 skb = skb_peek(&sk->sk_receive_queue);
4509 if (skb != NULL) {
4510 /*
4511 * We will only return the amount of this packet since
4512 * that is all that will be read.
4513 */
4514 amount = skb->len;
4515 }
4516 rc = put_user(amount, (int __user *)arg);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004517 break;
David S. Miller9a7241c2010-10-03 22:14:37 -07004518 }
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004519 default:
4520 rc = -ENOIOCTLCMD;
4521 break;
4522 }
4523out:
wangweidong048ed4b2014-01-21 15:44:11 +08004524 release_sock(sk);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004525 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526}
4527
4528/* This is the function which gets called during socket creation to
4529 * initialized the SCTP-specific portion of the sock.
4530 * The sock structure should already be zero-filled memory.
4531 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004532static int sctp_init_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004534 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 struct sctp_sock *sp;
4536
Daniel Borkmannbb333812013-06-28 19:49:40 +02004537 pr_debug("%s: sk:%p\n", __func__, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538
4539 sp = sctp_sk(sk);
4540
4541 /* Initialize the SCTP per socket area. */
4542 switch (sk->sk_type) {
4543 case SOCK_SEQPACKET:
4544 sp->type = SCTP_SOCKET_UDP;
4545 break;
4546 case SOCK_STREAM:
4547 sp->type = SCTP_SOCKET_TCP;
4548 break;
4549 default:
4550 return -ESOCKTNOSUPPORT;
4551 }
4552
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -03004553 sk->sk_gso_type = SKB_GSO_SCTP;
4554
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 /* Initialize default send parameters. These parameters can be
4556 * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
4557 */
4558 sp->default_stream = 0;
4559 sp->default_ppid = 0;
4560 sp->default_flags = 0;
4561 sp->default_context = 0;
4562 sp->default_timetolive = 0;
4563
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004564 sp->default_rcv_context = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004565 sp->max_burst = net->sctp.max_burst;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004566
Neil Horman3c681982012-10-24 09:20:03 +00004567 sp->sctp_hmac_alg = net->sctp.sctp_hmac_alg;
4568
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569 /* Initialize default setup parameters. These parameters
4570 * can be modified with the SCTP_INITMSG socket option or
4571 * overridden by the SCTP_INIT CMSG.
4572 */
4573 sp->initmsg.sinit_num_ostreams = sctp_max_outstreams;
4574 sp->initmsg.sinit_max_instreams = sctp_max_instreams;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004575 sp->initmsg.sinit_max_attempts = net->sctp.max_retrans_init;
4576 sp->initmsg.sinit_max_init_timeo = net->sctp.rto_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577
4578 /* Initialize default RTO related parameters. These parameters can
4579 * be modified for with the SCTP_RTOINFO socket option.
4580 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004581 sp->rtoinfo.srto_initial = net->sctp.rto_initial;
4582 sp->rtoinfo.srto_max = net->sctp.rto_max;
4583 sp->rtoinfo.srto_min = net->sctp.rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584
4585 /* Initialize default association related parameters. These parameters
4586 * can be modified with the SCTP_ASSOCINFO socket option.
4587 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004588 sp->assocparams.sasoc_asocmaxrxt = net->sctp.max_retrans_association;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 sp->assocparams.sasoc_number_peer_destinations = 0;
4590 sp->assocparams.sasoc_peer_rwnd = 0;
4591 sp->assocparams.sasoc_local_rwnd = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004592 sp->assocparams.sasoc_cookie_life = net->sctp.valid_cookie_life;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593
4594 /* Initialize default event subscriptions. By default, all the
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004595 * options are off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 */
4597 memset(&sp->subscribe, 0, sizeof(struct sctp_event_subscribe));
4598
4599 /* Default Peer Address Parameters. These defaults can
4600 * be modified via SCTP_PEER_ADDR_PARAMS
4601 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004602 sp->hbinterval = net->sctp.hb_interval;
4603 sp->pathmaxrxt = net->sctp.max_retrans_path;
wangweidong4e2d52b2013-12-23 12:16:54 +08004604 sp->pathmtu = 0; /* allow default discovery */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004605 sp->sackdelay = net->sctp.sack_timeout;
Vlad Yasevich7bfe8bdb2008-06-09 15:45:05 -07004606 sp->sackfreq = 2;
Frank Filz52ccb8e2005-12-22 11:36:46 -08004607 sp->param_flags = SPP_HB_ENABLE |
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004608 SPP_PMTUD_ENABLE |
4609 SPP_SACKDELAY_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610
4611 /* If enabled no SCTP message fragmentation will be performed.
4612 * Configure through SCTP_DISABLE_FRAGMENTS socket option.
4613 */
4614 sp->disable_fragments = 0;
4615
Sridhar Samudrala208edef2006-09-29 17:08:01 -07004616 /* Enable Nagle algorithm by default. */
4617 sp->nodelay = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004619 sp->recvrcvinfo = 0;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02004620 sp->recvnxtinfo = 0;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004621
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622 /* Enable by default. */
4623 sp->v4mapped = 1;
4624
4625 /* Auto-close idle associations after the configured
4626 * number of seconds. A value of 0 disables this
4627 * feature. Configure through the SCTP_AUTOCLOSE socket option,
4628 * for UDP-style sockets only.
4629 */
4630 sp->autoclose = 0;
4631
4632 /* User specified fragmentation limit. */
4633 sp->user_frag = 0;
4634
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004635 sp->adaptation_ind = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636
4637 sp->pf = sctp_get_pf_specific(sk->sk_family);
4638
4639 /* Control variables for partial data delivery. */
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004640 atomic_set(&sp->pd_mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 skb_queue_head_init(&sp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004642 sp->frag_interleave = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643
4644 /* Create a per socket endpoint structure. Even if we
4645 * change the data structure relationships, this may still
4646 * be useful for storing pre-connect address information.
4647 */
Daniel Borkmannc164b832013-06-14 18:24:06 +02004648 sp->ep = sctp_endpoint_new(sk, GFP_KERNEL);
4649 if (!sp->ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650 return -ENOMEM;
4651
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652 sp->hmac = NULL;
4653
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004654 sk->sk_destruct = sctp_destruct_sock;
4655
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656 SCTP_DBG_OBJCNT_INC(sock);
David S. Miller6f756a82008-11-23 17:34:03 -08004657
4658 local_bh_disable();
Tonghao Zhang8cb38a62017-12-22 10:15:20 -08004659 sk_sockets_allocated_inc(sk);
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004660 sock_prot_inuse_add(net, sk->sk_prot, 1);
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004661
4662 /* Nothing can fail after this block, otherwise
4663 * sctp_destroy_sock() will be called without addr_wq_lock held
4664 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004665 if (net->sctp.default_auto_asconf) {
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004666 spin_lock(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda9f7d6532011-04-26 19:32:51 +09004667 list_add_tail(&sp->auto_asconf_list,
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004668 &net->sctp.auto_asconf_splist);
Michio Honda9f7d6532011-04-26 19:32:51 +09004669 sp->do_auto_asconf = 1;
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004670 spin_unlock(&sock_net(sk)->sctp.addr_wq_lock);
4671 } else {
Michio Honda9f7d6532011-04-26 19:32:51 +09004672 sp->do_auto_asconf = 0;
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004673 }
4674
David S. Miller6f756a82008-11-23 17:34:03 -08004675 local_bh_enable();
4676
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 return 0;
4678}
4679
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004680/* Cleanup any SCTP per socket resources. Must be called with
4681 * sock_net(sk)->sctp.addr_wq_lock held if sp->do_auto_asconf is true
4682 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004683static void sctp_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684{
Michio Honda9f7d6532011-04-26 19:32:51 +09004685 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686
Daniel Borkmannbb333812013-06-28 19:49:40 +02004687 pr_debug("%s: sk:%p\n", __func__, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688
4689 /* Release our hold on the endpoint. */
Michio Honda9f7d6532011-04-26 19:32:51 +09004690 sp = sctp_sk(sk);
Daniel Borkmann1abd1652013-06-06 15:53:47 +02004691 /* This could happen during socket init, thus we bail out
4692 * early, since the rest of the below is not setup either.
4693 */
4694 if (sp->ep == NULL)
4695 return;
4696
Michio Honda9f7d6532011-04-26 19:32:51 +09004697 if (sp->do_auto_asconf) {
4698 sp->do_auto_asconf = 0;
4699 list_del(&sp->auto_asconf_list);
4700 }
4701 sctp_endpoint_free(sp->ep);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004702 local_bh_disable();
Tonghao Zhang8cb38a62017-12-22 10:15:20 -08004703 sk_sockets_allocated_dec(sk);
Eric Dumazet9a57f7f2008-11-17 02:41:00 -08004704 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004705 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706}
4707
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004708/* Triggered when there are no references on the socket anymore */
4709static void sctp_destruct_sock(struct sock *sk)
4710{
4711 struct sctp_sock *sp = sctp_sk(sk);
4712
4713 /* Free up the HMAC transform. */
Herbert Xu5821c762016-01-24 21:20:12 +08004714 crypto_free_shash(sp->hmac);
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004715
4716 inet_sock_destruct(sk);
4717}
4718
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719/* API 4.1.7 shutdown() - TCP Style Syntax
4720 * int shutdown(int socket, int how);
4721 *
4722 * sd - the socket descriptor of the association to be closed.
4723 * how - Specifies the type of shutdown. The values are
4724 * as follows:
4725 * SHUT_RD
4726 * Disables further receive operations. No SCTP
4727 * protocol action is taken.
4728 * SHUT_WR
4729 * Disables further send operations, and initiates
4730 * the SCTP shutdown sequence.
4731 * SHUT_RDWR
4732 * Disables further send and receive operations
4733 * and initiates the SCTP shutdown sequence.
4734 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004735static void sctp_shutdown(struct sock *sk, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00004737 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738 struct sctp_endpoint *ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739
4740 if (!sctp_style(sk, TCP))
4741 return;
4742
Xin Long5bf35dd2016-11-13 21:44:37 +08004743 ep = sctp_sk(sk)->ep;
4744 if (how & SEND_SHUTDOWN && !list_empty(&ep->asocs)) {
4745 struct sctp_association *asoc;
4746
Yafang Shaocbabf462017-12-20 11:12:54 +08004747 inet_sk_set_state(sk, SCTP_SS_CLOSING);
Xin Long5bf35dd2016-11-13 21:44:37 +08004748 asoc = list_entry(ep->asocs.next,
4749 struct sctp_association, asocs);
4750 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751 }
4752}
4753
Xin Long52c52a62016-04-14 15:35:30 +08004754int sctp_get_sctp_info(struct sock *sk, struct sctp_association *asoc,
4755 struct sctp_info *info)
4756{
4757 struct sctp_transport *prim;
4758 struct list_head *pos;
4759 int mask;
4760
4761 memset(info, 0, sizeof(*info));
4762 if (!asoc) {
4763 struct sctp_sock *sp = sctp_sk(sk);
4764
4765 info->sctpi_s_autoclose = sp->autoclose;
4766 info->sctpi_s_adaptation_ind = sp->adaptation_ind;
4767 info->sctpi_s_pd_point = sp->pd_point;
4768 info->sctpi_s_nodelay = sp->nodelay;
4769 info->sctpi_s_disable_fragments = sp->disable_fragments;
4770 info->sctpi_s_v4mapped = sp->v4mapped;
4771 info->sctpi_s_frag_interleave = sp->frag_interleave;
Xin Long40eb90e92016-05-29 17:42:13 +08004772 info->sctpi_s_type = sp->type;
Xin Long52c52a62016-04-14 15:35:30 +08004773
4774 return 0;
4775 }
4776
4777 info->sctpi_tag = asoc->c.my_vtag;
4778 info->sctpi_state = asoc->state;
4779 info->sctpi_rwnd = asoc->a_rwnd;
4780 info->sctpi_unackdata = asoc->unack_data;
4781 info->sctpi_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
Xin Longcee360a2017-05-31 16:36:31 +08004782 info->sctpi_instrms = asoc->stream.incnt;
4783 info->sctpi_outstrms = asoc->stream.outcnt;
Xin Long52c52a62016-04-14 15:35:30 +08004784 list_for_each(pos, &asoc->base.inqueue.in_chunk_list)
4785 info->sctpi_inqueue++;
4786 list_for_each(pos, &asoc->outqueue.out_chunk_list)
4787 info->sctpi_outqueue++;
4788 info->sctpi_overall_error = asoc->overall_error_count;
4789 info->sctpi_max_burst = asoc->max_burst;
4790 info->sctpi_maxseg = asoc->frag_point;
4791 info->sctpi_peer_rwnd = asoc->peer.rwnd;
4792 info->sctpi_peer_tag = asoc->c.peer_vtag;
4793
4794 mask = asoc->peer.ecn_capable << 1;
4795 mask = (mask | asoc->peer.ipv4_address) << 1;
4796 mask = (mask | asoc->peer.ipv6_address) << 1;
4797 mask = (mask | asoc->peer.hostname_address) << 1;
4798 mask = (mask | asoc->peer.asconf_capable) << 1;
4799 mask = (mask | asoc->peer.prsctp_capable) << 1;
4800 mask = (mask | asoc->peer.auth_capable);
4801 info->sctpi_peer_capable = mask;
4802 mask = asoc->peer.sack_needed << 1;
4803 mask = (mask | asoc->peer.sack_generation) << 1;
4804 mask = (mask | asoc->peer.zero_window_announced);
4805 info->sctpi_peer_sack = mask;
4806
4807 info->sctpi_isacks = asoc->stats.isacks;
4808 info->sctpi_osacks = asoc->stats.osacks;
4809 info->sctpi_opackets = asoc->stats.opackets;
4810 info->sctpi_ipackets = asoc->stats.ipackets;
4811 info->sctpi_rtxchunks = asoc->stats.rtxchunks;
4812 info->sctpi_outofseqtsns = asoc->stats.outofseqtsns;
4813 info->sctpi_idupchunks = asoc->stats.idupchunks;
4814 info->sctpi_gapcnt = asoc->stats.gapcnt;
4815 info->sctpi_ouodchunks = asoc->stats.ouodchunks;
4816 info->sctpi_iuodchunks = asoc->stats.iuodchunks;
4817 info->sctpi_oodchunks = asoc->stats.oodchunks;
4818 info->sctpi_iodchunks = asoc->stats.iodchunks;
4819 info->sctpi_octrlchunks = asoc->stats.octrlchunks;
4820 info->sctpi_ictrlchunks = asoc->stats.ictrlchunks;
4821
4822 prim = asoc->peer.primary_path;
Stefano Brivioee6c88b2017-08-23 13:27:13 +02004823 memcpy(&info->sctpi_p_address, &prim->ipaddr, sizeof(prim->ipaddr));
Xin Long52c52a62016-04-14 15:35:30 +08004824 info->sctpi_p_state = prim->state;
4825 info->sctpi_p_cwnd = prim->cwnd;
4826 info->sctpi_p_srtt = prim->srtt;
4827 info->sctpi_p_rto = jiffies_to_msecs(prim->rto);
4828 info->sctpi_p_hbinterval = prim->hbinterval;
4829 info->sctpi_p_pathmaxrxt = prim->pathmaxrxt;
4830 info->sctpi_p_sackdelay = jiffies_to_msecs(prim->sackdelay);
4831 info->sctpi_p_ssthresh = prim->ssthresh;
4832 info->sctpi_p_partial_bytes_acked = prim->partial_bytes_acked;
4833 info->sctpi_p_flight_size = prim->flight_size;
4834 info->sctpi_p_error = prim->error_count;
4835
4836 return 0;
4837}
4838EXPORT_SYMBOL_GPL(sctp_get_sctp_info);
4839
Xin Long626d16f2016-04-14 15:35:31 +08004840/* use callback to avoid exporting the core structure */
Tom Herbert97a6ec42017-12-04 10:31:41 -08004841void sctp_transport_walk_start(struct rhashtable_iter *iter)
Xin Long626d16f2016-04-14 15:35:31 +08004842{
Xin Long7fda702f2016-11-15 23:23:11 +08004843 rhltable_walk_enter(&sctp_transport_hashtable, iter);
Xin Long626d16f2016-04-14 15:35:31 +08004844
Tom Herbert97a6ec42017-12-04 10:31:41 -08004845 rhashtable_walk_start(iter);
Xin Long626d16f2016-04-14 15:35:31 +08004846}
4847
4848void sctp_transport_walk_stop(struct rhashtable_iter *iter)
4849{
4850 rhashtable_walk_stop(iter);
4851 rhashtable_walk_exit(iter);
4852}
4853
4854struct sctp_transport *sctp_transport_get_next(struct net *net,
4855 struct rhashtable_iter *iter)
4856{
4857 struct sctp_transport *t;
4858
4859 t = rhashtable_walk_next(iter);
4860 for (; t; t = rhashtable_walk_next(iter)) {
4861 if (IS_ERR(t)) {
4862 if (PTR_ERR(t) == -EAGAIN)
4863 continue;
4864 break;
4865 }
4866
4867 if (net_eq(sock_net(t->asoc->base.sk), net) &&
4868 t->asoc->peer.primary_path == t)
4869 break;
4870 }
4871
4872 return t;
4873}
4874
4875struct sctp_transport *sctp_transport_get_idx(struct net *net,
4876 struct rhashtable_iter *iter,
4877 int pos)
4878{
4879 void *obj = SEQ_START_TOKEN;
4880
4881 while (pos && (obj = sctp_transport_get_next(net, iter)) &&
4882 !IS_ERR(obj))
4883 pos--;
4884
4885 return obj;
4886}
4887
4888int sctp_for_each_endpoint(int (*cb)(struct sctp_endpoint *, void *),
4889 void *p) {
4890 int err = 0;
4891 int hash = 0;
4892 struct sctp_ep_common *epb;
4893 struct sctp_hashbucket *head;
4894
4895 for (head = sctp_ep_hashtable; hash < sctp_ep_hashsize;
4896 hash++, head++) {
Xin Long581409d2017-06-10 14:48:14 +08004897 read_lock_bh(&head->lock);
Xin Long626d16f2016-04-14 15:35:31 +08004898 sctp_for_each_hentry(epb, &head->chain) {
4899 err = cb(sctp_ep(epb), p);
4900 if (err)
4901 break;
4902 }
Xin Long581409d2017-06-10 14:48:14 +08004903 read_unlock_bh(&head->lock);
Xin Long626d16f2016-04-14 15:35:31 +08004904 }
4905
4906 return err;
4907}
4908EXPORT_SYMBOL_GPL(sctp_for_each_endpoint);
4909
4910int sctp_transport_lookup_process(int (*cb)(struct sctp_transport *, void *),
4911 struct net *net,
4912 const union sctp_addr *laddr,
4913 const union sctp_addr *paddr, void *p)
4914{
4915 struct sctp_transport *transport;
Xin Long08abb792016-12-15 23:05:52 +08004916 int err;
Xin Long626d16f2016-04-14 15:35:31 +08004917
4918 rcu_read_lock();
4919 transport = sctp_addrs_lookup_transport(net, laddr, paddr);
Xin Long626d16f2016-04-14 15:35:31 +08004920 rcu_read_unlock();
Xin Long08abb792016-12-15 23:05:52 +08004921 if (!transport)
4922 return -ENOENT;
4923
Xin Long1cceda782016-09-29 02:55:44 +08004924 err = cb(transport, p);
Xin Longcd26da42016-10-31 20:32:31 +08004925 sctp_transport_put(transport);
Xin Long1cceda782016-09-29 02:55:44 +08004926
Xin Long626d16f2016-04-14 15:35:31 +08004927 return err;
4928}
4929EXPORT_SYMBOL_GPL(sctp_transport_lookup_process);
4930
4931int sctp_for_each_transport(int (*cb)(struct sctp_transport *, void *),
Xin Longd25adbe2017-09-15 11:02:21 +08004932 int (*cb_done)(struct sctp_transport *, void *),
4933 struct net *net, int *pos, void *p) {
Xin Long626d16f2016-04-14 15:35:31 +08004934 struct rhashtable_iter hti;
Xin Longd25adbe2017-09-15 11:02:21 +08004935 struct sctp_transport *tsp;
4936 int ret;
Xin Long626d16f2016-04-14 15:35:31 +08004937
Xin Longd25adbe2017-09-15 11:02:21 +08004938again:
Xin Longf53d77e2018-01-23 18:22:25 +08004939 ret = 0;
Tom Herbert97a6ec42017-12-04 10:31:41 -08004940 sctp_transport_walk_start(&hti);
Xin Long626d16f2016-04-14 15:35:31 +08004941
Xin Longd25adbe2017-09-15 11:02:21 +08004942 tsp = sctp_transport_get_idx(net, &hti, *pos + 1);
4943 for (; !IS_ERR_OR_NULL(tsp); tsp = sctp_transport_get_next(net, &hti)) {
4944 if (!sctp_transport_hold(tsp))
Xin Long626d16f2016-04-14 15:35:31 +08004945 continue;
Xin Longd25adbe2017-09-15 11:02:21 +08004946 ret = cb(tsp, p);
4947 if (ret)
Xin Long626d16f2016-04-14 15:35:31 +08004948 break;
Xin Longd25adbe2017-09-15 11:02:21 +08004949 (*pos)++;
4950 sctp_transport_put(tsp);
Xin Long626d16f2016-04-14 15:35:31 +08004951 }
Xin Long626d16f2016-04-14 15:35:31 +08004952 sctp_transport_walk_stop(&hti);
Xin Long53fa1032016-04-14 15:35:35 +08004953
Xin Longd25adbe2017-09-15 11:02:21 +08004954 if (ret) {
4955 if (cb_done && !cb_done(tsp, p)) {
4956 (*pos)++;
4957 sctp_transport_put(tsp);
4958 goto again;
4959 }
4960 sctp_transport_put(tsp);
4961 }
4962
4963 return ret;
Xin Long626d16f2016-04-14 15:35:31 +08004964}
4965EXPORT_SYMBOL_GPL(sctp_for_each_transport);
4966
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967/* 7.2.1 Association Status (SCTP_STATUS)
4968
4969 * Applications can retrieve current status information about an
4970 * association, including association state, peer receiver window size,
4971 * number of unacked data chunks, and number of data chunks pending
4972 * receipt. This information is read-only.
4973 */
4974static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
4975 char __user *optval,
4976 int __user *optlen)
4977{
4978 struct sctp_status status;
4979 struct sctp_association *asoc = NULL;
4980 struct sctp_transport *transport;
4981 sctp_assoc_t associd;
4982 int retval = 0;
4983
Neil Horman408f22e2007-06-16 14:03:45 -04004984 if (len < sizeof(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985 retval = -EINVAL;
4986 goto out;
4987 }
4988
Neil Horman408f22e2007-06-16 14:03:45 -04004989 len = sizeof(status);
4990 if (copy_from_user(&status, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991 retval = -EFAULT;
4992 goto out;
4993 }
4994
4995 associd = status.sstat_assoc_id;
4996 asoc = sctp_id2assoc(sk, associd);
4997 if (!asoc) {
4998 retval = -EINVAL;
4999 goto out;
5000 }
5001
5002 transport = asoc->peer.primary_path;
5003
5004 status.sstat_assoc_id = sctp_assoc2id(asoc);
Daniel Borkmann38ab1fa2014-08-28 15:28:26 +02005005 status.sstat_state = sctp_assoc_to_state(asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006 status.sstat_rwnd = asoc->peer.rwnd;
5007 status.sstat_unackdata = asoc->unack_data;
5008
5009 status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
Xin Longcee360a2017-05-31 16:36:31 +08005010 status.sstat_instrms = asoc->stream.incnt;
5011 status.sstat_outstrms = asoc->stream.outcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012 status.sstat_fragmentation_point = asoc->frag_point;
5013 status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Al Viro8cec6b82006-11-20 17:23:01 -08005014 memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
5015 transport->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016 /* Map ipv4 address into v4-mapped-on-v6 address. */
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005017 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018 (union sctp_addr *)&status.sstat_primary.spinfo_address);
Frank Filz3f7a87d2005-06-20 13:14:57 -07005019 status.sstat_primary.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020 status.sstat_primary.spinfo_cwnd = transport->cwnd;
5021 status.sstat_primary.spinfo_srtt = transport->srtt;
5022 status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005023 status.sstat_primary.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024
Frank Filz3f7a87d2005-06-20 13:14:57 -07005025 if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
5026 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
5027
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028 if (put_user(len, optlen)) {
5029 retval = -EFAULT;
5030 goto out;
5031 }
5032
Daniel Borkmannbb333812013-06-28 19:49:40 +02005033 pr_debug("%s: len:%d, state:%d, rwnd:%d, assoc_id:%d\n",
5034 __func__, len, status.sstat_state, status.sstat_rwnd,
5035 status.sstat_assoc_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036
5037 if (copy_to_user(optval, &status, len)) {
5038 retval = -EFAULT;
5039 goto out;
5040 }
5041
5042out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00005043 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044}
5045
5046
5047/* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
5048 *
5049 * Applications can retrieve information about a specific peer address
5050 * of an association, including its reachability state, congestion
5051 * window, and retransmission timer values. This information is
5052 * read-only.
5053 */
5054static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
5055 char __user *optval,
5056 int __user *optlen)
5057{
5058 struct sctp_paddrinfo pinfo;
5059 struct sctp_transport *transport;
5060 int retval = 0;
5061
Neil Horman408f22e2007-06-16 14:03:45 -04005062 if (len < sizeof(pinfo)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063 retval = -EINVAL;
5064 goto out;
5065 }
5066
Neil Horman408f22e2007-06-16 14:03:45 -04005067 len = sizeof(pinfo);
5068 if (copy_from_user(&pinfo, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069 retval = -EFAULT;
5070 goto out;
5071 }
5072
5073 transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
5074 pinfo.spinfo_assoc_id);
5075 if (!transport)
5076 return -EINVAL;
5077
5078 pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07005079 pinfo.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080 pinfo.spinfo_cwnd = transport->cwnd;
5081 pinfo.spinfo_srtt = transport->srtt;
5082 pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005083 pinfo.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084
Frank Filz3f7a87d2005-06-20 13:14:57 -07005085 if (pinfo.spinfo_state == SCTP_UNKNOWN)
5086 pinfo.spinfo_state = SCTP_ACTIVE;
5087
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088 if (put_user(len, optlen)) {
5089 retval = -EFAULT;
5090 goto out;
5091 }
5092
5093 if (copy_to_user(optval, &pinfo, len)) {
5094 retval = -EFAULT;
5095 goto out;
5096 }
5097
5098out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00005099 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100}
5101
5102/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
5103 *
5104 * This option is a on/off flag. If enabled no SCTP message
5105 * fragmentation will be performed. Instead if a message being sent
5106 * exceeds the current PMTU size, the message will NOT be sent and
5107 * instead a error will be indicated to the user.
5108 */
5109static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
5110 char __user *optval, int __user *optlen)
5111{
5112 int val;
5113
5114 if (len < sizeof(int))
5115 return -EINVAL;
5116
5117 len = sizeof(int);
5118 val = (sctp_sk(sk)->disable_fragments == 1);
5119 if (put_user(len, optlen))
5120 return -EFAULT;
5121 if (copy_to_user(optval, &val, len))
5122 return -EFAULT;
5123 return 0;
5124}
5125
5126/* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
5127 *
5128 * This socket option is used to specify various notifications and
5129 * ancillary data the user wishes to receive.
5130 */
5131static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
5132 int __user *optlen)
5133{
Jiri Slabya4b8e712016-10-21 14:13:24 +02005134 if (len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 return -EINVAL;
Thomas Grafacdd5982012-04-03 22:17:53 +00005136 if (len > sizeof(struct sctp_event_subscribe))
5137 len = sizeof(struct sctp_event_subscribe);
Neil Horman408f22e2007-06-16 14:03:45 -04005138 if (put_user(len, optlen))
5139 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140 if (copy_to_user(optval, &sctp_sk(sk)->subscribe, len))
5141 return -EFAULT;
5142 return 0;
5143}
5144
5145/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
5146 *
5147 * This socket option is applicable to the UDP-style socket only. When
5148 * set it will cause associations that are idle for more than the
5149 * specified number of seconds to automatically close. An association
5150 * being idle is defined an association that has NOT sent or received
5151 * user data. The special value of '0' indicates that no automatic
5152 * close of any associations should be performed. The option expects an
5153 * integer defining the number of seconds of idle time before an
5154 * association is closed.
5155 */
5156static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
5157{
5158 /* Applicable to UDP-style socket only */
5159 if (sctp_style(sk, TCP))
5160 return -EOPNOTSUPP;
Neil Horman408f22e2007-06-16 14:03:45 -04005161 if (len < sizeof(int))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005163 len = sizeof(int);
5164 if (put_user(len, optlen))
5165 return -EFAULT;
David Windsorb2ce04c2017-06-10 22:50:43 -04005166 if (put_user(sctp_sk(sk)->autoclose, (int __user *)optval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167 return -EFAULT;
5168 return 0;
5169}
5170
5171/* Helper routine to branch off an association to a new socket. */
Benjamin Poirier0343c552012-03-08 05:55:58 +00005172int sctp_do_peeloff(struct sock *sk, sctp_assoc_t id, struct socket **sockp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173{
Benjamin Poirier0343c552012-03-08 05:55:58 +00005174 struct sctp_association *asoc = sctp_id2assoc(sk, id);
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005175 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176 struct socket *sock;
5177 int err = 0;
5178
Xin Longdf80cd92017-10-17 23:26:10 +08005179 /* Do not peel off from one netns to another one. */
5180 if (!net_eq(current->nsproxy->net_ns, sock_net(sk)))
5181 return -EINVAL;
5182
Benjamin Poirier0343c552012-03-08 05:55:58 +00005183 if (!asoc)
5184 return -EINVAL;
5185
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186 /* An association cannot be branched off from an already peeled-off
5187 * socket, nor is this supported for tcp style sockets.
5188 */
5189 if (!sctp_style(sk, UDP))
5190 return -EINVAL;
5191
5192 /* Create a new socket. */
5193 err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
5194 if (err < 0)
5195 return err;
5196
Vlad Yasevich914e1c82009-02-13 08:33:44 +00005197 sctp_copy_sock(sock->sk, sk, asoc);
Vlad Yasevich4f444302006-10-30 18:54:32 -08005198
5199 /* Make peeled-off sockets more like 1-1 accepted sockets.
Richard Hainesb7e10c22018-02-24 16:18:51 +00005200 * Set the daddr and initialize id to something more random and also
5201 * copy over any ip options.
Vlad Yasevich4f444302006-10-30 18:54:32 -08005202 */
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005203 sp->pf->to_sk_daddr(&asoc->peer.primary_addr, sk);
Richard Hainesb7e10c22018-02-24 16:18:51 +00005204 sp->pf->copy_ip_options(sk, sock->sk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00005205
5206 /* Populate the fields of the newsk from the oldsk and migrate the
5207 * asoc to the newsk.
5208 */
5209 sctp_sock_migrate(sk, sock->sk, asoc, SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
Vlad Yasevich4f444302006-10-30 18:54:32 -08005210
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211 *sockp = sock;
5212
5213 return err;
5214}
Benjamin Poirier0343c552012-03-08 05:55:58 +00005215EXPORT_SYMBOL(sctp_do_peeloff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005217static int sctp_getsockopt_peeloff_common(struct sock *sk, sctp_peeloff_arg_t *peeloff,
5218 struct file **newfile, unsigned flags)
5219{
5220 struct socket *newsock;
5221 int retval;
5222
5223 retval = sctp_do_peeloff(sk, peeloff->associd, &newsock);
5224 if (retval < 0)
5225 goto out;
5226
5227 /* Map the socket to an unused fd that can be returned to the user. */
5228 retval = get_unused_fd_flags(flags & SOCK_CLOEXEC);
5229 if (retval < 0) {
5230 sock_release(newsock);
5231 goto out;
5232 }
5233
5234 *newfile = sock_alloc_file(newsock, 0, NULL);
5235 if (IS_ERR(*newfile)) {
5236 put_unused_fd(retval);
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005237 retval = PTR_ERR(*newfile);
5238 *newfile = NULL;
5239 return retval;
5240 }
5241
5242 pr_debug("%s: sk:%p, newsk:%p, sd:%d\n", __func__, sk, newsock->sk,
5243 retval);
5244
5245 peeloff->sd = retval;
5246
5247 if (flags & SOCK_NONBLOCK)
5248 (*newfile)->f_flags |= O_NONBLOCK;
5249out:
5250 return retval;
5251}
5252
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
5254{
5255 sctp_peeloff_arg_t peeloff;
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005256 struct file *newfile = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258
Neil Horman408f22e2007-06-16 14:03:45 -04005259 if (len < sizeof(sctp_peeloff_arg_t))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005261 len = sizeof(sctp_peeloff_arg_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262 if (copy_from_user(&peeloff, optval, len))
5263 return -EFAULT;
5264
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005265 retval = sctp_getsockopt_peeloff_common(sk, &peeloff, &newfile, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266 if (retval < 0)
5267 goto out;
5268
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269 /* Return the fd mapped to the new socket. */
Al Viro56b31d12012-08-18 00:25:51 -04005270 if (put_user(len, optlen)) {
5271 fput(newfile);
5272 put_unused_fd(retval);
Neil Horman408f22e2007-06-16 14:03:45 -04005273 return -EFAULT;
Al Viro56b31d12012-08-18 00:25:51 -04005274 }
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005275
5276 if (copy_to_user(optval, &peeloff, len)) {
5277 fput(newfile);
5278 put_unused_fd(retval);
5279 return -EFAULT;
5280 }
5281 fd_install(retval, newfile);
5282out:
5283 return retval;
5284}
5285
5286static int sctp_getsockopt_peeloff_flags(struct sock *sk, int len,
5287 char __user *optval, int __user *optlen)
5288{
5289 sctp_peeloff_flags_arg_t peeloff;
5290 struct file *newfile = NULL;
5291 int retval = 0;
5292
5293 if (len < sizeof(sctp_peeloff_flags_arg_t))
5294 return -EINVAL;
5295 len = sizeof(sctp_peeloff_flags_arg_t);
5296 if (copy_from_user(&peeloff, optval, len))
5297 return -EFAULT;
5298
5299 retval = sctp_getsockopt_peeloff_common(sk, &peeloff.p_arg,
5300 &newfile, peeloff.flags);
5301 if (retval < 0)
5302 goto out;
5303
5304 /* Return the fd mapped to the new socket. */
5305 if (put_user(len, optlen)) {
5306 fput(newfile);
5307 put_unused_fd(retval);
5308 return -EFAULT;
5309 }
5310
Al Viro56b31d12012-08-18 00:25:51 -04005311 if (copy_to_user(optval, &peeloff, len)) {
5312 fput(newfile);
5313 put_unused_fd(retval);
5314 return -EFAULT;
5315 }
5316 fd_install(retval, newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005317out:
5318 return retval;
5319}
5320
5321/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
5322 *
5323 * Applications can enable or disable heartbeats for any peer address of
5324 * an association, modify an address's heartbeat interval, force a
5325 * heartbeat to be sent immediately, and adjust the address's maximum
5326 * number of retransmissions sent before an address is considered
5327 * unreachable. The following structure is used to access and modify an
5328 * address's parameters:
5329 *
5330 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08005331 * sctp_assoc_t spp_assoc_id;
5332 * struct sockaddr_storage spp_address;
5333 * uint32_t spp_hbinterval;
5334 * uint16_t spp_pathmaxrxt;
5335 * uint32_t spp_pathmtu;
5336 * uint32_t spp_sackdelay;
5337 * uint32_t spp_flags;
5338 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08005340 * spp_assoc_id - (one-to-many style socket) This is filled in the
5341 * application, and identifies the association for
5342 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343 * spp_address - This specifies which address is of interest.
5344 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08005345 * in milliseconds. If a value of zero
5346 * is present in this field then no changes are to
5347 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348 * spp_pathmaxrxt - This contains the maximum number of
5349 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08005350 * considered unreachable. If a value of zero
5351 * is present in this field then no changes are to
5352 * be made to this parameter.
5353 * spp_pathmtu - When Path MTU discovery is disabled the value
5354 * specified here will be the "fixed" path mtu.
5355 * Note that if the spp_address field is empty
5356 * then all associations on this address will
5357 * have this fixed path mtu set upon them.
5358 *
5359 * spp_sackdelay - When delayed sack is enabled, this value specifies
5360 * the number of milliseconds that sacks will be delayed
5361 * for. This value will apply to all addresses of an
5362 * association if the spp_address field is empty. Note
5363 * also, that if delayed sack is enabled and this
5364 * value is set to 0, no change is made to the last
5365 * recorded delayed sack timer value.
5366 *
5367 * spp_flags - These flags are used to control various features
5368 * on an association. The flag field may contain
5369 * zero or more of the following options.
5370 *
5371 * SPP_HB_ENABLE - Enable heartbeats on the
5372 * specified address. Note that if the address
5373 * field is empty all addresses for the association
5374 * have heartbeats enabled upon them.
5375 *
5376 * SPP_HB_DISABLE - Disable heartbeats on the
5377 * speicifed address. Note that if the address
5378 * field is empty all addresses for the association
5379 * will have their heartbeats disabled. Note also
5380 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
5381 * mutually exclusive, only one of these two should
5382 * be specified. Enabling both fields will have
5383 * undetermined results.
5384 *
5385 * SPP_HB_DEMAND - Request a user initiated heartbeat
5386 * to be made immediately.
5387 *
5388 * SPP_PMTUD_ENABLE - This field will enable PMTU
5389 * discovery upon the specified address. Note that
5390 * if the address feild is empty then all addresses
5391 * on the association are effected.
5392 *
5393 * SPP_PMTUD_DISABLE - This field will disable PMTU
5394 * discovery upon the specified address. Note that
5395 * if the address feild is empty then all addresses
5396 * on the association are effected. Not also that
5397 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
5398 * exclusive. Enabling both will have undetermined
5399 * results.
5400 *
5401 * SPP_SACKDELAY_ENABLE - Setting this flag turns
5402 * on delayed sack. The time specified in spp_sackdelay
5403 * is used to specify the sack delay for this address. Note
5404 * that if spp_address is empty then all addresses will
5405 * enable delayed sack and take on the sack delay
5406 * value specified in spp_sackdelay.
5407 * SPP_SACKDELAY_DISABLE - Setting this flag turns
5408 * off delayed sack. If the spp_address field is blank then
5409 * delayed sack is disabled for the entire association. Note
5410 * also that this field is mutually exclusive to
5411 * SPP_SACKDELAY_ENABLE, setting both will have undefined
5412 * results.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413 */
5414static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
Frank Filz52ccb8e2005-12-22 11:36:46 -08005415 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416{
Frank Filz52ccb8e2005-12-22 11:36:46 -08005417 struct sctp_paddrparams params;
5418 struct sctp_transport *trans = NULL;
5419 struct sctp_association *asoc = NULL;
5420 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421
Neil Horman408f22e2007-06-16 14:03:45 -04005422 if (len < sizeof(struct sctp_paddrparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005423 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005424 len = sizeof(struct sctp_paddrparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425 if (copy_from_user(&params, optval, len))
5426 return -EFAULT;
5427
Frank Filz52ccb8e2005-12-22 11:36:46 -08005428 /* If an address other than INADDR_ANY is specified, and
5429 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430 */
wangweidongcb3f8372013-12-23 12:16:50 +08005431 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08005432 trans = sctp_addr_id2transport(sk, &params.spp_address,
5433 params.spp_assoc_id);
5434 if (!trans) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02005435 pr_debug("%s: failed no transport\n", __func__);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005436 return -EINVAL;
5437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438 }
5439
Frank Filz52ccb8e2005-12-22 11:36:46 -08005440 /* Get association, if assoc_id != 0 and the socket is a one
5441 * to many style socket, and an association was not found, then
5442 * the id was invalid.
5443 */
5444 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
5445 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP)) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02005446 pr_debug("%s: failed no association\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08005448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449
Frank Filz52ccb8e2005-12-22 11:36:46 -08005450 if (trans) {
5451 /* Fetch transport values. */
5452 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
5453 params.spp_pathmtu = trans->pathmtu;
5454 params.spp_pathmaxrxt = trans->pathmaxrxt;
5455 params.spp_sackdelay = jiffies_to_msecs(trans->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456
Frank Filz52ccb8e2005-12-22 11:36:46 -08005457 /*draft-11 doesn't say what to return in spp_flags*/
5458 params.spp_flags = trans->param_flags;
5459 } else if (asoc) {
5460 /* Fetch association values. */
5461 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
5462 params.spp_pathmtu = asoc->pathmtu;
5463 params.spp_pathmaxrxt = asoc->pathmaxrxt;
5464 params.spp_sackdelay = jiffies_to_msecs(asoc->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465
Frank Filz52ccb8e2005-12-22 11:36:46 -08005466 /*draft-11 doesn't say what to return in spp_flags*/
5467 params.spp_flags = asoc->param_flags;
5468 } else {
5469 /* Fetch socket values. */
5470 params.spp_hbinterval = sp->hbinterval;
5471 params.spp_pathmtu = sp->pathmtu;
5472 params.spp_sackdelay = sp->sackdelay;
5473 params.spp_pathmaxrxt = sp->pathmaxrxt;
5474
5475 /*draft-11 doesn't say what to return in spp_flags*/
5476 params.spp_flags = sp->param_flags;
5477 }
5478
Linus Torvalds1da177e2005-04-16 15:20:36 -07005479 if (copy_to_user(optval, &params, len))
5480 return -EFAULT;
5481
5482 if (put_user(len, optlen))
5483 return -EFAULT;
5484
5485 return 0;
5486}
5487
Wei Yongjund364d922008-05-09 15:13:26 -07005488/*
5489 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08005490 *
Wei Yongjund364d922008-05-09 15:13:26 -07005491 * This option will effect the way delayed acks are performed. This
5492 * option allows you to get or set the delayed ack time, in
5493 * milliseconds. It also allows changing the delayed ack frequency.
5494 * Changing the frequency to 1 disables the delayed sack algorithm. If
5495 * the assoc_id is 0, then this sets or gets the endpoints default
5496 * values. If the assoc_id field is non-zero, then the set or get
5497 * effects the specified association for the one to many model (the
5498 * assoc_id field is ignored by the one to one model). Note that if
5499 * sack_delay or sack_freq are 0 when setting this option, then the
5500 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08005501 *
Wei Yongjund364d922008-05-09 15:13:26 -07005502 * struct sctp_sack_info {
5503 * sctp_assoc_t sack_assoc_id;
5504 * uint32_t sack_delay;
5505 * uint32_t sack_freq;
5506 * };
Frank Filz77086102005-12-22 11:37:30 -08005507 *
Wei Yongjund364d922008-05-09 15:13:26 -07005508 * sack_assoc_id - This parameter, indicates which association the user
5509 * is performing an action upon. Note that if this field's value is
5510 * zero then the endpoints default value is changed (effecting future
5511 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08005512 *
Wei Yongjund364d922008-05-09 15:13:26 -07005513 * sack_delay - This parameter contains the number of milliseconds that
5514 * the user is requesting the delayed ACK timer be set to. Note that
5515 * this value is defined in the standard to be between 200 and 500
5516 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08005517 *
Wei Yongjund364d922008-05-09 15:13:26 -07005518 * sack_freq - This parameter contains the number of packets that must
5519 * be received before a sack is sent without waiting for the delay
5520 * timer to expire. The default value for this is 2, setting this
5521 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08005522 */
Wei Yongjund364d922008-05-09 15:13:26 -07005523static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
Frank Filz77086102005-12-22 11:37:30 -08005524 char __user *optval,
5525 int __user *optlen)
5526{
Wei Yongjund364d922008-05-09 15:13:26 -07005527 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08005528 struct sctp_association *asoc = NULL;
5529 struct sctp_sock *sp = sctp_sk(sk);
5530
Wei Yongjund364d922008-05-09 15:13:26 -07005531 if (len >= sizeof(struct sctp_sack_info)) {
5532 len = sizeof(struct sctp_sack_info);
5533
5534 if (copy_from_user(&params, optval, len))
5535 return -EFAULT;
5536 } else if (len == sizeof(struct sctp_assoc_value)) {
Neil Horman94f65192013-12-23 08:29:43 -05005537 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05005538 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05005539 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05005540 "Use struct sctp_sack_info instead\n",
5541 current->comm, task_pid_nr(current));
Wei Yongjund364d922008-05-09 15:13:26 -07005542 if (copy_from_user(&params, optval, len))
5543 return -EFAULT;
5544 } else
wangweidongcb3f8372013-12-23 12:16:50 +08005545 return -EINVAL;
Frank Filz77086102005-12-22 11:37:30 -08005546
Wei Yongjund364d922008-05-09 15:13:26 -07005547 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08005548 * to many style socket, and an association was not found, then
5549 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005550 */
Wei Yongjund364d922008-05-09 15:13:26 -07005551 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
5552 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08005553 return -EINVAL;
5554
5555 if (asoc) {
5556 /* Fetch association values. */
Wei Yongjund364d922008-05-09 15:13:26 -07005557 if (asoc->param_flags & SPP_SACKDELAY_ENABLE) {
5558 params.sack_delay = jiffies_to_msecs(
Frank Filz77086102005-12-22 11:37:30 -08005559 asoc->sackdelay);
Wei Yongjund364d922008-05-09 15:13:26 -07005560 params.sack_freq = asoc->sackfreq;
5561
5562 } else {
5563 params.sack_delay = 0;
5564 params.sack_freq = 1;
5565 }
Frank Filz77086102005-12-22 11:37:30 -08005566 } else {
5567 /* Fetch socket values. */
Wei Yongjund364d922008-05-09 15:13:26 -07005568 if (sp->param_flags & SPP_SACKDELAY_ENABLE) {
5569 params.sack_delay = sp->sackdelay;
5570 params.sack_freq = sp->sackfreq;
5571 } else {
5572 params.sack_delay = 0;
5573 params.sack_freq = 1;
5574 }
Frank Filz77086102005-12-22 11:37:30 -08005575 }
5576
5577 if (copy_to_user(optval, &params, len))
5578 return -EFAULT;
5579
5580 if (put_user(len, optlen))
5581 return -EFAULT;
5582
5583 return 0;
5584}
5585
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
5587 *
5588 * Applications can specify protocol parameters for the default association
5589 * initialization. The option name argument to setsockopt() and getsockopt()
5590 * is SCTP_INITMSG.
5591 *
5592 * Setting initialization parameters is effective only on an unconnected
5593 * socket (for UDP-style sockets only future associations are effected
5594 * by the change). With TCP-style sockets, this option is inherited by
5595 * sockets derived from a listener socket.
5596 */
5597static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
5598{
Neil Horman408f22e2007-06-16 14:03:45 -04005599 if (len < sizeof(struct sctp_initmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005601 len = sizeof(struct sctp_initmsg);
5602 if (put_user(len, optlen))
5603 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604 if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
5605 return -EFAULT;
5606 return 0;
5607}
5608
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005610static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
5611 char __user *optval, int __user *optlen)
5612{
5613 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005614 int cnt = 0;
5615 struct sctp_getaddrs getaddrs;
5616 struct sctp_transport *from;
5617 void __user *to;
5618 union sctp_addr temp;
5619 struct sctp_sock *sp = sctp_sk(sk);
5620 int addrlen;
5621 size_t space_left;
5622 int bytes_copied;
5623
5624 if (len < sizeof(struct sctp_getaddrs))
5625 return -EINVAL;
5626
5627 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
5628 return -EFAULT;
5629
5630 /* For UDP-style sockets, id specifies the association to query. */
5631 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
5632 if (!asoc)
5633 return -EINVAL;
5634
wangweidongcb3f8372013-12-23 12:16:50 +08005635 to = optval + offsetof(struct sctp_getaddrs, addrs);
5636 space_left = len - offsetof(struct sctp_getaddrs, addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005637
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07005638 list_for_each_entry(from, &asoc->peer.transport_addr_list,
5639 transports) {
Al Virob3f5b3b2006-11-20 17:22:43 -08005640 memcpy(&temp, &from->ipaddr, sizeof(temp));
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005641 addrlen = sctp_get_pf_specific(sk->sk_family)
5642 ->addr_to_user(sp, &temp);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005643 if (space_left < addrlen)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005644 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005645 if (copy_to_user(to, &temp, addrlen))
5646 return -EFAULT;
5647 to += addrlen;
5648 cnt++;
5649 space_left -= addrlen;
5650 }
5651
5652 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
5653 return -EFAULT;
5654 bytes_copied = ((char __user *)to) - optval;
5655 if (put_user(bytes_copied, optlen))
5656 return -EFAULT;
5657
5658 return 0;
5659}
5660
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005661static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to,
5662 size_t space_left, int *bytes_copied)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005663{
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005664 struct sctp_sockaddr_entry *addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005665 union sctp_addr temp;
5666 int cnt = 0;
5667 int addrlen;
Eric W. Biederman4db67e82012-08-06 08:42:04 +00005668 struct net *net = sock_net(sk);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005669
Vlad Yasevich29303542007-09-16 16:02:12 -07005670 rcu_read_lock();
Eric W. Biederman4db67e82012-08-06 08:42:04 +00005671 list_for_each_entry_rcu(addr, &net->sctp.local_addr_list, list) {
Vlad Yasevich29303542007-09-16 16:02:12 -07005672 if (!addr->valid)
5673 continue;
5674
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005675 if ((PF_INET == sk->sk_family) &&
Al Viro6244be42006-11-20 17:21:44 -08005676 (AF_INET6 == addr->a.sa.sa_family))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005677 continue;
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07005678 if ((PF_INET6 == sk->sk_family) &&
5679 inet_v6_ipv6only(sk) &&
5680 (AF_INET == addr->a.sa.sa_family))
5681 continue;
Al Viro6244be42006-11-20 17:21:44 -08005682 memcpy(&temp, &addr->a, sizeof(temp));
Vlad Yasevichb46ae362008-01-28 14:25:36 -05005683 if (!temp.v4.sin_port)
5684 temp.v4.sin_port = htons(port);
5685
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005686 addrlen = sctp_get_pf_specific(sk->sk_family)
5687 ->addr_to_user(sctp_sk(sk), &temp);
5688
Vlad Yasevich29303542007-09-16 16:02:12 -07005689 if (space_left < addrlen) {
5690 cnt = -ENOMEM;
5691 break;
5692 }
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005693 memcpy(to, &temp, addrlen);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08005694
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005695 to += addrlen;
wangweidongcb3f8372013-12-23 12:16:50 +08005696 cnt++;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005697 space_left -= addrlen;
Vlad Yasevich3663c302007-07-03 12:43:12 -04005698 *bytes_copied += addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005699 }
Vlad Yasevich29303542007-09-16 16:02:12 -07005700 rcu_read_unlock();
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005701
5702 return cnt;
5703}
5704
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005706static int sctp_getsockopt_local_addrs(struct sock *sk, int len,
5707 char __user *optval, int __user *optlen)
5708{
5709 struct sctp_bind_addr *bp;
5710 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005711 int cnt = 0;
5712 struct sctp_getaddrs getaddrs;
5713 struct sctp_sockaddr_entry *addr;
5714 void __user *to;
5715 union sctp_addr temp;
5716 struct sctp_sock *sp = sctp_sk(sk);
5717 int addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005718 int err = 0;
5719 size_t space_left;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005720 int bytes_copied = 0;
5721 void *addrs;
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005722 void *buf;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005723
Neil Horman408f22e2007-06-16 14:03:45 -04005724 if (len < sizeof(struct sctp_getaddrs))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005725 return -EINVAL;
5726
5727 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
5728 return -EFAULT;
5729
5730 /*
5731 * For UDP-style sockets, id specifies the association to query.
5732 * If the id field is set to the value '0' then the locally bound
5733 * addresses are returned without regard to any particular
5734 * association.
5735 */
5736 if (0 == getaddrs.assoc_id) {
5737 bp = &sctp_sk(sk)->ep->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005738 } else {
5739 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
5740 if (!asoc)
5741 return -EINVAL;
5742 bp = &asoc->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005743 }
5744
wangweidongcb3f8372013-12-23 12:16:50 +08005745 to = optval + offsetof(struct sctp_getaddrs, addrs);
5746 space_left = len - offsetof(struct sctp_getaddrs, addrs);
Neil Horman186e2342007-06-18 19:59:16 -04005747
Marcelo Ricardo Leitnercacc0622015-11-30 14:32:54 -02005748 addrs = kmalloc(space_left, GFP_USER | __GFP_NOWARN);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005749 if (!addrs)
5750 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005751
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005752 /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
5753 * addresses from the global local address list.
5754 */
5755 if (sctp_list_single_entry(&bp->address_list)) {
5756 addr = list_entry(bp->address_list.next,
5757 struct sctp_sockaddr_entry, list);
Vlad Yasevich52cae8f2008-08-18 10:34:34 -04005758 if (sctp_is_any(sk, &addr->a)) {
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005759 cnt = sctp_copy_laddrs(sk, bp->port, addrs,
5760 space_left, &bytes_copied);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005761 if (cnt < 0) {
5762 err = cnt;
Vlad Yasevich559cf712007-09-16 16:03:28 -07005763 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005764 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005765 goto copy_getaddrs;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005766 }
5767 }
5768
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005769 buf = addrs;
Vlad Yasevich559cf712007-09-16 16:03:28 -07005770 /* Protection on the bound address list is not needed since
5771 * in the socket option context we hold a socket lock and
5772 * thus the bound address list can't change.
5773 */
5774 list_for_each_entry(addr, &bp->address_list, list) {
Al Viro6244be42006-11-20 17:21:44 -08005775 memcpy(&temp, &addr->a, sizeof(temp));
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005776 addrlen = sctp_get_pf_specific(sk->sk_family)
5777 ->addr_to_user(sp, &temp);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005778 if (space_left < addrlen) {
5779 err = -ENOMEM; /*fixme: right error?*/
Vlad Yasevich559cf712007-09-16 16:03:28 -07005780 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005781 }
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005782 memcpy(buf, &temp, addrlen);
5783 buf += addrlen;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005784 bytes_copied += addrlen;
wangweidongcb3f8372013-12-23 12:16:50 +08005785 cnt++;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005786 space_left -= addrlen;
5787 }
5788
5789copy_getaddrs:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005790 if (copy_to_user(to, addrs, bytes_copied)) {
5791 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02005792 goto out;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005793 }
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04005794 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num)) {
5795 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02005796 goto out;
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04005797 }
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02005798 /* XXX: We should have accounted for sizeof(struct sctp_getaddrs) too,
5799 * but we can't change it anymore.
5800 */
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005801 if (put_user(bytes_copied, optlen))
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04005802 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02005803out:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005804 kfree(addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005805 return err;
5806}
5807
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
5809 *
5810 * Requests that the local SCTP stack use the enclosed peer address as
5811 * the association primary. The enclosed address must be one of the
5812 * association peer's addresses.
5813 */
5814static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
5815 char __user *optval, int __user *optlen)
5816{
5817 struct sctp_prim prim;
5818 struct sctp_association *asoc;
5819 struct sctp_sock *sp = sctp_sk(sk);
5820
Neil Horman408f22e2007-06-16 14:03:45 -04005821 if (len < sizeof(struct sctp_prim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822 return -EINVAL;
5823
Neil Horman408f22e2007-06-16 14:03:45 -04005824 len = sizeof(struct sctp_prim);
5825
5826 if (copy_from_user(&prim, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827 return -EFAULT;
5828
5829 asoc = sctp_id2assoc(sk, prim.ssp_assoc_id);
5830 if (!asoc)
5831 return -EINVAL;
5832
5833 if (!asoc->peer.primary_path)
5834 return -ENOTCONN;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005835
Al Viro8cec6b82006-11-20 17:23:01 -08005836 memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr,
5837 asoc->peer.primary_path->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005839 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840 (union sctp_addr *)&prim.ssp_addr);
5841
Neil Horman408f22e2007-06-16 14:03:45 -04005842 if (put_user(len, optlen))
5843 return -EFAULT;
5844 if (copy_to_user(optval, &prim, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005845 return -EFAULT;
5846
5847 return 0;
5848}
5849
5850/*
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005851 * 7.1.11 Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005852 *
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005853 * Requests that the local endpoint set the specified Adaptation Layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854 * Indication parameter for all future INIT and INIT-ACK exchanges.
5855 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005856static int sctp_getsockopt_adaptation_layer(struct sock *sk, int len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005857 char __user *optval, int __user *optlen)
5858{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005859 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860
Neil Horman408f22e2007-06-16 14:03:45 -04005861 if (len < sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005862 return -EINVAL;
5863
Neil Horman408f22e2007-06-16 14:03:45 -04005864 len = sizeof(struct sctp_setadaptation);
5865
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005866 adaptation.ssb_adaptation_ind = sctp_sk(sk)->adaptation_ind;
Neil Horman408f22e2007-06-16 14:03:45 -04005867
5868 if (put_user(len, optlen))
5869 return -EFAULT;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005870 if (copy_to_user(optval, &adaptation, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005871 return -EFAULT;
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07005872
Linus Torvalds1da177e2005-04-16 15:20:36 -07005873 return 0;
5874}
5875
5876/*
5877 *
5878 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
5879 *
5880 * Applications that wish to use the sendto() system call may wish to
5881 * specify a default set of parameters that would normally be supplied
5882 * through the inclusion of ancillary data. This socket option allows
5883 * such an application to set the default sctp_sndrcvinfo structure.
5884
5885
5886 * The application that wishes to use this socket option simply passes
5887 * in to this call the sctp_sndrcvinfo structure defined in Section
5888 * 5.2.2) The input parameters accepted by this call include
5889 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
5890 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
5891 * to this call if the caller is using the UDP model.
5892 *
5893 * For getsockopt, it get the default sctp_sndrcvinfo structure.
5894 */
5895static int sctp_getsockopt_default_send_param(struct sock *sk,
5896 int len, char __user *optval,
5897 int __user *optlen)
5898{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005899 struct sctp_sock *sp = sctp_sk(sk);
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005900 struct sctp_association *asoc;
5901 struct sctp_sndrcvinfo info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005902
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005903 if (len < sizeof(info))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005905
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005906 len = sizeof(info);
Neil Horman408f22e2007-06-16 14:03:45 -04005907
5908 if (copy_from_user(&info, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909 return -EFAULT;
5910
5911 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
5912 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
5913 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914 if (asoc) {
5915 info.sinfo_stream = asoc->default_stream;
5916 info.sinfo_flags = asoc->default_flags;
5917 info.sinfo_ppid = asoc->default_ppid;
5918 info.sinfo_context = asoc->default_context;
5919 info.sinfo_timetolive = asoc->default_timetolive;
5920 } else {
5921 info.sinfo_stream = sp->default_stream;
5922 info.sinfo_flags = sp->default_flags;
5923 info.sinfo_ppid = sp->default_ppid;
5924 info.sinfo_context = sp->default_context;
5925 info.sinfo_timetolive = sp->default_timetolive;
5926 }
5927
Neil Horman408f22e2007-06-16 14:03:45 -04005928 if (put_user(len, optlen))
5929 return -EFAULT;
5930 if (copy_to_user(optval, &info, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931 return -EFAULT;
5932
5933 return 0;
5934}
5935
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005936/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
5937 * (SCTP_DEFAULT_SNDINFO)
5938 */
5939static int sctp_getsockopt_default_sndinfo(struct sock *sk, int len,
5940 char __user *optval,
5941 int __user *optlen)
5942{
5943 struct sctp_sock *sp = sctp_sk(sk);
5944 struct sctp_association *asoc;
5945 struct sctp_sndinfo info;
5946
5947 if (len < sizeof(info))
5948 return -EINVAL;
5949
5950 len = sizeof(info);
5951
5952 if (copy_from_user(&info, optval, len))
5953 return -EFAULT;
5954
5955 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
5956 if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
5957 return -EINVAL;
5958 if (asoc) {
5959 info.snd_sid = asoc->default_stream;
5960 info.snd_flags = asoc->default_flags;
5961 info.snd_ppid = asoc->default_ppid;
5962 info.snd_context = asoc->default_context;
5963 } else {
5964 info.snd_sid = sp->default_stream;
5965 info.snd_flags = sp->default_flags;
5966 info.snd_ppid = sp->default_ppid;
5967 info.snd_context = sp->default_context;
5968 }
5969
5970 if (put_user(len, optlen))
5971 return -EFAULT;
5972 if (copy_to_user(optval, &info, len))
5973 return -EFAULT;
5974
5975 return 0;
5976}
5977
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978/*
5979 *
5980 * 7.1.5 SCTP_NODELAY
5981 *
5982 * Turn on/off any Nagle-like algorithm. This means that packets are
5983 * generally sent as soon as possible and no unnecessary delays are
5984 * introduced, at the cost of more packets in the network. Expects an
5985 * integer boolean flag.
5986 */
5987
5988static int sctp_getsockopt_nodelay(struct sock *sk, int len,
5989 char __user *optval, int __user *optlen)
5990{
5991 int val;
5992
5993 if (len < sizeof(int))
5994 return -EINVAL;
5995
5996 len = sizeof(int);
5997 val = (sctp_sk(sk)->nodelay == 1);
5998 if (put_user(len, optlen))
5999 return -EFAULT;
6000 if (copy_to_user(optval, &val, len))
6001 return -EFAULT;
6002 return 0;
6003}
6004
6005/*
6006 *
6007 * 7.1.1 SCTP_RTOINFO
6008 *
6009 * The protocol parameters used to initialize and bound retransmission
6010 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
6011 * and modify these parameters.
6012 * All parameters are time values, in milliseconds. A value of 0, when
6013 * modifying the parameters, indicates that the current value should not
6014 * be changed.
6015 *
6016 */
6017static int sctp_getsockopt_rtoinfo(struct sock *sk, int len,
6018 char __user *optval,
6019 int __user *optlen) {
6020 struct sctp_rtoinfo rtoinfo;
6021 struct sctp_association *asoc;
6022
Neil Horman408f22e2007-06-16 14:03:45 -04006023 if (len < sizeof (struct sctp_rtoinfo))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006024 return -EINVAL;
6025
Neil Horman408f22e2007-06-16 14:03:45 -04006026 len = sizeof(struct sctp_rtoinfo);
6027
6028 if (copy_from_user(&rtoinfo, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006029 return -EFAULT;
6030
6031 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
6032
6033 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
6034 return -EINVAL;
6035
6036 /* Values corresponding to the specific association. */
6037 if (asoc) {
6038 rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial);
6039 rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max);
6040 rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min);
6041 } else {
6042 /* Values corresponding to the endpoint. */
6043 struct sctp_sock *sp = sctp_sk(sk);
6044
6045 rtoinfo.srto_initial = sp->rtoinfo.srto_initial;
6046 rtoinfo.srto_max = sp->rtoinfo.srto_max;
6047 rtoinfo.srto_min = sp->rtoinfo.srto_min;
6048 }
6049
6050 if (put_user(len, optlen))
6051 return -EFAULT;
6052
6053 if (copy_to_user(optval, &rtoinfo, len))
6054 return -EFAULT;
6055
6056 return 0;
6057}
6058
6059/*
6060 *
6061 * 7.1.2 SCTP_ASSOCINFO
6062 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02006063 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064 * of the association.
6065 * Returns an error if the new association retransmission value is
6066 * greater than the sum of the retransmission value of the peer.
6067 * See [SCTP] for more information.
6068 *
6069 */
6070static int sctp_getsockopt_associnfo(struct sock *sk, int len,
6071 char __user *optval,
6072 int __user *optlen)
6073{
6074
6075 struct sctp_assocparams assocparams;
6076 struct sctp_association *asoc;
6077 struct list_head *pos;
6078 int cnt = 0;
6079
Neil Horman408f22e2007-06-16 14:03:45 -04006080 if (len < sizeof (struct sctp_assocparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006081 return -EINVAL;
6082
Neil Horman408f22e2007-06-16 14:03:45 -04006083 len = sizeof(struct sctp_assocparams);
6084
6085 if (copy_from_user(&assocparams, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006086 return -EFAULT;
6087
6088 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
6089
6090 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
6091 return -EINVAL;
6092
6093 /* Values correspoinding to the specific association */
Vladislav Yasevich17337212005-04-28 11:57:54 -07006094 if (asoc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006095 assocparams.sasoc_asocmaxrxt = asoc->max_retrans;
6096 assocparams.sasoc_peer_rwnd = asoc->peer.rwnd;
6097 assocparams.sasoc_local_rwnd = asoc->a_rwnd;
Daniel Borkmann52db8822013-06-25 18:17:27 +02006098 assocparams.sasoc_cookie_life = ktime_to_ms(asoc->cookie_life);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099
6100 list_for_each(pos, &asoc->peer.transport_addr_list) {
wangweidongcb3f8372013-12-23 12:16:50 +08006101 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006102 }
6103
6104 assocparams.sasoc_number_peer_destinations = cnt;
6105 } else {
6106 /* Values corresponding to the endpoint */
6107 struct sctp_sock *sp = sctp_sk(sk);
6108
6109 assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt;
6110 assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd;
6111 assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd;
6112 assocparams.sasoc_cookie_life =
6113 sp->assocparams.sasoc_cookie_life;
6114 assocparams.sasoc_number_peer_destinations =
6115 sp->assocparams.
6116 sasoc_number_peer_destinations;
6117 }
6118
6119 if (put_user(len, optlen))
6120 return -EFAULT;
6121
6122 if (copy_to_user(optval, &assocparams, len))
6123 return -EFAULT;
6124
6125 return 0;
6126}
6127
6128/*
6129 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
6130 *
6131 * This socket option is a boolean flag which turns on or off mapped V4
6132 * addresses. If this option is turned on and the socket is type
6133 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
6134 * If this option is turned off, then no mapping will be done of V4
6135 * addresses and a user will receive both PF_INET6 and PF_INET type
6136 * addresses on the socket.
6137 */
6138static int sctp_getsockopt_mappedv4(struct sock *sk, int len,
6139 char __user *optval, int __user *optlen)
6140{
6141 int val;
6142 struct sctp_sock *sp = sctp_sk(sk);
6143
6144 if (len < sizeof(int))
6145 return -EINVAL;
6146
6147 len = sizeof(int);
6148 val = sp->v4mapped;
6149 if (put_user(len, optlen))
6150 return -EFAULT;
6151 if (copy_to_user(optval, &val, len))
6152 return -EFAULT;
6153
6154 return 0;
6155}
6156
6157/*
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006158 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
6159 * (chapter and verse is quoted at sctp_setsockopt_context())
6160 */
6161static int sctp_getsockopt_context(struct sock *sk, int len,
6162 char __user *optval, int __user *optlen)
6163{
6164 struct sctp_assoc_value params;
6165 struct sctp_sock *sp;
6166 struct sctp_association *asoc;
6167
Neil Horman408f22e2007-06-16 14:03:45 -04006168 if (len < sizeof(struct sctp_assoc_value))
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006169 return -EINVAL;
6170
Neil Horman408f22e2007-06-16 14:03:45 -04006171 len = sizeof(struct sctp_assoc_value);
6172
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006173 if (copy_from_user(&params, optval, len))
6174 return -EFAULT;
6175
6176 sp = sctp_sk(sk);
6177
6178 if (params.assoc_id != 0) {
6179 asoc = sctp_id2assoc(sk, params.assoc_id);
6180 if (!asoc)
6181 return -EINVAL;
6182 params.assoc_value = asoc->default_rcv_context;
6183 } else {
6184 params.assoc_value = sp->default_rcv_context;
6185 }
6186
6187 if (put_user(len, optlen))
6188 return -EFAULT;
6189 if (copy_to_user(optval, &params, len))
6190 return -EFAULT;
6191
6192 return 0;
6193}
6194
6195/*
Wei Yongjune89c2092008-12-25 16:54:58 -08006196 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
6197 * This option will get or set the maximum size to put in any outgoing
6198 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199 * fragmented by SCTP into the specified size. Note that the underlying
6200 * SCTP implementation may fragment into smaller sized chunks when the
6201 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08006202 * the user. The default value for this option is '0' which indicates
6203 * the user is NOT limiting fragmentation and only the PMTU will effect
6204 * SCTP's choice of DATA chunk size. Note also that values set larger
6205 * than the maximum size of an IP datagram will effectively let SCTP
6206 * control fragmentation (i.e. the same as setting this option to 0).
6207 *
6208 * The following structure is used to access and modify this parameter:
6209 *
6210 * struct sctp_assoc_value {
6211 * sctp_assoc_t assoc_id;
6212 * uint32_t assoc_value;
6213 * };
6214 *
6215 * assoc_id: This parameter is ignored for one-to-one style sockets.
6216 * For one-to-many style sockets this parameter indicates which
6217 * association the user is performing an action upon. Note that if
6218 * this field's value is zero then the endpoints default value is
6219 * changed (effecting future associations only).
6220 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006221 */
6222static int sctp_getsockopt_maxseg(struct sock *sk, int len,
6223 char __user *optval, int __user *optlen)
6224{
Wei Yongjune89c2092008-12-25 16:54:58 -08006225 struct sctp_assoc_value params;
6226 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006227
Wei Yongjune89c2092008-12-25 16:54:58 -08006228 if (len == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05006229 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05006230 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05006231 "Use of int in maxseg socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05006232 "Use struct sctp_assoc_value instead\n",
6233 current->comm, task_pid_nr(current));
Wei Yongjune89c2092008-12-25 16:54:58 -08006234 params.assoc_id = 0;
6235 } else if (len >= sizeof(struct sctp_assoc_value)) {
6236 len = sizeof(struct sctp_assoc_value);
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006237 if (copy_from_user(&params, optval, len))
Wei Yongjune89c2092008-12-25 16:54:58 -08006238 return -EFAULT;
6239 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240 return -EINVAL;
6241
Wei Yongjune89c2092008-12-25 16:54:58 -08006242 asoc = sctp_id2assoc(sk, params.assoc_id);
6243 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
6244 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006245
Wei Yongjune89c2092008-12-25 16:54:58 -08006246 if (asoc)
6247 params.assoc_value = asoc->frag_point;
6248 else
6249 params.assoc_value = sctp_sk(sk)->user_frag;
6250
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251 if (put_user(len, optlen))
6252 return -EFAULT;
Wei Yongjune89c2092008-12-25 16:54:58 -08006253 if (len == sizeof(int)) {
6254 if (copy_to_user(optval, &params.assoc_value, len))
6255 return -EFAULT;
6256 } else {
6257 if (copy_to_user(optval, &params, len))
6258 return -EFAULT;
6259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006260
6261 return 0;
6262}
6263
Vlad Yasevichb6e13312007-04-20 12:23:15 -07006264/*
6265 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
6266 * (chapter and verse is quoted at sctp_setsockopt_fragment_interleave())
6267 */
6268static int sctp_getsockopt_fragment_interleave(struct sock *sk, int len,
6269 char __user *optval, int __user *optlen)
6270{
6271 int val;
6272
6273 if (len < sizeof(int))
6274 return -EINVAL;
6275
6276 len = sizeof(int);
6277
6278 val = sctp_sk(sk)->frag_interleave;
6279 if (put_user(len, optlen))
6280 return -EFAULT;
6281 if (copy_to_user(optval, &val, len))
6282 return -EFAULT;
6283
6284 return 0;
6285}
6286
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006287/*
6288 * 7.1.25. Set or Get the sctp partial delivery point
6289 * (chapter and verse is quoted at sctp_setsockopt_partial_delivery_point())
6290 */
6291static int sctp_getsockopt_partial_delivery_point(struct sock *sk, int len,
6292 char __user *optval,
6293 int __user *optlen)
6294{
YOSHIFUJI Hideaki9cbcbf42007-07-19 10:44:50 +09006295 u32 val;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006296
6297 if (len < sizeof(u32))
6298 return -EINVAL;
6299
6300 len = sizeof(u32);
6301
6302 val = sctp_sk(sk)->pd_point;
6303 if (put_user(len, optlen))
6304 return -EFAULT;
6305 if (copy_to_user(optval, &val, len))
6306 return -EFAULT;
6307
Wei Yongjun7d743b72010-12-14 16:10:41 +00006308 return 0;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006309}
6310
Vlad Yasevich70331572007-03-23 11:34:36 -07006311/*
6312 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
6313 * (chapter and verse is quoted at sctp_setsockopt_maxburst())
6314 */
6315static int sctp_getsockopt_maxburst(struct sock *sk, int len,
6316 char __user *optval,
6317 int __user *optlen)
6318{
Neil Horman219b99a2008-03-05 13:44:46 -08006319 struct sctp_assoc_value params;
6320 struct sctp_sock *sp;
6321 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07006322
Neil Horman219b99a2008-03-05 13:44:46 -08006323 if (len == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05006324 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05006325 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05006326 "Use of int in max_burst socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05006327 "Use struct sctp_assoc_value instead\n",
6328 current->comm, task_pid_nr(current));
Neil Horman219b99a2008-03-05 13:44:46 -08006329 params.assoc_id = 0;
Wei Yongjunc6db93a2009-03-02 09:46:12 +00006330 } else if (len >= sizeof(struct sctp_assoc_value)) {
6331 len = sizeof(struct sctp_assoc_value);
Neil Horman219b99a2008-03-05 13:44:46 -08006332 if (copy_from_user(&params, optval, len))
6333 return -EFAULT;
6334 } else
6335 return -EINVAL;
Vlad Yasevich70331572007-03-23 11:34:36 -07006336
Neil Horman219b99a2008-03-05 13:44:46 -08006337 sp = sctp_sk(sk);
Vlad Yasevich70331572007-03-23 11:34:36 -07006338
Neil Horman219b99a2008-03-05 13:44:46 -08006339 if (params.assoc_id != 0) {
6340 asoc = sctp_id2assoc(sk, params.assoc_id);
6341 if (!asoc)
6342 return -EINVAL;
6343 params.assoc_value = asoc->max_burst;
6344 } else
6345 params.assoc_value = sp->max_burst;
6346
6347 if (len == sizeof(int)) {
6348 if (copy_to_user(optval, &params.assoc_value, len))
6349 return -EFAULT;
6350 } else {
6351 if (copy_to_user(optval, &params, len))
6352 return -EFAULT;
6353 }
6354
6355 return 0;
6356
Vlad Yasevich70331572007-03-23 11:34:36 -07006357}
6358
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006359static int sctp_getsockopt_hmac_ident(struct sock *sk, int len,
6360 char __user *optval, int __user *optlen)
6361{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006362 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006363 struct sctp_hmacalgo __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006364 struct sctp_hmac_algo_param *hmacs;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006365 __u16 data_len = 0;
6366 u32 num_idents;
Xin Long7a84bd42016-02-03 23:33:30 +08006367 int i;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006368
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006369 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006370 return -EACCES;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006371
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006372 hmacs = ep->auth_hmacs_list;
Xin Long3c918702017-06-30 11:52:16 +08006373 data_len = ntohs(hmacs->param_hdr.length) -
6374 sizeof(struct sctp_paramhdr);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006375
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006376 if (len < sizeof(struct sctp_hmacalgo) + data_len)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006377 return -EINVAL;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006378
6379 len = sizeof(struct sctp_hmacalgo) + data_len;
6380 num_idents = data_len / sizeof(u16);
6381
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006382 if (put_user(len, optlen))
6383 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006384 if (put_user(num_idents, &p->shmac_num_idents))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006385 return -EFAULT;
Xin Long7a84bd42016-02-03 23:33:30 +08006386 for (i = 0; i < num_idents; i++) {
6387 __u16 hmacid = ntohs(hmacs->hmac_ids[i]);
6388
6389 if (copy_to_user(&p->shmac_idents[i], &hmacid, sizeof(__u16)))
6390 return -EFAULT;
6391 }
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006392 return 0;
6393}
6394
6395static int sctp_getsockopt_active_key(struct sock *sk, int len,
6396 char __user *optval, int __user *optlen)
6397{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006398 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006399 struct sctp_authkeyid val;
6400 struct sctp_association *asoc;
6401
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006402 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006403 return -EACCES;
6404
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006405 if (len < sizeof(struct sctp_authkeyid))
6406 return -EINVAL;
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006407
6408 len = sizeof(struct sctp_authkeyid);
6409 if (copy_from_user(&val, optval, len))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006410 return -EFAULT;
6411
6412 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
6413 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
6414 return -EINVAL;
6415
6416 if (asoc)
6417 val.scact_keynumber = asoc->active_key_id;
6418 else
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006419 val.scact_keynumber = ep->active_key_id;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006420
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006421 if (put_user(len, optlen))
6422 return -EFAULT;
6423 if (copy_to_user(optval, &val, len))
6424 return -EFAULT;
6425
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006426 return 0;
6427}
6428
6429static int sctp_getsockopt_peer_auth_chunks(struct sock *sk, int len,
6430 char __user *optval, int __user *optlen)
6431{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006432 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Al Viro411223c2007-10-14 19:21:20 +01006433 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006434 struct sctp_authchunks val;
6435 struct sctp_association *asoc;
6436 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006437 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006438 char __user *to;
6439
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006440 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006441 return -EACCES;
6442
6443 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006444 return -EINVAL;
6445
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006446 if (copy_from_user(&val, optval, sizeof(val)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006447 return -EFAULT;
6448
Al Viro411223c2007-10-14 19:21:20 +01006449 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006450 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6451 if (!asoc)
6452 return -EINVAL;
6453
6454 ch = asoc->peer.peer_chunks;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006455 if (!ch)
6456 goto num;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006457
6458 /* See if the user provided enough room for all the data */
Xin Long3c918702017-06-30 11:52:16 +08006459 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
Vlad Yasevichb40db682008-02-27 14:40:37 -05006460 if (len < num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006461 return -EINVAL;
6462
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006463 if (copy_to_user(to, ch->chunks, num_chunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006464 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006465num:
6466 len = sizeof(struct sctp_authchunks) + num_chunks;
wangweidong8d726512013-12-23 12:16:53 +08006467 if (put_user(len, optlen))
6468 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05006469 if (put_user(num_chunks, &p->gauth_number_of_chunks))
6470 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006471 return 0;
6472}
6473
6474static int sctp_getsockopt_local_auth_chunks(struct sock *sk, int len,
6475 char __user *optval, int __user *optlen)
6476{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006477 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Al Viro411223c2007-10-14 19:21:20 +01006478 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006479 struct sctp_authchunks val;
6480 struct sctp_association *asoc;
6481 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006482 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006483 char __user *to;
6484
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006485 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006486 return -EACCES;
6487
6488 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006489 return -EINVAL;
6490
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006491 if (copy_from_user(&val, optval, sizeof(val)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006492 return -EFAULT;
6493
Al Viro411223c2007-10-14 19:21:20 +01006494 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006495 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6496 if (!asoc && val.gauth_assoc_id && sctp_style(sk, UDP))
6497 return -EINVAL;
6498
6499 if (asoc)
wangweidong26ac8e52013-12-23 12:16:51 +08006500 ch = (struct sctp_chunks_param *)asoc->c.auth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006501 else
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006502 ch = ep->auth_chunk_list;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006503
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006504 if (!ch)
6505 goto num;
6506
Xin Long3c918702017-06-30 11:52:16 +08006507 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006508 if (len < sizeof(struct sctp_authchunks) + num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006509 return -EINVAL;
6510
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006511 if (copy_to_user(to, ch->chunks, num_chunks))
6512 return -EFAULT;
6513num:
6514 len = sizeof(struct sctp_authchunks) + num_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006515 if (put_user(len, optlen))
6516 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05006517 if (put_user(num_chunks, &p->gauth_number_of_chunks))
6518 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006519
6520 return 0;
6521}
6522
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08006523/*
6524 * 8.2.5. Get the Current Number of Associations (SCTP_GET_ASSOC_NUMBER)
6525 * This option gets the current number of associations that are attached
6526 * to a one-to-many style socket. The option value is an uint32_t.
6527 */
6528static int sctp_getsockopt_assoc_number(struct sock *sk, int len,
6529 char __user *optval, int __user *optlen)
6530{
6531 struct sctp_sock *sp = sctp_sk(sk);
6532 struct sctp_association *asoc;
6533 u32 val = 0;
6534
6535 if (sctp_style(sk, TCP))
6536 return -EOPNOTSUPP;
6537
6538 if (len < sizeof(u32))
6539 return -EINVAL;
6540
6541 len = sizeof(u32);
6542
6543 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6544 val++;
6545 }
6546
6547 if (put_user(len, optlen))
6548 return -EFAULT;
6549 if (copy_to_user(optval, &val, len))
6550 return -EFAULT;
6551
6552 return 0;
6553}
6554
Wei Yongjun209ba422011-04-17 17:27:08 +00006555/*
Michio Honda7dc04d72011-04-26 20:16:31 +09006556 * 8.1.23 SCTP_AUTO_ASCONF
6557 * See the corresponding setsockopt entry as description
6558 */
6559static int sctp_getsockopt_auto_asconf(struct sock *sk, int len,
6560 char __user *optval, int __user *optlen)
6561{
6562 int val = 0;
6563
6564 if (len < sizeof(int))
6565 return -EINVAL;
6566
6567 len = sizeof(int);
6568 if (sctp_sk(sk)->do_auto_asconf && sctp_is_ep_boundall(sk))
6569 val = 1;
6570 if (put_user(len, optlen))
6571 return -EFAULT;
6572 if (copy_to_user(optval, &val, len))
6573 return -EFAULT;
6574 return 0;
6575}
6576
6577/*
Wei Yongjun209ba422011-04-17 17:27:08 +00006578 * 8.2.6. Get the Current Identifiers of Associations
6579 * (SCTP_GET_ASSOC_ID_LIST)
6580 *
6581 * This option gets the current list of SCTP association identifiers of
6582 * the SCTP associations handled by a one-to-many style socket.
6583 */
6584static int sctp_getsockopt_assoc_ids(struct sock *sk, int len,
6585 char __user *optval, int __user *optlen)
6586{
6587 struct sctp_sock *sp = sctp_sk(sk);
6588 struct sctp_association *asoc;
6589 struct sctp_assoc_ids *ids;
6590 u32 num = 0;
6591
6592 if (sctp_style(sk, TCP))
6593 return -EOPNOTSUPP;
6594
6595 if (len < sizeof(struct sctp_assoc_ids))
6596 return -EINVAL;
6597
6598 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6599 num++;
6600 }
6601
6602 if (len < sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num)
6603 return -EINVAL;
6604
6605 len = sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num;
6606
Marcelo Ricardo Leitner9ba0b962015-12-23 16:28:40 -02006607 ids = kmalloc(len, GFP_USER | __GFP_NOWARN);
Wei Yongjun209ba422011-04-17 17:27:08 +00006608 if (unlikely(!ids))
6609 return -ENOMEM;
6610
6611 ids->gaids_number_of_ids = num;
6612 num = 0;
6613 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6614 ids->gaids_assoc_id[num++] = asoc->assoc_id;
6615 }
6616
6617 if (put_user(len, optlen) || copy_to_user(optval, ids, len)) {
6618 kfree(ids);
6619 return -EFAULT;
6620 }
6621
6622 kfree(ids);
6623 return 0;
6624}
6625
Neil Horman5aa93bc2012-07-21 07:56:07 +00006626/*
6627 * SCTP_PEER_ADDR_THLDS
6628 *
6629 * This option allows us to fetch the partially failed threshold for one or all
6630 * transports in an association. See Section 6.1 of:
6631 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
6632 */
6633static int sctp_getsockopt_paddr_thresholds(struct sock *sk,
6634 char __user *optval,
6635 int len,
6636 int __user *optlen)
6637{
6638 struct sctp_paddrthlds val;
6639 struct sctp_transport *trans;
6640 struct sctp_association *asoc;
6641
6642 if (len < sizeof(struct sctp_paddrthlds))
6643 return -EINVAL;
6644 len = sizeof(struct sctp_paddrthlds);
6645 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval, len))
6646 return -EFAULT;
6647
6648 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
6649 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
6650 if (!asoc)
6651 return -ENOENT;
6652
6653 val.spt_pathpfthld = asoc->pf_retrans;
6654 val.spt_pathmaxrxt = asoc->pathmaxrxt;
6655 } else {
6656 trans = sctp_addr_id2transport(sk, &val.spt_address,
6657 val.spt_assoc_id);
6658 if (!trans)
6659 return -ENOENT;
6660
6661 val.spt_pathmaxrxt = trans->pathmaxrxt;
6662 val.spt_pathpfthld = trans->pf_retrans;
6663 }
6664
6665 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
6666 return -EFAULT;
6667
6668 return 0;
6669}
6670
Michele Baldessari196d6752012-12-01 04:49:42 +00006671/*
6672 * SCTP_GET_ASSOC_STATS
6673 *
6674 * This option retrieves local per endpoint statistics. It is modeled
6675 * after OpenSolaris' implementation
6676 */
6677static int sctp_getsockopt_assoc_stats(struct sock *sk, int len,
6678 char __user *optval,
6679 int __user *optlen)
6680{
6681 struct sctp_assoc_stats sas;
6682 struct sctp_association *asoc = NULL;
6683
6684 /* User must provide at least the assoc id */
6685 if (len < sizeof(sctp_assoc_t))
6686 return -EINVAL;
6687
Guenter Roeck726bc6b2013-02-27 10:57:31 +00006688 /* Allow the struct to grow and fill in as much as possible */
6689 len = min_t(size_t, len, sizeof(sas));
6690
Michele Baldessari196d6752012-12-01 04:49:42 +00006691 if (copy_from_user(&sas, optval, len))
6692 return -EFAULT;
6693
6694 asoc = sctp_id2assoc(sk, sas.sas_assoc_id);
6695 if (!asoc)
6696 return -EINVAL;
6697
6698 sas.sas_rtxchunks = asoc->stats.rtxchunks;
6699 sas.sas_gapcnt = asoc->stats.gapcnt;
6700 sas.sas_outofseqtsns = asoc->stats.outofseqtsns;
6701 sas.sas_osacks = asoc->stats.osacks;
6702 sas.sas_isacks = asoc->stats.isacks;
6703 sas.sas_octrlchunks = asoc->stats.octrlchunks;
6704 sas.sas_ictrlchunks = asoc->stats.ictrlchunks;
6705 sas.sas_oodchunks = asoc->stats.oodchunks;
6706 sas.sas_iodchunks = asoc->stats.iodchunks;
6707 sas.sas_ouodchunks = asoc->stats.ouodchunks;
6708 sas.sas_iuodchunks = asoc->stats.iuodchunks;
6709 sas.sas_idupchunks = asoc->stats.idupchunks;
6710 sas.sas_opackets = asoc->stats.opackets;
6711 sas.sas_ipackets = asoc->stats.ipackets;
6712
6713 /* New high max rto observed, will return 0 if not a single
6714 * RTO update took place. obs_rto_ipaddr will be bogus
6715 * in such a case
6716 */
6717 sas.sas_maxrto = asoc->stats.max_obs_rto;
6718 memcpy(&sas.sas_obs_rto_ipaddr, &asoc->stats.obs_rto_ipaddr,
6719 sizeof(struct sockaddr_storage));
6720
6721 /* Mark beginning of a new observation period */
6722 asoc->stats.max_obs_rto = asoc->rto_min;
6723
Michele Baldessari196d6752012-12-01 04:49:42 +00006724 if (put_user(len, optlen))
6725 return -EFAULT;
6726
Daniel Borkmannbb333812013-06-28 19:49:40 +02006727 pr_debug("%s: len:%d, assoc_id:%d\n", __func__, len, sas.sas_assoc_id);
Michele Baldessari196d6752012-12-01 04:49:42 +00006728
6729 if (copy_to_user(optval, &sas, len))
6730 return -EFAULT;
6731
6732 return 0;
6733}
6734
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02006735static int sctp_getsockopt_recvrcvinfo(struct sock *sk, int len,
6736 char __user *optval,
6737 int __user *optlen)
6738{
6739 int val = 0;
6740
6741 if (len < sizeof(int))
6742 return -EINVAL;
6743
6744 len = sizeof(int);
6745 if (sctp_sk(sk)->recvrcvinfo)
6746 val = 1;
6747 if (put_user(len, optlen))
6748 return -EFAULT;
6749 if (copy_to_user(optval, &val, len))
6750 return -EFAULT;
6751
6752 return 0;
6753}
6754
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02006755static int sctp_getsockopt_recvnxtinfo(struct sock *sk, int len,
6756 char __user *optval,
6757 int __user *optlen)
6758{
6759 int val = 0;
6760
6761 if (len < sizeof(int))
6762 return -EINVAL;
6763
6764 len = sizeof(int);
6765 if (sctp_sk(sk)->recvnxtinfo)
6766 val = 1;
6767 if (put_user(len, optlen))
6768 return -EFAULT;
6769 if (copy_to_user(optval, &val, len))
6770 return -EFAULT;
6771
6772 return 0;
6773}
6774
Xin Long28aa4c22016-07-09 19:47:40 +08006775static int sctp_getsockopt_pr_supported(struct sock *sk, int len,
6776 char __user *optval,
6777 int __user *optlen)
6778{
6779 struct sctp_assoc_value params;
6780 struct sctp_association *asoc;
6781 int retval = -EFAULT;
6782
6783 if (len < sizeof(params)) {
6784 retval = -EINVAL;
6785 goto out;
6786 }
6787
6788 len = sizeof(params);
6789 if (copy_from_user(&params, optval, len))
6790 goto out;
6791
6792 asoc = sctp_id2assoc(sk, params.assoc_id);
6793 if (asoc) {
6794 params.assoc_value = asoc->prsctp_enable;
6795 } else if (!params.assoc_id) {
6796 struct sctp_sock *sp = sctp_sk(sk);
6797
6798 params.assoc_value = sp->ep->prsctp_enable;
6799 } else {
6800 retval = -EINVAL;
6801 goto out;
6802 }
6803
6804 if (put_user(len, optlen))
6805 goto out;
6806
6807 if (copy_to_user(optval, &params, len))
6808 goto out;
6809
6810 retval = 0;
6811
6812out:
6813 return retval;
6814}
6815
Xin Longf959fb42016-07-09 19:47:41 +08006816static int sctp_getsockopt_default_prinfo(struct sock *sk, int len,
6817 char __user *optval,
6818 int __user *optlen)
6819{
6820 struct sctp_default_prinfo info;
6821 struct sctp_association *asoc;
6822 int retval = -EFAULT;
6823
6824 if (len < sizeof(info)) {
6825 retval = -EINVAL;
6826 goto out;
6827 }
6828
6829 len = sizeof(info);
6830 if (copy_from_user(&info, optval, len))
6831 goto out;
6832
6833 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
6834 if (asoc) {
6835 info.pr_policy = SCTP_PR_POLICY(asoc->default_flags);
6836 info.pr_value = asoc->default_timetolive;
6837 } else if (!info.pr_assoc_id) {
6838 struct sctp_sock *sp = sctp_sk(sk);
6839
6840 info.pr_policy = SCTP_PR_POLICY(sp->default_flags);
6841 info.pr_value = sp->default_timetolive;
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, &info, len))
6851 goto out;
6852
6853 retval = 0;
6854
6855out:
6856 return retval;
6857}
6858
Xin Long826d2532016-07-09 19:47:42 +08006859static int sctp_getsockopt_pr_assocstatus(struct sock *sk, int len,
6860 char __user *optval,
6861 int __user *optlen)
6862{
6863 struct sctp_prstatus params;
6864 struct sctp_association *asoc;
6865 int policy;
6866 int retval = -EINVAL;
6867
6868 if (len < sizeof(params))
6869 goto out;
6870
6871 len = sizeof(params);
6872 if (copy_from_user(&params, optval, len)) {
6873 retval = -EFAULT;
6874 goto out;
6875 }
6876
6877 policy = params.sprstat_policy;
6878 if (policy & ~SCTP_PR_SCTP_MASK)
6879 goto out;
6880
6881 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
6882 if (!asoc)
6883 goto out;
6884
6885 if (policy == SCTP_PR_SCTP_NONE) {
6886 params.sprstat_abandoned_unsent = 0;
6887 params.sprstat_abandoned_sent = 0;
6888 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
6889 params.sprstat_abandoned_unsent +=
6890 asoc->abandoned_unsent[policy];
6891 params.sprstat_abandoned_sent +=
6892 asoc->abandoned_sent[policy];
6893 }
6894 } else {
6895 params.sprstat_abandoned_unsent =
6896 asoc->abandoned_unsent[__SCTP_PR_INDEX(policy)];
6897 params.sprstat_abandoned_sent =
6898 asoc->abandoned_sent[__SCTP_PR_INDEX(policy)];
6899 }
6900
6901 if (put_user(len, optlen)) {
6902 retval = -EFAULT;
6903 goto out;
6904 }
6905
6906 if (copy_to_user(optval, &params, len)) {
6907 retval = -EFAULT;
6908 goto out;
6909 }
6910
6911 retval = 0;
6912
6913out:
6914 return retval;
6915}
6916
Xin Longd229d482017-04-01 17:07:46 +08006917static int sctp_getsockopt_pr_streamstatus(struct sock *sk, int len,
6918 char __user *optval,
6919 int __user *optlen)
6920{
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03006921 struct sctp_stream_out_ext *streamoute;
Xin Longd229d482017-04-01 17:07:46 +08006922 struct sctp_association *asoc;
6923 struct sctp_prstatus params;
6924 int retval = -EINVAL;
6925 int policy;
6926
6927 if (len < sizeof(params))
6928 goto out;
6929
6930 len = sizeof(params);
6931 if (copy_from_user(&params, optval, len)) {
6932 retval = -EFAULT;
6933 goto out;
6934 }
6935
6936 policy = params.sprstat_policy;
6937 if (policy & ~SCTP_PR_SCTP_MASK)
6938 goto out;
6939
6940 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
Xin Longcee360a2017-05-31 16:36:31 +08006941 if (!asoc || params.sprstat_sid >= asoc->stream.outcnt)
Xin Longd229d482017-04-01 17:07:46 +08006942 goto out;
6943
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03006944 streamoute = asoc->stream.out[params.sprstat_sid].ext;
6945 if (!streamoute) {
6946 /* Not allocated yet, means all stats are 0 */
6947 params.sprstat_abandoned_unsent = 0;
6948 params.sprstat_abandoned_sent = 0;
6949 retval = 0;
6950 goto out;
6951 }
6952
Xin Longd229d482017-04-01 17:07:46 +08006953 if (policy == SCTP_PR_SCTP_NONE) {
6954 params.sprstat_abandoned_unsent = 0;
6955 params.sprstat_abandoned_sent = 0;
6956 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
6957 params.sprstat_abandoned_unsent +=
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03006958 streamoute->abandoned_unsent[policy];
Xin Longd229d482017-04-01 17:07:46 +08006959 params.sprstat_abandoned_sent +=
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03006960 streamoute->abandoned_sent[policy];
Xin Longd229d482017-04-01 17:07:46 +08006961 }
6962 } else {
6963 params.sprstat_abandoned_unsent =
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03006964 streamoute->abandoned_unsent[__SCTP_PR_INDEX(policy)];
Xin Longd229d482017-04-01 17:07:46 +08006965 params.sprstat_abandoned_sent =
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03006966 streamoute->abandoned_sent[__SCTP_PR_INDEX(policy)];
Xin Longd229d482017-04-01 17:07:46 +08006967 }
6968
6969 if (put_user(len, optlen) || copy_to_user(optval, &params, len)) {
6970 retval = -EFAULT;
6971 goto out;
6972 }
6973
6974 retval = 0;
6975
6976out:
6977 return retval;
6978}
6979
Xin Longc0d8bab2017-03-10 12:11:12 +08006980static int sctp_getsockopt_reconfig_supported(struct sock *sk, int len,
6981 char __user *optval,
6982 int __user *optlen)
6983{
6984 struct sctp_assoc_value params;
6985 struct sctp_association *asoc;
6986 int retval = -EFAULT;
6987
6988 if (len < sizeof(params)) {
6989 retval = -EINVAL;
6990 goto out;
6991 }
6992
6993 len = sizeof(params);
6994 if (copy_from_user(&params, optval, len))
6995 goto out;
6996
6997 asoc = sctp_id2assoc(sk, params.assoc_id);
6998 if (asoc) {
6999 params.assoc_value = asoc->reconf_enable;
7000 } else if (!params.assoc_id) {
7001 struct sctp_sock *sp = sctp_sk(sk);
7002
7003 params.assoc_value = sp->ep->reconf_enable;
7004 } else {
7005 retval = -EINVAL;
7006 goto out;
7007 }
7008
7009 if (put_user(len, optlen))
7010 goto out;
7011
7012 if (copy_to_user(optval, &params, len))
7013 goto out;
7014
7015 retval = 0;
7016
7017out:
7018 return retval;
7019}
7020
Xin Long9fb657a2017-01-18 00:44:46 +08007021static int sctp_getsockopt_enable_strreset(struct sock *sk, int len,
7022 char __user *optval,
7023 int __user *optlen)
7024{
7025 struct sctp_assoc_value params;
7026 struct sctp_association *asoc;
7027 int retval = -EFAULT;
7028
7029 if (len < sizeof(params)) {
7030 retval = -EINVAL;
7031 goto out;
7032 }
7033
7034 len = sizeof(params);
7035 if (copy_from_user(&params, optval, len))
7036 goto out;
7037
7038 asoc = sctp_id2assoc(sk, params.assoc_id);
7039 if (asoc) {
7040 params.assoc_value = asoc->strreset_enable;
7041 } else if (!params.assoc_id) {
7042 struct sctp_sock *sp = sctp_sk(sk);
7043
7044 params.assoc_value = sp->ep->strreset_enable;
7045 } else {
7046 retval = -EINVAL;
7047 goto out;
7048 }
7049
7050 if (put_user(len, optlen))
7051 goto out;
7052
7053 if (copy_to_user(optval, &params, len))
7054 goto out;
7055
7056 retval = 0;
7057
7058out:
7059 return retval;
7060}
7061
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03007062static int sctp_getsockopt_scheduler(struct sock *sk, int len,
7063 char __user *optval,
7064 int __user *optlen)
7065{
7066 struct sctp_assoc_value params;
7067 struct sctp_association *asoc;
7068 int retval = -EFAULT;
7069
7070 if (len < sizeof(params)) {
7071 retval = -EINVAL;
7072 goto out;
7073 }
7074
7075 len = sizeof(params);
7076 if (copy_from_user(&params, optval, len))
7077 goto out;
7078
7079 asoc = sctp_id2assoc(sk, params.assoc_id);
7080 if (!asoc) {
7081 retval = -EINVAL;
7082 goto out;
7083 }
7084
7085 params.assoc_value = sctp_sched_get_sched(asoc);
7086
7087 if (put_user(len, optlen))
7088 goto out;
7089
7090 if (copy_to_user(optval, &params, len))
7091 goto out;
7092
7093 retval = 0;
7094
7095out:
7096 return retval;
7097}
7098
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03007099static int sctp_getsockopt_scheduler_value(struct sock *sk, int len,
7100 char __user *optval,
7101 int __user *optlen)
7102{
7103 struct sctp_stream_value params;
7104 struct sctp_association *asoc;
7105 int retval = -EFAULT;
7106
7107 if (len < sizeof(params)) {
7108 retval = -EINVAL;
7109 goto out;
7110 }
7111
7112 len = sizeof(params);
7113 if (copy_from_user(&params, optval, len))
7114 goto out;
7115
7116 asoc = sctp_id2assoc(sk, params.assoc_id);
7117 if (!asoc) {
7118 retval = -EINVAL;
7119 goto out;
7120 }
7121
7122 retval = sctp_sched_get_value(asoc, params.stream_id,
7123 &params.stream_value);
7124 if (retval)
7125 goto out;
7126
7127 if (put_user(len, optlen)) {
7128 retval = -EFAULT;
7129 goto out;
7130 }
7131
7132 if (copy_to_user(optval, &params, len)) {
7133 retval = -EFAULT;
7134 goto out;
7135 }
7136
7137out:
7138 return retval;
7139}
7140
Xin Long772a5862017-12-08 21:03:58 +08007141static int sctp_getsockopt_interleaving_supported(struct sock *sk, int len,
7142 char __user *optval,
7143 int __user *optlen)
7144{
7145 struct sctp_assoc_value params;
7146 struct sctp_association *asoc;
7147 int retval = -EFAULT;
7148
7149 if (len < sizeof(params)) {
7150 retval = -EINVAL;
7151 goto out;
7152 }
7153
7154 len = sizeof(params);
7155 if (copy_from_user(&params, optval, len))
7156 goto out;
7157
7158 asoc = sctp_id2assoc(sk, params.assoc_id);
7159 if (asoc) {
7160 params.assoc_value = asoc->intl_enable;
7161 } else if (!params.assoc_id) {
7162 struct sctp_sock *sp = sctp_sk(sk);
7163
7164 params.assoc_value = sp->strm_interleave;
7165 } else {
7166 retval = -EINVAL;
7167 goto out;
7168 }
7169
7170 if (put_user(len, optlen))
7171 goto out;
7172
7173 if (copy_to_user(optval, &params, len))
7174 goto out;
7175
7176 retval = 0;
7177
7178out:
7179 return retval;
7180}
7181
Daniel Borkmanndda91922013-06-17 11:40:05 +02007182static int sctp_getsockopt(struct sock *sk, int level, int optname,
7183 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007184{
7185 int retval = 0;
7186 int len;
7187
Daniel Borkmannbb333812013-06-28 19:49:40 +02007188 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007189
7190 /* I can hardly begin to describe how wrong this is. This is
7191 * so broken as to be worse than useless. The API draft
7192 * REALLY is NOT helpful here... I am not convinced that the
7193 * semantics of getsockopt() with a level OTHER THAN SOL_SCTP
7194 * are at all well-founded.
7195 */
7196 if (level != SOL_SCTP) {
7197 struct sctp_af *af = sctp_sk(sk)->pf->af;
7198
7199 retval = af->getsockopt(sk, level, optname, optval, optlen);
7200 return retval;
7201 }
7202
7203 if (get_user(len, optlen))
7204 return -EFAULT;
7205
Jiri Slabya4b8e712016-10-21 14:13:24 +02007206 if (len < 0)
7207 return -EINVAL;
7208
wangweidong048ed4b2014-01-21 15:44:11 +08007209 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007210
7211 switch (optname) {
7212 case SCTP_STATUS:
7213 retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen);
7214 break;
7215 case SCTP_DISABLE_FRAGMENTS:
7216 retval = sctp_getsockopt_disable_fragments(sk, len, optval,
7217 optlen);
7218 break;
7219 case SCTP_EVENTS:
7220 retval = sctp_getsockopt_events(sk, len, optval, optlen);
7221 break;
7222 case SCTP_AUTOCLOSE:
7223 retval = sctp_getsockopt_autoclose(sk, len, optval, optlen);
7224 break;
7225 case SCTP_SOCKOPT_PEELOFF:
7226 retval = sctp_getsockopt_peeloff(sk, len, optval, optlen);
7227 break;
Neil Horman2cb5c8e2017-06-30 13:32:57 -04007228 case SCTP_SOCKOPT_PEELOFF_FLAGS:
7229 retval = sctp_getsockopt_peeloff_flags(sk, len, optval, optlen);
7230 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007231 case SCTP_PEER_ADDR_PARAMS:
7232 retval = sctp_getsockopt_peer_addr_params(sk, len, optval,
7233 optlen);
7234 break;
Shan Wei4580ccc2011-01-18 22:39:00 +00007235 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07007236 retval = sctp_getsockopt_delayed_ack(sk, len, optval,
Frank Filz77086102005-12-22 11:37:30 -08007237 optlen);
7238 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007239 case SCTP_INITMSG:
7240 retval = sctp_getsockopt_initmsg(sk, len, optval, optlen);
7241 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007242 case SCTP_GET_PEER_ADDRS:
7243 retval = sctp_getsockopt_peer_addrs(sk, len, optval,
7244 optlen);
7245 break;
7246 case SCTP_GET_LOCAL_ADDRS:
7247 retval = sctp_getsockopt_local_addrs(sk, len, optval,
7248 optlen);
7249 break;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04007250 case SCTP_SOCKOPT_CONNECTX3:
7251 retval = sctp_getsockopt_connectx3(sk, len, optval, optlen);
7252 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007253 case SCTP_DEFAULT_SEND_PARAM:
7254 retval = sctp_getsockopt_default_send_param(sk, len,
7255 optval, optlen);
7256 break;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02007257 case SCTP_DEFAULT_SNDINFO:
7258 retval = sctp_getsockopt_default_sndinfo(sk, len,
7259 optval, optlen);
7260 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007261 case SCTP_PRIMARY_ADDR:
7262 retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen);
7263 break;
7264 case SCTP_NODELAY:
7265 retval = sctp_getsockopt_nodelay(sk, len, optval, optlen);
7266 break;
7267 case SCTP_RTOINFO:
7268 retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen);
7269 break;
7270 case SCTP_ASSOCINFO:
7271 retval = sctp_getsockopt_associnfo(sk, len, optval, optlen);
7272 break;
7273 case SCTP_I_WANT_MAPPED_V4_ADDR:
7274 retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen);
7275 break;
7276 case SCTP_MAXSEG:
7277 retval = sctp_getsockopt_maxseg(sk, len, optval, optlen);
7278 break;
7279 case SCTP_GET_PEER_ADDR_INFO:
7280 retval = sctp_getsockopt_peer_addr_info(sk, len, optval,
7281 optlen);
7282 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08007283 case SCTP_ADAPTATION_LAYER:
7284 retval = sctp_getsockopt_adaptation_layer(sk, len, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007285 optlen);
7286 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08007287 case SCTP_CONTEXT:
7288 retval = sctp_getsockopt_context(sk, len, optval, optlen);
7289 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07007290 case SCTP_FRAGMENT_INTERLEAVE:
7291 retval = sctp_getsockopt_fragment_interleave(sk, len, optval,
7292 optlen);
7293 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07007294 case SCTP_PARTIAL_DELIVERY_POINT:
7295 retval = sctp_getsockopt_partial_delivery_point(sk, len, optval,
7296 optlen);
7297 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07007298 case SCTP_MAX_BURST:
7299 retval = sctp_getsockopt_maxburst(sk, len, optval, optlen);
7300 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007301 case SCTP_AUTH_KEY:
7302 case SCTP_AUTH_CHUNK:
7303 case SCTP_AUTH_DELETE_KEY:
Xin Long601590e2018-03-14 19:05:32 +08007304 case SCTP_AUTH_DEACTIVATE_KEY:
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007305 retval = -EOPNOTSUPP;
7306 break;
7307 case SCTP_HMAC_IDENT:
7308 retval = sctp_getsockopt_hmac_ident(sk, len, optval, optlen);
7309 break;
7310 case SCTP_AUTH_ACTIVE_KEY:
7311 retval = sctp_getsockopt_active_key(sk, len, optval, optlen);
7312 break;
7313 case SCTP_PEER_AUTH_CHUNKS:
7314 retval = sctp_getsockopt_peer_auth_chunks(sk, len, optval,
7315 optlen);
7316 break;
7317 case SCTP_LOCAL_AUTH_CHUNKS:
7318 retval = sctp_getsockopt_local_auth_chunks(sk, len, optval,
7319 optlen);
7320 break;
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08007321 case SCTP_GET_ASSOC_NUMBER:
7322 retval = sctp_getsockopt_assoc_number(sk, len, optval, optlen);
7323 break;
Wei Yongjun209ba422011-04-17 17:27:08 +00007324 case SCTP_GET_ASSOC_ID_LIST:
7325 retval = sctp_getsockopt_assoc_ids(sk, len, optval, optlen);
7326 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09007327 case SCTP_AUTO_ASCONF:
7328 retval = sctp_getsockopt_auto_asconf(sk, len, optval, optlen);
7329 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00007330 case SCTP_PEER_ADDR_THLDS:
7331 retval = sctp_getsockopt_paddr_thresholds(sk, optval, len, optlen);
7332 break;
Michele Baldessari196d6752012-12-01 04:49:42 +00007333 case SCTP_GET_ASSOC_STATS:
7334 retval = sctp_getsockopt_assoc_stats(sk, len, optval, optlen);
7335 break;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02007336 case SCTP_RECVRCVINFO:
7337 retval = sctp_getsockopt_recvrcvinfo(sk, len, optval, optlen);
7338 break;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02007339 case SCTP_RECVNXTINFO:
7340 retval = sctp_getsockopt_recvnxtinfo(sk, len, optval, optlen);
7341 break;
Xin Long28aa4c22016-07-09 19:47:40 +08007342 case SCTP_PR_SUPPORTED:
7343 retval = sctp_getsockopt_pr_supported(sk, len, optval, optlen);
7344 break;
Xin Longf959fb42016-07-09 19:47:41 +08007345 case SCTP_DEFAULT_PRINFO:
7346 retval = sctp_getsockopt_default_prinfo(sk, len, optval,
7347 optlen);
7348 break;
Xin Long826d2532016-07-09 19:47:42 +08007349 case SCTP_PR_ASSOC_STATUS:
7350 retval = sctp_getsockopt_pr_assocstatus(sk, len, optval,
7351 optlen);
7352 break;
Xin Longd229d482017-04-01 17:07:46 +08007353 case SCTP_PR_STREAM_STATUS:
7354 retval = sctp_getsockopt_pr_streamstatus(sk, len, optval,
7355 optlen);
7356 break;
Xin Longc0d8bab2017-03-10 12:11:12 +08007357 case SCTP_RECONFIG_SUPPORTED:
7358 retval = sctp_getsockopt_reconfig_supported(sk, len, optval,
7359 optlen);
7360 break;
Xin Long9fb657a2017-01-18 00:44:46 +08007361 case SCTP_ENABLE_STREAM_RESET:
7362 retval = sctp_getsockopt_enable_strreset(sk, len, optval,
7363 optlen);
7364 break;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03007365 case SCTP_STREAM_SCHEDULER:
7366 retval = sctp_getsockopt_scheduler(sk, len, optval,
7367 optlen);
7368 break;
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03007369 case SCTP_STREAM_SCHEDULER_VALUE:
7370 retval = sctp_getsockopt_scheduler_value(sk, len, optval,
7371 optlen);
7372 break;
Xin Long772a5862017-12-08 21:03:58 +08007373 case SCTP_INTERLEAVING_SUPPORTED:
7374 retval = sctp_getsockopt_interleaving_supported(sk, len, optval,
7375 optlen);
7376 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007377 default:
7378 retval = -ENOPROTOOPT;
7379 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07007380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007381
wangweidong048ed4b2014-01-21 15:44:11 +08007382 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007383 return retval;
7384}
7385
Craig Gallek086c6532016-02-10 11:50:35 -05007386static int sctp_hash(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007387{
7388 /* STUB */
Craig Gallek086c6532016-02-10 11:50:35 -05007389 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007390}
7391
7392static void sctp_unhash(struct sock *sk)
7393{
7394 /* STUB */
7395}
7396
7397/* Check if port is acceptable. Possibly find first available port.
7398 *
7399 * The port hash table (contained in the 'global' SCTP protocol storage
7400 * returned by struct sctp_protocol *sctp_get_protocol()). The hash
7401 * table is an array of 4096 lists (sctp_bind_hashbucket). Each
7402 * list (the list number is the port number hashed out, so as you
7403 * would expect from a hash function, all the ports in a given list have
7404 * such a number that hashes out to the same list number; you were
7405 * expecting that, right?); so each list has a set of ports, with a
7406 * link to the socket (struct sock) that uses it, the port number and
7407 * a fastreuse flag (FIXME: NPI ipg).
7408 */
7409static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007410 struct sctp_bind_hashbucket *head, struct net *, unsigned short snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007411
7412static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
7413{
7414 struct sctp_bind_hashbucket *head; /* hash list */
Sasha Levinb67bfe02013-02-27 17:06:00 -08007415 struct sctp_bind_bucket *pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007416 unsigned short snum;
7417 int ret;
7418
Al Viro04afd8b2006-11-20 17:02:01 -08007419 snum = ntohs(addr->v4.sin_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007420
Daniel Borkmannbb333812013-06-28 19:49:40 +02007421 pr_debug("%s: begins, snum:%d\n", __func__, snum);
7422
wangweidong79b91132014-01-21 15:44:07 +08007423 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007424
7425 if (snum == 0) {
Stephen Hemminger06393002007-10-10 17:30:18 -07007426 /* Search for an available port. */
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007427 int low, high, remaining, index;
7428 unsigned int rover;
WANG Cong122ff242014-05-12 16:04:53 -07007429 struct net *net = sock_net(sk);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007430
WANG Cong122ff242014-05-12 16:04:53 -07007431 inet_get_local_port_range(net, &low, &high);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007432 remaining = (high - low) + 1;
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05007433 rover = prandom_u32() % remaining + low;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007434
Linus Torvalds1da177e2005-04-16 15:20:36 -07007435 do {
7436 rover++;
7437 if ((rover < low) || (rover > high))
7438 rover = low;
WANG Cong122ff242014-05-12 16:04:53 -07007439 if (inet_is_local_reserved_port(net, rover))
Amerigo Wange3826f12010-05-05 00:27:06 +00007440 continue;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007441 index = sctp_phashfn(sock_net(sk), rover);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007442 head = &sctp_port_hashtable[index];
wangweidong3c8e43b2014-01-21 15:44:08 +08007443 spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08007444 sctp_for_each_hentry(pp, &head->chain)
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007445 if ((pp->port == rover) &&
7446 net_eq(sock_net(sk), pp->net))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447 goto next;
7448 break;
7449 next:
wangweidong3c8e43b2014-01-21 15:44:08 +08007450 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007451 } while (--remaining > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007452
7453 /* Exhausted local port range during search? */
7454 ret = 1;
7455 if (remaining <= 0)
7456 goto fail;
7457
7458 /* OK, here is the one we will use. HEAD (the port
7459 * hash table list entry) is non-NULL and we hold it's
7460 * mutex.
7461 */
7462 snum = rover;
7463 } else {
7464 /* We are given an specific port number; we verify
7465 * that it is not being used. If it is used, we will
7466 * exahust the search in the hash list corresponding
7467 * to the port number (snum) - we detect that with the
7468 * port iterator, pp being NULL.
7469 */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007470 head = &sctp_port_hashtable[sctp_phashfn(sock_net(sk), snum)];
wangweidong3c8e43b2014-01-21 15:44:08 +08007471 spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08007472 sctp_for_each_hentry(pp, &head->chain) {
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007473 if ((pp->port == snum) && net_eq(pp->net, sock_net(sk)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007474 goto pp_found;
7475 }
7476 }
7477 pp = NULL;
7478 goto pp_not_found;
7479pp_found:
7480 if (!hlist_empty(&pp->owner)) {
7481 /* We had a port hash table hit - there is an
7482 * available port (pp != NULL) and it is being
7483 * used by other socket (pp->owner not empty); that other
7484 * socket is going to be sk2.
7485 */
7486 int reuse = sk->sk_reuse;
7487 struct sock *sk2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007488
Daniel Borkmannbb333812013-06-28 19:49:40 +02007489 pr_debug("%s: found a possible match\n", __func__);
7490
Vlad Yasevichce5325c2007-05-04 13:34:49 -07007491 if (pp->fastreuse && sk->sk_reuse &&
7492 sk->sk_state != SCTP_SS_LISTENING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007493 goto success;
7494
7495 /* Run through the list of sockets bound to the port
7496 * (pp->port) [via the pointers bind_next and
7497 * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one,
7498 * we get the endpoint they describe and run through
7499 * the endpoint's list of IP (v4 or v6) addresses,
7500 * comparing each of the addresses with the address of
7501 * the socket sk. If we find a match, then that means
7502 * that this port/socket (sk) combination are already
7503 * in an endpoint.
7504 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08007505 sk_for_each_bound(sk2, &pp->owner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007506 struct sctp_endpoint *ep2;
7507 ep2 = sctp_sk(sk2)->ep;
7508
Vlad Yasevich4e540642008-07-18 23:06:32 -07007509 if (sk == sk2 ||
7510 (reuse && sk2->sk_reuse &&
7511 sk2->sk_state != SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007512 continue;
7513
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07007514 if (sctp_bind_addr_conflict(&ep2->base.bind_addr, addr,
7515 sctp_sk(sk2), sctp_sk(sk))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007516 ret = (long)sk2;
7517 goto fail_unlock;
7518 }
7519 }
Daniel Borkmannbb333812013-06-28 19:49:40 +02007520
7521 pr_debug("%s: found a match\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007522 }
7523pp_not_found:
7524 /* If there was a hash table miss, create a new port. */
7525 ret = 1;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007526 if (!pp && !(pp = sctp_bucket_create(head, sock_net(sk), snum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007527 goto fail_unlock;
7528
7529 /* In either case (hit or miss), make sure fastreuse is 1 only
7530 * if sk->sk_reuse is too (that is, if the caller requested
7531 * SO_REUSEADDR on this socket -sk-).
7532 */
Vlad Yasevichce5325c2007-05-04 13:34:49 -07007533 if (hlist_empty(&pp->owner)) {
7534 if (sk->sk_reuse && sk->sk_state != SCTP_SS_LISTENING)
7535 pp->fastreuse = 1;
7536 else
7537 pp->fastreuse = 0;
7538 } else if (pp->fastreuse &&
7539 (!sk->sk_reuse || sk->sk_state == SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007540 pp->fastreuse = 0;
7541
7542 /* We are set, so fill up all the data in the hash table
7543 * entry, tie the socket list information with the rest of the
7544 * sockets FIXME: Blurry, NPI (ipg).
7545 */
7546success:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007547 if (!sctp_sk(sk)->bind_hash) {
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007548 inet_sk(sk)->inet_num = snum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007549 sk_add_bind_node(sk, &pp->owner);
7550 sctp_sk(sk)->bind_hash = pp;
7551 }
7552 ret = 0;
7553
7554fail_unlock:
wangweidong3c8e43b2014-01-21 15:44:08 +08007555 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007556
7557fail:
wangweidong79b91132014-01-21 15:44:07 +08007558 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559 return ret;
7560}
7561
7562/* Assign a 'snum' port to the socket. If snum == 0, an ephemeral
7563 * port is requested.
7564 */
7565static int sctp_get_port(struct sock *sk, unsigned short snum)
7566{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007567 union sctp_addr addr;
7568 struct sctp_af *af = sctp_sk(sk)->pf->af;
7569
7570 /* Set up a dummy address struct from the sk. */
7571 af->from_sk(&addr, sk);
7572 addr.v4.sin_port = htons(snum);
7573
7574 /* Note: sk->sk_num gets filled in if ephemeral port request. */
Daniel Borkmann62208f12013-06-25 18:17:30 +02007575 return !!sctp_get_port_local(sk, &addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007576}
7577
7578/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007579 * Move a socket to LISTENING state.
7580 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02007581static int sctp_listen_start(struct sock *sk, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007582{
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007583 struct sctp_sock *sp = sctp_sk(sk);
7584 struct sctp_endpoint *ep = sp->ep;
Herbert Xu5821c762016-01-24 21:20:12 +08007585 struct crypto_shash *tfm = NULL;
Neil Horman3c681982012-10-24 09:20:03 +00007586 char alg[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007587
7588 /* Allocate HMAC for generating cookie. */
Neil Horman3c681982012-10-24 09:20:03 +00007589 if (!sp->hmac && sp->sctp_hmac_alg) {
7590 sprintf(alg, "hmac(%s)", sp->sctp_hmac_alg);
Herbert Xu5821c762016-01-24 21:20:12 +08007591 tfm = crypto_alloc_shash(alg, 0, 0);
Vlad Yasevich8dc49842007-05-09 13:50:20 -07007592 if (IS_ERR(tfm)) {
Joe Perchese87cc472012-05-13 21:56:26 +00007593 net_info_ratelimited("failed to load transform for %s: %ld\n",
Neil Horman3c681982012-10-24 09:20:03 +00007594 sp->sctp_hmac_alg, PTR_ERR(tfm));
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007595 return -ENOSYS;
7596 }
7597 sctp_sk(sk)->hmac = tfm;
7598 }
7599
7600 /*
7601 * If a bind() or sctp_bindx() is not called prior to a listen()
7602 * call that allows new associations to be accepted, the system
7603 * picks an ephemeral port and will choose an address set equivalent
7604 * to binding with a wildcard address.
7605 *
7606 * This is not currently spelled out in the SCTP sockets
7607 * extensions draft, but follows the practice as seen in TCP
7608 * sockets.
7609 *
7610 */
Yafang Shaocbabf462017-12-20 11:12:54 +08007611 inet_sk_set_state(sk, SCTP_SS_LISTENING);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007612 if (!ep->base.bind_addr.port) {
7613 if (sctp_autobind(sk))
7614 return -EAGAIN;
7615 } else {
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007616 if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
Yafang Shaocbabf462017-12-20 11:12:54 +08007617 inet_sk_set_state(sk, SCTP_SS_CLOSED);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007618 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007619 }
7620 }
7621
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007622 sk->sk_max_ack_backlog = backlog;
7623 sctp_hash_endpoint(ep);
7624 return 0;
7625}
7626
7627/*
7628 * 4.1.3 / 5.1.3 listen()
7629 *
7630 * By default, new associations are not accepted for UDP style sockets.
7631 * An application uses listen() to mark a socket as being able to
7632 * accept new associations.
7633 *
7634 * On TCP style sockets, applications use listen() to ready the SCTP
7635 * endpoint for accepting inbound associations.
7636 *
7637 * On both types of endpoints a backlog of '0' disables listening.
7638 *
7639 * Move a socket to LISTENING state.
7640 */
7641int sctp_inet_listen(struct socket *sock, int backlog)
7642{
7643 struct sock *sk = sock->sk;
7644 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
7645 int err = -EINVAL;
7646
7647 if (unlikely(backlog < 0))
7648 return err;
7649
wangweidong048ed4b2014-01-21 15:44:11 +08007650 lock_sock(sk);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007651
7652 /* Peeled-off sockets are not allowed to listen(). */
7653 if (sctp_style(sk, UDP_HIGH_BANDWIDTH))
7654 goto out;
7655
7656 if (sock->state != SS_UNCONNECTED)
7657 goto out;
7658
Xin Long34b27892017-04-06 13:10:52 +08007659 if (!sctp_sstate(sk, LISTENING) && !sctp_sstate(sk, CLOSED))
7660 goto out;
7661
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007662 /* If backlog is zero, disable listening. */
7663 if (!backlog) {
7664 if (sctp_sstate(sk, CLOSED))
7665 goto out;
7666
7667 err = 0;
7668 sctp_unhash_endpoint(ep);
7669 sk->sk_state = SCTP_SS_CLOSED;
7670 if (sk->sk_reuse)
7671 sctp_sk(sk)->bind_hash->fastreuse = 1;
7672 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07007673 }
7674
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007675 /* If we are already listening, just update the backlog */
7676 if (sctp_sstate(sk, LISTENING))
7677 sk->sk_max_ack_backlog = backlog;
7678 else {
7679 err = sctp_listen_start(sk, backlog);
7680 if (err)
7681 goto out;
7682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007683
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007684 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007685out:
wangweidong048ed4b2014-01-21 15:44:11 +08007686 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007687 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007688}
7689
7690/*
7691 * This function is done by modeling the current datagram_poll() and the
7692 * tcp_poll(). Note that, based on these implementations, we don't
7693 * lock the socket in this function, even though it seems that,
7694 * ideally, locking or some other mechanisms can be used to ensure
Neil Horman9bffc4a2005-12-19 14:24:40 -08007695 * the integrity of the counters (sndbuf and wmem_alloc) used
Linus Torvalds1da177e2005-04-16 15:20:36 -07007696 * in this place. We assume that we don't need locks either until proven
7697 * otherwise.
7698 *
7699 * Another thing to note is that we include the Async I/O support
7700 * here, again, by modeling the current TCP/UDP code. We don't have
7701 * a good way to test with it yet.
7702 */
Al Viroade994f2017-07-03 00:01:49 -04007703__poll_t sctp_poll(struct file *file, struct socket *sock, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007704{
7705 struct sock *sk = sock->sk;
7706 struct sctp_sock *sp = sctp_sk(sk);
Al Viroade994f2017-07-03 00:01:49 -04007707 __poll_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007708
Eric Dumazetaa395142010-04-20 13:03:51 +00007709 poll_wait(file, sk_sleep(sk), wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007710
Marcelo Ricardo Leitner486bdee2016-04-12 18:11:31 -03007711 sock_rps_record_flow(sk);
7712
Linus Torvalds1da177e2005-04-16 15:20:36 -07007713 /* A TCP-style listening socket becomes readable when the accept queue
7714 * is not empty.
7715 */
7716 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
7717 return (!list_empty(&sp->ep->asocs)) ?
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007718 (EPOLLIN | EPOLLRDNORM) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007719
7720 mask = 0;
7721
7722 /* Is there any exceptional events? */
7723 if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007724 mask |= EPOLLERR |
7725 (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? EPOLLPRI : 0);
Davide Libenzif348d702006-03-25 03:07:39 -08007726 if (sk->sk_shutdown & RCV_SHUTDOWN)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007727 mask |= EPOLLRDHUP | EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007728 if (sk->sk_shutdown == SHUTDOWN_MASK)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007729 mask |= EPOLLHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007730
7731 /* Is it readable? Reconsider this code with TCP-style support. */
Eric Dumazetdb409802010-09-06 11:13:50 +00007732 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007733 mask |= EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007734
7735 /* The association is either gone or not ready. */
7736 if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED))
7737 return mask;
7738
7739 /* Is it writable? */
7740 if (sctp_writeable(sk)) {
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007741 mask |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007742 } else {
Eric Dumazet9cd3e072015-11-29 20:03:10 -08007743 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007744 /*
7745 * Since the socket is not locked, the buffer
7746 * might be made available after the writeable check and
7747 * before the bit is set. This could cause a lost I/O
7748 * signal. tcp_poll() has a race breaker for this race
7749 * condition. Based on their implementation, we put
7750 * in the following code to cover it as well.
7751 */
7752 if (sctp_writeable(sk))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007753 mask |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007754 }
7755 return mask;
7756}
7757
7758/********************************************************************
7759 * 2nd Level Abstractions
7760 ********************************************************************/
7761
7762static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007763 struct sctp_bind_hashbucket *head, struct net *net, unsigned short snum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007764{
7765 struct sctp_bind_bucket *pp;
7766
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08007767 pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007768 if (pp) {
Li Zefan935a7f62008-04-10 01:58:06 -07007769 SCTP_DBG_OBJCNT_INC(bind_bucket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007770 pp->port = snum;
7771 pp->fastreuse = 0;
7772 INIT_HLIST_HEAD(&pp->owner);
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007773 pp->net = net;
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05007774 hlist_add_head(&pp->node, &head->chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007775 }
7776 return pp;
7777}
7778
7779/* Caller must hold hashbucket lock for this tb with local BH disabled */
7780static void sctp_bucket_destroy(struct sctp_bind_bucket *pp)
7781{
Sridhar Samudrala37fa6872006-07-21 14:45:47 -07007782 if (pp && hlist_empty(&pp->owner)) {
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05007783 __hlist_del(&pp->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007784 kmem_cache_free(sctp_bucket_cachep, pp);
7785 SCTP_DBG_OBJCNT_DEC(bind_bucket);
7786 }
7787}
7788
7789/* Release this socket's reference to a local port. */
7790static inline void __sctp_put_port(struct sock *sk)
7791{
7792 struct sctp_bind_hashbucket *head =
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007793 &sctp_port_hashtable[sctp_phashfn(sock_net(sk),
7794 inet_sk(sk)->inet_num)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007795 struct sctp_bind_bucket *pp;
7796
wangweidong3c8e43b2014-01-21 15:44:08 +08007797 spin_lock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007798 pp = sctp_sk(sk)->bind_hash;
7799 __sk_del_bind_node(sk);
7800 sctp_sk(sk)->bind_hash = NULL;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007801 inet_sk(sk)->inet_num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007802 sctp_bucket_destroy(pp);
wangweidong3c8e43b2014-01-21 15:44:08 +08007803 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007804}
7805
7806void sctp_put_port(struct sock *sk)
7807{
wangweidong79b91132014-01-21 15:44:07 +08007808 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007809 __sctp_put_port(sk);
wangweidong79b91132014-01-21 15:44:07 +08007810 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007811}
7812
7813/*
7814 * The system picks an ephemeral port and choose an address set equivalent
7815 * to binding with a wildcard address.
7816 * One of those addresses will be the primary address for the association.
7817 * This automatically enables the multihoming capability of SCTP.
7818 */
7819static int sctp_autobind(struct sock *sk)
7820{
7821 union sctp_addr autoaddr;
7822 struct sctp_af *af;
Al Viro6fbfa9f2006-11-20 17:24:53 -08007823 __be16 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007824
7825 /* Initialize a local sockaddr structure to INADDR_ANY. */
7826 af = sctp_sk(sk)->pf->af;
7827
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007828 port = htons(inet_sk(sk)->inet_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007829 af->inaddr_any(&autoaddr, port);
7830
7831 return sctp_do_bind(sk, &autoaddr, af->sockaddr_len);
7832}
7833
7834/* Parse out IPPROTO_SCTP CMSG headers. Perform only minimal validation.
7835 *
7836 * From RFC 2292
7837 * 4.2 The cmsghdr Structure *
7838 *
7839 * When ancillary data is sent or received, any number of ancillary data
7840 * objects can be specified by the msg_control and msg_controllen members of
7841 * the msghdr structure, because each object is preceded by
7842 * a cmsghdr structure defining the object's length (the cmsg_len member).
7843 * Historically Berkeley-derived implementations have passed only one object
7844 * at a time, but this API allows multiple objects to be
7845 * passed in a single call to sendmsg() or recvmsg(). The following example
7846 * shows two ancillary data objects in a control buffer.
7847 *
7848 * |<--------------------------- msg_controllen -------------------------->|
7849 * | |
7850 *
7851 * |<----- ancillary data object ----->|<----- ancillary data object ----->|
7852 *
7853 * |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->|
7854 * | | |
7855 *
7856 * |<---------- cmsg_len ---------->| |<--------- cmsg_len ----------->| |
7857 *
7858 * |<--------- CMSG_LEN() --------->| |<-------- CMSG_LEN() ---------->| |
7859 * | | | | |
7860 *
7861 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
7862 * |cmsg_|cmsg_|cmsg_|XX| |XX|cmsg_|cmsg_|cmsg_|XX| |XX|
7863 *
7864 * |len |level|type |XX|cmsg_data[]|XX|len |level|type |XX|cmsg_data[]|XX|
7865 *
7866 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
7867 * ^
7868 * |
7869 *
7870 * msg_control
7871 * points here
7872 */
Xin Longa05437a2017-08-11 10:23:48 +08007873static int sctp_msghdr_parse(const struct msghdr *msg, struct sctp_cmsgs *cmsgs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007874{
Vlad Yasevichab38fb02008-04-12 18:40:06 -07007875 struct msghdr *my_msg = (struct msghdr *)msg;
Xin Longa05437a2017-08-11 10:23:48 +08007876 struct cmsghdr *cmsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007877
Gu Zhengf95b4142014-12-11 11:22:04 +08007878 for_each_cmsghdr(cmsg, my_msg) {
Vlad Yasevichab38fb02008-04-12 18:40:06 -07007879 if (!CMSG_OK(my_msg, cmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007880 return -EINVAL;
7881
7882 /* Should we parse this header or ignore? */
7883 if (cmsg->cmsg_level != IPPROTO_SCTP)
7884 continue;
7885
7886 /* Strictly check lengths following example in SCM code. */
7887 switch (cmsg->cmsg_type) {
7888 case SCTP_INIT:
7889 /* SCTP Socket API Extension
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007890 * 5.3.1 SCTP Initiation Structure (SCTP_INIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007891 *
7892 * This cmsghdr structure provides information for
7893 * initializing new SCTP associations with sendmsg().
7894 * The SCTP_INITMSG socket option uses this same data
7895 * structure. This structure is not used for
7896 * recvmsg().
7897 *
7898 * cmsg_level cmsg_type cmsg_data[]
7899 * ------------ ------------ ----------------------
7900 * IPPROTO_SCTP SCTP_INIT struct sctp_initmsg
7901 */
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007902 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_initmsg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007903 return -EINVAL;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007904
7905 cmsgs->init = CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007906 break;
7907
7908 case SCTP_SNDRCV:
7909 /* SCTP Socket API Extension
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007910 * 5.3.2 SCTP Header Information Structure(SCTP_SNDRCV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007911 *
7912 * This cmsghdr structure specifies SCTP options for
7913 * sendmsg() and describes SCTP header information
7914 * about a received message through recvmsg().
7915 *
7916 * cmsg_level cmsg_type cmsg_data[]
7917 * ------------ ------------ ----------------------
7918 * IPPROTO_SCTP SCTP_SNDRCV struct sctp_sndrcvinfo
7919 */
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007920 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndrcvinfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007921 return -EINVAL;
7922
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007923 cmsgs->srinfo = CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007924
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007925 if (cmsgs->srinfo->sinfo_flags &
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07007926 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
Xin Long49102802018-03-05 20:44:20 +08007927 SCTP_SACK_IMMEDIATELY | SCTP_SENDALL |
7928 SCTP_PR_SCTP_MASK | SCTP_ABORT | SCTP_EOF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007929 return -EINVAL;
7930 break;
7931
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007932 case SCTP_SNDINFO:
7933 /* SCTP Socket API Extension
7934 * 5.3.4 SCTP Send Information Structure (SCTP_SNDINFO)
7935 *
7936 * This cmsghdr structure specifies SCTP options for
7937 * sendmsg(). This structure and SCTP_RCVINFO replaces
7938 * SCTP_SNDRCV which has been deprecated.
7939 *
7940 * cmsg_level cmsg_type cmsg_data[]
7941 * ------------ ------------ ---------------------
7942 * IPPROTO_SCTP SCTP_SNDINFO struct sctp_sndinfo
7943 */
7944 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndinfo)))
7945 return -EINVAL;
7946
7947 cmsgs->sinfo = CMSG_DATA(cmsg);
7948
7949 if (cmsgs->sinfo->snd_flags &
7950 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
Xin Long49102802018-03-05 20:44:20 +08007951 SCTP_SACK_IMMEDIATELY | SCTP_SENDALL |
7952 SCTP_PR_SCTP_MASK | SCTP_ABORT | SCTP_EOF))
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007953 return -EINVAL;
7954 break;
Xin Longed63afb2018-03-05 20:44:18 +08007955 case SCTP_PRINFO:
7956 /* SCTP Socket API Extension
7957 * 5.3.7 SCTP PR-SCTP Information Structure (SCTP_PRINFO)
7958 *
7959 * This cmsghdr structure specifies SCTP options for sendmsg().
7960 *
7961 * cmsg_level cmsg_type cmsg_data[]
7962 * ------------ ------------ ---------------------
7963 * IPPROTO_SCTP SCTP_PRINFO struct sctp_prinfo
7964 */
7965 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_prinfo)))
7966 return -EINVAL;
7967
7968 cmsgs->prinfo = CMSG_DATA(cmsg);
7969 if (cmsgs->prinfo->pr_policy & ~SCTP_PR_SCTP_MASK)
7970 return -EINVAL;
7971
7972 if (cmsgs->prinfo->pr_policy == SCTP_PR_SCTP_NONE)
7973 cmsgs->prinfo->pr_value = 0;
7974 break;
Xin Long3ff547c2018-03-14 19:05:31 +08007975 case SCTP_AUTHINFO:
7976 /* SCTP Socket API Extension
7977 * 5.3.8 SCTP AUTH Information Structure (SCTP_AUTHINFO)
7978 *
7979 * This cmsghdr structure specifies SCTP options for sendmsg().
7980 *
7981 * cmsg_level cmsg_type cmsg_data[]
7982 * ------------ ------------ ---------------------
7983 * IPPROTO_SCTP SCTP_AUTHINFO struct sctp_authinfo
7984 */
7985 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_authinfo)))
7986 return -EINVAL;
7987
7988 cmsgs->authinfo = CMSG_DATA(cmsg);
7989 break;
Xin Long2c0dbaa2018-03-05 20:44:19 +08007990 case SCTP_DSTADDRV4:
7991 case SCTP_DSTADDRV6:
7992 /* SCTP Socket API Extension
7993 * 5.3.9/10 SCTP Destination IPv4/6 Address Structure (SCTP_DSTADDRV4/6)
7994 *
7995 * This cmsghdr structure specifies SCTP options for sendmsg().
7996 *
7997 * cmsg_level cmsg_type cmsg_data[]
7998 * ------------ ------------ ---------------------
7999 * IPPROTO_SCTP SCTP_DSTADDRV4 struct in_addr
8000 * ------------ ------------ ---------------------
8001 * IPPROTO_SCTP SCTP_DSTADDRV6 struct in6_addr
8002 */
8003 cmsgs->addrs_msg = my_msg;
8004 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008005 default:
8006 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07008007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008008 }
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008009
Linus Torvalds1da177e2005-04-16 15:20:36 -07008010 return 0;
8011}
8012
8013/*
8014 * Wait for a packet..
8015 * Note: This function is the same function as in core/datagram.c
8016 * with a few modifications to make lksctp work.
8017 */
wangweidong26ac8e52013-12-23 12:16:51 +08008018static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008019{
8020 int error;
8021 DEFINE_WAIT(wait);
8022
Eric Dumazetaa395142010-04-20 13:03:51 +00008023 prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008024
8025 /* Socket errors? */
8026 error = sock_error(sk);
8027 if (error)
8028 goto out;
8029
8030 if (!skb_queue_empty(&sk->sk_receive_queue))
8031 goto ready;
8032
8033 /* Socket shut down? */
8034 if (sk->sk_shutdown & RCV_SHUTDOWN)
8035 goto out;
8036
8037 /* Sequenced packets can come disconnected. If so we report the
8038 * problem.
8039 */
8040 error = -ENOTCONN;
8041
8042 /* Is there a good reason to think that we may receive some data? */
8043 if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING))
8044 goto out;
8045
8046 /* Handle signals. */
8047 if (signal_pending(current))
8048 goto interrupted;
8049
8050 /* Let another process have a go. Since we are going to sleep
8051 * anyway. Note: This may cause odd behaviors if the message
8052 * does not fit in the user's buffer, but this seems to be the
8053 * only way to honor MSG_DONTWAIT realistically.
8054 */
wangweidong048ed4b2014-01-21 15:44:11 +08008055 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008056 *timeo_p = schedule_timeout(*timeo_p);
wangweidong048ed4b2014-01-21 15:44:11 +08008057 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008058
8059ready:
Eric Dumazetaa395142010-04-20 13:03:51 +00008060 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008061 return 0;
8062
8063interrupted:
8064 error = sock_intr_errno(*timeo_p);
8065
8066out:
Eric Dumazetaa395142010-04-20 13:03:51 +00008067 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008068 *err = error;
8069 return error;
8070}
8071
8072/* Receive a datagram.
8073 * Note: This is pretty much the same routine as in core/datagram.c
8074 * with a few changes to make lksctp work.
8075 */
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02008076struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags,
8077 int noblock, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008078{
8079 int error;
8080 struct sk_buff *skb;
8081 long timeo;
8082
Linus Torvalds1da177e2005-04-16 15:20:36 -07008083 timeo = sock_rcvtimeo(sk, noblock);
8084
Daniel Borkmannbb333812013-06-28 19:49:40 +02008085 pr_debug("%s: timeo:%ld, max:%ld\n", __func__, timeo,
8086 MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008087
8088 do {
8089 /* Again only user level code calls this function,
8090 * so nothing interrupt level
8091 * will suddenly eat the receive_queue.
8092 *
8093 * Look at current nfs client by the way...
David Shwatrz8917a3c2010-12-02 09:01:55 +00008094 * However, this function was correct in any case. 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008095 */
8096 if (flags & MSG_PEEK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008097 skb = skb_peek(&sk->sk_receive_queue);
8098 if (skb)
Reshetova, Elena63354792017-06-30 13:07:58 +03008099 refcount_inc(&skb->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008100 } else {
Marcelo Ricardo Leitner311b2172016-04-13 19:12:29 -03008101 skb = __skb_dequeue(&sk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008102 }
8103
8104 if (skb)
8105 return skb;
8106
Neil Horman6736dc32005-12-02 20:30:06 -08008107 /* Caller is allowed not to check sk->sk_err before calling. */
8108 error = sock_error(sk);
8109 if (error)
8110 goto no_packet;
8111
Linus Torvalds1da177e2005-04-16 15:20:36 -07008112 if (sk->sk_shutdown & RCV_SHUTDOWN)
8113 break;
8114
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07008115 if (sk_can_busy_loop(sk)) {
8116 sk_busy_loop(sk, noblock);
8117
8118 if (!skb_queue_empty(&sk->sk_receive_queue))
8119 continue;
8120 }
Neil Horman8465a5f2014-04-17 15:26:51 -04008121
Linus Torvalds1da177e2005-04-16 15:20:36 -07008122 /* User doesn't want to wait. */
8123 error = -EAGAIN;
8124 if (!timeo)
8125 goto no_packet;
8126 } while (sctp_wait_for_packet(sk, err, &timeo) == 0);
8127
8128 return NULL;
8129
8130no_packet:
8131 *err = error;
8132 return NULL;
8133}
8134
8135/* If sndbuf has changed, wake up per association sndbuf waiters. */
8136static void __sctp_write_space(struct sctp_association *asoc)
8137{
8138 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008139
Eric Dumazetceb5d582015-11-29 20:03:11 -08008140 if (sctp_wspace(asoc) <= 0)
8141 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008142
Eric Dumazetceb5d582015-11-29 20:03:11 -08008143 if (waitqueue_active(&asoc->wait))
8144 wake_up_interruptible(&asoc->wait);
Eric Dumazeteaefd112011-02-18 03:26:36 +00008145
Eric Dumazetceb5d582015-11-29 20:03:11 -08008146 if (sctp_writeable(sk)) {
8147 struct socket_wq *wq;
8148
8149 rcu_read_lock();
8150 wq = rcu_dereference(sk->sk_wq);
8151 if (wq) {
8152 if (waitqueue_active(&wq->wait))
8153 wake_up_interruptible(&wq->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008154
8155 /* Note that we try to include the Async I/O support
8156 * here by modeling from the current TCP/UDP code.
8157 * We have not tested with it yet.
8158 */
Eric Dumazeteaefd112011-02-18 03:26:36 +00008159 if (!(sk->sk_shutdown & SEND_SHUTDOWN))
Eric Dumazetceb5d582015-11-29 20:03:11 -08008160 sock_wake_async(wq, SOCK_WAKE_SPACE, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008161 }
Eric Dumazetceb5d582015-11-29 20:03:11 -08008162 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008163 }
8164}
8165
Daniel Borkmann52c35be2014-04-08 17:26:13 +02008166static void sctp_wake_up_waiters(struct sock *sk,
8167 struct sctp_association *asoc)
8168{
8169 struct sctp_association *tmp = asoc;
8170
8171 /* We do accounting for the sndbuf space per association,
8172 * so we only need to wake our own association.
8173 */
8174 if (asoc->ep->sndbuf_policy)
8175 return __sctp_write_space(asoc);
8176
Daniel Borkmann1e1cdf82014-04-09 16:10:20 +02008177 /* If association goes down and is just flushing its
8178 * outq, then just normally notify others.
8179 */
8180 if (asoc->base.dead)
8181 return sctp_write_space(sk);
8182
Daniel Borkmann52c35be2014-04-08 17:26:13 +02008183 /* Accounting for the sndbuf space is per socket, so we
8184 * need to wake up others, try to be fair and in case of
8185 * other associations, let them have a go first instead
8186 * of just doing a sctp_write_space() call.
8187 *
8188 * Note that we reach sctp_wake_up_waiters() only when
8189 * associations free up queued chunks, thus we are under
8190 * lock and the list of associations on a socket is
8191 * guaranteed not to change.
8192 */
8193 for (tmp = list_next_entry(tmp, asocs); 1;
8194 tmp = list_next_entry(tmp, asocs)) {
8195 /* Manually skip the head element. */
8196 if (&tmp->asocs == &((sctp_sk(sk))->ep->asocs))
8197 continue;
8198 /* Wake up association. */
8199 __sctp_write_space(tmp);
8200 /* We've reached the end. */
8201 if (tmp == asoc)
8202 break;
8203 }
8204}
8205
Linus Torvalds1da177e2005-04-16 15:20:36 -07008206/* Do accounting for the sndbuf space.
8207 * Decrement the used sndbuf space of the corresponding association by the
8208 * data size which was just transmitted(freed).
8209 */
8210static void sctp_wfree(struct sk_buff *skb)
8211{
Daniel Borkmannf869c912014-11-20 01:54:48 +01008212 struct sctp_chunk *chunk = skb_shinfo(skb)->destructor_arg;
8213 struct sctp_association *asoc = chunk->asoc;
8214 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008215
Neil Horman4eb701d2005-04-28 12:02:04 -07008216 asoc->sndbuf_used -= SCTP_DATA_SNDSIZE(chunk) +
8217 sizeof(struct sk_buff) +
8218 sizeof(struct sctp_chunk);
8219
Reshetova, Elena14afee42017-06-30 13:08:00 +03008220 WARN_ON(refcount_sub_and_test(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc));
Neil Horman4eb701d2005-04-28 12:02:04 -07008221
Neil Horman4d93df02007-08-15 16:07:44 -07008222 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008223 * This undoes what is done via sctp_set_owner_w and sk_mem_charge
Neil Horman4d93df02007-08-15 16:07:44 -07008224 */
8225 sk->sk_wmem_queued -= skb->truesize;
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008226 sk_mem_uncharge(sk, skb->truesize);
Neil Horman4d93df02007-08-15 16:07:44 -07008227
Xin Longec2e5062018-03-14 19:05:33 +08008228 if (chunk->shkey) {
8229 struct sctp_shared_key *shkey = chunk->shkey;
8230
8231 /* refcnt == 2 and !list_empty mean after this release, it's
8232 * not being used anywhere, and it's time to notify userland
8233 * that this shkey can be freed if it's been deactivated.
8234 */
8235 if (shkey->deactivated && !list_empty(&shkey->key_list) &&
8236 refcount_read(&shkey->refcnt) == 2) {
8237 struct sctp_ulpevent *ev;
8238
8239 ev = sctp_ulpevent_make_authkey(asoc, shkey->key_id,
8240 SCTP_AUTH_FREE_KEY,
8241 GFP_KERNEL);
8242 if (ev)
8243 asoc->stream.si->enqueue_event(&asoc->ulpq, ev);
8244 }
Xin Long1b1e0bc2018-03-14 19:05:30 +08008245 sctp_auth_shkey_release(chunk->shkey);
Xin Longec2e5062018-03-14 19:05:33 +08008246 }
Xin Long1b1e0bc2018-03-14 19:05:30 +08008247
Neil Horman4eb701d2005-04-28 12:02:04 -07008248 sock_wfree(skb);
Daniel Borkmann52c35be2014-04-08 17:26:13 +02008249 sctp_wake_up_waiters(sk, asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008250
8251 sctp_association_put(asoc);
8252}
8253
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07008254/* Do accounting for the receive space on the socket.
8255 * Accounting for the association is done in ulpevent.c
8256 * We set this as a destructor for the cloned data skbs so that
8257 * accounting is done at the correct time.
8258 */
8259void sctp_sock_rfree(struct sk_buff *skb)
8260{
8261 struct sock *sk = skb->sk;
8262 struct sctp_ulpevent *event = sctp_skb2event(skb);
8263
8264 atomic_sub(event->rmem_len, &sk->sk_rmem_alloc);
Neil Horman4d93df02007-08-15 16:07:44 -07008265
8266 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008267 * Mimic the behavior of sock_rfree
Neil Horman4d93df02007-08-15 16:07:44 -07008268 */
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008269 sk_mem_uncharge(sk, event->rmem_len);
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07008270}
8271
8272
Linus Torvalds1da177e2005-04-16 15:20:36 -07008273/* Helper function to wait for space in the sndbuf. */
8274static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
Xin Longa0ff6602018-01-15 17:01:36 +08008275 size_t msg_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008276{
8277 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008278 long current_timeo = *timeo_p;
8279 DEFINE_WAIT(wait);
Xin Longa0ff6602018-01-15 17:01:36 +08008280 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008281
Daniel Borkmannbb333812013-06-28 19:49:40 +02008282 pr_debug("%s: asoc:%p, timeo:%ld, msg_len:%zu\n", __func__, asoc,
8283 *timeo_p, msg_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008284
8285 /* Increment the association's refcnt. */
8286 sctp_association_hold(asoc);
8287
8288 /* Wait on the association specific sndbuf space. */
8289 for (;;) {
8290 prepare_to_wait_exclusive(&asoc->wait, &wait,
8291 TASK_INTERRUPTIBLE);
Xin Longca3af4d2017-11-15 16:55:54 +08008292 if (asoc->base.dead)
8293 goto do_dead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008294 if (!*timeo_p)
8295 goto do_nonblock;
Xin Longca3af4d2017-11-15 16:55:54 +08008296 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008297 goto do_error;
8298 if (signal_pending(current))
8299 goto do_interrupted;
8300 if (msg_len <= sctp_wspace(asoc))
8301 break;
8302
8303 /* Let another process have a go. Since we are going
8304 * to sleep anyway.
8305 */
wangweidong048ed4b2014-01-21 15:44:11 +08008306 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008307 current_timeo = schedule_timeout(current_timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08008308 lock_sock(sk);
Xin Longa0ff6602018-01-15 17:01:36 +08008309 if (sk != asoc->base.sk)
8310 goto do_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008311
8312 *timeo_p = current_timeo;
8313 }
8314
8315out:
8316 finish_wait(&asoc->wait, &wait);
8317
8318 /* Release the association's refcnt. */
8319 sctp_association_put(asoc);
8320
8321 return err;
8322
Xin Longca3af4d2017-11-15 16:55:54 +08008323do_dead:
8324 err = -ESRCH;
8325 goto out;
8326
Linus Torvalds1da177e2005-04-16 15:20:36 -07008327do_error:
8328 err = -EPIPE;
8329 goto out;
8330
8331do_interrupted:
8332 err = sock_intr_errno(*timeo_p);
8333 goto out;
8334
8335do_nonblock:
8336 err = -EAGAIN;
8337 goto out;
8338}
8339
David S. Miller676d2362014-04-11 16:15:36 -04008340void sctp_data_ready(struct sock *sk)
Wei Yongjun561b1732010-04-28 08:47:18 +00008341{
David S. Miller7ef52732010-05-02 21:43:40 -07008342 struct socket_wq *wq;
8343
8344 rcu_read_lock();
8345 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08008346 if (skwq_has_sleeper(wq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008347 wake_up_interruptible_sync_poll(&wq->wait, EPOLLIN |
8348 EPOLLRDNORM | EPOLLRDBAND);
Wei Yongjun561b1732010-04-28 08:47:18 +00008349 sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
David S. Miller7ef52732010-05-02 21:43:40 -07008350 rcu_read_unlock();
Wei Yongjun561b1732010-04-28 08:47:18 +00008351}
8352
Linus Torvalds1da177e2005-04-16 15:20:36 -07008353/* If socket sndbuf has changed, wake up all per association waiters. */
8354void sctp_write_space(struct sock *sk)
8355{
8356 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008357
8358 /* Wake up the tasks in each wait queue. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07008359 list_for_each_entry(asoc, &((sctp_sk(sk))->ep->asocs), asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008360 __sctp_write_space(asoc);
8361 }
8362}
8363
8364/* Is there any sndbuf space available on the socket?
8365 *
Neil Horman9bffc4a2005-12-19 14:24:40 -08008366 * Note that sk_wmem_alloc is the sum of the send buffers on all of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07008367 * associations on the same socket. For a UDP-style socket with
8368 * multiple associations, it is possible for it to be "unwriteable"
8369 * prematurely. I assume that this is acceptable because
8370 * a premature "unwriteable" is better than an accidental "writeable" which
8371 * would cause an unwanted block under certain circumstances. For the 1-1
8372 * UDP-style sockets or TCP-style sockets, this code should work.
8373 * - Daisy
8374 */
8375static int sctp_writeable(struct sock *sk)
8376{
8377 int amt = 0;
8378
Eric Dumazet31e6d362009-06-17 19:05:41 -07008379 amt = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008380 if (amt < 0)
8381 amt = 0;
8382 return amt;
8383}
8384
8385/* Wait for an association to go into ESTABLISHED state. If timeout is 0,
8386 * returns immediately with EINPROGRESS.
8387 */
8388static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p)
8389{
8390 struct sock *sk = asoc->base.sk;
8391 int err = 0;
8392 long current_timeo = *timeo_p;
8393 DEFINE_WAIT(wait);
8394
Daniel Borkmannbb333812013-06-28 19:49:40 +02008395 pr_debug("%s: asoc:%p, timeo:%ld\n", __func__, asoc, *timeo_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008396
8397 /* Increment the association's refcnt. */
8398 sctp_association_hold(asoc);
8399
8400 for (;;) {
8401 prepare_to_wait_exclusive(&asoc->wait, &wait,
8402 TASK_INTERRUPTIBLE);
8403 if (!*timeo_p)
8404 goto do_nonblock;
8405 if (sk->sk_shutdown & RCV_SHUTDOWN)
8406 break;
8407 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
8408 asoc->base.dead)
8409 goto do_error;
8410 if (signal_pending(current))
8411 goto do_interrupted;
8412
8413 if (sctp_state(asoc, ESTABLISHED))
8414 break;
8415
8416 /* Let another process have a go. Since we are going
8417 * to sleep anyway.
8418 */
wangweidong048ed4b2014-01-21 15:44:11 +08008419 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008420 current_timeo = schedule_timeout(current_timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08008421 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008422
8423 *timeo_p = current_timeo;
8424 }
8425
8426out:
8427 finish_wait(&asoc->wait, &wait);
8428
8429 /* Release the association's refcnt. */
8430 sctp_association_put(asoc);
8431
8432 return err;
8433
8434do_error:
Vlad Yasevich81845c22006-01-30 15:59:54 -08008435 if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008436 err = -ETIMEDOUT;
8437 else
8438 err = -ECONNREFUSED;
8439 goto out;
8440
8441do_interrupted:
8442 err = sock_intr_errno(*timeo_p);
8443 goto out;
8444
8445do_nonblock:
8446 err = -EINPROGRESS;
8447 goto out;
8448}
8449
8450static int sctp_wait_for_accept(struct sock *sk, long timeo)
8451{
8452 struct sctp_endpoint *ep;
8453 int err = 0;
8454 DEFINE_WAIT(wait);
8455
8456 ep = sctp_sk(sk)->ep;
8457
8458
8459 for (;;) {
Eric Dumazetaa395142010-04-20 13:03:51 +00008460 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008461 TASK_INTERRUPTIBLE);
8462
8463 if (list_empty(&ep->asocs)) {
wangweidong048ed4b2014-01-21 15:44:11 +08008464 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008465 timeo = schedule_timeout(timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08008466 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008467 }
8468
8469 err = -EINVAL;
8470 if (!sctp_sstate(sk, LISTENING))
8471 break;
8472
8473 err = 0;
8474 if (!list_empty(&ep->asocs))
8475 break;
8476
8477 err = sock_intr_errno(timeo);
8478 if (signal_pending(current))
8479 break;
8480
8481 err = -EAGAIN;
8482 if (!timeo)
8483 break;
8484 }
8485
Eric Dumazetaa395142010-04-20 13:03:51 +00008486 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008487
8488 return err;
8489}
8490
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +02008491static void sctp_wait_for_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008492{
8493 DEFINE_WAIT(wait);
8494
8495 do {
Eric Dumazetaa395142010-04-20 13:03:51 +00008496 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008497 if (list_empty(&sctp_sk(sk)->ep->asocs))
8498 break;
wangweidong048ed4b2014-01-21 15:44:11 +08008499 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008500 timeout = schedule_timeout(timeout);
wangweidong048ed4b2014-01-21 15:44:11 +08008501 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008502 } while (!signal_pending(current) && timeout);
8503
Eric Dumazetaa395142010-04-20 13:03:51 +00008504 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008505}
8506
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008507static void sctp_skb_set_owner_r_frag(struct sk_buff *skb, struct sock *sk)
8508{
8509 struct sk_buff *frag;
8510
8511 if (!skb->data_len)
8512 goto done;
8513
8514 /* Don't forget the fragments. */
David S. Miller1b003be2009-06-09 00:22:35 -07008515 skb_walk_frags(skb, frag)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008516 sctp_skb_set_owner_r_frag(frag, sk);
8517
8518done:
8519 sctp_skb_set_owner_r(skb, sk);
8520}
8521
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008522void sctp_copy_sock(struct sock *newsk, struct sock *sk,
8523 struct sctp_association *asoc)
8524{
8525 struct inet_sock *inet = inet_sk(sk);
Julia Lawall09cb47a2010-01-21 02:43:20 -08008526 struct inet_sock *newinet;
Richard Haines2277c7c2018-02-13 20:56:24 +00008527 struct sctp_sock *sp = sctp_sk(sk);
8528 struct sctp_endpoint *ep = sp->ep;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008529
8530 newsk->sk_type = sk->sk_type;
8531 newsk->sk_bound_dev_if = sk->sk_bound_dev_if;
8532 newsk->sk_flags = sk->sk_flags;
Marcelo Ricardo Leitner50a5ffb2015-12-04 15:14:05 -02008533 newsk->sk_tsflags = sk->sk_tsflags;
Tom Herbert28448b82014-05-23 08:47:19 -07008534 newsk->sk_no_check_tx = sk->sk_no_check_tx;
8535 newsk->sk_no_check_rx = sk->sk_no_check_rx;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008536 newsk->sk_reuse = sk->sk_reuse;
8537
8538 newsk->sk_shutdown = sk->sk_shutdown;
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02008539 newsk->sk_destruct = sctp_destruct_sock;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008540 newsk->sk_family = sk->sk_family;
8541 newsk->sk_protocol = IPPROTO_SCTP;
8542 newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
8543 newsk->sk_sndbuf = sk->sk_sndbuf;
8544 newsk->sk_rcvbuf = sk->sk_rcvbuf;
8545 newsk->sk_lingertime = sk->sk_lingertime;
8546 newsk->sk_rcvtimeo = sk->sk_rcvtimeo;
8547 newsk->sk_sndtimeo = sk->sk_sndtimeo;
Marcelo Ricardo Leitner486bdee2016-04-12 18:11:31 -03008548 newsk->sk_rxhash = sk->sk_rxhash;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008549
8550 newinet = inet_sk(newsk);
8551
8552 /* Initialize sk's sport, dport, rcv_saddr and daddr for
8553 * getsockname() and getpeername()
8554 */
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008555 newinet->inet_sport = inet->inet_sport;
8556 newinet->inet_saddr = inet->inet_saddr;
8557 newinet->inet_rcv_saddr = inet->inet_rcv_saddr;
8558 newinet->inet_dport = htons(asoc->peer.port);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008559 newinet->pmtudisc = inet->pmtudisc;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008560 newinet->inet_id = asoc->next_tsn ^ jiffies;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008561
8562 newinet->uc_ttl = inet->uc_ttl;
8563 newinet->mc_loop = 1;
8564 newinet->mc_ttl = 1;
8565 newinet->mc_index = 0;
8566 newinet->mc_list = NULL;
Marcelo Ricardo Leitner01ce63c2015-12-04 15:14:04 -02008567
8568 if (newsk->sk_flags & SK_FLAGS_TIMESTAMP)
8569 net_enable_timestamp();
Marcelo Ricardo Leitner3538a5c2015-12-23 16:44:09 -02008570
Richard Haines2277c7c2018-02-13 20:56:24 +00008571 /* Set newsk security attributes from orginal sk and connection
8572 * security attribute from ep.
8573 */
8574 security_sctp_sk_clone(ep, sk, newsk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008575}
8576
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03008577static inline void sctp_copy_descendant(struct sock *sk_to,
8578 const struct sock *sk_from)
8579{
8580 int ancestor_size = sizeof(struct inet_sock) +
8581 sizeof(struct sctp_sock) -
8582 offsetof(struct sctp_sock, auto_asconf_list);
8583
8584 if (sk_from->sk_family == PF_INET6)
8585 ancestor_size += sizeof(struct ipv6_pinfo);
8586
8587 __inet_sk_copy_descendant(sk_to, sk_from, ancestor_size);
8588}
8589
Linus Torvalds1da177e2005-04-16 15:20:36 -07008590/* Populate the fields of the newsk from the oldsk and migrate the assoc
8591 * and its messages to the newsk.
8592 */
8593static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
8594 struct sctp_association *assoc,
Xin Longb7ef2612017-08-11 10:23:50 +08008595 enum sctp_socket_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008596{
8597 struct sctp_sock *oldsp = sctp_sk(oldsk);
8598 struct sctp_sock *newsp = sctp_sk(newsk);
8599 struct sctp_bind_bucket *pp; /* hash list port iterator */
8600 struct sctp_endpoint *newep = newsp->ep;
8601 struct sk_buff *skb, *tmp;
8602 struct sctp_ulpevent *event;
Vlad Yasevichf26f7c42007-12-06 22:50:27 -08008603 struct sctp_bind_hashbucket *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008604
8605 /* Migrate socket buffer sizes and all the socket level options to the
8606 * new socket.
8607 */
8608 newsk->sk_sndbuf = oldsk->sk_sndbuf;
8609 newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
8610 /* Brute force copy old sctp opt. */
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03008611 sctp_copy_descendant(newsk, oldsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008612
8613 /* Restore the ep value that was overwritten with the above structure
8614 * copy.
8615 */
8616 newsp->ep = newep;
8617 newsp->hmac = NULL;
8618
8619 /* Hook this new socket in to the bind_hash list. */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008620 head = &sctp_port_hashtable[sctp_phashfn(sock_net(oldsk),
8621 inet_sk(oldsk)->inet_num)];
Nicholas Mc Guire489ce5f2016-03-13 11:48:24 +01008622 spin_lock_bh(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008623 pp = sctp_sk(oldsk)->bind_hash;
8624 sk_add_bind_node(newsk, &pp->owner);
8625 sctp_sk(newsk)->bind_hash = pp;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008626 inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num;
Nicholas Mc Guire489ce5f2016-03-13 11:48:24 +01008627 spin_unlock_bh(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008628
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07008629 /* Copy the bind_addr list from the original endpoint to the new
8630 * endpoint so that we can handle restarts properly
8631 */
Vlad Yasevich8e71a112007-12-06 22:50:54 -08008632 sctp_bind_addr_dup(&newsp->ep->base.bind_addr,
8633 &oldsp->ep->base.bind_addr, GFP_KERNEL);
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07008634
Linus Torvalds1da177e2005-04-16 15:20:36 -07008635 /* Move any messages in the old socket's receive queue that are for the
8636 * peeled off association to the new socket's receive queue.
8637 */
8638 sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) {
8639 event = sctp_skb2event(skb);
8640 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07008641 __skb_unlink(skb, &oldsk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008642 __skb_queue_tail(&newsk->sk_receive_queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008643 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008644 }
8645 }
8646
8647 /* Clean up any messages pending delivery due to partial
8648 * delivery. Three cases:
8649 * 1) No partial deliver; no work.
8650 * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby.
8651 * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue.
8652 */
8653 skb_queue_head_init(&newsp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008654 atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008655
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008656 if (atomic_read(&sctp_sk(oldsk)->pd_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008657 struct sk_buff_head *queue;
8658
8659 /* Decide which queue to move pd_lobby skbs to. */
8660 if (assoc->ulpq.pd_mode) {
8661 queue = &newsp->pd_lobby;
8662 } else
8663 queue = &newsk->sk_receive_queue;
8664
8665 /* Walk through the pd_lobby, looking for skbs that
8666 * need moved to the new socket.
8667 */
8668 sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) {
8669 event = sctp_skb2event(skb);
8670 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07008671 __skb_unlink(skb, &oldsp->pd_lobby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008672 __skb_queue_tail(queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008673 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008674 }
8675 }
8676
8677 /* Clear up any skbs waiting for the partial
8678 * delivery to finish.
8679 */
8680 if (assoc->ulpq.pd_mode)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008681 sctp_clear_pd(oldsk, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008682
8683 }
8684
Xin Long13228232017-12-08 21:04:09 +08008685 sctp_for_each_rx_skb(assoc, newsk, sctp_skb_set_owner_r_frag);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008686
Linus Torvalds1da177e2005-04-16 15:20:36 -07008687 /* Set the type of socket to indicate that it is peeled off from the
8688 * original UDP-style socket or created with the accept() call on a
8689 * TCP-style socket..
8690 */
8691 newsp->type = type;
8692
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07008693 /* Mark the new socket "in-use" by the user so that any packets
8694 * that may arrive on the association after we've moved it are
8695 * queued to the backlog. This prevents a potential race between
8696 * backlog processing on the old socket and new-packet processing
8697 * on the new socket.
Zach Brown5131a182007-06-22 15:14:46 -07008698 *
8699 * The caller has just allocated newsk so we can guarantee that other
8700 * paths won't try to lock it and then oldsk.
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07008701 */
Zach Brown5131a182007-06-22 15:14:46 -07008702 lock_sock_nested(newsk, SINGLE_DEPTH_NESTING);
Xin Longd04adf12017-10-28 02:13:29 +08008703 sctp_for_each_tx_datachunk(assoc, sctp_clear_owner_w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008704 sctp_assoc_migrate(assoc, newsk);
Xin Longd04adf12017-10-28 02:13:29 +08008705 sctp_for_each_tx_datachunk(assoc, sctp_set_owner_w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008706
8707 /* If the association on the newsk is already closed before accept()
8708 * is called, set RCV_SHUTDOWN flag.
8709 */
Xin Longd46e4162016-06-09 22:48:18 +08008710 if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP)) {
Yafang Shaocbabf462017-12-20 11:12:54 +08008711 inet_sk_set_state(newsk, SCTP_SS_CLOSED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008712 newsk->sk_shutdown |= RCV_SHUTDOWN;
Xin Longd46e4162016-06-09 22:48:18 +08008713 } else {
Yafang Shaocbabf462017-12-20 11:12:54 +08008714 inet_sk_set_state(newsk, SCTP_SS_ESTABLISHED);
Xin Longd46e4162016-06-09 22:48:18 +08008715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008716
wangweidong048ed4b2014-01-21 15:44:11 +08008717 release_sock(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008718}
8719
Neil Horman4d93df02007-08-15 16:07:44 -07008720
Linus Torvalds1da177e2005-04-16 15:20:36 -07008721/* This proto struct describes the ULP interface for SCTP. */
8722struct proto sctp_prot = {
8723 .name = "SCTP",
8724 .owner = THIS_MODULE,
8725 .close = sctp_close,
8726 .connect = sctp_connect,
8727 .disconnect = sctp_disconnect,
8728 .accept = sctp_accept,
8729 .ioctl = sctp_ioctl,
8730 .init = sctp_init_sock,
8731 .destroy = sctp_destroy_sock,
8732 .shutdown = sctp_shutdown,
8733 .setsockopt = sctp_setsockopt,
8734 .getsockopt = sctp_getsockopt,
8735 .sendmsg = sctp_sendmsg,
8736 .recvmsg = sctp_recvmsg,
8737 .bind = sctp_bind,
8738 .backlog_rcv = sctp_backlog_rcv,
8739 .hash = sctp_hash,
8740 .unhash = sctp_unhash,
8741 .get_port = sctp_get_port,
8742 .obj_size = sizeof(struct sctp_sock),
David Windsorab9ee8e2017-08-24 16:57:57 -07008743 .useroffset = offsetof(struct sctp_sock, subscribe),
8744 .usersize = offsetof(struct sctp_sock, initmsg) -
8745 offsetof(struct sctp_sock, subscribe) +
8746 sizeof_field(struct sctp_sock, initmsg),
Neil Horman4d93df02007-08-15 16:07:44 -07008747 .sysctl_mem = sysctl_sctp_mem,
8748 .sysctl_rmem = sysctl_sctp_rmem,
8749 .sysctl_wmem = sysctl_sctp_wmem,
8750 .memory_pressure = &sctp_memory_pressure,
8751 .enter_memory_pressure = sctp_enter_memory_pressure,
8752 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08008753 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008754};
8755
Eric Dumazetdfd56b82011-12-10 09:48:31 +00008756#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazet8295b6d2007-11-05 23:40:28 -08008757
Eric Dumazet602dd622015-12-01 07:20:07 -08008758#include <net/transp_v6.h>
8759static void sctp_v6_destroy_sock(struct sock *sk)
8760{
8761 sctp_destroy_sock(sk);
8762 inet6_destroy_sock(sk);
8763}
8764
Linus Torvalds1da177e2005-04-16 15:20:36 -07008765struct proto sctpv6_prot = {
8766 .name = "SCTPv6",
8767 .owner = THIS_MODULE,
8768 .close = sctp_close,
8769 .connect = sctp_connect,
8770 .disconnect = sctp_disconnect,
8771 .accept = sctp_accept,
8772 .ioctl = sctp_ioctl,
8773 .init = sctp_init_sock,
Eric Dumazet602dd622015-12-01 07:20:07 -08008774 .destroy = sctp_v6_destroy_sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008775 .shutdown = sctp_shutdown,
8776 .setsockopt = sctp_setsockopt,
8777 .getsockopt = sctp_getsockopt,
8778 .sendmsg = sctp_sendmsg,
8779 .recvmsg = sctp_recvmsg,
8780 .bind = sctp_bind,
8781 .backlog_rcv = sctp_backlog_rcv,
8782 .hash = sctp_hash,
8783 .unhash = sctp_unhash,
8784 .get_port = sctp_get_port,
8785 .obj_size = sizeof(struct sctp6_sock),
David Windsorab9ee8e2017-08-24 16:57:57 -07008786 .useroffset = offsetof(struct sctp6_sock, sctp.subscribe),
8787 .usersize = offsetof(struct sctp6_sock, sctp.initmsg) -
8788 offsetof(struct sctp6_sock, sctp.subscribe) +
8789 sizeof_field(struct sctp6_sock, sctp.initmsg),
Neil Horman4d93df02007-08-15 16:07:44 -07008790 .sysctl_mem = sysctl_sctp_mem,
8791 .sysctl_rmem = sysctl_sctp_rmem,
8792 .sysctl_wmem = sysctl_sctp_wmem,
8793 .memory_pressure = &sctp_memory_pressure,
8794 .enter_memory_pressure = sctp_enter_memory_pressure,
8795 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08008796 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008797};
Eric Dumazetdfd56b82011-12-10 09:48:31 +00008798#endif /* IS_ENABLED(CONFIG_IPV6) */