blob: c1c1bda334a4e7651dd3119b6f9770560f5f2b1d [file] [log] [blame]
Vlad Yasevich60c778b2008-01-11 09:57:09 -05001/* SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999-2000 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 * Copyright (c) 2001-2003 Intel Corp.
6 * Copyright (c) 2001-2002 Nokia, Inc.
7 * Copyright (c) 2001 La Monte H.P. Yarroll
8 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05009 * This file is part of the SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * These functions interface with the sockets layer to implement the
12 * SCTP Extensions for the Sockets API.
13 *
14 * Note that the descriptions from the specification are USER level
15 * functions--this file is the functions which populate the struct proto
16 * for SCTP which is the BOTTOM of the sockets interface.
17 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050018 * This SCTP implementation is free software;
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * you can redistribute it and/or modify it under the terms of
20 * the GNU General Public License as published by
21 * the Free Software Foundation; either version 2, or (at your option)
22 * any later version.
23 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050024 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
26 * ************************
27 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
28 * See the GNU General Public License for more details.
29 *
30 * You should have received a copy of the GNU General Public License
Jeff Kirsher4b2f13a2013-12-06 06:28:48 -080031 * along with GNU CC; see the file COPYING. If not, see
32 * <http://www.gnu.org/licenses/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 *
34 * Please send any bug reports or fixes you make to the
35 * email address(es):
Daniel Borkmann91705c62013-07-23 14:51:47 +020036 * lksctp developers <linux-sctp@vger.kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * Written or modified by:
39 * La Monte H.P. Yarroll <piggy@acm.org>
40 * Narasimha Budihal <narsi@refcode.org>
41 * Karl Knutson <karl@athena.chicago.il.us>
42 * Jon Grimm <jgrimm@us.ibm.com>
43 * Xingang Guo <xingang.guo@intel.com>
44 * Daisy Chang <daisyc@us.ibm.com>
45 * Sridhar Samudrala <samudrala@us.ibm.com>
46 * Inaky Perez-Gonzalez <inaky.gonzalez@intel.com>
47 * Ardelle Fan <ardelle.fan@intel.com>
48 * Ryan Layer <rmlayer@us.ibm.com>
49 * Anup Pemmaiah <pemmaiah@cc.usu.edu>
50 * Kevin Gao <kevin.gao@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 */
52
Joe Perches145ce502010-08-24 13:21:08 +000053#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
54
Herbert Xu5821c762016-01-24 21:20:12 +080055#include <crypto/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <linux/types.h>
57#include <linux/kernel.h>
58#include <linux/wait.h>
59#include <linux/time.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010060#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/ip.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080062#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/fcntl.h>
64#include <linux/poll.h>
65#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090066#include <linux/slab.h>
Al Viro56b31d12012-08-18 00:25:51 -040067#include <linux/file.h>
Daniel Borkmannffd59392014-02-17 12:11:11 +010068#include <linux/compat.h>
NeilBrown0eb71a92018-06-18 12:52:50 +100069#include <linux/rhashtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71#include <net/ip.h>
72#include <net/icmp.h>
73#include <net/route.h>
74#include <net/ipv6.h>
75#include <net/inet_common.h>
Neil Horman8465a5f2014-04-17 15:26:51 -040076#include <net/busy_poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78#include <linux/socket.h> /* for sa_family_t */
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040079#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#include <net/sock.h>
81#include <net/sctp/sctp.h>
82#include <net/sctp/sm.h>
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -030083#include <net/sctp/stream_sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/* Forward declarations for internal helper functions. */
86static int sctp_writeable(struct sock *sk);
87static void sctp_wfree(struct sk_buff *skb);
Xin Longcea0cc82017-11-15 16:57:26 +080088static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
Xin Longa0ff6602018-01-15 17:01:36 +080089 size_t msg_len);
wangweidong26ac8e52013-12-23 12:16:51 +080090static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
92static int sctp_wait_for_accept(struct sock *sk, long timeo);
93static void sctp_wait_for_close(struct sock *sk, long timeo);
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +020094static void sctp_destruct_sock(struct sock *sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
96 union sctp_addr *addr, int len);
97static int sctp_bindx_add(struct sock *, struct sockaddr *, int);
98static int sctp_bindx_rem(struct sock *, struct sockaddr *, int);
99static int sctp_send_asconf_add_ip(struct sock *, struct sockaddr *, int);
100static int sctp_send_asconf_del_ip(struct sock *, struct sockaddr *, int);
101static int sctp_send_asconf(struct sctp_association *asoc,
102 struct sctp_chunk *chunk);
103static int sctp_do_bind(struct sock *, union sctp_addr *, int);
104static int sctp_autobind(struct sock *sk);
Xin Longb7ef2612017-08-11 10:23:50 +0800105static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
106 struct sctp_association *assoc,
107 enum sctp_socket_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Eric Dumazet06044752017-06-07 13:29:12 -0700109static unsigned long sctp_memory_pressure;
Eric Dumazet8d987e52010-11-09 23:24:26 +0000110static atomic_long_t sctp_memory_allocated;
Eric Dumazet17483762008-11-25 21:16:35 -0800111struct percpu_counter sctp_sockets_allocated;
Neil Horman4d93df02007-08-15 16:07:44 -0700112
Pavel Emelyanov5c52ba12008-07-16 20:28:10 -0700113static void sctp_enter_memory_pressure(struct sock *sk)
Neil Horman4d93df02007-08-15 16:07:44 -0700114{
115 sctp_memory_pressure = 1;
116}
117
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119/* Get the sndbuf space available at the time on the association. */
120static inline int sctp_wspace(struct sctp_association *asoc)
121{
Neil Horman4d93df02007-08-15 16:07:44 -0700122 int amt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Neil Horman4d93df02007-08-15 16:07:44 -0700124 if (asoc->ep->sndbuf_policy)
125 amt = asoc->sndbuf_used;
126 else
Eric Dumazet31e6d362009-06-17 19:05:41 -0700127 amt = sk_wmem_alloc_get(asoc->base.sk);
Neil Horman4d93df02007-08-15 16:07:44 -0700128
129 if (amt >= asoc->base.sk->sk_sndbuf) {
130 if (asoc->base.sk->sk_userlocks & SOCK_SNDBUF_LOCK)
131 amt = 0;
132 else {
133 amt = sk_stream_wspace(asoc->base.sk);
134 if (amt < 0)
135 amt = 0;
136 }
Neil Horman4eb701d2005-04-28 12:02:04 -0700137 } else {
Neil Horman4d93df02007-08-15 16:07:44 -0700138 amt = asoc->base.sk->sk_sndbuf - amt;
Neil Horman4eb701d2005-04-28 12:02:04 -0700139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return amt;
141}
142
143/* Increment the used sndbuf space count of the corresponding association by
144 * the size of the outgoing data chunk.
145 * Also, set the skb destructor for sndbuf accounting later.
146 *
147 * Since it is always 1-1 between chunk and skb, and also a new skb is always
148 * allocated for chunk bundling in sctp_packet_transmit(), we can use the
149 * destructor in the data chunk skb for the purpose of the sndbuf space
150 * tracking.
151 */
152static inline void sctp_set_owner_w(struct sctp_chunk *chunk)
153{
154 struct sctp_association *asoc = chunk->asoc;
155 struct sock *sk = asoc->base.sk;
156
157 /* The sndbuf space is tracked per association. */
158 sctp_association_hold(asoc);
159
Xin Long1b1e0bc2018-03-14 19:05:30 +0800160 if (chunk->shkey)
161 sctp_auth_shkey_hold(chunk->shkey);
162
Neil Horman4eb701d2005-04-28 12:02:04 -0700163 skb_set_owner_w(chunk->skb, sk);
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 chunk->skb->destructor = sctp_wfree;
166 /* Save the chunk pointer in skb for sctp_wfree to use later. */
Daniel Borkmannf869c912014-11-20 01:54:48 +0100167 skb_shinfo(chunk->skb)->destructor_arg = chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Neil Horman4eb701d2005-04-28 12:02:04 -0700169 asoc->sndbuf_used += SCTP_DATA_SNDSIZE(chunk) +
170 sizeof(struct sk_buff) +
171 sizeof(struct sctp_chunk);
172
Reshetova, Elena14afee42017-06-30 13:08:00 +0300173 refcount_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800174 sk->sk_wmem_queued += chunk->skb->truesize;
175 sk_mem_charge(sk, chunk->skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Xin Longd04adf12017-10-28 02:13:29 +0800178static void sctp_clear_owner_w(struct sctp_chunk *chunk)
179{
180 skb_orphan(chunk->skb);
181}
182
183static void sctp_for_each_tx_datachunk(struct sctp_association *asoc,
184 void (*cb)(struct sctp_chunk *))
185
186{
187 struct sctp_outq *q = &asoc->outqueue;
188 struct sctp_transport *t;
189 struct sctp_chunk *chunk;
190
191 list_for_each_entry(t, &asoc->peer.transport_addr_list, transports)
192 list_for_each_entry(chunk, &t->transmitted, transmitted_list)
193 cb(chunk);
194
Xin Longa8dd3972017-11-26 20:56:07 +0800195 list_for_each_entry(chunk, &q->retransmit, transmitted_list)
Xin Longd04adf12017-10-28 02:13:29 +0800196 cb(chunk);
197
Xin Longa8dd3972017-11-26 20:56:07 +0800198 list_for_each_entry(chunk, &q->sacked, transmitted_list)
Xin Longd04adf12017-10-28 02:13:29 +0800199 cb(chunk);
200
Xin Longa8dd3972017-11-26 20:56:07 +0800201 list_for_each_entry(chunk, &q->abandoned, transmitted_list)
Xin Longd04adf12017-10-28 02:13:29 +0800202 cb(chunk);
203
204 list_for_each_entry(chunk, &q->out_chunk_list, list)
205 cb(chunk);
206}
207
Xin Long13228232017-12-08 21:04:09 +0800208static void sctp_for_each_rx_skb(struct sctp_association *asoc, struct sock *sk,
209 void (*cb)(struct sk_buff *, struct sock *))
210
211{
212 struct sk_buff *skb, *tmp;
213
214 sctp_skb_for_each(skb, &asoc->ulpq.lobby, tmp)
215 cb(skb, sk);
216
217 sctp_skb_for_each(skb, &asoc->ulpq.reasm, tmp)
218 cb(skb, sk);
219
220 sctp_skb_for_each(skb, &asoc->ulpq.reasm_uo, tmp)
221 cb(skb, sk);
222}
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224/* Verify that this is a valid address. */
225static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr,
226 int len)
227{
228 struct sctp_af *af;
229
230 /* Verify basic sockaddr. */
231 af = sctp_sockaddr_af(sctp_sk(sk), addr, len);
232 if (!af)
233 return -EINVAL;
234
235 /* Is this a valid SCTP address? */
Vlad Yasevich5636bef2006-06-17 22:55:35 -0700236 if (!af->addr_valid(addr, sctp_sk(sk), NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return -EINVAL;
238
239 if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr)))
240 return -EINVAL;
241
242 return 0;
243}
244
245/* Look up the association by its id. If this is not a UDP-style
246 * socket, the ID field is always ignored.
247 */
248struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
249{
250 struct sctp_association *asoc = NULL;
251
252 /* If this is not a UDP-style socket, assoc id should be ignored. */
253 if (!sctp_style(sk, UDP)) {
254 /* Return NULL if the socket state is not ESTABLISHED. It
255 * could be a TCP-style listening socket or a socket which
256 * hasn't yet called connect() to establish an association.
257 */
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -0300258 if (!sctp_sstate(sk, ESTABLISHED) && !sctp_sstate(sk, CLOSING))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return NULL;
260
261 /* Get the first and the only association from the list. */
262 if (!list_empty(&sctp_sk(sk)->ep->asocs))
263 asoc = list_entry(sctp_sk(sk)->ep->asocs.next,
264 struct sctp_association, asocs);
265 return asoc;
266 }
267
268 /* Otherwise this is a UDP-style socket. */
269 if (!id || (id == (sctp_assoc_t)-1))
270 return NULL;
271
272 spin_lock_bh(&sctp_assocs_id_lock);
273 asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id);
Marcelo Ricardo Leitnerb336dec2018-10-16 15:18:17 -0300274 if (asoc && (asoc->base.sk != sk || asoc->base.dead))
275 asoc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 spin_unlock_bh(&sctp_assocs_id_lock);
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 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) {
Michio Honda8a07eb02011-04-26 20:19:36 +0900647 trans->cwnd = min(4*asoc->pathmtu, max_t(__u32,
648 2*asoc->pathmtu, 4380));
649 trans->ssthresh = asoc->peer.i.a_rwnd;
650 trans->rto = asoc->rto_initial;
Michele Baldessari196d6752012-12-01 04:49:42 +0000651 sctp_max_rto(asoc, trans);
Michio Honda8a07eb02011-04-26 20:19:36 +0900652 trans->rtt = trans->srtt = trans->rttvar = 0;
Marcelo Ricardo Leitner6e91b572018-04-26 16:58:59 -0300653 /* Clear the source and route cache */
Michio Honda8a07eb02011-04-26 20:19:36 +0900654 sctp_transport_route(trans, NULL,
Marcelo Ricardo Leitner6e91b572018-04-26 16:58:59 -0300655 sctp_sk(asoc->base.sk));
Michio Honda8a07eb02011-04-26 20:19:36 +0900656 }
657 }
658 retval = sctp_send_asconf(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
660
661out:
662 return retval;
663}
664
665/* Remove a list of addresses from bind addresses list. Do not remove the
666 * last address.
667 *
668 * Basically run through each address specified in the addrs/addrcnt
669 * array/length pair, determine if it is IPv6 or IPv4 and call
670 * sctp_del_bind() on it.
671 *
672 * If any of them fails, then the operation will be reversed and the
673 * ones that were removed will be added back.
674 *
675 * At least one address has to be left; if only one address is
676 * available, the operation will return -EBUSY.
677 *
678 * Only sctp_setsockopt_bindx() is supposed to call this function.
679 */
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +0200680static int sctp_bindx_rem(struct sock *sk, struct sockaddr *addrs, int addrcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
682 struct sctp_sock *sp = sctp_sk(sk);
683 struct sctp_endpoint *ep = sp->ep;
684 int cnt;
685 struct sctp_bind_addr *bp = &ep->base.bind_addr;
686 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 void *addr_buf;
Al Viroc9a08502006-11-20 17:07:48 -0800688 union sctp_addr *sa_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 struct sctp_af *af;
690
Daniel Borkmannbb333812013-06-28 19:49:40 +0200691 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
692 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 addr_buf = addrs;
695 for (cnt = 0; cnt < addrcnt; cnt++) {
696 /* If the bind address list is empty or if there is only one
697 * bind address, there is nothing more to be removed (we need
698 * at least one address here).
699 */
700 if (list_empty(&bp->address_list) ||
701 (sctp_list_single_entry(&bp->address_list))) {
702 retval = -EBUSY;
703 goto err_bindx_rem;
704 }
705
Joe Perchesea110732011-06-13 16:21:26 +0000706 sa_addr = addr_buf;
Al Viroc9a08502006-11-20 17:07:48 -0800707 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (!af) {
709 retval = -EINVAL;
710 goto err_bindx_rem;
711 }
Paolo Galtieri0304ff8a2007-04-17 12:52:36 -0700712
713 if (!af->addr_valid(sa_addr, sp, NULL)) {
714 retval = -EADDRNOTAVAIL;
715 goto err_bindx_rem;
716 }
717
Vlad Yasevichee9cbac2011-04-18 19:14:47 +0000718 if (sa_addr->v4.sin_port &&
719 sa_addr->v4.sin_port != htons(bp->port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 retval = -EINVAL;
721 goto err_bindx_rem;
722 }
723
Vlad Yasevichee9cbac2011-04-18 19:14:47 +0000724 if (!sa_addr->v4.sin_port)
725 sa_addr->v4.sin_port = htons(bp->port);
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 /* FIXME - There is probably a need to check if sk->sk_saddr and
728 * sk->sk_rcv_addr are currently set to one of the addresses to
729 * be removed. This is something which needs to be looked into
730 * when we are fixing the outstanding issues with multi-homing
731 * socket routing and failover schemes. Refer to comments in
732 * sctp_do_bind(). -daisy
733 */
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -0400734 retval = sctp_del_bind_addr(bp, sa_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 addr_buf += af->sockaddr_len;
737err_bindx_rem:
738 if (retval < 0) {
739 /* Failed. Add the ones that has been removed back */
740 if (cnt > 0)
741 sctp_bindx_add(sk, addrs, cnt);
742 return retval;
743 }
744 }
745
746 return retval;
747}
748
749/* Send an ASCONF chunk with Delete IP address parameters to all the peers of
750 * the associations that are part of the endpoint indicating that a list of
751 * local addresses are removed from the endpoint.
752 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900753 * If any of the addresses is already in the bind address list of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 * association, we do not send the chunk for that association. But it will not
755 * affect other associations.
756 *
757 * Only sctp_setsockopt_bindx() is supposed to call this function.
758 */
759static int sctp_send_asconf_del_ip(struct sock *sk,
760 struct sockaddr *addrs,
761 int addrcnt)
762{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000763 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 struct sctp_sock *sp;
765 struct sctp_endpoint *ep;
766 struct sctp_association *asoc;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700767 struct sctp_transport *transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 struct sctp_bind_addr *bp;
769 struct sctp_chunk *chunk;
770 union sctp_addr *laddr;
771 void *addr_buf;
772 struct sctp_af *af;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700773 struct sctp_sockaddr_entry *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 int i;
775 int retval = 0;
Michio Honda8a07eb02011-04-26 20:19:36 +0900776 int stored = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Michio Honda8a07eb02011-04-26 20:19:36 +0900778 chunk = NULL;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000779 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return retval;
781
782 sp = sctp_sk(sk);
783 ep = sp->ep;
784
Daniel Borkmannbb333812013-06-28 19:49:40 +0200785 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
786 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700788 list_for_each_entry(asoc, &ep->asocs, asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 if (!asoc->peer.asconf_capable)
791 continue;
792
793 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_DEL_IP)
794 continue;
795
796 if (!sctp_state(asoc, ESTABLISHED))
797 continue;
798
799 /* Check if any address in the packed array of addresses is
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900800 * not present in the bind address list of the association.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 * If so, do not send the asconf chunk to its peer, but
802 * continue with other associations.
803 */
804 addr_buf = addrs;
805 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000806 laddr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 af = sctp_get_af_specific(laddr->v4.sin_family);
808 if (!af) {
809 retval = -EINVAL;
810 goto out;
811 }
812
813 if (!sctp_assoc_lookup_laddr(asoc, laddr))
814 break;
815
816 addr_buf += af->sockaddr_len;
817 }
818 if (i < addrcnt)
819 continue;
820
821 /* Find one address in the association's bind address list
822 * that is not in the packed array of addresses. This is to
823 * make sure that we do not delete all the addresses in the
824 * association.
825 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 bp = &asoc->base.bind_addr;
827 laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs,
828 addrcnt, sp);
Michio Honda8a07eb02011-04-26 20:19:36 +0900829 if ((laddr == NULL) && (addrcnt == 1)) {
830 if (asoc->asconf_addr_del_pending)
831 continue;
832 asoc->asconf_addr_del_pending =
833 kzalloc(sizeof(union sctp_addr), GFP_ATOMIC);
Michio Honda6d65e5e2011-06-10 16:42:14 +0900834 if (asoc->asconf_addr_del_pending == NULL) {
835 retval = -ENOMEM;
836 goto out;
837 }
Michio Honda8a07eb02011-04-26 20:19:36 +0900838 asoc->asconf_addr_del_pending->sa.sa_family =
839 addrs->sa_family;
840 asoc->asconf_addr_del_pending->v4.sin_port =
841 htons(bp->port);
842 if (addrs->sa_family == AF_INET) {
843 struct sockaddr_in *sin;
844
845 sin = (struct sockaddr_in *)addrs;
846 asoc->asconf_addr_del_pending->v4.sin_addr.s_addr = sin->sin_addr.s_addr;
847 } else if (addrs->sa_family == AF_INET6) {
848 struct sockaddr_in6 *sin6;
849
850 sin6 = (struct sockaddr_in6 *)addrs;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000851 asoc->asconf_addr_del_pending->v6.sin6_addr = sin6->sin6_addr;
Michio Honda8a07eb02011-04-26 20:19:36 +0900852 }
Daniel Borkmannbb333812013-06-28 19:49:40 +0200853
854 pr_debug("%s: keep the last address asoc:%p %pISc at %p\n",
855 __func__, asoc, &asoc->asconf_addr_del_pending->sa,
856 asoc->asconf_addr_del_pending);
857
Michio Honda8a07eb02011-04-26 20:19:36 +0900858 asoc->src_out_of_asoc_ok = 1;
859 stored = 1;
860 goto skip_mkasconf;
861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Daniel Borkmann88362ad2013-09-07 20:51:21 +0200863 if (laddr == NULL)
864 return -EINVAL;
865
Vlad Yasevich559cf712007-09-16 16:03:28 -0700866 /* We do not need RCU protection throughout this loop
867 * because this is done under a socket lock from the
868 * setsockopt call.
869 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 chunk = sctp_make_asconf_update_ip(asoc, laddr, addrs, addrcnt,
871 SCTP_PARAM_DEL_IP);
872 if (!chunk) {
873 retval = -ENOMEM;
874 goto out;
875 }
876
Michio Honda8a07eb02011-04-26 20:19:36 +0900877skip_mkasconf:
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700878 /* Reset use_as_src flag for the addresses in the bind address
879 * list that are to be deleted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700881 addr_buf = addrs;
882 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000883 laddr = addr_buf;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700884 af = sctp_get_af_specific(laddr->v4.sin_family);
Vlad Yasevich559cf712007-09-16 16:03:28 -0700885 list_for_each_entry(saddr, &bp->address_list, list) {
Al Viro5f242a12006-11-20 17:05:23 -0800886 if (sctp_cmp_addr_exact(&saddr->a, laddr))
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800887 saddr->state = SCTP_ADDR_DEL;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700888 }
889 addr_buf += af->sockaddr_len;
890 }
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700891
892 /* Update the route and saddr entries for all the transports
893 * as some of the addresses in the bind address list are
894 * about to be deleted and cannot be used as source addresses.
895 */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700896 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
897 transports) {
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700898 sctp_transport_route(transport, NULL,
899 sctp_sk(asoc->base.sk));
900 }
901
Michio Honda8a07eb02011-04-26 20:19:36 +0900902 if (stored)
903 /* We don't need to transmit ASCONF */
904 continue;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700905 retval = sctp_send_asconf(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 }
907out:
908 return retval;
909}
910
Michio Honda9f7d6532011-04-26 19:32:51 +0900911/* set addr events to assocs in the endpoint. ep and addr_wq must be locked */
912int sctp_asconf_mgmt(struct sctp_sock *sp, struct sctp_sockaddr_entry *addrw)
913{
914 struct sock *sk = sctp_opt2sk(sp);
915 union sctp_addr *addr;
916 struct sctp_af *af;
917
918 /* It is safe to write port space in caller. */
919 addr = &addrw->a;
920 addr->v4.sin_port = htons(sp->ep->base.bind_addr.port);
921 af = sctp_get_af_specific(addr->sa.sa_family);
922 if (!af)
923 return -EINVAL;
924 if (sctp_verify_addr(sk, addr, af->sockaddr_len))
925 return -EINVAL;
926
927 if (addrw->state == SCTP_ADDR_NEW)
928 return sctp_send_asconf_add_ip(sk, (struct sockaddr *)addr, 1);
929 else
930 return sctp_send_asconf_del_ip(sk, (struct sockaddr *)addr, 1);
931}
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933/* Helper for tunneling sctp_bindx() requests through sctp_setsockopt()
934 *
935 * API 8.1
936 * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt,
937 * int flags);
938 *
939 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
940 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
941 * or IPv6 addresses.
942 *
943 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
944 * Section 3.1.2 for this usage.
945 *
946 * addrs is a pointer to an array of one or more socket addresses. Each
947 * address is contained in its appropriate structure (i.e. struct
948 * sockaddr_in or struct sockaddr_in6) the family of the address type
Ville Nuorvala23c435f2006-10-16 22:08:28 -0700949 * must be used to distinguish the address length (note that this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 * representation is termed a "packed array" of addresses). The caller
951 * specifies the number of addresses in the array with addrcnt.
952 *
953 * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns
954 * -1, and sets errno to the appropriate error code.
955 *
956 * For SCTP, the port given in each socket address must be the same, or
957 * sctp_bindx() will fail, setting errno to EINVAL.
958 *
959 * The flags parameter is formed from the bitwise OR of zero or more of
960 * the following currently defined flags:
961 *
962 * SCTP_BINDX_ADD_ADDR
963 *
964 * SCTP_BINDX_REM_ADDR
965 *
966 * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the
967 * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given
968 * addresses from the association. The two flags are mutually exclusive;
969 * if both are given, sctp_bindx() will fail with EINVAL. A caller may
970 * not remove all addresses from an association; sctp_bindx() will
971 * reject such an attempt with EINVAL.
972 *
973 * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate
974 * additional addresses with an endpoint after calling bind(). Or use
975 * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening
976 * socket is associated with so that no new association accepted will be
977 * associated with those addresses. If the endpoint supports dynamic
978 * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a
979 * endpoint to send the appropriate message to the peer to change the
980 * peers address lists.
981 *
982 * Adding and removing addresses from a connected association is
983 * optional functionality. Implementations that do not support this
984 * functionality should return EOPNOTSUPP.
985 *
986 * Basically do nothing but copying the addresses from user to kernel
987 * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk.
Frank Filz3f7a87d2005-06-20 13:14:57 -0700988 * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
989 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
992 * it.
993 *
994 * sk The sk of the socket
995 * addrs The pointer to the addresses in user land
996 * addrssize Size of the addrs buffer
997 * op Operation to perform (add or remove, see the flags of
998 * sctp_bindx)
999 *
1000 * Returns 0 if ok, <0 errno code on error.
1001 */
wangweidong26ac8e52013-12-23 12:16:51 +08001002static int sctp_setsockopt_bindx(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001003 struct sockaddr __user *addrs,
1004 int addrs_size, int op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
1006 struct sockaddr *kaddrs;
1007 int err;
1008 int addrcnt = 0;
1009 int walk_size = 0;
1010 struct sockaddr *sa_addr;
1011 void *addr_buf;
1012 struct sctp_af *af;
1013
Daniel Borkmannbb333812013-06-28 19:49:40 +02001014 pr_debug("%s: sk:%p addrs:%p addrs_size:%d opt:%d\n",
1015 __func__, sk, addrs, addrs_size, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
1017 if (unlikely(addrs_size <= 0))
1018 return -EINVAL;
1019
Al Viroc981f252018-01-07 13:19:09 -05001020 kaddrs = vmemdup_user(addrs, addrs_size);
1021 if (unlikely(IS_ERR(kaddrs)))
1022 return PTR_ERR(kaddrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001024 /* Walk through the addrs buffer and count the number of addresses. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 addr_buf = kaddrs;
1026 while (walk_size < addrs_size) {
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001027 if (walk_size + sizeof(sa_family_t) > addrs_size) {
Al Viroc981f252018-01-07 13:19:09 -05001028 kvfree(kaddrs);
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001029 return -EINVAL;
1030 }
1031
Joe Perchesea110732011-06-13 16:21:26 +00001032 sa_addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 af = sctp_get_af_specific(sa_addr->sa_family);
1034
1035 /* If the address family is not supported or if this address
1036 * causes the address buffer to overflow return EINVAL.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001037 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
Al Viroc981f252018-01-07 13:19:09 -05001039 kvfree(kaddrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 return -EINVAL;
1041 }
1042 addrcnt++;
1043 addr_buf += af->sockaddr_len;
1044 walk_size += af->sockaddr_len;
1045 }
1046
1047 /* Do the work. */
1048 switch (op) {
1049 case SCTP_BINDX_ADD_ADDR:
Richard Haines2277c7c2018-02-13 20:56:24 +00001050 /* Allow security module to validate bindx addresses. */
1051 err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_BINDX_ADD,
1052 (struct sockaddr *)kaddrs,
1053 addrs_size);
1054 if (err)
1055 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 err = sctp_bindx_add(sk, kaddrs, addrcnt);
1057 if (err)
1058 goto out;
1059 err = sctp_send_asconf_add_ip(sk, kaddrs, addrcnt);
1060 break;
1061
1062 case SCTP_BINDX_REM_ADDR:
1063 err = sctp_bindx_rem(sk, kaddrs, addrcnt);
1064 if (err)
1065 goto out;
1066 err = sctp_send_asconf_del_ip(sk, kaddrs, addrcnt);
1067 break;
1068
1069 default:
1070 err = -EINVAL;
1071 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074out:
Al Viroc981f252018-01-07 13:19:09 -05001075 kvfree(kaddrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 return err;
1078}
1079
Frank Filz3f7a87d2005-06-20 13:14:57 -07001080/* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size)
1081 *
1082 * Common routine for handling connect() and sctp_connectx().
1083 * Connect will come in with just a single address.
1084 */
wangweidong26ac8e52013-12-23 12:16:51 +08001085static int __sctp_connect(struct sock *sk,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001086 struct sockaddr *kaddrs,
Xin Long644fbde2018-05-20 16:39:10 +08001087 int addrs_size, int flags,
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001088 sctp_assoc_t *assoc_id)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001089{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001090 struct net *net = sock_net(sk);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001091 struct sctp_sock *sp;
1092 struct sctp_endpoint *ep;
1093 struct sctp_association *asoc = NULL;
1094 struct sctp_association *asoc2;
1095 struct sctp_transport *transport;
1096 union sctp_addr to;
Xin Long1c662012017-08-05 19:59:54 +08001097 enum sctp_scope scope;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001098 long timeo;
1099 int err = 0;
1100 int addrcnt = 0;
1101 int walk_size = 0;
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001102 union sctp_addr *sa_addr = NULL;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001103 void *addr_buf;
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001104 unsigned short port;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001105
1106 sp = sctp_sk(sk);
1107 ep = sp->ep;
1108
1109 /* connect() cannot be done on a socket that is already in ESTABLISHED
1110 * state - UDP-style peeled off socket or a TCP-style socket that
1111 * is already connected.
1112 * It cannot be done even on a TCP-style listening socket.
1113 */
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -03001114 if (sctp_sstate(sk, ESTABLISHED) || sctp_sstate(sk, CLOSING) ||
Frank Filz3f7a87d2005-06-20 13:14:57 -07001115 (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))) {
1116 err = -EISCONN;
1117 goto out_free;
1118 }
1119
1120 /* Walk through the addrs buffer and count the number of addresses. */
1121 addr_buf = kaddrs;
1122 while (walk_size < addrs_size) {
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001123 struct sctp_af *af;
1124
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001125 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1126 err = -EINVAL;
1127 goto out_free;
1128 }
1129
Joe Perchesea110732011-06-13 16:21:26 +00001130 sa_addr = addr_buf;
Al Viro4bdf4b52006-11-20 17:10:20 -08001131 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001132
1133 /* If the address family is not supported or if this address
1134 * causes the address buffer to overflow return EINVAL.
1135 */
1136 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1137 err = -EINVAL;
1138 goto out_free;
1139 }
1140
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001141 port = ntohs(sa_addr->v4.sin_port);
1142
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001143 /* Save current address so we can work with it */
1144 memcpy(&to, sa_addr, af->sockaddr_len);
1145
1146 err = sctp_verify_addr(sk, &to, af->sockaddr_len);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001147 if (err)
1148 goto out_free;
1149
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001150 /* Make sure the destination port is correctly set
1151 * in all addresses.
1152 */
Wei Yongjun524fba62013-04-03 03:02:28 +00001153 if (asoc && asoc->peer.port && asoc->peer.port != port) {
1154 err = -EINVAL;
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001155 goto out_free;
Wei Yongjun524fba62013-04-03 03:02:28 +00001156 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001157
1158 /* Check if there already is a matching association on the
1159 * endpoint (other than the one created here).
1160 */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001161 asoc2 = sctp_endpoint_lookup_assoc(ep, &to, &transport);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001162 if (asoc2 && asoc2 != asoc) {
1163 if (asoc2->state >= SCTP_STATE_ESTABLISHED)
1164 err = -EISCONN;
1165 else
1166 err = -EALREADY;
1167 goto out_free;
1168 }
1169
1170 /* If we could not find a matching association on the endpoint,
1171 * make sure that there is no peeled-off association matching
1172 * the peer address even on another socket.
1173 */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001174 if (sctp_endpoint_is_peeled_off(ep, &to)) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07001175 err = -EADDRNOTAVAIL;
1176 goto out_free;
1177 }
1178
1179 if (!asoc) {
1180 /* If a bind() or sctp_bindx() is not called prior to
1181 * an sctp_connectx() call, the system picks an
1182 * ephemeral port and will choose an address set
1183 * equivalent to binding with a wildcard address.
1184 */
1185 if (!ep->base.bind_addr.port) {
1186 if (sctp_autobind(sk)) {
1187 err = -EAGAIN;
1188 goto out_free;
1189 }
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001190 } else {
1191 /*
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001192 * If an unprivileged user inherits a 1-many
1193 * style socket with open associations on a
1194 * privileged port, it MAY be permitted to
1195 * accept new associations, but it SHOULD NOT
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001196 * be permitted to open new associations.
1197 */
Krister Johansen4548b682017-01-20 17:49:11 -08001198 if (ep->base.bind_addr.port <
1199 inet_prot_sock(net) &&
1200 !ns_capable(net->user_ns,
1201 CAP_NET_BIND_SERVICE)) {
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001202 err = -EACCES;
1203 goto out_free;
1204 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001205 }
1206
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001207 scope = sctp_scope(&to);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001208 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1209 if (!asoc) {
1210 err = -ENOMEM;
1211 goto out_free;
1212 }
Vlad Yasevich409b95a2009-11-10 08:57:34 +00001213
1214 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope,
1215 GFP_KERNEL);
1216 if (err < 0) {
1217 goto out_free;
1218 }
1219
Frank Filz3f7a87d2005-06-20 13:14:57 -07001220 }
1221
1222 /* Prime the peer's transport structures. */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001223 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001224 SCTP_UNKNOWN);
1225 if (!transport) {
1226 err = -ENOMEM;
1227 goto out_free;
1228 }
1229
1230 addrcnt++;
1231 addr_buf += af->sockaddr_len;
1232 walk_size += af->sockaddr_len;
1233 }
1234
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001235 /* In case the user of sctp_connectx() wants an association
1236 * id back, assign one now.
1237 */
1238 if (assoc_id) {
1239 err = sctp_assoc_set_id(asoc, GFP_KERNEL);
1240 if (err < 0)
1241 goto out_free;
1242 }
1243
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001244 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001245 if (err < 0) {
1246 goto out_free;
1247 }
1248
1249 /* Initialize sk's dport and daddr for getpeername() */
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001250 inet_sk(sk)->inet_dport = htons(asoc->peer.port);
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001251 sp->pf->to_sk_daddr(sa_addr, sk);
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07001252 sk->sk_err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001253
Xin Long644fbde2018-05-20 16:39:10 +08001254 timeo = sock_sndtimeo(sk, flags & O_NONBLOCK);
Vlad Yasevichf50f95c2007-07-03 12:47:40 -04001255
Marcelo Ricardo Leitner7233bc82016-11-03 17:03:41 -02001256 if (assoc_id)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001257 *assoc_id = asoc->assoc_id;
Richard Haines2277c7c2018-02-13 20:56:24 +00001258
Marcelo Ricardo Leitner7233bc82016-11-03 17:03:41 -02001259 err = sctp_wait_for_connect(asoc, &timeo);
1260 /* Note: the asoc may be freed after the return of
1261 * sctp_wait_for_connect.
1262 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07001263
1264 /* Don't free association on exit. */
1265 asoc = NULL;
1266
1267out_free:
Daniel Borkmannbb333812013-06-28 19:49:40 +02001268 pr_debug("%s: took out_free path with asoc:%p kaddrs:%p err:%d\n",
1269 __func__, asoc, kaddrs, err);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001270
Neil Horman2eebc1e2012-07-16 09:13:51 +00001271 if (asoc) {
1272 /* sctp_primitive_ASSOCIATE may have added this association
1273 * To the hash table, try to unhash it, just in case, its a noop
1274 * if it wasn't hashed so we're safe
1275 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07001276 sctp_association_free(asoc);
Neil Horman2eebc1e2012-07-16 09:13:51 +00001277 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001278 return err;
1279}
1280
1281/* Helper for tunneling sctp_connectx() requests through sctp_setsockopt()
1282 *
1283 * API 8.9
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001284 * int sctp_connectx(int sd, struct sockaddr *addrs, int addrcnt,
1285 * sctp_assoc_t *asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001286 *
1287 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
1288 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
1289 * or IPv6 addresses.
1290 *
1291 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
1292 * Section 3.1.2 for this usage.
1293 *
1294 * addrs is a pointer to an array of one or more socket addresses. Each
1295 * address is contained in its appropriate structure (i.e. struct
1296 * sockaddr_in or struct sockaddr_in6) the family of the address type
1297 * must be used to distengish the address length (note that this
1298 * representation is termed a "packed array" of addresses). The caller
1299 * specifies the number of addresses in the array with addrcnt.
1300 *
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001301 * On success, sctp_connectx() returns 0. It also sets the assoc_id to
1302 * the association id of the new association. On failure, sctp_connectx()
1303 * returns -1, and sets errno to the appropriate error code. The assoc_id
1304 * is not touched by the kernel.
Frank Filz3f7a87d2005-06-20 13:14:57 -07001305 *
1306 * For SCTP, the port given in each socket address must be the same, or
1307 * sctp_connectx() will fail, setting errno to EINVAL.
1308 *
1309 * An application can use sctp_connectx to initiate an association with
1310 * an endpoint that is multi-homed. Much like sctp_bindx() this call
1311 * allows a caller to specify multiple addresses at which a peer can be
1312 * reached. The way the SCTP stack uses the list of addresses to set up
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001313 * the association is implementation dependent. This function only
Frank Filz3f7a87d2005-06-20 13:14:57 -07001314 * specifies that the stack will try to make use of all the addresses in
1315 * the list when needed.
1316 *
1317 * Note that the list of addresses passed in is only used for setting up
1318 * the association. It does not necessarily equal the set of addresses
1319 * the peer uses for the resulting association. If the caller wants to
1320 * find out the set of peer addresses, it must use sctp_getpaddrs() to
1321 * retrieve them after the association has been set up.
1322 *
1323 * Basically do nothing but copying the addresses from user to kernel
1324 * land and invoking either sctp_connectx(). This is used for tunneling
1325 * the sctp_connectx() request through sctp_setsockopt() from userspace.
1326 *
Frank Filz3f7a87d2005-06-20 13:14:57 -07001327 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
1328 * it.
1329 *
1330 * sk The sk of the socket
1331 * addrs The pointer to the addresses in user land
1332 * addrssize Size of the addrs buffer
1333 *
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001334 * Returns >=0 if ok, <0 errno code on error.
Frank Filz3f7a87d2005-06-20 13:14:57 -07001335 */
wangweidong26ac8e52013-12-23 12:16:51 +08001336static int __sctp_setsockopt_connectx(struct sock *sk,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001337 struct sockaddr __user *addrs,
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001338 int addrs_size,
1339 sctp_assoc_t *assoc_id)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001340{
Frank Filz3f7a87d2005-06-20 13:14:57 -07001341 struct sockaddr *kaddrs;
Xin Long644fbde2018-05-20 16:39:10 +08001342 int err = 0, flags = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001343
Daniel Borkmannbb333812013-06-28 19:49:40 +02001344 pr_debug("%s: sk:%p addrs:%p addrs_size:%d\n",
1345 __func__, sk, addrs, addrs_size);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001346
1347 if (unlikely(addrs_size <= 0))
1348 return -EINVAL;
1349
Al Viroc981f252018-01-07 13:19:09 -05001350 kaddrs = vmemdup_user(addrs, addrs_size);
1351 if (unlikely(IS_ERR(kaddrs)))
1352 return PTR_ERR(kaddrs);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001353
Richard Haines2277c7c2018-02-13 20:56:24 +00001354 /* Allow security module to validate connectx addresses. */
1355 err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_CONNECTX,
1356 (struct sockaddr *)kaddrs,
1357 addrs_size);
1358 if (err)
1359 goto out_free;
1360
Xin Long644fbde2018-05-20 16:39:10 +08001361 /* in-kernel sockets don't generally have a file allocated to them
1362 * if all they do is call sock_create_kern().
1363 */
1364 if (sk->sk_socket->file)
1365 flags = sk->sk_socket->file->f_flags;
1366
1367 err = __sctp_connect(sk, kaddrs, addrs_size, flags, assoc_id);
Richard Haines2277c7c2018-02-13 20:56:24 +00001368
1369out_free:
Al Viroc981f252018-01-07 13:19:09 -05001370 kvfree(kaddrs);
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001371
Frank Filz3f7a87d2005-06-20 13:14:57 -07001372 return err;
1373}
1374
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001375/*
1376 * This is an older interface. It's kept for backward compatibility
1377 * to the option that doesn't provide association id.
1378 */
wangweidong26ac8e52013-12-23 12:16:51 +08001379static int sctp_setsockopt_connectx_old(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001380 struct sockaddr __user *addrs,
1381 int addrs_size)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001382{
1383 return __sctp_setsockopt_connectx(sk, addrs, addrs_size, NULL);
1384}
1385
1386/*
1387 * New interface for the API. The since the API is done with a socket
1388 * option, to make it simple we feed back the association id is as a return
1389 * indication to the call. Error is always negative and association id is
1390 * always positive.
1391 */
wangweidong26ac8e52013-12-23 12:16:51 +08001392static int sctp_setsockopt_connectx(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001393 struct sockaddr __user *addrs,
1394 int addrs_size)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001395{
1396 sctp_assoc_t assoc_id = 0;
1397 int err = 0;
1398
1399 err = __sctp_setsockopt_connectx(sk, addrs, addrs_size, &assoc_id);
1400
1401 if (err)
1402 return err;
1403 else
1404 return assoc_id;
1405}
1406
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001407/*
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001408 * New (hopefully final) interface for the API.
1409 * We use the sctp_getaddrs_old structure so that use-space library
Daniel Borkmannffd59392014-02-17 12:11:11 +01001410 * can avoid any unnecessary allocations. The only different part
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001411 * is that we store the actual length of the address buffer into the
Daniel Borkmannffd59392014-02-17 12:11:11 +01001412 * addrs_num structure member. That way we can re-use the existing
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001413 * code.
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001414 */
Daniel Borkmannffd59392014-02-17 12:11:11 +01001415#ifdef CONFIG_COMPAT
1416struct compat_sctp_getaddrs_old {
1417 sctp_assoc_t assoc_id;
1418 s32 addr_num;
1419 compat_uptr_t addrs; /* struct sockaddr * */
1420};
1421#endif
1422
wangweidong26ac8e52013-12-23 12:16:51 +08001423static int sctp_getsockopt_connectx3(struct sock *sk, int len,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001424 char __user *optval,
1425 int __user *optlen)
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001426{
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001427 struct sctp_getaddrs_old param;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001428 sctp_assoc_t assoc_id = 0;
1429 int err = 0;
1430
Daniel Borkmannffd59392014-02-17 12:11:11 +01001431#ifdef CONFIG_COMPAT
Andy Lutomirski96c0e0a2016-03-22 14:25:07 -07001432 if (in_compat_syscall()) {
Daniel Borkmannffd59392014-02-17 12:11:11 +01001433 struct compat_sctp_getaddrs_old param32;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001434
Daniel Borkmannffd59392014-02-17 12:11:11 +01001435 if (len < sizeof(param32))
1436 return -EINVAL;
1437 if (copy_from_user(&param32, optval, sizeof(param32)))
1438 return -EFAULT;
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001439
Daniel Borkmannffd59392014-02-17 12:11:11 +01001440 param.assoc_id = param32.assoc_id;
1441 param.addr_num = param32.addr_num;
1442 param.addrs = compat_ptr(param32.addrs);
1443 } else
1444#endif
1445 {
1446 if (len < sizeof(param))
1447 return -EINVAL;
1448 if (copy_from_user(&param, optval, sizeof(param)))
1449 return -EFAULT;
1450 }
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001451
Daniel Borkmannffd59392014-02-17 12:11:11 +01001452 err = __sctp_setsockopt_connectx(sk, (struct sockaddr __user *)
1453 param.addrs, param.addr_num,
1454 &assoc_id);
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001455 if (err == 0 || err == -EINPROGRESS) {
1456 if (copy_to_user(optval, &assoc_id, sizeof(assoc_id)))
1457 return -EFAULT;
1458 if (put_user(sizeof(assoc_id), optlen))
1459 return -EFAULT;
1460 }
1461
1462 return err;
1463}
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465/* API 3.1.4 close() - UDP Style Syntax
1466 * Applications use close() to perform graceful shutdown (as described in
1467 * Section 10.1 of [SCTP]) on ALL the associations currently represented
1468 * by a UDP-style socket.
1469 *
1470 * The syntax is
1471 *
1472 * ret = close(int sd);
1473 *
1474 * sd - the socket descriptor of the associations to be closed.
1475 *
1476 * To gracefully shutdown a specific association represented by the
1477 * UDP-style socket, an application should use the sendmsg() call,
1478 * passing no user data, but including the appropriate flag in the
1479 * ancillary data (see Section xxxx).
1480 *
1481 * If sd in the close() call is a branched-off socket representing only
1482 * one association, the shutdown is performed on that association only.
1483 *
1484 * 4.1.6 close() - TCP Style Syntax
1485 *
1486 * Applications use close() to gracefully close down an association.
1487 *
1488 * The syntax is:
1489 *
1490 * int close(int sd);
1491 *
1492 * sd - the socket descriptor of the association to be closed.
1493 *
1494 * After an application calls close() on a socket descriptor, no further
1495 * socket operations will succeed on that descriptor.
1496 *
1497 * API 7.1.4 SO_LINGER
1498 *
1499 * An application using the TCP-style socket can use this option to
1500 * perform the SCTP ABORT primitive. The linger option structure is:
1501 *
1502 * struct linger {
1503 * int l_onoff; // option on/off
1504 * int l_linger; // linger time
1505 * };
1506 *
1507 * To enable the option, set l_onoff to 1. If the l_linger value is set
1508 * to 0, calling close() is the same as the ABORT primitive. If the
1509 * value is set to a negative value, the setsockopt() call will return
1510 * an error. If the value is set to a positive value linger_time, the
1511 * close() can be blocked for at most linger_time ms. If the graceful
1512 * shutdown phase does not finish during this period, close() will
1513 * return but the graceful shutdown phase continues in the system.
1514 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02001515static void sctp_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001517 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 struct sctp_endpoint *ep;
1519 struct sctp_association *asoc;
1520 struct list_head *pos, *temp;
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001521 unsigned int data_was_unread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Daniel Borkmannbb333812013-06-28 19:49:40 +02001523 pr_debug("%s: sk:%p, timeout:%ld\n", __func__, sk, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Xin Long6dfe4b92017-06-10 14:56:56 +08001525 lock_sock_nested(sk, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 sk->sk_shutdown = SHUTDOWN_MASK;
Yafang Shaocbabf462017-12-20 11:12:54 +08001527 inet_sk_set_state(sk, SCTP_SS_CLOSING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
1529 ep = sctp_sk(sk)->ep;
1530
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001531 /* Clean up any skbs sitting on the receive queue. */
1532 data_was_unread = sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1533 data_was_unread += sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1534
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07001535 /* Walk all associations on an endpoint. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 list_for_each_safe(pos, temp, &ep->asocs) {
1537 asoc = list_entry(pos, struct sctp_association, asocs);
1538
1539 if (sctp_style(sk, TCP)) {
1540 /* A closed association can still be in the list if
1541 * it belongs to a TCP-style listening socket that is
1542 * not yet accepted. If so, free it. If not, send an
1543 * ABORT or SHUTDOWN based on the linger options.
1544 */
1545 if (sctp_state(asoc, CLOSED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 sctp_association_free(asoc);
Vladislav Yasevichb89498a2006-05-19 14:32:06 -07001547 continue;
1548 }
1549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001551 if (data_was_unread || !skb_queue_empty(&asoc->ulpq.lobby) ||
1552 !skb_queue_empty(&asoc->ulpq.reasm) ||
Xin Long13228232017-12-08 21:04:09 +08001553 !skb_queue_empty(&asoc->ulpq.reasm_uo) ||
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001554 (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) {
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001555 struct sctp_chunk *chunk;
1556
1557 chunk = sctp_make_abort_user(asoc, NULL, 0);
Xin Long068d8bd2015-12-29 17:49:25 +08001558 sctp_primitive_ABORT(net, asoc, chunk);
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001559 } else
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001560 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 }
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 /* On a TCP-style socket, block for at most linger_time if set. */
1564 if (sctp_style(sk, TCP) && timeout)
1565 sctp_wait_for_close(sk, timeout);
1566
1567 /* This will run the backlog queue. */
wangweidong048ed4b2014-01-21 15:44:11 +08001568 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
1570 /* Supposedly, no process has access to the socket, but
1571 * the net layers still may.
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001572 * Also, sctp_destroy_sock() needs to be called with addr_wq_lock
1573 * held and that should be grabbed before socket lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 */
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001575 spin_lock_bh(&net->sctp.addr_wq_lock);
Xin Long6dfe4b92017-06-10 14:56:56 +08001576 bh_lock_sock_nested(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 /* Hold the sock, since sk_common_release() will put sock_put()
1579 * and we have just a little more cleanup.
1580 */
1581 sock_hold(sk);
1582 sk_common_release(sk);
1583
wangweidong5bc1d1b2014-01-21 15:44:12 +08001584 bh_unlock_sock(sk);
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001585 spin_unlock_bh(&net->sctp.addr_wq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
1587 sock_put(sk);
1588
1589 SCTP_DBG_OBJCNT_DEC(sock);
1590}
1591
1592/* Handle EPIPE error. */
1593static int sctp_error(struct sock *sk, int flags, int err)
1594{
1595 if (err == -EPIPE)
1596 err = sock_error(sk) ? : -EPIPE;
1597 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1598 send_sig(SIGPIPE, current, 0);
1599 return err;
1600}
1601
1602/* API 3.1.3 sendmsg() - UDP Style Syntax
1603 *
1604 * An application uses sendmsg() and recvmsg() calls to transmit data to
1605 * and receive data from its peer.
1606 *
1607 * ssize_t sendmsg(int socket, const struct msghdr *message,
1608 * int flags);
1609 *
1610 * socket - the socket descriptor of the endpoint.
1611 * message - pointer to the msghdr structure which contains a single
1612 * user message and possibly some ancillary data.
1613 *
1614 * See Section 5 for complete description of the data
1615 * structures.
1616 *
1617 * flags - flags sent or received with the user message, see Section
1618 * 5 for complete description of the flags.
1619 *
1620 * Note: This function could use a rewrite especially when explicit
1621 * connect support comes in.
1622 */
1623/* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */
1624
Xin Longa05437a2017-08-11 10:23:48 +08001625static int sctp_msghdr_parse(const struct msghdr *msg,
1626 struct sctp_cmsgs *cmsgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Xin Long204f8172018-03-01 23:05:14 +08001628static int sctp_sendmsg_parse(struct sock *sk, struct sctp_cmsgs *cmsgs,
1629 struct sctp_sndrcvinfo *srinfo,
1630 const struct msghdr *msg, size_t msg_len)
1631{
1632 __u16 sflags;
1633 int err;
1634
1635 if (sctp_sstate(sk, LISTENING) && sctp_style(sk, TCP))
1636 return -EPIPE;
1637
1638 if (msg_len > sk->sk_sndbuf)
1639 return -EMSGSIZE;
1640
1641 memset(cmsgs, 0, sizeof(*cmsgs));
1642 err = sctp_msghdr_parse(msg, cmsgs);
1643 if (err) {
1644 pr_debug("%s: msghdr parse err:%x\n", __func__, err);
1645 return err;
1646 }
1647
1648 memset(srinfo, 0, sizeof(*srinfo));
1649 if (cmsgs->srinfo) {
1650 srinfo->sinfo_stream = cmsgs->srinfo->sinfo_stream;
1651 srinfo->sinfo_flags = cmsgs->srinfo->sinfo_flags;
1652 srinfo->sinfo_ppid = cmsgs->srinfo->sinfo_ppid;
1653 srinfo->sinfo_context = cmsgs->srinfo->sinfo_context;
1654 srinfo->sinfo_assoc_id = cmsgs->srinfo->sinfo_assoc_id;
1655 srinfo->sinfo_timetolive = cmsgs->srinfo->sinfo_timetolive;
1656 }
1657
1658 if (cmsgs->sinfo) {
1659 srinfo->sinfo_stream = cmsgs->sinfo->snd_sid;
1660 srinfo->sinfo_flags = cmsgs->sinfo->snd_flags;
1661 srinfo->sinfo_ppid = cmsgs->sinfo->snd_ppid;
1662 srinfo->sinfo_context = cmsgs->sinfo->snd_context;
1663 srinfo->sinfo_assoc_id = cmsgs->sinfo->snd_assoc_id;
1664 }
1665
Xin Longed63afb2018-03-05 20:44:18 +08001666 if (cmsgs->prinfo) {
1667 srinfo->sinfo_timetolive = cmsgs->prinfo->pr_value;
1668 SCTP_PR_SET_POLICY(srinfo->sinfo_flags,
1669 cmsgs->prinfo->pr_policy);
1670 }
1671
Xin Long204f8172018-03-01 23:05:14 +08001672 sflags = srinfo->sinfo_flags;
1673 if (!sflags && msg_len)
1674 return 0;
1675
1676 if (sctp_style(sk, TCP) && (sflags & (SCTP_EOF | SCTP_ABORT)))
1677 return -EINVAL;
1678
1679 if (((sflags & SCTP_EOF) && msg_len > 0) ||
1680 (!(sflags & (SCTP_EOF | SCTP_ABORT)) && msg_len == 0))
1681 return -EINVAL;
1682
1683 if ((sflags & SCTP_ADDR_OVER) && !msg->msg_name)
1684 return -EINVAL;
1685
1686 return 0;
1687}
1688
Xin Long2bfd80f2018-03-01 23:05:11 +08001689static int sctp_sendmsg_new_asoc(struct sock *sk, __u16 sflags,
1690 struct sctp_cmsgs *cmsgs,
1691 union sctp_addr *daddr,
1692 struct sctp_transport **tp)
1693{
1694 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
1695 struct net *net = sock_net(sk);
1696 struct sctp_association *asoc;
1697 enum sctp_scope scope;
Xin Long2c0dbaa2018-03-05 20:44:19 +08001698 struct cmsghdr *cmsg;
Xin Long4be41392018-07-02 18:21:14 +08001699 __be32 flowinfo = 0;
Linus Torvalds9eda2d22018-04-06 15:39:26 -07001700 struct sctp_af *af;
Wei Yongjund98985d2018-03-13 03:03:30 +00001701 int err;
Xin Long2bfd80f2018-03-01 23:05:11 +08001702
1703 *tp = NULL;
1704
1705 if (sflags & (SCTP_EOF | SCTP_ABORT))
1706 return -EINVAL;
1707
1708 if (sctp_style(sk, TCP) && (sctp_sstate(sk, ESTABLISHED) ||
1709 sctp_sstate(sk, CLOSING)))
1710 return -EADDRNOTAVAIL;
1711
1712 if (sctp_endpoint_is_peeled_off(ep, daddr))
1713 return -EADDRNOTAVAIL;
1714
1715 if (!ep->base.bind_addr.port) {
1716 if (sctp_autobind(sk))
1717 return -EAGAIN;
1718 } else {
1719 if (ep->base.bind_addr.port < inet_prot_sock(net) &&
1720 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
1721 return -EACCES;
1722 }
1723
1724 scope = sctp_scope(daddr);
1725
Linus Torvalds9eda2d22018-04-06 15:39:26 -07001726 /* Label connection socket for first association 1-to-many
1727 * style for client sequence socket()->sendmsg(). This
1728 * needs to be done before sctp_assoc_add_peer() as that will
1729 * set up the initial packet that needs to account for any
1730 * security ip options (CIPSO/CALIPSO) added to the packet.
1731 */
1732 af = sctp_get_af_specific(daddr->sa.sa_family);
1733 if (!af)
1734 return -EINVAL;
1735 err = security_sctp_bind_connect(sk, SCTP_SENDMSG_CONNECT,
1736 (struct sockaddr *)daddr,
1737 af->sockaddr_len);
1738 if (err < 0)
1739 return err;
1740
Xin Long2bfd80f2018-03-01 23:05:11 +08001741 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1742 if (!asoc)
1743 return -ENOMEM;
1744
1745 if (sctp_assoc_set_bind_addr_from_ep(asoc, scope, GFP_KERNEL) < 0) {
1746 err = -ENOMEM;
1747 goto free;
1748 }
1749
1750 if (cmsgs->init) {
1751 struct sctp_initmsg *init = cmsgs->init;
1752
1753 if (init->sinit_num_ostreams) {
1754 __u16 outcnt = init->sinit_num_ostreams;
1755
1756 asoc->c.sinit_num_ostreams = outcnt;
1757 /* outcnt has been changed, need to re-init stream */
1758 err = sctp_stream_init(&asoc->stream, outcnt, 0,
1759 GFP_KERNEL);
1760 if (err)
1761 goto free;
1762 }
1763
1764 if (init->sinit_max_instreams)
1765 asoc->c.sinit_max_instreams = init->sinit_max_instreams;
1766
1767 if (init->sinit_max_attempts)
1768 asoc->max_init_attempts = init->sinit_max_attempts;
1769
1770 if (init->sinit_max_init_timeo)
1771 asoc->max_init_timeo =
1772 msecs_to_jiffies(init->sinit_max_init_timeo);
1773 }
1774
1775 *tp = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL, SCTP_UNKNOWN);
1776 if (!*tp) {
1777 err = -ENOMEM;
1778 goto free;
1779 }
1780
Xin Long2c0dbaa2018-03-05 20:44:19 +08001781 if (!cmsgs->addrs_msg)
1782 return 0;
1783
Xin Long4be41392018-07-02 18:21:14 +08001784 if (daddr->sa.sa_family == AF_INET6)
1785 flowinfo = daddr->v6.sin6_flowinfo;
1786
Xin Long2c0dbaa2018-03-05 20:44:19 +08001787 /* sendv addr list parse */
1788 for_each_cmsghdr(cmsg, cmsgs->addrs_msg) {
1789 struct sctp_transport *transport;
1790 struct sctp_association *old;
1791 union sctp_addr _daddr;
1792 int dlen;
1793
1794 if (cmsg->cmsg_level != IPPROTO_SCTP ||
1795 (cmsg->cmsg_type != SCTP_DSTADDRV4 &&
1796 cmsg->cmsg_type != SCTP_DSTADDRV6))
1797 continue;
1798
1799 daddr = &_daddr;
1800 memset(daddr, 0, sizeof(*daddr));
1801 dlen = cmsg->cmsg_len - sizeof(struct cmsghdr);
1802 if (cmsg->cmsg_type == SCTP_DSTADDRV4) {
Wei Yongjund98985d2018-03-13 03:03:30 +00001803 if (dlen < sizeof(struct in_addr)) {
1804 err = -EINVAL;
Xin Long2c0dbaa2018-03-05 20:44:19 +08001805 goto free;
Wei Yongjund98985d2018-03-13 03:03:30 +00001806 }
Xin Long2c0dbaa2018-03-05 20:44:19 +08001807
1808 dlen = sizeof(struct in_addr);
1809 daddr->v4.sin_family = AF_INET;
1810 daddr->v4.sin_port = htons(asoc->peer.port);
1811 memcpy(&daddr->v4.sin_addr, CMSG_DATA(cmsg), dlen);
1812 } else {
Wei Yongjund98985d2018-03-13 03:03:30 +00001813 if (dlen < sizeof(struct in6_addr)) {
1814 err = -EINVAL;
Xin Long2c0dbaa2018-03-05 20:44:19 +08001815 goto free;
Wei Yongjund98985d2018-03-13 03:03:30 +00001816 }
Xin Long2c0dbaa2018-03-05 20:44:19 +08001817
1818 dlen = sizeof(struct in6_addr);
Xin Long4be41392018-07-02 18:21:14 +08001819 daddr->v6.sin6_flowinfo = flowinfo;
Xin Long2c0dbaa2018-03-05 20:44:19 +08001820 daddr->v6.sin6_family = AF_INET6;
1821 daddr->v6.sin6_port = htons(asoc->peer.port);
1822 memcpy(&daddr->v6.sin6_addr, CMSG_DATA(cmsg), dlen);
1823 }
1824 err = sctp_verify_addr(sk, daddr, sizeof(*daddr));
1825 if (err)
1826 goto free;
1827
1828 old = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
1829 if (old && old != asoc) {
1830 if (old->state >= SCTP_STATE_ESTABLISHED)
1831 err = -EISCONN;
1832 else
1833 err = -EALREADY;
1834 goto free;
1835 }
1836
1837 if (sctp_endpoint_is_peeled_off(ep, daddr)) {
1838 err = -EADDRNOTAVAIL;
1839 goto free;
1840 }
1841
1842 transport = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL,
1843 SCTP_UNKNOWN);
1844 if (!transport) {
1845 err = -ENOMEM;
1846 goto free;
1847 }
1848 }
1849
Xin Long2bfd80f2018-03-01 23:05:11 +08001850 return 0;
1851
1852free:
1853 sctp_association_free(asoc);
1854 return err;
1855}
1856
Xin Longc2666de2018-03-01 23:05:12 +08001857static int sctp_sendmsg_check_sflags(struct sctp_association *asoc,
1858 __u16 sflags, struct msghdr *msg,
1859 size_t msg_len)
1860{
1861 struct sock *sk = asoc->base.sk;
1862 struct net *net = sock_net(sk);
1863
1864 if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP))
1865 return -EPIPE;
1866
Xin Long49102802018-03-05 20:44:20 +08001867 if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP) &&
1868 !sctp_state(asoc, ESTABLISHED))
1869 return 0;
1870
Xin Longc2666de2018-03-01 23:05:12 +08001871 if (sflags & SCTP_EOF) {
1872 pr_debug("%s: shutting down association:%p\n", __func__, asoc);
1873 sctp_primitive_SHUTDOWN(net, asoc, NULL);
1874
1875 return 0;
1876 }
1877
1878 if (sflags & SCTP_ABORT) {
1879 struct sctp_chunk *chunk;
1880
1881 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1882 if (!chunk)
1883 return -ENOMEM;
1884
1885 pr_debug("%s: aborting association:%p\n", __func__, asoc);
1886 sctp_primitive_ABORT(net, asoc, chunk);
1887
1888 return 0;
1889 }
1890
1891 return 1;
1892}
1893
Xin Longf84af332018-03-01 23:05:10 +08001894static int sctp_sendmsg_to_asoc(struct sctp_association *asoc,
1895 struct msghdr *msg, size_t msg_len,
1896 struct sctp_transport *transport,
1897 struct sctp_sndrcvinfo *sinfo)
1898{
1899 struct sock *sk = asoc->base.sk;
Marcelo Ricardo Leitner63d01332018-04-26 16:59:00 -03001900 struct sctp_sock *sp = sctp_sk(sk);
Xin Longf84af332018-03-01 23:05:10 +08001901 struct net *net = sock_net(sk);
1902 struct sctp_datamsg *datamsg;
1903 bool wait_connect = false;
1904 struct sctp_chunk *chunk;
1905 long timeo;
1906 int err;
1907
1908 if (sinfo->sinfo_stream >= asoc->stream.outcnt) {
1909 err = -EINVAL;
1910 goto err;
1911 }
1912
Konstantin Khorenko05364ca2018-08-10 20:11:42 +03001913 if (unlikely(!SCTP_SO(&asoc->stream, sinfo->sinfo_stream)->ext)) {
Xin Longf84af332018-03-01 23:05:10 +08001914 err = sctp_stream_init_ext(&asoc->stream, sinfo->sinfo_stream);
1915 if (err)
1916 goto err;
1917 }
1918
Marcelo Ricardo Leitner63d01332018-04-26 16:59:00 -03001919 if (sp->disable_fragments && msg_len > asoc->frag_point) {
Xin Longf84af332018-03-01 23:05:10 +08001920 err = -EMSGSIZE;
1921 goto err;
1922 }
1923
Marcelo Ricardo Leitner25216802018-04-26 16:58:56 -03001924 if (asoc->pmtu_pending) {
Marcelo Ricardo Leitner63d01332018-04-26 16:59:00 -03001925 if (sp->param_flags & SPP_PMTUD_ENABLE)
1926 sctp_assoc_sync_pmtu(asoc);
Marcelo Ricardo Leitner25216802018-04-26 16:58:56 -03001927 asoc->pmtu_pending = 0;
1928 }
Neil Horman0aee4c22018-03-12 14:15:25 -04001929
1930 if (sctp_wspace(asoc) < msg_len)
1931 sctp_prsctp_prune(asoc, sinfo, msg_len - sctp_wspace(asoc));
1932
1933 if (!sctp_wspace(asoc)) {
1934 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1935 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1936 if (err)
1937 goto err;
1938 }
1939
Xin Longf84af332018-03-01 23:05:10 +08001940 if (sctp_state(asoc, CLOSED)) {
1941 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
1942 if (err)
1943 goto err;
1944
Marcelo Ricardo Leitner63d01332018-04-26 16:59:00 -03001945 if (sp->strm_interleave) {
Xin Longf84af332018-03-01 23:05:10 +08001946 timeo = sock_sndtimeo(sk, 0);
1947 err = sctp_wait_for_connect(asoc, &timeo);
Xin Longc8638502018-10-17 03:06:12 +08001948 if (err) {
1949 err = -ESRCH;
Xin Longf84af332018-03-01 23:05:10 +08001950 goto err;
Xin Longc8638502018-10-17 03:06:12 +08001951 }
Xin Longf84af332018-03-01 23:05:10 +08001952 } else {
1953 wait_connect = true;
1954 }
1955
1956 pr_debug("%s: we associated primitively\n", __func__);
1957 }
1958
Xin Longf84af332018-03-01 23:05:10 +08001959 datamsg = sctp_datamsg_from_user(asoc, sinfo, &msg->msg_iter);
1960 if (IS_ERR(datamsg)) {
1961 err = PTR_ERR(datamsg);
1962 goto err;
1963 }
1964
1965 asoc->force_delay = !!(msg->msg_flags & MSG_MORE);
1966
1967 list_for_each_entry(chunk, &datamsg->chunks, frag_list) {
1968 sctp_chunk_hold(chunk);
1969 sctp_set_owner_w(chunk);
1970 chunk->transport = transport;
1971 }
1972
1973 err = sctp_primitive_SEND(net, asoc, datamsg);
1974 if (err) {
1975 sctp_datamsg_free(datamsg);
1976 goto err;
1977 }
1978
1979 pr_debug("%s: we sent primitively\n", __func__);
1980
1981 sctp_datamsg_put(datamsg);
1982
1983 if (unlikely(wait_connect)) {
1984 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1985 sctp_wait_for_connect(asoc, &timeo);
1986 }
1987
1988 err = msg_len;
1989
1990err:
1991 return err;
1992}
1993
Xin Longbecef9b2018-03-01 23:05:13 +08001994static union sctp_addr *sctp_sendmsg_get_daddr(struct sock *sk,
1995 const struct msghdr *msg,
1996 struct sctp_cmsgs *cmsgs)
1997{
1998 union sctp_addr *daddr = NULL;
1999 int err;
2000
2001 if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
2002 int len = msg->msg_namelen;
2003
2004 if (len > sizeof(*daddr))
2005 len = sizeof(*daddr);
2006
2007 daddr = (union sctp_addr *)msg->msg_name;
2008
2009 err = sctp_verify_addr(sk, daddr, len);
2010 if (err)
2011 return ERR_PTR(err);
2012 }
2013
2014 return daddr;
2015}
2016
Xin Longd42cb062018-03-01 23:05:15 +08002017static void sctp_sendmsg_update_sinfo(struct sctp_association *asoc,
2018 struct sctp_sndrcvinfo *sinfo,
2019 struct sctp_cmsgs *cmsgs)
2020{
2021 if (!cmsgs->srinfo && !cmsgs->sinfo) {
2022 sinfo->sinfo_stream = asoc->default_stream;
2023 sinfo->sinfo_ppid = asoc->default_ppid;
2024 sinfo->sinfo_context = asoc->default_context;
2025 sinfo->sinfo_assoc_id = sctp_assoc2id(asoc);
Xin Longed63afb2018-03-05 20:44:18 +08002026
2027 if (!cmsgs->prinfo)
2028 sinfo->sinfo_flags = asoc->default_flags;
Xin Longd42cb062018-03-01 23:05:15 +08002029 }
2030
Xin Longed63afb2018-03-05 20:44:18 +08002031 if (!cmsgs->srinfo && !cmsgs->prinfo)
Xin Longd42cb062018-03-01 23:05:15 +08002032 sinfo->sinfo_timetolive = asoc->default_timetolive;
Xin Long3ff547c2018-03-14 19:05:31 +08002033
2034 if (cmsgs->authinfo) {
2035 /* Reuse sinfo_tsn to indicate that authinfo was set and
2036 * sinfo_ssn to save the keyid on tx path.
2037 */
2038 sinfo->sinfo_tsn = 1;
2039 sinfo->sinfo_ssn = cmsgs->authinfo->auth_keynumber;
2040 }
Xin Longd42cb062018-03-01 23:05:15 +08002041}
2042
Ying Xue1b784142015-03-02 15:37:48 +08002043static int sctp_sendmsg(struct sock *sk, struct msghdr *msg, size_t msg_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044{
Xin Long204f8172018-03-01 23:05:14 +08002045 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Xin Long8e87c6e2018-03-01 23:05:16 +08002046 struct sctp_transport *transport = NULL;
Xin Long204f8172018-03-01 23:05:14 +08002047 struct sctp_sndrcvinfo _sinfo, *sinfo;
Xin Long007b7e12018-03-01 23:05:17 +08002048 struct sctp_association *asoc;
2049 struct sctp_cmsgs cmsgs;
Xin Longbecef9b2018-03-01 23:05:13 +08002050 union sctp_addr *daddr;
Xin Long007b7e12018-03-01 23:05:17 +08002051 bool new = false;
2052 __u16 sflags;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02002053 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Xin Long204f8172018-03-01 23:05:14 +08002055 /* Parse and get snd_info */
2056 err = sctp_sendmsg_parse(sk, &cmsgs, &_sinfo, msg, msg_len);
2057 if (err)
Xin Long007b7e12018-03-01 23:05:17 +08002058 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Xin Long204f8172018-03-01 23:05:14 +08002060 sinfo = &_sinfo;
Xin Long007b7e12018-03-01 23:05:17 +08002061 sflags = sinfo->sinfo_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
Xin Longbecef9b2018-03-01 23:05:13 +08002063 /* Get daddr from msg */
2064 daddr = sctp_sendmsg_get_daddr(sk, msg, &cmsgs);
2065 if (IS_ERR(daddr)) {
2066 err = PTR_ERR(daddr);
Xin Long007b7e12018-03-01 23:05:17 +08002067 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 }
2069
wangweidong048ed4b2014-01-21 15:44:11 +08002070 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
Xin Long49102802018-03-05 20:44:20 +08002072 /* SCTP_SENDALL process */
2073 if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP)) {
2074 list_for_each_entry(asoc, &ep->asocs, asocs) {
2075 err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
2076 msg_len);
2077 if (err == 0)
2078 continue;
2079 if (err < 0)
2080 goto out_unlock;
2081
2082 sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
2083
2084 err = sctp_sendmsg_to_asoc(asoc, msg, msg_len,
2085 NULL, sinfo);
2086 if (err < 0)
2087 goto out_unlock;
2088
2089 iov_iter_revert(&msg->msg_iter, err);
2090 }
2091
2092 goto out_unlock;
2093 }
2094
Xin Long0a3920d2018-03-01 23:05:18 +08002095 /* Get and check or create asoc */
Xin Longbecef9b2018-03-01 23:05:13 +08002096 if (daddr) {
Xin Longbecef9b2018-03-01 23:05:13 +08002097 asoc = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
Xin Long0a3920d2018-03-01 23:05:18 +08002098 if (asoc) {
2099 err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
2100 msg_len);
2101 if (err <= 0)
2102 goto out_unlock;
2103 } else {
2104 err = sctp_sendmsg_new_asoc(sk, sflags, &cmsgs, daddr,
2105 &transport);
2106 if (err)
2107 goto out_unlock;
2108
2109 asoc = transport->asoc;
2110 new = true;
2111 }
2112
2113 if (!sctp_style(sk, TCP) && !(sflags & SCTP_ADDR_OVER))
2114 transport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 } else {
Xin Long007b7e12018-03-01 23:05:17 +08002116 asoc = sctp_id2assoc(sk, sinfo->sinfo_assoc_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 if (!asoc) {
2118 err = -EPIPE;
2119 goto out_unlock;
2120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Xin Long007b7e12018-03-01 23:05:17 +08002122 err = sctp_sendmsg_check_sflags(asoc, sflags, msg, msg_len);
Xin Longc2666de2018-03-01 23:05:12 +08002123 if (err <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 }
2126
Xin Longd42cb062018-03-01 23:05:15 +08002127 /* Update snd_info with the asoc */
2128 sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
Xin Longf84af332018-03-01 23:05:10 +08002130 /* Send msg to the asoc */
Xin Long8e87c6e2018-03-01 23:05:16 +08002131 err = sctp_sendmsg_to_asoc(asoc, msg, msg_len, transport, sinfo);
Xin Long007b7e12018-03-01 23:05:17 +08002132 if (err < 0 && err != -ESRCH && new)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 sctp_association_free(asoc);
Xin Long8e87c6e2018-03-01 23:05:16 +08002134
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135out_unlock:
wangweidong048ed4b2014-01-21 15:44:11 +08002136 release_sock(sk);
Xin Long007b7e12018-03-01 23:05:17 +08002137out:
Xin Longf84af332018-03-01 23:05:10 +08002138 return sctp_error(sk, msg->msg_flags, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139}
2140
2141/* This is an extended version of skb_pull() that removes the data from the
2142 * start of a skb even when data is spread across the list of skb's in the
2143 * frag_list. len specifies the total amount of data that needs to be removed.
2144 * when 'len' bytes could be removed from the skb, it returns 0.
2145 * If 'len' exceeds the total skb length, it returns the no. of bytes that
2146 * could not be removed.
2147 */
2148static int sctp_skb_pull(struct sk_buff *skb, int len)
2149{
2150 struct sk_buff *list;
2151 int skb_len = skb_headlen(skb);
2152 int rlen;
2153
2154 if (len <= skb_len) {
2155 __skb_pull(skb, len);
2156 return 0;
2157 }
2158 len -= skb_len;
2159 __skb_pull(skb, skb_len);
2160
David S. Miller1b003be2009-06-09 00:22:35 -07002161 skb_walk_frags(skb, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 rlen = sctp_skb_pull(list, len);
2163 skb->len -= (len-rlen);
2164 skb->data_len -= (len-rlen);
2165
2166 if (!rlen)
2167 return 0;
2168
2169 len = rlen;
2170 }
2171
2172 return len;
2173}
2174
2175/* API 3.1.3 recvmsg() - UDP Style Syntax
2176 *
2177 * ssize_t recvmsg(int socket, struct msghdr *message,
2178 * int flags);
2179 *
2180 * socket - the socket descriptor of the endpoint.
2181 * message - pointer to the msghdr structure which contains a single
2182 * user message and possibly some ancillary data.
2183 *
2184 * See Section 5 for complete description of the data
2185 * structures.
2186 *
2187 * flags - flags sent or received with the user message, see Section
2188 * 5 for complete description of the flags.
2189 */
Ying Xue1b784142015-03-02 15:37:48 +08002190static int sctp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
2191 int noblock, int flags, int *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192{
2193 struct sctp_ulpevent *event = NULL;
2194 struct sctp_sock *sp = sctp_sk(sk);
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002195 struct sk_buff *skb, *head_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 int copied;
2197 int err = 0;
2198 int skb_len;
2199
Daniel Borkmannbb333812013-06-28 19:49:40 +02002200 pr_debug("%s: sk:%p, msghdr:%p, len:%zd, noblock:%d, flags:0x%x, "
2201 "addr_len:%p)\n", __func__, sk, msg, len, noblock, flags,
2202 addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
wangweidong048ed4b2014-01-21 15:44:11 +08002204 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -03002206 if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED) &&
Xin Longe0878692016-07-30 14:14:41 +08002207 !sctp_sstate(sk, CLOSING) && !sctp_sstate(sk, CLOSED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 err = -ENOTCONN;
2209 goto out;
2210 }
2211
2212 skb = sctp_skb_recv_datagram(sk, flags, noblock, &err);
2213 if (!skb)
2214 goto out;
2215
2216 /* Get the total length of the skb including any skb's in the
2217 * frag_list.
2218 */
2219 skb_len = skb->len;
2220
2221 copied = skb_len;
2222 if (copied > len)
2223 copied = len;
2224
David S. Miller51f3d022014-11-05 16:46:40 -05002225 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
2227 event = sctp_skb2event(skb);
2228
2229 if (err)
2230 goto out_free;
2231
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002232 if (event->chunk && event->chunk->head_skb)
2233 head_skb = event->chunk->head_skb;
2234 else
2235 head_skb = skb;
2236 sock_recv_ts_and_drops(msg, sk, head_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 if (sctp_ulpevent_is_notification(event)) {
2238 msg->msg_flags |= MSG_NOTIFICATION;
2239 sp->pf->event_msgname(event, msg->msg_name, addr_len);
2240 } else {
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002241 sp->pf->skb_msgname(head_skb, msg->msg_name, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 }
2243
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02002244 /* Check if we allow SCTP_NXTINFO. */
2245 if (sp->recvnxtinfo)
2246 sctp_ulpevent_read_nxtinfo(event, msg, sk);
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02002247 /* Check if we allow SCTP_RCVINFO. */
2248 if (sp->recvrcvinfo)
2249 sctp_ulpevent_read_rcvinfo(event, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 /* Check if we allow SCTP_SNDRCVINFO. */
2251 if (sp->subscribe.sctp_data_io_event)
2252 sctp_ulpevent_read_sndrcvinfo(event, msg);
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02002253
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 err = copied;
2255
2256 /* If skb's length exceeds the user's buffer, update the skb and
2257 * push it back to the receive_queue so that the next call to
2258 * recvmsg() will return the remaining data. Don't set MSG_EOR.
2259 */
2260 if (skb_len > copied) {
2261 msg->msg_flags &= ~MSG_EOR;
2262 if (flags & MSG_PEEK)
2263 goto out_free;
2264 sctp_skb_pull(skb, copied);
2265 skb_queue_head(&sk->sk_receive_queue, skb);
2266
Daniel Borkmann362d5202014-04-14 21:45:17 +02002267 /* When only partial message is copied to the user, increase
2268 * rwnd by that amount. If all the data in the skb is read,
2269 * rwnd is updated when the event is freed.
2270 */
2271 if (!sctp_ulpevent_is_notification(event))
2272 sctp_assoc_rwnd_increase(event->asoc, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 goto out;
2274 } else if ((event->msg_flags & MSG_NOTIFICATION) ||
2275 (event->msg_flags & MSG_EOR))
2276 msg->msg_flags |= MSG_EOR;
2277 else
2278 msg->msg_flags &= ~MSG_EOR;
2279
2280out_free:
2281 if (flags & MSG_PEEK) {
2282 /* Release the skb reference acquired after peeking the skb in
2283 * sctp_skb_recv_datagram().
2284 */
2285 kfree_skb(skb);
2286 } else {
2287 /* Free the event which includes releasing the reference to
2288 * the owner of the skb, freeing the skb and updating the
2289 * rwnd.
2290 */
2291 sctp_ulpevent_free(event);
2292 }
2293out:
wangweidong048ed4b2014-01-21 15:44:11 +08002294 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 return err;
2296}
2297
2298/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
2299 *
2300 * This option is a on/off flag. If enabled no SCTP message
2301 * fragmentation will be performed. Instead if a message being sent
2302 * exceeds the current PMTU size, the message will NOT be sent and
2303 * instead a error will be indicated to the user.
2304 */
2305static int sctp_setsockopt_disable_fragments(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002306 char __user *optval,
2307 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308{
2309 int val;
2310
2311 if (optlen < sizeof(int))
2312 return -EINVAL;
2313
2314 if (get_user(val, (int __user *)optval))
2315 return -EFAULT;
2316
2317 sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1;
2318
2319 return 0;
2320}
2321
2322static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002323 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324{
Wei Yongjun94912302011-07-02 09:28:04 +00002325 struct sctp_association *asoc;
2326 struct sctp_ulpevent *event;
2327
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05002328 if (optlen > sizeof(struct sctp_event_subscribe))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 return -EINVAL;
2330 if (copy_from_user(&sctp_sk(sk)->subscribe, optval, optlen))
2331 return -EFAULT;
Wei Yongjun94912302011-07-02 09:28:04 +00002332
Daniel Borkmannbbbea412014-07-12 20:30:40 +02002333 /* At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT,
Wei Yongjun94912302011-07-02 09:28:04 +00002334 * if there is no data to be sent or retransmit, the stack will
2335 * immediately send up this notification.
2336 */
2337 if (sctp_ulpevent_type_enabled(SCTP_SENDER_DRY_EVENT,
2338 &sctp_sk(sk)->subscribe)) {
2339 asoc = sctp_id2assoc(sk, 0);
2340
2341 if (asoc && sctp_outq_is_empty(&asoc->outqueue)) {
2342 event = sctp_ulpevent_make_sender_dry_event(asoc,
Marcelo Ricardo Leitner2e83acb2018-01-08 19:02:27 -02002343 GFP_USER | __GFP_NOWARN);
Wei Yongjun94912302011-07-02 09:28:04 +00002344 if (!event)
2345 return -ENOMEM;
2346
Xin Long9162e0e2017-12-08 21:04:05 +08002347 asoc->stream.si->enqueue_event(&asoc->ulpq, event);
Wei Yongjun94912302011-07-02 09:28:04 +00002348 }
2349 }
2350
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 return 0;
2352}
2353
2354/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
2355 *
2356 * This socket option is applicable to the UDP-style socket only. When
2357 * set it will cause associations that are idle for more than the
2358 * specified number of seconds to automatically close. An association
2359 * being idle is defined an association that has NOT sent or received
2360 * user data. The special value of '0' indicates that no automatic
2361 * close of any associations should be performed. The option expects an
2362 * integer defining the number of seconds of idle time before an
2363 * association is closed.
2364 */
2365static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002366 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367{
2368 struct sctp_sock *sp = sctp_sk(sk);
Neil Horman9f70f462013-12-10 06:48:15 -05002369 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
2371 /* Applicable to UDP-style socket only */
2372 if (sctp_style(sk, TCP))
2373 return -EOPNOTSUPP;
2374 if (optlen != sizeof(int))
2375 return -EINVAL;
2376 if (copy_from_user(&sp->autoclose, optval, optlen))
2377 return -EFAULT;
2378
Neil Horman9f70f462013-12-10 06:48:15 -05002379 if (sp->autoclose > net->sctp.max_autoclose)
2380 sp->autoclose = net->sctp.max_autoclose;
2381
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 return 0;
2383}
2384
2385/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
2386 *
2387 * Applications can enable or disable heartbeats for any peer address of
2388 * an association, modify an address's heartbeat interval, force a
2389 * heartbeat to be sent immediately, and adjust the address's maximum
2390 * number of retransmissions sent before an address is considered
2391 * unreachable. The following structure is used to access and modify an
2392 * address's parameters:
2393 *
2394 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002395 * sctp_assoc_t spp_assoc_id;
2396 * struct sockaddr_storage spp_address;
2397 * uint32_t spp_hbinterval;
2398 * uint16_t spp_pathmaxrxt;
2399 * uint32_t spp_pathmtu;
2400 * uint32_t spp_sackdelay;
2401 * uint32_t spp_flags;
Xin Long0b0dce72018-07-02 18:21:13 +08002402 * uint32_t spp_ipv6_flowlabel;
2403 * uint8_t spp_dscp;
Frank Filz52ccb8e2005-12-22 11:36:46 -08002404 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002406 * spp_assoc_id - (one-to-many style socket) This is filled in the
2407 * application, and identifies the association for
2408 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 * spp_address - This specifies which address is of interest.
2410 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08002411 * in milliseconds. If a value of zero
2412 * is present in this field then no changes are to
2413 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 * spp_pathmaxrxt - This contains the maximum number of
2415 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08002416 * considered unreachable. If a value of zero
2417 * is present in this field then no changes are to
2418 * be made to this parameter.
2419 * spp_pathmtu - When Path MTU discovery is disabled the value
2420 * specified here will be the "fixed" path mtu.
2421 * Note that if the spp_address field is empty
2422 * then all associations on this address will
2423 * have this fixed path mtu set upon them.
2424 *
2425 * spp_sackdelay - When delayed sack is enabled, this value specifies
2426 * the number of milliseconds that sacks will be delayed
2427 * for. This value will apply to all addresses of an
2428 * association if the spp_address field is empty. Note
2429 * also, that if delayed sack is enabled and this
2430 * value is set to 0, no change is made to the last
2431 * recorded delayed sack timer value.
2432 *
2433 * spp_flags - These flags are used to control various features
2434 * on an association. The flag field may contain
2435 * zero or more of the following options.
2436 *
2437 * SPP_HB_ENABLE - Enable heartbeats on the
2438 * specified address. Note that if the address
2439 * field is empty all addresses for the association
2440 * have heartbeats enabled upon them.
2441 *
2442 * SPP_HB_DISABLE - Disable heartbeats on the
2443 * speicifed address. Note that if the address
2444 * field is empty all addresses for the association
2445 * will have their heartbeats disabled. Note also
2446 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
2447 * mutually exclusive, only one of these two should
2448 * be specified. Enabling both fields will have
2449 * undetermined results.
2450 *
2451 * SPP_HB_DEMAND - Request a user initiated heartbeat
2452 * to be made immediately.
2453 *
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002454 * SPP_HB_TIME_IS_ZERO - Specify's that the time for
2455 * heartbeat delayis to be set to the value of 0
2456 * milliseconds.
2457 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002458 * SPP_PMTUD_ENABLE - This field will enable PMTU
2459 * discovery upon the specified address. Note that
2460 * if the address feild is empty then all addresses
2461 * on the association are effected.
2462 *
2463 * SPP_PMTUD_DISABLE - This field will disable PMTU
2464 * discovery upon the specified address. Note that
2465 * if the address feild is empty then all addresses
2466 * on the association are effected. Not also that
2467 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2468 * exclusive. Enabling both will have undetermined
2469 * results.
2470 *
2471 * SPP_SACKDELAY_ENABLE - Setting this flag turns
2472 * on delayed sack. The time specified in spp_sackdelay
2473 * is used to specify the sack delay for this address. Note
2474 * that if spp_address is empty then all addresses will
2475 * enable delayed sack and take on the sack delay
2476 * value specified in spp_sackdelay.
2477 * SPP_SACKDELAY_DISABLE - Setting this flag turns
2478 * off delayed sack. If the spp_address field is blank then
2479 * delayed sack is disabled for the entire association. Note
2480 * also that this field is mutually exclusive to
2481 * SPP_SACKDELAY_ENABLE, setting both will have undefined
2482 * results.
Xin Long0b0dce72018-07-02 18:21:13 +08002483 *
2484 * SPP_IPV6_FLOWLABEL: Setting this flag enables the
2485 * setting of the IPV6 flow label value. The value is
2486 * contained in the spp_ipv6_flowlabel field.
2487 * Upon retrieval, this flag will be set to indicate that
2488 * the spp_ipv6_flowlabel field has a valid value returned.
2489 * If a specific destination address is set (in the
2490 * spp_address field), then the value returned is that of
2491 * the address. If just an association is specified (and
2492 * no address), then the association's default flow label
2493 * is returned. If neither an association nor a destination
2494 * is specified, then the socket's default flow label is
2495 * returned. For non-IPv6 sockets, this flag will be left
2496 * cleared.
2497 *
2498 * SPP_DSCP: Setting this flag enables the setting of the
2499 * Differentiated Services Code Point (DSCP) value
2500 * associated with either the association or a specific
2501 * address. The value is obtained in the spp_dscp field.
2502 * Upon retrieval, this flag will be set to indicate that
2503 * the spp_dscp field has a valid value returned. If a
2504 * specific destination address is set when called (in the
2505 * spp_address field), then that specific destination
2506 * address's DSCP value is returned. If just an association
2507 * is specified, then the association's default DSCP is
2508 * returned. If neither an association nor a destination is
2509 * specified, then the socket's default DSCP is returned.
2510 *
2511 * spp_ipv6_flowlabel
2512 * - This field is used in conjunction with the
2513 * SPP_IPV6_FLOWLABEL flag and contains the IPv6 flow label.
2514 * The 20 least significant bits are used for the flow
2515 * label. This setting has precedence over any IPv6-layer
2516 * setting.
2517 *
2518 * spp_dscp - This field is used in conjunction with the SPP_DSCP flag
2519 * and contains the DSCP. The 6 most significant bits are
2520 * used for the DSCP. This setting has precedence over any
2521 * IPv4- or IPv6- layer setting.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 */
Adrian Bunk16164362006-09-18 00:40:38 -07002523static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2524 struct sctp_transport *trans,
2525 struct sctp_association *asoc,
2526 struct sctp_sock *sp,
2527 int hb_change,
2528 int pmtud_change,
2529 int sackdelay_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 int error;
2532
Frank Filz52ccb8e2005-12-22 11:36:46 -08002533 if (params->spp_flags & SPP_HB_DEMAND && trans) {
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00002534 struct net *net = sock_net(trans->asoc->base.sk);
2535
2536 error = sctp_primitive_REQUESTHEARTBEAT(net, trans->asoc, trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 if (error)
2538 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 }
2540
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002541 /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2542 * this field is ignored. Note also that a value of zero indicates
2543 * the current setting should be left unchanged.
2544 */
2545 if (params->spp_flags & SPP_HB_ENABLE) {
2546
2547 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2548 * set. This lets us use 0 value when this flag
2549 * is set.
2550 */
2551 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2552 params->spp_hbinterval = 0;
2553
2554 if (params->spp_hbinterval ||
2555 (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2556 if (trans) {
2557 trans->hbinterval =
2558 msecs_to_jiffies(params->spp_hbinterval);
2559 } else if (asoc) {
2560 asoc->hbinterval =
2561 msecs_to_jiffies(params->spp_hbinterval);
2562 } else {
2563 sp->hbinterval = params->spp_hbinterval;
2564 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08002565 }
2566 }
2567
2568 if (hb_change) {
2569 if (trans) {
2570 trans->param_flags =
2571 (trans->param_flags & ~SPP_HB) | hb_change;
2572 } else if (asoc) {
2573 asoc->param_flags =
2574 (asoc->param_flags & ~SPP_HB) | hb_change;
2575 } else {
2576 sp->param_flags =
2577 (sp->param_flags & ~SPP_HB) | hb_change;
2578 }
2579 }
2580
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002581 /* When Path MTU discovery is disabled the value specified here will
2582 * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2583 * include the flag SPP_PMTUD_DISABLE for this field to have any
2584 * effect).
2585 */
2586 if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002587 if (trans) {
2588 trans->pathmtu = params->spp_pathmtu;
Xin Long3ebfdf02017-04-04 13:39:55 +08002589 sctp_assoc_sync_pmtu(asoc);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002590 } else if (asoc) {
Marcelo Ricardo Leitnerc4b28932018-04-26 16:58:53 -03002591 sctp_assoc_set_pmtu(asoc, params->spp_pathmtu);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002592 } else {
2593 sp->pathmtu = params->spp_pathmtu;
2594 }
2595 }
2596
2597 if (pmtud_change) {
2598 if (trans) {
2599 int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2600 (params->spp_flags & SPP_PMTUD_ENABLE);
2601 trans->param_flags =
2602 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2603 if (update) {
Vlad Yasevich9914ae32011-04-26 21:51:31 +00002604 sctp_transport_pmtu(trans, sctp_opt2sk(sp));
Xin Long3ebfdf02017-04-04 13:39:55 +08002605 sctp_assoc_sync_pmtu(asoc);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002606 }
2607 } else if (asoc) {
2608 asoc->param_flags =
2609 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2610 } else {
2611 sp->param_flags =
2612 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2613 }
2614 }
2615
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002616 /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2617 * value of this field is ignored. Note also that a value of zero
2618 * indicates the current setting should be left unchanged.
2619 */
2620 if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002621 if (trans) {
2622 trans->sackdelay =
2623 msecs_to_jiffies(params->spp_sackdelay);
2624 } else if (asoc) {
2625 asoc->sackdelay =
2626 msecs_to_jiffies(params->spp_sackdelay);
2627 } else {
2628 sp->sackdelay = params->spp_sackdelay;
2629 }
2630 }
2631
2632 if (sackdelay_change) {
2633 if (trans) {
2634 trans->param_flags =
2635 (trans->param_flags & ~SPP_SACKDELAY) |
2636 sackdelay_change;
2637 } else if (asoc) {
2638 asoc->param_flags =
2639 (asoc->param_flags & ~SPP_SACKDELAY) |
2640 sackdelay_change;
2641 } else {
2642 sp->param_flags =
2643 (sp->param_flags & ~SPP_SACKDELAY) |
2644 sackdelay_change;
2645 }
2646 }
2647
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002648 /* Note that a value of zero indicates the current setting should be
2649 left unchanged.
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002650 */
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002651 if (params->spp_pathmaxrxt) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002652 if (trans) {
2653 trans->pathmaxrxt = params->spp_pathmaxrxt;
2654 } else if (asoc) {
2655 asoc->pathmaxrxt = params->spp_pathmaxrxt;
2656 } else {
2657 sp->pathmaxrxt = params->spp_pathmaxrxt;
2658 }
2659 }
2660
Xin Long0b0dce72018-07-02 18:21:13 +08002661 if (params->spp_flags & SPP_IPV6_FLOWLABEL) {
Xin Long741880e2018-09-03 15:47:11 +08002662 if (trans) {
2663 if (trans->ipaddr.sa.sa_family == AF_INET6) {
2664 trans->flowlabel = params->spp_ipv6_flowlabel &
2665 SCTP_FLOWLABEL_VAL_MASK;
2666 trans->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2667 }
Xin Long0b0dce72018-07-02 18:21:13 +08002668 } else if (asoc) {
Xin Longaf8a2b82018-09-03 15:47:10 +08002669 struct sctp_transport *t;
2670
2671 list_for_each_entry(t, &asoc->peer.transport_addr_list,
Xin Long0b0dce72018-07-02 18:21:13 +08002672 transports) {
Xin Longaf8a2b82018-09-03 15:47:10 +08002673 if (t->ipaddr.sa.sa_family != AF_INET6)
Xin Long0b0dce72018-07-02 18:21:13 +08002674 continue;
Xin Longaf8a2b82018-09-03 15:47:10 +08002675 t->flowlabel = params->spp_ipv6_flowlabel &
2676 SCTP_FLOWLABEL_VAL_MASK;
2677 t->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
Xin Long0b0dce72018-07-02 18:21:13 +08002678 }
2679 asoc->flowlabel = params->spp_ipv6_flowlabel &
2680 SCTP_FLOWLABEL_VAL_MASK;
2681 asoc->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2682 } else if (sctp_opt2sk(sp)->sk_family == AF_INET6) {
2683 sp->flowlabel = params->spp_ipv6_flowlabel &
2684 SCTP_FLOWLABEL_VAL_MASK;
2685 sp->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2686 }
2687 }
2688
2689 if (params->spp_flags & SPP_DSCP) {
2690 if (trans) {
2691 trans->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2692 trans->dscp |= SCTP_DSCP_SET_MASK;
2693 } else if (asoc) {
Xin Longaf8a2b82018-09-03 15:47:10 +08002694 struct sctp_transport *t;
2695
2696 list_for_each_entry(t, &asoc->peer.transport_addr_list,
Xin Long0b0dce72018-07-02 18:21:13 +08002697 transports) {
Xin Longaf8a2b82018-09-03 15:47:10 +08002698 t->dscp = params->spp_dscp &
2699 SCTP_DSCP_VAL_MASK;
2700 t->dscp |= SCTP_DSCP_SET_MASK;
Xin Long0b0dce72018-07-02 18:21:13 +08002701 }
2702 asoc->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2703 asoc->dscp |= SCTP_DSCP_SET_MASK;
2704 } else {
2705 sp->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2706 sp->dscp |= SCTP_DSCP_SET_MASK;
2707 }
2708 }
2709
Frank Filz52ccb8e2005-12-22 11:36:46 -08002710 return 0;
2711}
2712
2713static int sctp_setsockopt_peer_addr_params(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002714 char __user *optval,
2715 unsigned int optlen)
Frank Filz52ccb8e2005-12-22 11:36:46 -08002716{
2717 struct sctp_paddrparams params;
2718 struct sctp_transport *trans = NULL;
2719 struct sctp_association *asoc = NULL;
2720 struct sctp_sock *sp = sctp_sk(sk);
2721 int error;
2722 int hb_change, pmtud_change, sackdelay_change;
2723
Xin Long0b0dce72018-07-02 18:21:13 +08002724 if (optlen == sizeof(params)) {
2725 if (copy_from_user(&params, optval, optlen))
2726 return -EFAULT;
2727 } else if (optlen == ALIGN(offsetof(struct sctp_paddrparams,
2728 spp_ipv6_flowlabel), 4)) {
2729 if (copy_from_user(&params, optval, optlen))
2730 return -EFAULT;
2731 if (params.spp_flags & (SPP_DSCP | SPP_IPV6_FLOWLABEL))
2732 return -EINVAL;
2733 } else {
wangweidongcb3f8372013-12-23 12:16:50 +08002734 return -EINVAL;
Xin Long0b0dce72018-07-02 18:21:13 +08002735 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08002736
2737 /* Validate flags and value parameters. */
2738 hb_change = params.spp_flags & SPP_HB;
2739 pmtud_change = params.spp_flags & SPP_PMTUD;
2740 sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2741
2742 if (hb_change == SPP_HB ||
2743 pmtud_change == SPP_PMTUD ||
2744 sackdelay_change == SPP_SACKDELAY ||
2745 params.spp_sackdelay > 500 ||
Joe Perchesf64f9e72009-11-29 16:55:45 -08002746 (params.spp_pathmtu &&
2747 params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
Frank Filz52ccb8e2005-12-22 11:36:46 -08002748 return -EINVAL;
2749
2750 /* If an address other than INADDR_ANY is specified, and
2751 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 */
wangweidongcb3f8372013-12-23 12:16:50 +08002753 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002754 trans = sctp_addr_id2transport(sk, &params.spp_address,
2755 params.spp_assoc_id);
2756 if (!trans)
2757 return -EINVAL;
2758 }
2759
2760 /* Get association, if assoc_id != 0 and the socket is a one
2761 * to many style socket, and an association was not found, then
2762 * the id was invalid.
2763 */
2764 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
2765 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP))
2766 return -EINVAL;
2767
2768 /* Heartbeat demand can only be sent on a transport or
2769 * association, but not a socket.
2770 */
2771 if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2772 return -EINVAL;
2773
2774 /* Process parameters. */
2775 error = sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2776 hb_change, pmtud_change,
2777 sackdelay_change);
2778
2779 if (error)
2780 return error;
2781
2782 /* If changes are for association, also apply parameters to each
2783 * transport.
2784 */
2785 if (!trans && asoc) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002786 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2787 transports) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002788 sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2789 hb_change, pmtud_change,
2790 sackdelay_change);
2791 }
2792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
2794 return 0;
2795}
2796
wangweidong0ea5e4d2014-01-15 17:24:01 +08002797static inline __u32 sctp_spp_sackdelay_enable(__u32 param_flags)
2798{
2799 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_ENABLE;
2800}
2801
2802static inline __u32 sctp_spp_sackdelay_disable(__u32 param_flags)
2803{
2804 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_DISABLE;
2805}
2806
Wei Yongjund364d922008-05-09 15:13:26 -07002807/*
2808 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08002809 *
Wei Yongjund364d922008-05-09 15:13:26 -07002810 * This option will effect the way delayed acks are performed. This
2811 * option allows you to get or set the delayed ack time, in
2812 * milliseconds. It also allows changing the delayed ack frequency.
2813 * Changing the frequency to 1 disables the delayed sack algorithm. If
2814 * the assoc_id is 0, then this sets or gets the endpoints default
2815 * values. If the assoc_id field is non-zero, then the set or get
2816 * effects the specified association for the one to many model (the
2817 * assoc_id field is ignored by the one to one model). Note that if
2818 * sack_delay or sack_freq are 0 when setting this option, then the
2819 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08002820 *
Wei Yongjund364d922008-05-09 15:13:26 -07002821 * struct sctp_sack_info {
2822 * sctp_assoc_t sack_assoc_id;
2823 * uint32_t sack_delay;
2824 * uint32_t sack_freq;
2825 * };
Frank Filz77086102005-12-22 11:37:30 -08002826 *
Wei Yongjund364d922008-05-09 15:13:26 -07002827 * sack_assoc_id - This parameter, indicates which association the user
2828 * is performing an action upon. Note that if this field's value is
2829 * zero then the endpoints default value is changed (effecting future
2830 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08002831 *
Wei Yongjund364d922008-05-09 15:13:26 -07002832 * sack_delay - This parameter contains the number of milliseconds that
2833 * the user is requesting the delayed ACK timer be set to. Note that
2834 * this value is defined in the standard to be between 200 and 500
2835 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08002836 *
Wei Yongjund364d922008-05-09 15:13:26 -07002837 * sack_freq - This parameter contains the number of packets that must
2838 * be received before a sack is sent without waiting for the delay
2839 * timer to expire. The default value for this is 2, setting this
2840 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08002841 */
2842
Wei Yongjund364d922008-05-09 15:13:26 -07002843static int sctp_setsockopt_delayed_ack(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002844 char __user *optval, unsigned int optlen)
Frank Filz77086102005-12-22 11:37:30 -08002845{
Wei Yongjund364d922008-05-09 15:13:26 -07002846 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08002847 struct sctp_transport *trans = NULL;
2848 struct sctp_association *asoc = NULL;
2849 struct sctp_sock *sp = sctp_sk(sk);
2850
Wei Yongjund364d922008-05-09 15:13:26 -07002851 if (optlen == sizeof(struct sctp_sack_info)) {
2852 if (copy_from_user(&params, optval, optlen))
2853 return -EFAULT;
2854
2855 if (params.sack_delay == 0 && params.sack_freq == 0)
2856 return 0;
2857 } else if (optlen == sizeof(struct sctp_assoc_value)) {
Neil Horman94f65192013-12-23 08:29:43 -05002858 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05002859 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05002860 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05002861 "Use struct sctp_sack_info instead\n",
2862 current->comm, task_pid_nr(current));
Wei Yongjund364d922008-05-09 15:13:26 -07002863 if (copy_from_user(&params, optval, optlen))
2864 return -EFAULT;
2865
2866 if (params.sack_delay == 0)
2867 params.sack_freq = 1;
2868 else
2869 params.sack_freq = 0;
2870 } else
wangweidongcb3f8372013-12-23 12:16:50 +08002871 return -EINVAL;
Frank Filz77086102005-12-22 11:37:30 -08002872
Frank Filz77086102005-12-22 11:37:30 -08002873 /* Validate value parameter. */
Wei Yongjund364d922008-05-09 15:13:26 -07002874 if (params.sack_delay > 500)
Frank Filz77086102005-12-22 11:37:30 -08002875 return -EINVAL;
2876
Wei Yongjund364d922008-05-09 15:13:26 -07002877 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08002878 * to many style socket, and an association was not found, then
2879 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002880 */
Wei Yongjund364d922008-05-09 15:13:26 -07002881 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
2882 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08002883 return -EINVAL;
2884
Wei Yongjund364d922008-05-09 15:13:26 -07002885 if (params.sack_delay) {
Frank Filz77086102005-12-22 11:37:30 -08002886 if (asoc) {
2887 asoc->sackdelay =
Wei Yongjund364d922008-05-09 15:13:26 -07002888 msecs_to_jiffies(params.sack_delay);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002889 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002890 sctp_spp_sackdelay_enable(asoc->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002891 } else {
Wei Yongjund364d922008-05-09 15:13:26 -07002892 sp->sackdelay = params.sack_delay;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002893 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002894 sctp_spp_sackdelay_enable(sp->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002895 }
Wei Yongjund364d922008-05-09 15:13:26 -07002896 }
2897
2898 if (params.sack_freq == 1) {
Frank Filz77086102005-12-22 11:37:30 -08002899 if (asoc) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002900 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002901 sctp_spp_sackdelay_disable(asoc->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002902 } else {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002903 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002904 sctp_spp_sackdelay_disable(sp->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002905 }
Wei Yongjund364d922008-05-09 15:13:26 -07002906 } else if (params.sack_freq > 1) {
2907 if (asoc) {
2908 asoc->sackfreq = params.sack_freq;
2909 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002910 sctp_spp_sackdelay_enable(asoc->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002911 } else {
2912 sp->sackfreq = params.sack_freq;
2913 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002914 sctp_spp_sackdelay_enable(sp->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002915 }
Frank Filz77086102005-12-22 11:37:30 -08002916 }
2917
2918 /* If change is for association, also apply to each transport. */
2919 if (asoc) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002920 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2921 transports) {
Wei Yongjund364d922008-05-09 15:13:26 -07002922 if (params.sack_delay) {
Frank Filz77086102005-12-22 11:37:30 -08002923 trans->sackdelay =
Wei Yongjund364d922008-05-09 15:13:26 -07002924 msecs_to_jiffies(params.sack_delay);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002925 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002926 sctp_spp_sackdelay_enable(trans->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002927 }
Vlad Yasevich7bfe8bdb2008-06-09 15:45:05 -07002928 if (params.sack_freq == 1) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002929 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002930 sctp_spp_sackdelay_disable(trans->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002931 } else if (params.sack_freq > 1) {
2932 trans->sackfreq = params.sack_freq;
2933 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002934 sctp_spp_sackdelay_enable(trans->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002935 }
2936 }
2937 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002938
Frank Filz77086102005-12-22 11:37:30 -08002939 return 0;
2940}
2941
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2943 *
2944 * Applications can specify protocol parameters for the default association
2945 * initialization. The option name argument to setsockopt() and getsockopt()
2946 * is SCTP_INITMSG.
2947 *
2948 * Setting initialization parameters is effective only on an unconnected
2949 * socket (for UDP-style sockets only future associations are effected
2950 * by the change). With TCP-style sockets, this option is inherited by
2951 * sockets derived from a listener socket.
2952 */
David S. Millerb7058842009-09-30 16:12:20 -07002953static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954{
2955 struct sctp_initmsg sinit;
2956 struct sctp_sock *sp = sctp_sk(sk);
2957
2958 if (optlen != sizeof(struct sctp_initmsg))
2959 return -EINVAL;
2960 if (copy_from_user(&sinit, optval, optlen))
2961 return -EFAULT;
2962
2963 if (sinit.sinit_num_ostreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002964 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 if (sinit.sinit_max_instreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002966 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 if (sinit.sinit_max_attempts)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002968 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 if (sinit.sinit_max_init_timeo)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002970 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
2972 return 0;
2973}
2974
2975/*
2976 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2977 *
2978 * Applications that wish to use the sendto() system call may wish to
2979 * specify a default set of parameters that would normally be supplied
2980 * through the inclusion of ancillary data. This socket option allows
2981 * such an application to set the default sctp_sndrcvinfo structure.
2982 * The application that wishes to use this socket option simply passes
2983 * in to this call the sctp_sndrcvinfo structure defined in Section
2984 * 5.2.2) The input parameters accepted by this call include
2985 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2986 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
2987 * to this call if the caller is using the UDP model.
2988 */
2989static int sctp_setsockopt_default_send_param(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002990 char __user *optval,
2991 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 struct sctp_sock *sp = sctp_sk(sk);
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002994 struct sctp_association *asoc;
2995 struct sctp_sndrcvinfo info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002997 if (optlen != sizeof(info))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 return -EINVAL;
2999 if (copy_from_user(&info, optval, optlen))
3000 return -EFAULT;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02003001 if (info.sinfo_flags &
3002 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
3003 SCTP_ABORT | SCTP_EOF))
3004 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005
3006 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
3007 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
3008 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 if (asoc) {
3010 asoc->default_stream = info.sinfo_stream;
3011 asoc->default_flags = info.sinfo_flags;
3012 asoc->default_ppid = info.sinfo_ppid;
3013 asoc->default_context = info.sinfo_context;
3014 asoc->default_timetolive = info.sinfo_timetolive;
3015 } else {
3016 sp->default_stream = info.sinfo_stream;
3017 sp->default_flags = info.sinfo_flags;
3018 sp->default_ppid = info.sinfo_ppid;
3019 sp->default_context = info.sinfo_context;
3020 sp->default_timetolive = info.sinfo_timetolive;
3021 }
3022
3023 return 0;
3024}
3025
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02003026/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
3027 * (SCTP_DEFAULT_SNDINFO)
3028 */
3029static int sctp_setsockopt_default_sndinfo(struct sock *sk,
3030 char __user *optval,
3031 unsigned int optlen)
3032{
3033 struct sctp_sock *sp = sctp_sk(sk);
3034 struct sctp_association *asoc;
3035 struct sctp_sndinfo info;
3036
3037 if (optlen != sizeof(info))
3038 return -EINVAL;
3039 if (copy_from_user(&info, optval, optlen))
3040 return -EFAULT;
3041 if (info.snd_flags &
3042 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
3043 SCTP_ABORT | SCTP_EOF))
3044 return -EINVAL;
3045
3046 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
3047 if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
3048 return -EINVAL;
3049 if (asoc) {
3050 asoc->default_stream = info.snd_sid;
3051 asoc->default_flags = info.snd_flags;
3052 asoc->default_ppid = info.snd_ppid;
3053 asoc->default_context = info.snd_context;
3054 } else {
3055 sp->default_stream = info.snd_sid;
3056 sp->default_flags = info.snd_flags;
3057 sp->default_ppid = info.snd_ppid;
3058 sp->default_context = info.snd_context;
3059 }
3060
3061 return 0;
3062}
3063
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
3065 *
3066 * Requests that the local SCTP stack use the enclosed peer address as
3067 * the association primary. The enclosed address must be one of the
3068 * association peer's addresses.
3069 */
3070static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003071 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072{
3073 struct sctp_prim prim;
3074 struct sctp_transport *trans;
Richard Haines2277c7c2018-02-13 20:56:24 +00003075 struct sctp_af *af;
3076 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077
3078 if (optlen != sizeof(struct sctp_prim))
3079 return -EINVAL;
3080
3081 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
3082 return -EFAULT;
3083
Richard Haines2277c7c2018-02-13 20:56:24 +00003084 /* Allow security module to validate address but need address len. */
3085 af = sctp_get_af_specific(prim.ssp_addr.ss_family);
3086 if (!af)
3087 return -EINVAL;
3088
3089 err = security_sctp_bind_connect(sk, SCTP_PRIMARY_ADDR,
3090 (struct sockaddr *)&prim.ssp_addr,
3091 af->sockaddr_len);
3092 if (err)
3093 return err;
3094
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
3096 if (!trans)
3097 return -EINVAL;
3098
3099 sctp_assoc_set_primary(trans->asoc, trans);
3100
3101 return 0;
3102}
3103
3104/*
3105 * 7.1.5 SCTP_NODELAY
3106 *
3107 * Turn on/off any Nagle-like algorithm. This means that packets are
3108 * generally sent as soon as possible and no unnecessary delays are
3109 * introduced, at the cost of more packets in the network. Expects an
3110 * integer boolean flag.
3111 */
3112static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003113 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114{
3115 int val;
3116
3117 if (optlen < sizeof(int))
3118 return -EINVAL;
3119 if (get_user(val, (int __user *)optval))
3120 return -EFAULT;
3121
3122 sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
3123 return 0;
3124}
3125
3126/*
3127 *
3128 * 7.1.1 SCTP_RTOINFO
3129 *
3130 * The protocol parameters used to initialize and bound retransmission
3131 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
3132 * and modify these parameters.
3133 * All parameters are time values, in milliseconds. A value of 0, when
3134 * modifying the parameters, indicates that the current value should not
3135 * be changed.
3136 *
3137 */
David S. Millerb7058842009-09-30 16:12:20 -07003138static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, unsigned int optlen)
3139{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 struct sctp_rtoinfo rtoinfo;
3141 struct sctp_association *asoc;
wangweidong85f935d2013-12-11 09:50:38 +08003142 unsigned long rto_min, rto_max;
3143 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144
3145 if (optlen != sizeof (struct sctp_rtoinfo))
3146 return -EINVAL;
3147
3148 if (copy_from_user(&rtoinfo, optval, optlen))
3149 return -EFAULT;
3150
3151 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
3152
3153 /* Set the values to the specific association */
3154 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
3155 return -EINVAL;
3156
wangweidong85f935d2013-12-11 09:50:38 +08003157 rto_max = rtoinfo.srto_max;
3158 rto_min = rtoinfo.srto_min;
3159
3160 if (rto_max)
3161 rto_max = asoc ? msecs_to_jiffies(rto_max) : rto_max;
3162 else
3163 rto_max = asoc ? asoc->rto_max : sp->rtoinfo.srto_max;
3164
3165 if (rto_min)
3166 rto_min = asoc ? msecs_to_jiffies(rto_min) : rto_min;
3167 else
3168 rto_min = asoc ? asoc->rto_min : sp->rtoinfo.srto_min;
3169
3170 if (rto_min > rto_max)
3171 return -EINVAL;
3172
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 if (asoc) {
3174 if (rtoinfo.srto_initial != 0)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003175 asoc->rto_initial =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 msecs_to_jiffies(rtoinfo.srto_initial);
wangweidong85f935d2013-12-11 09:50:38 +08003177 asoc->rto_max = rto_max;
3178 asoc->rto_min = rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 } else {
3180 /* If there is no association or the association-id = 0
3181 * set the values to the endpoint.
3182 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 if (rtoinfo.srto_initial != 0)
3184 sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
wangweidong85f935d2013-12-11 09:50:38 +08003185 sp->rtoinfo.srto_max = rto_max;
3186 sp->rtoinfo.srto_min = rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 }
3188
3189 return 0;
3190}
3191
3192/*
3193 *
3194 * 7.1.2 SCTP_ASSOCINFO
3195 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02003196 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 * of the association.
3198 * Returns an error if the new association retransmission value is
3199 * greater than the sum of the retransmission value of the peer.
3200 * See [SCTP] for more information.
3201 *
3202 */
David S. Millerb7058842009-09-30 16:12:20 -07003203static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204{
3205
3206 struct sctp_assocparams assocparams;
3207 struct sctp_association *asoc;
3208
3209 if (optlen != sizeof(struct sctp_assocparams))
3210 return -EINVAL;
3211 if (copy_from_user(&assocparams, optval, optlen))
3212 return -EFAULT;
3213
3214 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
3215
3216 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
3217 return -EINVAL;
3218
3219 /* Set the values to the specific association */
3220 if (asoc) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003221 if (assocparams.sasoc_asocmaxrxt != 0) {
3222 __u32 path_sum = 0;
3223 int paths = 0;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003224 struct sctp_transport *peer_addr;
3225
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07003226 list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
3227 transports) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003228 path_sum += peer_addr->pathmaxrxt;
3229 paths++;
3230 }
3231
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003232 /* Only validate asocmaxrxt if we have more than
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003233 * one path/transport. We do this because path
3234 * retransmissions are only counted when we have more
3235 * then one path.
3236 */
3237 if (paths > 1 &&
3238 assocparams.sasoc_asocmaxrxt > path_sum)
3239 return -EINVAL;
3240
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003242 }
3243
Daniel Borkmann52db8822013-06-25 18:17:27 +02003244 if (assocparams.sasoc_cookie_life != 0)
3245 asoc->cookie_life = ms_to_ktime(assocparams.sasoc_cookie_life);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 } else {
3247 /* Set the values to the endpoint */
3248 struct sctp_sock *sp = sctp_sk(sk);
3249
3250 if (assocparams.sasoc_asocmaxrxt != 0)
3251 sp->assocparams.sasoc_asocmaxrxt =
3252 assocparams.sasoc_asocmaxrxt;
3253 if (assocparams.sasoc_cookie_life != 0)
3254 sp->assocparams.sasoc_cookie_life =
3255 assocparams.sasoc_cookie_life;
3256 }
3257 return 0;
3258}
3259
3260/*
3261 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
3262 *
3263 * This socket option is a boolean flag which turns on or off mapped V4
3264 * addresses. If this option is turned on and the socket is type
3265 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
3266 * If this option is turned off, then no mapping will be done of V4
3267 * addresses and a user will receive both PF_INET6 and PF_INET type
3268 * addresses on the socket.
3269 */
David S. Millerb7058842009-09-30 16:12:20 -07003270static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271{
3272 int val;
3273 struct sctp_sock *sp = sctp_sk(sk);
3274
3275 if (optlen < sizeof(int))
3276 return -EINVAL;
3277 if (get_user(val, (int __user *)optval))
3278 return -EFAULT;
3279 if (val)
3280 sp->v4mapped = 1;
3281 else
3282 sp->v4mapped = 0;
3283
3284 return 0;
3285}
3286
3287/*
Wei Yongjune89c2092008-12-25 16:54:58 -08003288 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
3289 * This option will get or set the maximum size to put in any outgoing
3290 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 * fragmented by SCTP into the specified size. Note that the underlying
3292 * SCTP implementation may fragment into smaller sized chunks when the
3293 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08003294 * the user. The default value for this option is '0' which indicates
3295 * the user is NOT limiting fragmentation and only the PMTU will effect
3296 * SCTP's choice of DATA chunk size. Note also that values set larger
3297 * than the maximum size of an IP datagram will effectively let SCTP
3298 * control fragmentation (i.e. the same as setting this option to 0).
3299 *
3300 * The following structure is used to access and modify this parameter:
3301 *
3302 * struct sctp_assoc_value {
3303 * sctp_assoc_t assoc_id;
3304 * uint32_t assoc_value;
3305 * };
3306 *
3307 * assoc_id: This parameter is ignored for one-to-one style sockets.
3308 * For one-to-many style sockets this parameter indicates which
3309 * association the user is performing an action upon. Note that if
3310 * this field's value is zero then the endpoints default value is
3311 * changed (effecting future associations only).
3312 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 */
David S. Millerb7058842009-09-30 16:12:20 -07003314static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315{
Xin Longecca8f82017-11-17 14:11:11 +08003316 struct sctp_sock *sp = sctp_sk(sk);
Wei Yongjune89c2092008-12-25 16:54:58 -08003317 struct sctp_assoc_value params;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 int val;
3320
Wei Yongjune89c2092008-12-25 16:54:58 -08003321 if (optlen == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05003322 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05003323 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05003324 "Use of int in maxseg socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05003325 "Use struct sctp_assoc_value instead\n",
3326 current->comm, task_pid_nr(current));
Wei Yongjune89c2092008-12-25 16:54:58 -08003327 if (copy_from_user(&val, optval, optlen))
3328 return -EFAULT;
3329 params.assoc_id = 0;
3330 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3331 if (copy_from_user(&params, optval, optlen))
3332 return -EFAULT;
3333 val = params.assoc_value;
Xin Longecca8f82017-11-17 14:11:11 +08003334 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 return -EINVAL;
Xin Longecca8f82017-11-17 14:11:11 +08003336 }
Wei Yongjune89c2092008-12-25 16:54:58 -08003337
Marcelo Ricardo Leitner439ef032018-04-26 16:59:01 -03003338 asoc = sctp_id2assoc(sk, params.assoc_id);
3339
Xin Longecca8f82017-11-17 14:11:11 +08003340 if (val) {
3341 int min_len, max_len;
Marcelo Ricardo Leitner439ef032018-04-26 16:59:01 -03003342 __u16 datasize = asoc ? sctp_datachk_len(&asoc->stream) :
3343 sizeof(struct sctp_data_chunk);
Xin Longecca8f82017-11-17 14:11:11 +08003344
Marcelo Ricardo Leitnerfeddd6c2018-04-26 16:58:54 -03003345 min_len = sctp_mtu_payload(sp, SCTP_DEFAULT_MINSEGMENT,
Marcelo Ricardo Leitner439ef032018-04-26 16:59:01 -03003346 datasize);
3347 max_len = SCTP_MAX_CHUNK_LEN - datasize;
Xin Longecca8f82017-11-17 14:11:11 +08003348
3349 if (val < min_len || val > max_len)
3350 return -EINVAL;
3351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352
Wei Yongjune89c2092008-12-25 16:54:58 -08003353 if (asoc) {
Vlad Yasevichf68b2e02009-09-04 18:21:00 -04003354 asoc->user_frag = val;
Marcelo Ricardo Leitner2f5e3c92018-04-26 16:58:55 -03003355 sctp_assoc_update_frag_point(asoc);
Wei Yongjune89c2092008-12-25 16:54:58 -08003356 } else {
Xin Longecca8f82017-11-17 14:11:11 +08003357 if (params.assoc_id && sctp_style(sk, UDP))
3358 return -EINVAL;
Wei Yongjune89c2092008-12-25 16:54:58 -08003359 sp->user_frag = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 }
3361
3362 return 0;
3363}
3364
3365
3366/*
3367 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3368 *
3369 * Requests that the peer mark the enclosed address as the association
3370 * primary. The enclosed address must be one of the association's
3371 * locally bound addresses. The following structure is used to make a
3372 * set primary request:
3373 */
3374static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003375 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003377 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 struct sctp_association *asoc = NULL;
3380 struct sctp_setpeerprim prim;
3381 struct sctp_chunk *chunk;
Wei Yongjun40a01032010-12-07 17:11:09 +00003382 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 int err;
3384
3385 sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003387 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 return -EPERM;
3389
3390 if (optlen != sizeof(struct sctp_setpeerprim))
3391 return -EINVAL;
3392
3393 if (copy_from_user(&prim, optval, optlen))
3394 return -EFAULT;
3395
3396 asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003397 if (!asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 return -EINVAL;
3399
3400 if (!asoc->peer.asconf_capable)
3401 return -EPERM;
3402
3403 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
3404 return -EPERM;
3405
3406 if (!sctp_state(asoc, ESTABLISHED))
3407 return -ENOTCONN;
3408
Wei Yongjun40a01032010-12-07 17:11:09 +00003409 af = sctp_get_af_specific(prim.sspp_addr.ss_family);
3410 if (!af)
3411 return -EINVAL;
3412
3413 if (!af->addr_valid((union sctp_addr *)&prim.sspp_addr, sp, NULL))
3414 return -EADDRNOTAVAIL;
3415
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
3417 return -EADDRNOTAVAIL;
3418
Richard Haines2277c7c2018-02-13 20:56:24 +00003419 /* Allow security module to validate address. */
3420 err = security_sctp_bind_connect(sk, SCTP_SET_PEER_PRIMARY_ADDR,
3421 (struct sockaddr *)&prim.sspp_addr,
3422 af->sockaddr_len);
3423 if (err)
3424 return err;
3425
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 /* Create an ASCONF chunk with SET_PRIMARY parameter */
3427 chunk = sctp_make_asconf_set_prim(asoc,
3428 (union sctp_addr *)&prim.sspp_addr);
3429 if (!chunk)
3430 return -ENOMEM;
3431
3432 err = sctp_send_asconf(asoc, chunk);
3433
Daniel Borkmannbb333812013-06-28 19:49:40 +02003434 pr_debug("%s: we set peer primary addr primitively\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
3436 return err;
3437}
3438
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003439static int sctp_setsockopt_adaptation_layer(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003440 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003442 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003444 if (optlen != sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 return -EINVAL;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003446 if (copy_from_user(&adaptation, optval, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 return -EFAULT;
3448
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003449 sctp_sk(sk)->adaptation_ind = adaptation.ssb_adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450
3451 return 0;
3452}
3453
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003454/*
3455 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
3456 *
3457 * The context field in the sctp_sndrcvinfo structure is normally only
3458 * used when a failed message is retrieved holding the value that was
3459 * sent down on the actual send call. This option allows the setting of
3460 * a default context on an association basis that will be received on
3461 * reading messages from the peer. This is especially helpful in the
3462 * one-2-many model for an application to keep some reference to an
3463 * internal state machine that is processing messages on the
3464 * association. Note that the setting of this value only effects
3465 * received messages from the peer and does not effect the value that is
3466 * saved with outbound messages.
3467 */
3468static int sctp_setsockopt_context(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003469 unsigned int optlen)
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003470{
3471 struct sctp_assoc_value params;
3472 struct sctp_sock *sp;
3473 struct sctp_association *asoc;
3474
3475 if (optlen != sizeof(struct sctp_assoc_value))
3476 return -EINVAL;
3477 if (copy_from_user(&params, optval, optlen))
3478 return -EFAULT;
3479
3480 sp = sctp_sk(sk);
3481
3482 if (params.assoc_id != 0) {
3483 asoc = sctp_id2assoc(sk, params.assoc_id);
3484 if (!asoc)
3485 return -EINVAL;
3486 asoc->default_rcv_context = params.assoc_value;
3487 } else {
3488 sp->default_rcv_context = params.assoc_value;
3489 }
3490
3491 return 0;
3492}
3493
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003494/*
3495 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
3496 *
3497 * This options will at a minimum specify if the implementation is doing
3498 * fragmented interleave. Fragmented interleave, for a one to many
3499 * socket, is when subsequent calls to receive a message may return
3500 * parts of messages from different associations. Some implementations
3501 * may allow you to turn this value on or off. If so, when turned off,
3502 * no fragment interleave will occur (which will cause a head of line
3503 * blocking amongst multiple associations sharing the same one to many
3504 * socket). When this option is turned on, then each receive call may
3505 * come from a different association (thus the user must receive data
3506 * with the extended calls (e.g. sctp_recvmsg) to keep track of which
3507 * association each receive belongs to.
3508 *
3509 * This option takes a boolean value. A non-zero value indicates that
3510 * fragmented interleave is on. A value of zero indicates that
3511 * fragmented interleave is off.
3512 *
3513 * Note that it is important that an implementation that allows this
3514 * option to be turned on, have it off by default. Otherwise an unaware
3515 * application using the one to many model may become confused and act
3516 * incorrectly.
3517 */
3518static int sctp_setsockopt_fragment_interleave(struct sock *sk,
3519 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003520 unsigned int optlen)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003521{
3522 int val;
3523
3524 if (optlen != sizeof(int))
3525 return -EINVAL;
3526 if (get_user(val, (int __user *)optval))
3527 return -EFAULT;
3528
Xin Long772a5862017-12-08 21:03:58 +08003529 sctp_sk(sk)->frag_interleave = !!val;
3530
3531 if (!sctp_sk(sk)->frag_interleave)
3532 sctp_sk(sk)->strm_interleave = 0;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003533
3534 return 0;
3535}
3536
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003537/*
Wei Yongjun8510b932008-12-25 16:59:03 -08003538 * 8.1.21. Set or Get the SCTP Partial Delivery Point
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003539 * (SCTP_PARTIAL_DELIVERY_POINT)
Wei Yongjun8510b932008-12-25 16:59:03 -08003540 *
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003541 * This option will set or get the SCTP partial delivery point. This
3542 * point is the size of a message where the partial delivery API will be
3543 * invoked to help free up rwnd space for the peer. Setting this to a
Wei Yongjun8510b932008-12-25 16:59:03 -08003544 * lower value will cause partial deliveries to happen more often. The
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003545 * calls argument is an integer that sets or gets the partial delivery
Wei Yongjun8510b932008-12-25 16:59:03 -08003546 * point. Note also that the call will fail if the user attempts to set
3547 * this value larger than the socket receive buffer size.
3548 *
3549 * Note that any single message having a length smaller than or equal to
3550 * the SCTP partial delivery point will be delivered in one single read
3551 * call as long as the user provided buffer is large enough to hold the
3552 * message.
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003553 */
3554static int sctp_setsockopt_partial_delivery_point(struct sock *sk,
3555 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003556 unsigned int optlen)
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003557{
3558 u32 val;
3559
3560 if (optlen != sizeof(u32))
3561 return -EINVAL;
3562 if (get_user(val, (int __user *)optval))
3563 return -EFAULT;
3564
Wei Yongjun8510b932008-12-25 16:59:03 -08003565 /* Note: We double the receive buffer from what the user sets
3566 * it to be, also initial rwnd is based on rcvbuf/2.
3567 */
3568 if (val > (sk->sk_rcvbuf >> 1))
3569 return -EINVAL;
3570
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003571 sctp_sk(sk)->pd_point = val;
3572
3573 return 0; /* is this the right error code? */
3574}
3575
Vlad Yasevich70331572007-03-23 11:34:36 -07003576/*
3577 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
3578 *
3579 * This option will allow a user to change the maximum burst of packets
3580 * that can be emitted by this association. Note that the default value
3581 * is 4, and some implementations may restrict this setting so that it
3582 * can only be lowered.
3583 *
3584 * NOTE: This text doesn't seem right. Do this on a socket basis with
3585 * future associations inheriting the socket value.
3586 */
3587static int sctp_setsockopt_maxburst(struct sock *sk,
3588 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003589 unsigned int optlen)
Vlad Yasevich70331572007-03-23 11:34:36 -07003590{
Neil Horman219b99a2008-03-05 13:44:46 -08003591 struct sctp_assoc_value params;
3592 struct sctp_sock *sp;
3593 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07003594 int val;
Neil Horman219b99a2008-03-05 13:44:46 -08003595 int assoc_id = 0;
Vlad Yasevich70331572007-03-23 11:34:36 -07003596
Neil Horman219b99a2008-03-05 13:44:46 -08003597 if (optlen == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05003598 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05003599 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05003600 "Use of int in max_burst socket option deprecated.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05003601 "Use struct sctp_assoc_value instead\n",
3602 current->comm, task_pid_nr(current));
Neil Horman219b99a2008-03-05 13:44:46 -08003603 if (copy_from_user(&val, optval, optlen))
3604 return -EFAULT;
3605 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3606 if (copy_from_user(&params, optval, optlen))
3607 return -EFAULT;
3608 val = params.assoc_value;
3609 assoc_id = params.assoc_id;
3610 } else
3611 return -EINVAL;
3612
3613 sp = sctp_sk(sk);
3614
3615 if (assoc_id != 0) {
3616 asoc = sctp_id2assoc(sk, assoc_id);
3617 if (!asoc)
3618 return -EINVAL;
3619 asoc->max_burst = val;
3620 } else
3621 sp->max_burst = val;
Vlad Yasevich70331572007-03-23 11:34:36 -07003622
3623 return 0;
3624}
3625
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003626/*
3627 * 7.1.18. Add a chunk that must be authenticated (SCTP_AUTH_CHUNK)
3628 *
3629 * This set option adds a chunk type that the user is requesting to be
3630 * received only in an authenticated way. Changes to the list of chunks
3631 * will only effect future associations on the socket.
3632 */
3633static int sctp_setsockopt_auth_chunk(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003634 char __user *optval,
3635 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003636{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003637 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003638 struct sctp_authchunk val;
3639
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003640 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003641 return -EACCES;
3642
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003643 if (optlen != sizeof(struct sctp_authchunk))
3644 return -EINVAL;
3645 if (copy_from_user(&val, optval, optlen))
3646 return -EFAULT;
3647
3648 switch (val.sauth_chunk) {
Joe Perches7fd71b12011-07-01 09:43:11 +00003649 case SCTP_CID_INIT:
3650 case SCTP_CID_INIT_ACK:
3651 case SCTP_CID_SHUTDOWN_COMPLETE:
3652 case SCTP_CID_AUTH:
3653 return -EINVAL;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003654 }
3655
3656 /* add this chunk id to the endpoint */
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003657 return sctp_auth_ep_add_chunkid(ep, val.sauth_chunk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003658}
3659
3660/*
3661 * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
3662 *
3663 * This option gets or sets the list of HMAC algorithms that the local
3664 * endpoint requires the peer to use.
3665 */
3666static int sctp_setsockopt_hmac_ident(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003667 char __user *optval,
3668 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003669{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003670 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003671 struct sctp_hmacalgo *hmacs;
Vlad Yasevichd9724052008-08-27 16:09:49 -07003672 u32 idents;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003673 int err;
3674
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003675 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003676 return -EACCES;
3677
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003678 if (optlen < sizeof(struct sctp_hmacalgo))
3679 return -EINVAL;
Marcelo Ricardo Leitner5960cef2018-01-08 19:02:28 -02003680 optlen = min_t(unsigned int, optlen, sizeof(struct sctp_hmacalgo) +
3681 SCTP_AUTH_NUM_HMACS * sizeof(u16));
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003682
wangweidongcb3f8372013-12-23 12:16:50 +08003683 hmacs = memdup_user(optval, optlen);
Shan Wei934253a2011-04-18 19:13:18 +00003684 if (IS_ERR(hmacs))
3685 return PTR_ERR(hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003686
Vlad Yasevichd9724052008-08-27 16:09:49 -07003687 idents = hmacs->shmac_num_idents;
3688 if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS ||
3689 (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo))) {
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003690 err = -EINVAL;
3691 goto out;
3692 }
3693
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003694 err = sctp_auth_ep_set_hmacs(ep, hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003695out:
3696 kfree(hmacs);
3697 return err;
3698}
3699
3700/*
3701 * 7.1.20. Set a shared key (SCTP_AUTH_KEY)
3702 *
3703 * This option will set a shared secret key which is used to build an
3704 * association shared key.
3705 */
3706static int sctp_setsockopt_auth_key(struct sock *sk,
3707 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003708 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003709{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003710 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003711 struct sctp_authkey *authkey;
3712 struct sctp_association *asoc;
3713 int ret;
3714
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003715 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003716 return -EACCES;
3717
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003718 if (optlen <= sizeof(struct sctp_authkey))
3719 return -EINVAL;
Marcelo Ricardo Leitner5960cef2018-01-08 19:02:28 -02003720 /* authkey->sca_keylength is u16, so optlen can't be bigger than
3721 * this.
3722 */
3723 optlen = min_t(unsigned int, optlen, USHRT_MAX +
3724 sizeof(struct sctp_authkey));
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003725
wangweidongcb3f8372013-12-23 12:16:50 +08003726 authkey = memdup_user(optval, optlen);
Shan Wei934253a2011-04-18 19:13:18 +00003727 if (IS_ERR(authkey))
3728 return PTR_ERR(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003729
Vlad Yasevich328fc472008-08-27 16:08:54 -07003730 if (authkey->sca_keylength > optlen - sizeof(struct sctp_authkey)) {
Vlad Yasevich30c22352008-08-25 15:16:19 -07003731 ret = -EINVAL;
3732 goto out;
3733 }
3734
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003735 asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
3736 if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) {
3737 ret = -EINVAL;
3738 goto out;
3739 }
3740
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003741 ret = sctp_auth_set_key(ep, asoc, authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003742out:
Daniel Borkmann6ba542a2013-02-08 03:04:34 +00003743 kzfree(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003744 return ret;
3745}
3746
3747/*
3748 * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
3749 *
3750 * This option will get or set the active shared key to be used to build
3751 * the association shared key.
3752 */
3753static int sctp_setsockopt_active_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003754 char __user *optval,
3755 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003756{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003757 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003758 struct sctp_authkeyid val;
3759 struct sctp_association *asoc;
3760
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003761 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003762 return -EACCES;
3763
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003764 if (optlen != sizeof(struct sctp_authkeyid))
3765 return -EINVAL;
3766 if (copy_from_user(&val, optval, optlen))
3767 return -EFAULT;
3768
3769 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3770 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3771 return -EINVAL;
3772
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003773 return sctp_auth_set_active_key(ep, asoc, val.scact_keynumber);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003774}
3775
3776/*
3777 * 7.1.22. Delete a shared key (SCTP_AUTH_DELETE_KEY)
3778 *
3779 * This set option will delete a shared secret key from use.
3780 */
3781static int sctp_setsockopt_del_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003782 char __user *optval,
3783 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003784{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003785 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003786 struct sctp_authkeyid val;
3787 struct sctp_association *asoc;
3788
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003789 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003790 return -EACCES;
3791
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003792 if (optlen != sizeof(struct sctp_authkeyid))
3793 return -EINVAL;
3794 if (copy_from_user(&val, optval, optlen))
3795 return -EFAULT;
3796
3797 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3798 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3799 return -EINVAL;
3800
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003801 return sctp_auth_del_key_id(ep, asoc, val.scact_keynumber);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003802
3803}
3804
Michio Honda7dc04d72011-04-26 20:16:31 +09003805/*
Xin Long601590e2018-03-14 19:05:32 +08003806 * 8.3.4 Deactivate a Shared Key (SCTP_AUTH_DEACTIVATE_KEY)
3807 *
3808 * This set option will deactivate a shared secret key.
3809 */
3810static int sctp_setsockopt_deactivate_key(struct sock *sk, char __user *optval,
3811 unsigned int optlen)
3812{
3813 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3814 struct sctp_authkeyid val;
3815 struct sctp_association *asoc;
3816
3817 if (!ep->auth_enable)
3818 return -EACCES;
3819
3820 if (optlen != sizeof(struct sctp_authkeyid))
3821 return -EINVAL;
3822 if (copy_from_user(&val, optval, optlen))
3823 return -EFAULT;
3824
3825 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3826 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3827 return -EINVAL;
3828
3829 return sctp_auth_deact_key_id(ep, asoc, val.scact_keynumber);
3830}
3831
3832/*
Michio Honda7dc04d72011-04-26 20:16:31 +09003833 * 8.1.23 SCTP_AUTO_ASCONF
3834 *
3835 * This option will enable or disable the use of the automatic generation of
3836 * ASCONF chunks to add and delete addresses to an existing association. Note
3837 * that this option has two caveats namely: a) it only affects sockets that
3838 * are bound to all addresses available to the SCTP stack, and b) the system
3839 * administrator may have an overriding control that turns the ASCONF feature
3840 * off no matter what setting the socket option may have.
3841 * This option expects an integer boolean flag, where a non-zero value turns on
3842 * the option, and a zero value turns off the option.
3843 * Note. In this implementation, socket operation overrides default parameter
3844 * being set by sysctl as well as FreeBSD implementation
3845 */
3846static int sctp_setsockopt_auto_asconf(struct sock *sk, char __user *optval,
3847 unsigned int optlen)
3848{
3849 int val;
3850 struct sctp_sock *sp = sctp_sk(sk);
3851
3852 if (optlen < sizeof(int))
3853 return -EINVAL;
3854 if (get_user(val, (int __user *)optval))
3855 return -EFAULT;
3856 if (!sctp_is_ep_boundall(sk) && val)
3857 return -EINVAL;
3858 if ((val && sp->do_auto_asconf) || (!val && !sp->do_auto_asconf))
3859 return 0;
3860
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03003861 spin_lock_bh(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda7dc04d72011-04-26 20:16:31 +09003862 if (val == 0 && sp->do_auto_asconf) {
3863 list_del(&sp->auto_asconf_list);
3864 sp->do_auto_asconf = 0;
3865 } else if (val && !sp->do_auto_asconf) {
3866 list_add_tail(&sp->auto_asconf_list,
Eric W. Biederman4db67e82012-08-06 08:42:04 +00003867 &sock_net(sk)->sctp.auto_asconf_splist);
Michio Honda7dc04d72011-04-26 20:16:31 +09003868 sp->do_auto_asconf = 1;
3869 }
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03003870 spin_unlock_bh(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda7dc04d72011-04-26 20:16:31 +09003871 return 0;
3872}
3873
Neil Horman5aa93bc2012-07-21 07:56:07 +00003874/*
3875 * SCTP_PEER_ADDR_THLDS
3876 *
3877 * This option allows us to alter the partially failed threshold for one or all
3878 * transports in an association. See Section 6.1 of:
3879 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
3880 */
3881static int sctp_setsockopt_paddr_thresholds(struct sock *sk,
3882 char __user *optval,
3883 unsigned int optlen)
3884{
3885 struct sctp_paddrthlds val;
3886 struct sctp_transport *trans;
3887 struct sctp_association *asoc;
3888
3889 if (optlen < sizeof(struct sctp_paddrthlds))
3890 return -EINVAL;
3891 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval,
3892 sizeof(struct sctp_paddrthlds)))
3893 return -EFAULT;
3894
3895
3896 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
3897 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
3898 if (!asoc)
3899 return -ENOENT;
3900 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
3901 transports) {
3902 if (val.spt_pathmaxrxt)
3903 trans->pathmaxrxt = val.spt_pathmaxrxt;
3904 trans->pf_retrans = val.spt_pathpfthld;
3905 }
3906
3907 if (val.spt_pathmaxrxt)
3908 asoc->pathmaxrxt = val.spt_pathmaxrxt;
3909 asoc->pf_retrans = val.spt_pathpfthld;
3910 } else {
3911 trans = sctp_addr_id2transport(sk, &val.spt_address,
3912 val.spt_assoc_id);
3913 if (!trans)
3914 return -ENOENT;
3915
3916 if (val.spt_pathmaxrxt)
3917 trans->pathmaxrxt = val.spt_pathmaxrxt;
3918 trans->pf_retrans = val.spt_pathpfthld;
3919 }
3920
3921 return 0;
3922}
3923
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02003924static int sctp_setsockopt_recvrcvinfo(struct sock *sk,
3925 char __user *optval,
3926 unsigned int optlen)
3927{
3928 int val;
3929
3930 if (optlen < sizeof(int))
3931 return -EINVAL;
3932 if (get_user(val, (int __user *) optval))
3933 return -EFAULT;
3934
3935 sctp_sk(sk)->recvrcvinfo = (val == 0) ? 0 : 1;
3936
3937 return 0;
3938}
3939
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02003940static int sctp_setsockopt_recvnxtinfo(struct sock *sk,
3941 char __user *optval,
3942 unsigned int optlen)
3943{
3944 int val;
3945
3946 if (optlen < sizeof(int))
3947 return -EINVAL;
3948 if (get_user(val, (int __user *) optval))
3949 return -EFAULT;
3950
3951 sctp_sk(sk)->recvnxtinfo = (val == 0) ? 0 : 1;
3952
3953 return 0;
3954}
3955
Xin Long28aa4c22016-07-09 19:47:40 +08003956static int sctp_setsockopt_pr_supported(struct sock *sk,
3957 char __user *optval,
3958 unsigned int optlen)
3959{
3960 struct sctp_assoc_value params;
3961 struct sctp_association *asoc;
3962 int retval = -EINVAL;
3963
3964 if (optlen != sizeof(params))
3965 goto out;
3966
3967 if (copy_from_user(&params, optval, optlen)) {
3968 retval = -EFAULT;
3969 goto out;
3970 }
3971
3972 asoc = sctp_id2assoc(sk, params.assoc_id);
3973 if (asoc) {
3974 asoc->prsctp_enable = !!params.assoc_value;
3975 } else if (!params.assoc_id) {
3976 struct sctp_sock *sp = sctp_sk(sk);
3977
3978 sp->ep->prsctp_enable = !!params.assoc_value;
3979 } else {
3980 goto out;
3981 }
3982
3983 retval = 0;
3984
3985out:
3986 return retval;
3987}
3988
Xin Longf959fb42016-07-09 19:47:41 +08003989static int sctp_setsockopt_default_prinfo(struct sock *sk,
3990 char __user *optval,
3991 unsigned int optlen)
3992{
3993 struct sctp_default_prinfo info;
3994 struct sctp_association *asoc;
3995 int retval = -EINVAL;
3996
3997 if (optlen != sizeof(info))
3998 goto out;
3999
4000 if (copy_from_user(&info, optval, sizeof(info))) {
4001 retval = -EFAULT;
4002 goto out;
4003 }
4004
4005 if (info.pr_policy & ~SCTP_PR_SCTP_MASK)
4006 goto out;
4007
4008 if (info.pr_policy == SCTP_PR_SCTP_NONE)
4009 info.pr_value = 0;
4010
4011 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
4012 if (asoc) {
4013 SCTP_PR_SET_POLICY(asoc->default_flags, info.pr_policy);
4014 asoc->default_timetolive = info.pr_value;
4015 } else if (!info.pr_assoc_id) {
4016 struct sctp_sock *sp = sctp_sk(sk);
4017
4018 SCTP_PR_SET_POLICY(sp->default_flags, info.pr_policy);
4019 sp->default_timetolive = info.pr_value;
4020 } else {
4021 goto out;
4022 }
4023
4024 retval = 0;
4025
4026out:
4027 return retval;
4028}
4029
Xin Longc0d8bab2017-03-10 12:11:12 +08004030static int sctp_setsockopt_reconfig_supported(struct sock *sk,
4031 char __user *optval,
4032 unsigned int optlen)
4033{
4034 struct sctp_assoc_value params;
4035 struct sctp_association *asoc;
4036 int retval = -EINVAL;
4037
4038 if (optlen != sizeof(params))
4039 goto out;
4040
4041 if (copy_from_user(&params, optval, optlen)) {
4042 retval = -EFAULT;
4043 goto out;
4044 }
4045
4046 asoc = sctp_id2assoc(sk, params.assoc_id);
4047 if (asoc) {
4048 asoc->reconf_enable = !!params.assoc_value;
4049 } else if (!params.assoc_id) {
4050 struct sctp_sock *sp = sctp_sk(sk);
4051
4052 sp->ep->reconf_enable = !!params.assoc_value;
4053 } else {
4054 goto out;
4055 }
4056
4057 retval = 0;
4058
4059out:
4060 return retval;
4061}
4062
Xin Long9fb657a2017-01-18 00:44:46 +08004063static int sctp_setsockopt_enable_strreset(struct sock *sk,
4064 char __user *optval,
4065 unsigned int optlen)
4066{
4067 struct sctp_assoc_value params;
4068 struct sctp_association *asoc;
4069 int retval = -EINVAL;
4070
4071 if (optlen != sizeof(params))
4072 goto out;
4073
4074 if (copy_from_user(&params, optval, optlen)) {
4075 retval = -EFAULT;
4076 goto out;
4077 }
4078
4079 if (params.assoc_value & (~SCTP_ENABLE_STRRESET_MASK))
4080 goto out;
4081
4082 asoc = sctp_id2assoc(sk, params.assoc_id);
4083 if (asoc) {
4084 asoc->strreset_enable = params.assoc_value;
4085 } else if (!params.assoc_id) {
4086 struct sctp_sock *sp = sctp_sk(sk);
4087
4088 sp->ep->strreset_enable = params.assoc_value;
4089 } else {
4090 goto out;
4091 }
4092
4093 retval = 0;
4094
4095out:
4096 return retval;
4097}
4098
Xin Long7f9d68a2017-01-18 00:44:47 +08004099static int sctp_setsockopt_reset_streams(struct sock *sk,
4100 char __user *optval,
4101 unsigned int optlen)
4102{
4103 struct sctp_reset_streams *params;
4104 struct sctp_association *asoc;
4105 int retval = -EINVAL;
4106
Xin Long2342b8d2017-12-10 15:40:51 +08004107 if (optlen < sizeof(*params))
Xin Long7f9d68a2017-01-18 00:44:47 +08004108 return -EINVAL;
Marcelo Ricardo Leitner5960cef2018-01-08 19:02:28 -02004109 /* srs_number_streams is u16, so optlen can't be bigger than this. */
4110 optlen = min_t(unsigned int, optlen, USHRT_MAX +
4111 sizeof(__u16) * sizeof(*params));
Xin Long7f9d68a2017-01-18 00:44:47 +08004112
4113 params = memdup_user(optval, optlen);
4114 if (IS_ERR(params))
4115 return PTR_ERR(params);
4116
Xin Long2342b8d2017-12-10 15:40:51 +08004117 if (params->srs_number_streams * sizeof(__u16) >
4118 optlen - sizeof(*params))
4119 goto out;
4120
Xin Long7f9d68a2017-01-18 00:44:47 +08004121 asoc = sctp_id2assoc(sk, params->srs_assoc_id);
4122 if (!asoc)
4123 goto out;
4124
4125 retval = sctp_send_reset_streams(asoc, params);
4126
4127out:
4128 kfree(params);
4129 return retval;
4130}
4131
Xin Longa92ce1a2017-02-09 01:18:18 +08004132static int sctp_setsockopt_reset_assoc(struct sock *sk,
4133 char __user *optval,
4134 unsigned int optlen)
4135{
4136 struct sctp_association *asoc;
4137 sctp_assoc_t associd;
4138 int retval = -EINVAL;
4139
4140 if (optlen != sizeof(associd))
4141 goto out;
4142
4143 if (copy_from_user(&associd, optval, optlen)) {
4144 retval = -EFAULT;
4145 goto out;
4146 }
4147
4148 asoc = sctp_id2assoc(sk, associd);
4149 if (!asoc)
4150 goto out;
4151
4152 retval = sctp_send_reset_assoc(asoc);
4153
4154out:
4155 return retval;
4156}
4157
Xin Long242bd2d2017-02-09 01:18:20 +08004158static int sctp_setsockopt_add_streams(struct sock *sk,
4159 char __user *optval,
4160 unsigned int optlen)
4161{
4162 struct sctp_association *asoc;
4163 struct sctp_add_streams params;
4164 int retval = -EINVAL;
4165
4166 if (optlen != sizeof(params))
4167 goto out;
4168
4169 if (copy_from_user(&params, optval, optlen)) {
4170 retval = -EFAULT;
4171 goto out;
4172 }
4173
4174 asoc = sctp_id2assoc(sk, params.sas_assoc_id);
4175 if (!asoc)
4176 goto out;
4177
4178 retval = sctp_send_add_streams(asoc, &params);
4179
4180out:
4181 return retval;
4182}
4183
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004184static int sctp_setsockopt_scheduler(struct sock *sk,
4185 char __user *optval,
4186 unsigned int optlen)
4187{
4188 struct sctp_association *asoc;
4189 struct sctp_assoc_value params;
4190 int retval = -EINVAL;
4191
4192 if (optlen < sizeof(params))
4193 goto out;
4194
4195 optlen = sizeof(params);
4196 if (copy_from_user(&params, optval, optlen)) {
4197 retval = -EFAULT;
4198 goto out;
4199 }
4200
4201 if (params.assoc_value > SCTP_SS_MAX)
4202 goto out;
4203
4204 asoc = sctp_id2assoc(sk, params.assoc_id);
4205 if (!asoc)
4206 goto out;
4207
4208 retval = sctp_sched_set_sched(asoc, params.assoc_value);
4209
4210out:
4211 return retval;
4212}
4213
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004214static int sctp_setsockopt_scheduler_value(struct sock *sk,
4215 char __user *optval,
4216 unsigned int optlen)
4217{
4218 struct sctp_association *asoc;
4219 struct sctp_stream_value params;
4220 int retval = -EINVAL;
4221
4222 if (optlen < sizeof(params))
4223 goto out;
4224
4225 optlen = sizeof(params);
4226 if (copy_from_user(&params, optval, optlen)) {
4227 retval = -EFAULT;
4228 goto out;
4229 }
4230
4231 asoc = sctp_id2assoc(sk, params.assoc_id);
4232 if (!asoc)
4233 goto out;
4234
4235 retval = sctp_sched_set_value(asoc, params.stream_id,
4236 params.stream_value, GFP_KERNEL);
4237
4238out:
4239 return retval;
4240}
4241
Xin Long772a5862017-12-08 21:03:58 +08004242static int sctp_setsockopt_interleaving_supported(struct sock *sk,
4243 char __user *optval,
4244 unsigned int optlen)
4245{
4246 struct sctp_sock *sp = sctp_sk(sk);
4247 struct net *net = sock_net(sk);
4248 struct sctp_assoc_value params;
4249 int retval = -EINVAL;
4250
4251 if (optlen < sizeof(params))
4252 goto out;
4253
4254 optlen = sizeof(params);
4255 if (copy_from_user(&params, optval, optlen)) {
4256 retval = -EFAULT;
4257 goto out;
4258 }
4259
4260 if (params.assoc_id)
4261 goto out;
4262
4263 if (!net->sctp.intl_enable || !sp->frag_interleave) {
4264 retval = -EPERM;
4265 goto out;
4266 }
4267
4268 sp->strm_interleave = !!params.assoc_value;
4269
4270 retval = 0;
4271
4272out:
4273 return retval;
4274}
4275
Xin Longb0e9a2f2018-06-28 15:31:00 +08004276static int sctp_setsockopt_reuse_port(struct sock *sk, char __user *optval,
4277 unsigned int optlen)
4278{
4279 int val;
4280
4281 if (!sctp_style(sk, TCP))
4282 return -EOPNOTSUPP;
4283
4284 if (sctp_sk(sk)->ep->base.bind_addr.port)
4285 return -EFAULT;
4286
4287 if (optlen < sizeof(int))
4288 return -EINVAL;
4289
4290 if (get_user(val, (int __user *)optval))
4291 return -EFAULT;
4292
4293 sctp_sk(sk)->reuse = !!val;
4294
4295 return 0;
4296}
4297
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298/* API 6.2 setsockopt(), getsockopt()
4299 *
4300 * Applications use setsockopt() and getsockopt() to set or retrieve
4301 * socket options. Socket options are used to change the default
4302 * behavior of sockets calls. They are described in Section 7.
4303 *
4304 * The syntax is:
4305 *
4306 * ret = getsockopt(int sd, int level, int optname, void __user *optval,
4307 * int __user *optlen);
4308 * ret = setsockopt(int sd, int level, int optname, const void __user *optval,
4309 * int optlen);
4310 *
4311 * sd - the socket descript.
4312 * level - set to IPPROTO_SCTP for all SCTP options.
4313 * optname - the option name.
4314 * optval - the buffer to store the value of the option.
4315 * optlen - the size of the buffer.
4316 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004317static int sctp_setsockopt(struct sock *sk, int level, int optname,
4318 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319{
4320 int retval = 0;
4321
Daniel Borkmannbb333812013-06-28 19:49:40 +02004322 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323
4324 /* I can hardly begin to describe how wrong this is. This is
4325 * so broken as to be worse than useless. The API draft
4326 * REALLY is NOT helpful here... I am not convinced that the
4327 * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
4328 * are at all well-founded.
4329 */
4330 if (level != SOL_SCTP) {
4331 struct sctp_af *af = sctp_sk(sk)->pf->af;
4332 retval = af->setsockopt(sk, level, optname, optval, optlen);
4333 goto out_nounlock;
4334 }
4335
wangweidong048ed4b2014-01-21 15:44:11 +08004336 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337
4338 switch (optname) {
4339 case SCTP_SOCKOPT_BINDX_ADD:
4340 /* 'optlen' is the size of the addresses buffer. */
4341 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
4342 optlen, SCTP_BINDX_ADD_ADDR);
4343 break;
4344
4345 case SCTP_SOCKOPT_BINDX_REM:
4346 /* 'optlen' is the size of the addresses buffer. */
4347 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
4348 optlen, SCTP_BINDX_REM_ADDR);
4349 break;
4350
Vlad Yasevich88a0a942008-05-09 15:14:11 -07004351 case SCTP_SOCKOPT_CONNECTX_OLD:
4352 /* 'optlen' is the size of the addresses buffer. */
4353 retval = sctp_setsockopt_connectx_old(sk,
4354 (struct sockaddr __user *)optval,
4355 optlen);
4356 break;
4357
Frank Filz3f7a87d2005-06-20 13:14:57 -07004358 case SCTP_SOCKOPT_CONNECTX:
4359 /* 'optlen' is the size of the addresses buffer. */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07004360 retval = sctp_setsockopt_connectx(sk,
4361 (struct sockaddr __user *)optval,
4362 optlen);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004363 break;
4364
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365 case SCTP_DISABLE_FRAGMENTS:
4366 retval = sctp_setsockopt_disable_fragments(sk, optval, optlen);
4367 break;
4368
4369 case SCTP_EVENTS:
4370 retval = sctp_setsockopt_events(sk, optval, optlen);
4371 break;
4372
4373 case SCTP_AUTOCLOSE:
4374 retval = sctp_setsockopt_autoclose(sk, optval, optlen);
4375 break;
4376
4377 case SCTP_PEER_ADDR_PARAMS:
4378 retval = sctp_setsockopt_peer_addr_params(sk, optval, optlen);
4379 break;
4380
Shan Wei4580ccc2011-01-18 22:39:00 +00004381 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07004382 retval = sctp_setsockopt_delayed_ack(sk, optval, optlen);
Frank Filz77086102005-12-22 11:37:30 -08004383 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07004384 case SCTP_PARTIAL_DELIVERY_POINT:
4385 retval = sctp_setsockopt_partial_delivery_point(sk, optval, optlen);
4386 break;
Frank Filz77086102005-12-22 11:37:30 -08004387
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388 case SCTP_INITMSG:
4389 retval = sctp_setsockopt_initmsg(sk, optval, optlen);
4390 break;
4391 case SCTP_DEFAULT_SEND_PARAM:
4392 retval = sctp_setsockopt_default_send_param(sk, optval,
4393 optlen);
4394 break;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02004395 case SCTP_DEFAULT_SNDINFO:
4396 retval = sctp_setsockopt_default_sndinfo(sk, optval, optlen);
4397 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398 case SCTP_PRIMARY_ADDR:
4399 retval = sctp_setsockopt_primary_addr(sk, optval, optlen);
4400 break;
4401 case SCTP_SET_PEER_PRIMARY_ADDR:
4402 retval = sctp_setsockopt_peer_primary_addr(sk, optval, optlen);
4403 break;
4404 case SCTP_NODELAY:
4405 retval = sctp_setsockopt_nodelay(sk, optval, optlen);
4406 break;
4407 case SCTP_RTOINFO:
4408 retval = sctp_setsockopt_rtoinfo(sk, optval, optlen);
4409 break;
4410 case SCTP_ASSOCINFO:
4411 retval = sctp_setsockopt_associnfo(sk, optval, optlen);
4412 break;
4413 case SCTP_I_WANT_MAPPED_V4_ADDR:
4414 retval = sctp_setsockopt_mappedv4(sk, optval, optlen);
4415 break;
4416 case SCTP_MAXSEG:
4417 retval = sctp_setsockopt_maxseg(sk, optval, optlen);
4418 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004419 case SCTP_ADAPTATION_LAYER:
4420 retval = sctp_setsockopt_adaptation_layer(sk, optval, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004422 case SCTP_CONTEXT:
4423 retval = sctp_setsockopt_context(sk, optval, optlen);
4424 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004425 case SCTP_FRAGMENT_INTERLEAVE:
4426 retval = sctp_setsockopt_fragment_interleave(sk, optval, optlen);
4427 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07004428 case SCTP_MAX_BURST:
4429 retval = sctp_setsockopt_maxburst(sk, optval, optlen);
4430 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07004431 case SCTP_AUTH_CHUNK:
4432 retval = sctp_setsockopt_auth_chunk(sk, optval, optlen);
4433 break;
4434 case SCTP_HMAC_IDENT:
4435 retval = sctp_setsockopt_hmac_ident(sk, optval, optlen);
4436 break;
4437 case SCTP_AUTH_KEY:
4438 retval = sctp_setsockopt_auth_key(sk, optval, optlen);
4439 break;
4440 case SCTP_AUTH_ACTIVE_KEY:
4441 retval = sctp_setsockopt_active_key(sk, optval, optlen);
4442 break;
4443 case SCTP_AUTH_DELETE_KEY:
4444 retval = sctp_setsockopt_del_key(sk, optval, optlen);
4445 break;
Xin Long601590e2018-03-14 19:05:32 +08004446 case SCTP_AUTH_DEACTIVATE_KEY:
4447 retval = sctp_setsockopt_deactivate_key(sk, optval, optlen);
4448 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09004449 case SCTP_AUTO_ASCONF:
4450 retval = sctp_setsockopt_auto_asconf(sk, optval, optlen);
4451 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00004452 case SCTP_PEER_ADDR_THLDS:
4453 retval = sctp_setsockopt_paddr_thresholds(sk, optval, optlen);
4454 break;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004455 case SCTP_RECVRCVINFO:
4456 retval = sctp_setsockopt_recvrcvinfo(sk, optval, optlen);
4457 break;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02004458 case SCTP_RECVNXTINFO:
4459 retval = sctp_setsockopt_recvnxtinfo(sk, optval, optlen);
4460 break;
Xin Long28aa4c22016-07-09 19:47:40 +08004461 case SCTP_PR_SUPPORTED:
4462 retval = sctp_setsockopt_pr_supported(sk, optval, optlen);
4463 break;
Xin Longf959fb42016-07-09 19:47:41 +08004464 case SCTP_DEFAULT_PRINFO:
4465 retval = sctp_setsockopt_default_prinfo(sk, optval, optlen);
4466 break;
Xin Longc0d8bab2017-03-10 12:11:12 +08004467 case SCTP_RECONFIG_SUPPORTED:
4468 retval = sctp_setsockopt_reconfig_supported(sk, optval, optlen);
4469 break;
Xin Long9fb657a2017-01-18 00:44:46 +08004470 case SCTP_ENABLE_STREAM_RESET:
4471 retval = sctp_setsockopt_enable_strreset(sk, optval, optlen);
4472 break;
Xin Long7f9d68a2017-01-18 00:44:47 +08004473 case SCTP_RESET_STREAMS:
4474 retval = sctp_setsockopt_reset_streams(sk, optval, optlen);
4475 break;
Xin Longa92ce1a2017-02-09 01:18:18 +08004476 case SCTP_RESET_ASSOC:
4477 retval = sctp_setsockopt_reset_assoc(sk, optval, optlen);
4478 break;
Xin Long242bd2d2017-02-09 01:18:20 +08004479 case SCTP_ADD_STREAMS:
4480 retval = sctp_setsockopt_add_streams(sk, optval, optlen);
4481 break;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004482 case SCTP_STREAM_SCHEDULER:
4483 retval = sctp_setsockopt_scheduler(sk, optval, optlen);
4484 break;
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004485 case SCTP_STREAM_SCHEDULER_VALUE:
4486 retval = sctp_setsockopt_scheduler_value(sk, optval, optlen);
4487 break;
Xin Long772a5862017-12-08 21:03:58 +08004488 case SCTP_INTERLEAVING_SUPPORTED:
4489 retval = sctp_setsockopt_interleaving_supported(sk, optval,
4490 optlen);
4491 break;
Xin Longb0e9a2f2018-06-28 15:31:00 +08004492 case SCTP_REUSE_PORT:
4493 retval = sctp_setsockopt_reuse_port(sk, optval, optlen);
4494 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495 default:
4496 retval = -ENOPROTOOPT;
4497 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07004498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499
wangweidong048ed4b2014-01-21 15:44:11 +08004500 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501
4502out_nounlock:
4503 return retval;
4504}
4505
4506/* API 3.1.6 connect() - UDP Style Syntax
4507 *
4508 * An application may use the connect() call in the UDP model to initiate an
4509 * association without sending data.
4510 *
4511 * The syntax is:
4512 *
4513 * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
4514 *
4515 * sd: the socket descriptor to have a new association added to.
4516 *
4517 * nam: the address structure (either struct sockaddr_in or struct
4518 * sockaddr_in6 defined in RFC2553 [7]).
4519 *
4520 * len: the size of the address.
4521 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004522static int sctp_connect(struct sock *sk, struct sockaddr *addr,
Xin Long644fbde2018-05-20 16:39:10 +08004523 int addr_len, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524{
Xin Long644fbde2018-05-20 16:39:10 +08004525 struct inet_sock *inet = inet_sk(sk);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004526 struct sctp_af *af;
Xin Long644fbde2018-05-20 16:39:10 +08004527 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528
wangweidong048ed4b2014-01-21 15:44:11 +08004529 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530
Daniel Borkmannbb333812013-06-28 19:49:40 +02004531 pr_debug("%s: sk:%p, sockaddr:%p, addr_len:%d\n", __func__, sk,
4532 addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533
Xin Long644fbde2018-05-20 16:39:10 +08004534 /* We may need to bind the socket. */
4535 if (!inet->inet_num) {
4536 if (sk->sk_prot->get_port(sk, 0)) {
4537 release_sock(sk);
4538 return -EAGAIN;
4539 }
4540 inet->inet_sport = htons(inet->inet_num);
4541 }
4542
Frank Filz3f7a87d2005-06-20 13:14:57 -07004543 /* Validate addr_len before calling common connect/connectx routine. */
4544 af = sctp_get_af_specific(addr->sa_family);
4545 if (!af || addr_len < af->sockaddr_len) {
4546 err = -EINVAL;
4547 } else {
4548 /* Pass correct addr len to common routine (so it knows there
4549 * is only one address being passed.
4550 */
Xin Long644fbde2018-05-20 16:39:10 +08004551 err = __sctp_connect(sk, addr, af->sockaddr_len, flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552 }
4553
wangweidong048ed4b2014-01-21 15:44:11 +08004554 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 return err;
4556}
4557
Xin Long644fbde2018-05-20 16:39:10 +08004558int sctp_inet_connect(struct socket *sock, struct sockaddr *uaddr,
4559 int addr_len, int flags)
4560{
4561 if (addr_len < sizeof(uaddr->sa_family))
4562 return -EINVAL;
4563
4564 if (uaddr->sa_family == AF_UNSPEC)
4565 return -EOPNOTSUPP;
4566
4567 return sctp_connect(sock->sk, uaddr, addr_len, flags);
4568}
4569
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570/* FIXME: Write comments. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004571static int sctp_disconnect(struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572{
4573 return -EOPNOTSUPP; /* STUB */
4574}
4575
4576/* 4.1.4 accept() - TCP Style Syntax
4577 *
4578 * Applications use accept() call to remove an established SCTP
4579 * association from the accept queue of the endpoint. A new socket
4580 * descriptor will be returned from accept() to represent the newly
4581 * formed association.
4582 */
David Howellscdfbabf2017-03-09 08:09:05 +00004583static struct sock *sctp_accept(struct sock *sk, int flags, int *err, bool kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584{
4585 struct sctp_sock *sp;
4586 struct sctp_endpoint *ep;
4587 struct sock *newsk = NULL;
4588 struct sctp_association *asoc;
4589 long timeo;
4590 int error = 0;
4591
wangweidong048ed4b2014-01-21 15:44:11 +08004592 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593
4594 sp = sctp_sk(sk);
4595 ep = sp->ep;
4596
4597 if (!sctp_style(sk, TCP)) {
4598 error = -EOPNOTSUPP;
4599 goto out;
4600 }
4601
4602 if (!sctp_sstate(sk, LISTENING)) {
4603 error = -EINVAL;
4604 goto out;
4605 }
4606
Sridhar Samudrala8abfedd2006-08-22 00:24:09 -07004607 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608
4609 error = sctp_wait_for_accept(sk, timeo);
4610 if (error)
4611 goto out;
4612
4613 /* We treat the list of associations on the endpoint as the accept
4614 * queue and pick the first association on the list.
4615 */
4616 asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
4617
David Howellscdfbabf2017-03-09 08:09:05 +00004618 newsk = sp->pf->create_accept_sk(sk, asoc, kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 if (!newsk) {
4620 error = -ENOMEM;
4621 goto out;
4622 }
4623
4624 /* Populate the fields of the newsk from the oldsk and migrate the
4625 * asoc to the newsk.
4626 */
4627 sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
4628
4629out:
wangweidong048ed4b2014-01-21 15:44:11 +08004630 release_sock(sk);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004631 *err = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632 return newsk;
4633}
4634
4635/* The SCTP ioctl handler. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004636static int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637{
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004638 int rc = -ENOTCONN;
4639
wangweidong048ed4b2014-01-21 15:44:11 +08004640 lock_sock(sk);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004641
4642 /*
4643 * SEQPACKET-style sockets in LISTENING state are valid, for
4644 * SCTP, so only discard TCP-style sockets in LISTENING state.
4645 */
4646 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
4647 goto out;
4648
4649 switch (cmd) {
4650 case SIOCINQ: {
4651 struct sk_buff *skb;
4652 unsigned int amount = 0;
4653
4654 skb = skb_peek(&sk->sk_receive_queue);
4655 if (skb != NULL) {
4656 /*
4657 * We will only return the amount of this packet since
4658 * that is all that will be read.
4659 */
4660 amount = skb->len;
4661 }
4662 rc = put_user(amount, (int __user *)arg);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004663 break;
David S. Miller9a7241c2010-10-03 22:14:37 -07004664 }
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004665 default:
4666 rc = -ENOIOCTLCMD;
4667 break;
4668 }
4669out:
wangweidong048ed4b2014-01-21 15:44:11 +08004670 release_sock(sk);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004671 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672}
4673
4674/* This is the function which gets called during socket creation to
4675 * initialized the SCTP-specific portion of the sock.
4676 * The sock structure should already be zero-filled memory.
4677 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004678static int sctp_init_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004680 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681 struct sctp_sock *sp;
4682
Daniel Borkmannbb333812013-06-28 19:49:40 +02004683 pr_debug("%s: sk:%p\n", __func__, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684
4685 sp = sctp_sk(sk);
4686
4687 /* Initialize the SCTP per socket area. */
4688 switch (sk->sk_type) {
4689 case SOCK_SEQPACKET:
4690 sp->type = SCTP_SOCKET_UDP;
4691 break;
4692 case SOCK_STREAM:
4693 sp->type = SCTP_SOCKET_TCP;
4694 break;
4695 default:
4696 return -ESOCKTNOSUPPORT;
4697 }
4698
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -03004699 sk->sk_gso_type = SKB_GSO_SCTP;
4700
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701 /* Initialize default send parameters. These parameters can be
4702 * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
4703 */
4704 sp->default_stream = 0;
4705 sp->default_ppid = 0;
4706 sp->default_flags = 0;
4707 sp->default_context = 0;
4708 sp->default_timetolive = 0;
4709
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004710 sp->default_rcv_context = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004711 sp->max_burst = net->sctp.max_burst;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004712
Neil Horman3c681982012-10-24 09:20:03 +00004713 sp->sctp_hmac_alg = net->sctp.sctp_hmac_alg;
4714
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 /* Initialize default setup parameters. These parameters
4716 * can be modified with the SCTP_INITMSG socket option or
4717 * overridden by the SCTP_INIT CMSG.
4718 */
4719 sp->initmsg.sinit_num_ostreams = sctp_max_outstreams;
4720 sp->initmsg.sinit_max_instreams = sctp_max_instreams;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004721 sp->initmsg.sinit_max_attempts = net->sctp.max_retrans_init;
4722 sp->initmsg.sinit_max_init_timeo = net->sctp.rto_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723
4724 /* Initialize default RTO related parameters. These parameters can
4725 * be modified for with the SCTP_RTOINFO socket option.
4726 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004727 sp->rtoinfo.srto_initial = net->sctp.rto_initial;
4728 sp->rtoinfo.srto_max = net->sctp.rto_max;
4729 sp->rtoinfo.srto_min = net->sctp.rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730
4731 /* Initialize default association related parameters. These parameters
4732 * can be modified with the SCTP_ASSOCINFO socket option.
4733 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004734 sp->assocparams.sasoc_asocmaxrxt = net->sctp.max_retrans_association;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 sp->assocparams.sasoc_number_peer_destinations = 0;
4736 sp->assocparams.sasoc_peer_rwnd = 0;
4737 sp->assocparams.sasoc_local_rwnd = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004738 sp->assocparams.sasoc_cookie_life = net->sctp.valid_cookie_life;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739
4740 /* Initialize default event subscriptions. By default, all the
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004741 * options are off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742 */
4743 memset(&sp->subscribe, 0, sizeof(struct sctp_event_subscribe));
4744
4745 /* Default Peer Address Parameters. These defaults can
4746 * be modified via SCTP_PEER_ADDR_PARAMS
4747 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004748 sp->hbinterval = net->sctp.hb_interval;
4749 sp->pathmaxrxt = net->sctp.max_retrans_path;
wangweidong4e2d52b2013-12-23 12:16:54 +08004750 sp->pathmtu = 0; /* allow default discovery */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004751 sp->sackdelay = net->sctp.sack_timeout;
Vlad Yasevich7bfe8bdb2008-06-09 15:45:05 -07004752 sp->sackfreq = 2;
Frank Filz52ccb8e2005-12-22 11:36:46 -08004753 sp->param_flags = SPP_HB_ENABLE |
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004754 SPP_PMTUD_ENABLE |
4755 SPP_SACKDELAY_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756
4757 /* If enabled no SCTP message fragmentation will be performed.
4758 * Configure through SCTP_DISABLE_FRAGMENTS socket option.
4759 */
4760 sp->disable_fragments = 0;
4761
Sridhar Samudrala208edef2006-09-29 17:08:01 -07004762 /* Enable Nagle algorithm by default. */
4763 sp->nodelay = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004765 sp->recvrcvinfo = 0;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02004766 sp->recvnxtinfo = 0;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004767
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768 /* Enable by default. */
4769 sp->v4mapped = 1;
4770
4771 /* Auto-close idle associations after the configured
4772 * number of seconds. A value of 0 disables this
4773 * feature. Configure through the SCTP_AUTOCLOSE socket option,
4774 * for UDP-style sockets only.
4775 */
4776 sp->autoclose = 0;
4777
4778 /* User specified fragmentation limit. */
4779 sp->user_frag = 0;
4780
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004781 sp->adaptation_ind = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782
4783 sp->pf = sctp_get_pf_specific(sk->sk_family);
4784
4785 /* Control variables for partial data delivery. */
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004786 atomic_set(&sp->pd_mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787 skb_queue_head_init(&sp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004788 sp->frag_interleave = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789
4790 /* Create a per socket endpoint structure. Even if we
4791 * change the data structure relationships, this may still
4792 * be useful for storing pre-connect address information.
4793 */
Daniel Borkmannc164b832013-06-14 18:24:06 +02004794 sp->ep = sctp_endpoint_new(sk, GFP_KERNEL);
4795 if (!sp->ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796 return -ENOMEM;
4797
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798 sp->hmac = NULL;
4799
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004800 sk->sk_destruct = sctp_destruct_sock;
4801
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802 SCTP_DBG_OBJCNT_INC(sock);
David S. Miller6f756a82008-11-23 17:34:03 -08004803
4804 local_bh_disable();
Tonghao Zhang8cb38a62017-12-22 10:15:20 -08004805 sk_sockets_allocated_inc(sk);
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004806 sock_prot_inuse_add(net, sk->sk_prot, 1);
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004807
4808 /* Nothing can fail after this block, otherwise
4809 * sctp_destroy_sock() will be called without addr_wq_lock held
4810 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004811 if (net->sctp.default_auto_asconf) {
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004812 spin_lock(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda9f7d6532011-04-26 19:32:51 +09004813 list_add_tail(&sp->auto_asconf_list,
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004814 &net->sctp.auto_asconf_splist);
Michio Honda9f7d6532011-04-26 19:32:51 +09004815 sp->do_auto_asconf = 1;
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004816 spin_unlock(&sock_net(sk)->sctp.addr_wq_lock);
4817 } else {
Michio Honda9f7d6532011-04-26 19:32:51 +09004818 sp->do_auto_asconf = 0;
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004819 }
4820
David S. Miller6f756a82008-11-23 17:34:03 -08004821 local_bh_enable();
4822
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823 return 0;
4824}
4825
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004826/* Cleanup any SCTP per socket resources. Must be called with
4827 * sock_net(sk)->sctp.addr_wq_lock held if sp->do_auto_asconf is true
4828 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004829static void sctp_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830{
Michio Honda9f7d6532011-04-26 19:32:51 +09004831 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832
Daniel Borkmannbb333812013-06-28 19:49:40 +02004833 pr_debug("%s: sk:%p\n", __func__, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834
4835 /* Release our hold on the endpoint. */
Michio Honda9f7d6532011-04-26 19:32:51 +09004836 sp = sctp_sk(sk);
Daniel Borkmann1abd1652013-06-06 15:53:47 +02004837 /* This could happen during socket init, thus we bail out
4838 * early, since the rest of the below is not setup either.
4839 */
4840 if (sp->ep == NULL)
4841 return;
4842
Michio Honda9f7d6532011-04-26 19:32:51 +09004843 if (sp->do_auto_asconf) {
4844 sp->do_auto_asconf = 0;
4845 list_del(&sp->auto_asconf_list);
4846 }
4847 sctp_endpoint_free(sp->ep);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004848 local_bh_disable();
Tonghao Zhang8cb38a62017-12-22 10:15:20 -08004849 sk_sockets_allocated_dec(sk);
Eric Dumazet9a57f7f2008-11-17 02:41:00 -08004850 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004851 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852}
4853
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004854/* Triggered when there are no references on the socket anymore */
4855static void sctp_destruct_sock(struct sock *sk)
4856{
4857 struct sctp_sock *sp = sctp_sk(sk);
4858
4859 /* Free up the HMAC transform. */
Herbert Xu5821c762016-01-24 21:20:12 +08004860 crypto_free_shash(sp->hmac);
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004861
4862 inet_sock_destruct(sk);
4863}
4864
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865/* API 4.1.7 shutdown() - TCP Style Syntax
4866 * int shutdown(int socket, int how);
4867 *
4868 * sd - the socket descriptor of the association to be closed.
4869 * how - Specifies the type of shutdown. The values are
4870 * as follows:
4871 * SHUT_RD
4872 * Disables further receive operations. No SCTP
4873 * protocol action is taken.
4874 * SHUT_WR
4875 * Disables further send operations, and initiates
4876 * the SCTP shutdown sequence.
4877 * SHUT_RDWR
4878 * Disables further send and receive operations
4879 * and initiates the SCTP shutdown sequence.
4880 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004881static void sctp_shutdown(struct sock *sk, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00004883 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884 struct sctp_endpoint *ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004885
4886 if (!sctp_style(sk, TCP))
4887 return;
4888
Xin Long5bf35dd2016-11-13 21:44:37 +08004889 ep = sctp_sk(sk)->ep;
4890 if (how & SEND_SHUTDOWN && !list_empty(&ep->asocs)) {
4891 struct sctp_association *asoc;
4892
Yafang Shaocbabf462017-12-20 11:12:54 +08004893 inet_sk_set_state(sk, SCTP_SS_CLOSING);
Xin Long5bf35dd2016-11-13 21:44:37 +08004894 asoc = list_entry(ep->asocs.next,
4895 struct sctp_association, asocs);
4896 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897 }
4898}
4899
Xin Long52c52a62016-04-14 15:35:30 +08004900int sctp_get_sctp_info(struct sock *sk, struct sctp_association *asoc,
4901 struct sctp_info *info)
4902{
4903 struct sctp_transport *prim;
4904 struct list_head *pos;
4905 int mask;
4906
4907 memset(info, 0, sizeof(*info));
4908 if (!asoc) {
4909 struct sctp_sock *sp = sctp_sk(sk);
4910
4911 info->sctpi_s_autoclose = sp->autoclose;
4912 info->sctpi_s_adaptation_ind = sp->adaptation_ind;
4913 info->sctpi_s_pd_point = sp->pd_point;
4914 info->sctpi_s_nodelay = sp->nodelay;
4915 info->sctpi_s_disable_fragments = sp->disable_fragments;
4916 info->sctpi_s_v4mapped = sp->v4mapped;
4917 info->sctpi_s_frag_interleave = sp->frag_interleave;
Xin Long40eb90e92016-05-29 17:42:13 +08004918 info->sctpi_s_type = sp->type;
Xin Long52c52a62016-04-14 15:35:30 +08004919
4920 return 0;
4921 }
4922
4923 info->sctpi_tag = asoc->c.my_vtag;
4924 info->sctpi_state = asoc->state;
4925 info->sctpi_rwnd = asoc->a_rwnd;
4926 info->sctpi_unackdata = asoc->unack_data;
4927 info->sctpi_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
Xin Longcee360a2017-05-31 16:36:31 +08004928 info->sctpi_instrms = asoc->stream.incnt;
4929 info->sctpi_outstrms = asoc->stream.outcnt;
Xin Long52c52a62016-04-14 15:35:30 +08004930 list_for_each(pos, &asoc->base.inqueue.in_chunk_list)
4931 info->sctpi_inqueue++;
4932 list_for_each(pos, &asoc->outqueue.out_chunk_list)
4933 info->sctpi_outqueue++;
4934 info->sctpi_overall_error = asoc->overall_error_count;
4935 info->sctpi_max_burst = asoc->max_burst;
4936 info->sctpi_maxseg = asoc->frag_point;
4937 info->sctpi_peer_rwnd = asoc->peer.rwnd;
4938 info->sctpi_peer_tag = asoc->c.peer_vtag;
4939
4940 mask = asoc->peer.ecn_capable << 1;
4941 mask = (mask | asoc->peer.ipv4_address) << 1;
4942 mask = (mask | asoc->peer.ipv6_address) << 1;
4943 mask = (mask | asoc->peer.hostname_address) << 1;
4944 mask = (mask | asoc->peer.asconf_capable) << 1;
4945 mask = (mask | asoc->peer.prsctp_capable) << 1;
4946 mask = (mask | asoc->peer.auth_capable);
4947 info->sctpi_peer_capable = mask;
4948 mask = asoc->peer.sack_needed << 1;
4949 mask = (mask | asoc->peer.sack_generation) << 1;
4950 mask = (mask | asoc->peer.zero_window_announced);
4951 info->sctpi_peer_sack = mask;
4952
4953 info->sctpi_isacks = asoc->stats.isacks;
4954 info->sctpi_osacks = asoc->stats.osacks;
4955 info->sctpi_opackets = asoc->stats.opackets;
4956 info->sctpi_ipackets = asoc->stats.ipackets;
4957 info->sctpi_rtxchunks = asoc->stats.rtxchunks;
4958 info->sctpi_outofseqtsns = asoc->stats.outofseqtsns;
4959 info->sctpi_idupchunks = asoc->stats.idupchunks;
4960 info->sctpi_gapcnt = asoc->stats.gapcnt;
4961 info->sctpi_ouodchunks = asoc->stats.ouodchunks;
4962 info->sctpi_iuodchunks = asoc->stats.iuodchunks;
4963 info->sctpi_oodchunks = asoc->stats.oodchunks;
4964 info->sctpi_iodchunks = asoc->stats.iodchunks;
4965 info->sctpi_octrlchunks = asoc->stats.octrlchunks;
4966 info->sctpi_ictrlchunks = asoc->stats.ictrlchunks;
4967
4968 prim = asoc->peer.primary_path;
Stefano Brivioee6c88b2017-08-23 13:27:13 +02004969 memcpy(&info->sctpi_p_address, &prim->ipaddr, sizeof(prim->ipaddr));
Xin Long52c52a62016-04-14 15:35:30 +08004970 info->sctpi_p_state = prim->state;
4971 info->sctpi_p_cwnd = prim->cwnd;
4972 info->sctpi_p_srtt = prim->srtt;
4973 info->sctpi_p_rto = jiffies_to_msecs(prim->rto);
4974 info->sctpi_p_hbinterval = prim->hbinterval;
4975 info->sctpi_p_pathmaxrxt = prim->pathmaxrxt;
4976 info->sctpi_p_sackdelay = jiffies_to_msecs(prim->sackdelay);
4977 info->sctpi_p_ssthresh = prim->ssthresh;
4978 info->sctpi_p_partial_bytes_acked = prim->partial_bytes_acked;
4979 info->sctpi_p_flight_size = prim->flight_size;
4980 info->sctpi_p_error = prim->error_count;
4981
4982 return 0;
4983}
4984EXPORT_SYMBOL_GPL(sctp_get_sctp_info);
4985
Xin Long626d16f2016-04-14 15:35:31 +08004986/* use callback to avoid exporting the core structure */
Tom Herbert97a6ec42017-12-04 10:31:41 -08004987void sctp_transport_walk_start(struct rhashtable_iter *iter)
Xin Long626d16f2016-04-14 15:35:31 +08004988{
Xin Long7fda702f2016-11-15 23:23:11 +08004989 rhltable_walk_enter(&sctp_transport_hashtable, iter);
Xin Long626d16f2016-04-14 15:35:31 +08004990
Tom Herbert97a6ec42017-12-04 10:31:41 -08004991 rhashtable_walk_start(iter);
Xin Long626d16f2016-04-14 15:35:31 +08004992}
4993
4994void sctp_transport_walk_stop(struct rhashtable_iter *iter)
4995{
4996 rhashtable_walk_stop(iter);
4997 rhashtable_walk_exit(iter);
4998}
4999
5000struct sctp_transport *sctp_transport_get_next(struct net *net,
5001 struct rhashtable_iter *iter)
5002{
5003 struct sctp_transport *t;
5004
5005 t = rhashtable_walk_next(iter);
5006 for (; t; t = rhashtable_walk_next(iter)) {
5007 if (IS_ERR(t)) {
5008 if (PTR_ERR(t) == -EAGAIN)
5009 continue;
5010 break;
5011 }
5012
Xin Longbab1be72018-08-27 18:38:31 +08005013 if (!sctp_transport_hold(t))
5014 continue;
5015
Xin Long626d16f2016-04-14 15:35:31 +08005016 if (net_eq(sock_net(t->asoc->base.sk), net) &&
5017 t->asoc->peer.primary_path == t)
5018 break;
Xin Longbab1be72018-08-27 18:38:31 +08005019
5020 sctp_transport_put(t);
Xin Long626d16f2016-04-14 15:35:31 +08005021 }
5022
5023 return t;
5024}
5025
5026struct sctp_transport *sctp_transport_get_idx(struct net *net,
5027 struct rhashtable_iter *iter,
5028 int pos)
5029{
Xin Longbab1be72018-08-27 18:38:31 +08005030 struct sctp_transport *t;
Xin Long626d16f2016-04-14 15:35:31 +08005031
Xin Longbab1be72018-08-27 18:38:31 +08005032 if (!pos)
5033 return SEQ_START_TOKEN;
Xin Long626d16f2016-04-14 15:35:31 +08005034
Xin Longbab1be72018-08-27 18:38:31 +08005035 while ((t = sctp_transport_get_next(net, iter)) && !IS_ERR(t)) {
5036 if (!--pos)
5037 break;
5038 sctp_transport_put(t);
5039 }
5040
5041 return t;
Xin Long626d16f2016-04-14 15:35:31 +08005042}
5043
5044int sctp_for_each_endpoint(int (*cb)(struct sctp_endpoint *, void *),
5045 void *p) {
5046 int err = 0;
5047 int hash = 0;
5048 struct sctp_ep_common *epb;
5049 struct sctp_hashbucket *head;
5050
5051 for (head = sctp_ep_hashtable; hash < sctp_ep_hashsize;
5052 hash++, head++) {
Xin Long581409d2017-06-10 14:48:14 +08005053 read_lock_bh(&head->lock);
Xin Long626d16f2016-04-14 15:35:31 +08005054 sctp_for_each_hentry(epb, &head->chain) {
5055 err = cb(sctp_ep(epb), p);
5056 if (err)
5057 break;
5058 }
Xin Long581409d2017-06-10 14:48:14 +08005059 read_unlock_bh(&head->lock);
Xin Long626d16f2016-04-14 15:35:31 +08005060 }
5061
5062 return err;
5063}
5064EXPORT_SYMBOL_GPL(sctp_for_each_endpoint);
5065
5066int sctp_transport_lookup_process(int (*cb)(struct sctp_transport *, void *),
5067 struct net *net,
5068 const union sctp_addr *laddr,
5069 const union sctp_addr *paddr, void *p)
5070{
5071 struct sctp_transport *transport;
Xin Long08abb792016-12-15 23:05:52 +08005072 int err;
Xin Long626d16f2016-04-14 15:35:31 +08005073
5074 rcu_read_lock();
5075 transport = sctp_addrs_lookup_transport(net, laddr, paddr);
Xin Long626d16f2016-04-14 15:35:31 +08005076 rcu_read_unlock();
Xin Long08abb792016-12-15 23:05:52 +08005077 if (!transport)
5078 return -ENOENT;
5079
Xin Long1cceda782016-09-29 02:55:44 +08005080 err = cb(transport, p);
Xin Longcd26da42016-10-31 20:32:31 +08005081 sctp_transport_put(transport);
Xin Long1cceda782016-09-29 02:55:44 +08005082
Xin Long626d16f2016-04-14 15:35:31 +08005083 return err;
5084}
5085EXPORT_SYMBOL_GPL(sctp_transport_lookup_process);
5086
5087int sctp_for_each_transport(int (*cb)(struct sctp_transport *, void *),
Xin Longd25adbe2017-09-15 11:02:21 +08005088 int (*cb_done)(struct sctp_transport *, void *),
5089 struct net *net, int *pos, void *p) {
Xin Long626d16f2016-04-14 15:35:31 +08005090 struct rhashtable_iter hti;
Xin Longd25adbe2017-09-15 11:02:21 +08005091 struct sctp_transport *tsp;
5092 int ret;
Xin Long626d16f2016-04-14 15:35:31 +08005093
Xin Longd25adbe2017-09-15 11:02:21 +08005094again:
Xin Longf53d77e2018-01-23 18:22:25 +08005095 ret = 0;
Tom Herbert97a6ec42017-12-04 10:31:41 -08005096 sctp_transport_walk_start(&hti);
Xin Long626d16f2016-04-14 15:35:31 +08005097
Xin Longd25adbe2017-09-15 11:02:21 +08005098 tsp = sctp_transport_get_idx(net, &hti, *pos + 1);
5099 for (; !IS_ERR_OR_NULL(tsp); tsp = sctp_transport_get_next(net, &hti)) {
Xin Longd25adbe2017-09-15 11:02:21 +08005100 ret = cb(tsp, p);
5101 if (ret)
Xin Long626d16f2016-04-14 15:35:31 +08005102 break;
Xin Longd25adbe2017-09-15 11:02:21 +08005103 (*pos)++;
5104 sctp_transport_put(tsp);
Xin Long626d16f2016-04-14 15:35:31 +08005105 }
Xin Long626d16f2016-04-14 15:35:31 +08005106 sctp_transport_walk_stop(&hti);
Xin Long53fa1032016-04-14 15:35:35 +08005107
Xin Longd25adbe2017-09-15 11:02:21 +08005108 if (ret) {
5109 if (cb_done && !cb_done(tsp, p)) {
5110 (*pos)++;
5111 sctp_transport_put(tsp);
5112 goto again;
5113 }
5114 sctp_transport_put(tsp);
5115 }
5116
5117 return ret;
Xin Long626d16f2016-04-14 15:35:31 +08005118}
5119EXPORT_SYMBOL_GPL(sctp_for_each_transport);
5120
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121/* 7.2.1 Association Status (SCTP_STATUS)
5122
5123 * Applications can retrieve current status information about an
5124 * association, including association state, peer receiver window size,
5125 * number of unacked data chunks, and number of data chunks pending
5126 * receipt. This information is read-only.
5127 */
5128static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
5129 char __user *optval,
5130 int __user *optlen)
5131{
5132 struct sctp_status status;
5133 struct sctp_association *asoc = NULL;
5134 struct sctp_transport *transport;
5135 sctp_assoc_t associd;
5136 int retval = 0;
5137
Neil Horman408f22e2007-06-16 14:03:45 -04005138 if (len < sizeof(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 retval = -EINVAL;
5140 goto out;
5141 }
5142
Neil Horman408f22e2007-06-16 14:03:45 -04005143 len = sizeof(status);
5144 if (copy_from_user(&status, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145 retval = -EFAULT;
5146 goto out;
5147 }
5148
5149 associd = status.sstat_assoc_id;
5150 asoc = sctp_id2assoc(sk, associd);
5151 if (!asoc) {
5152 retval = -EINVAL;
5153 goto out;
5154 }
5155
5156 transport = asoc->peer.primary_path;
5157
5158 status.sstat_assoc_id = sctp_assoc2id(asoc);
Daniel Borkmann38ab1fa2014-08-28 15:28:26 +02005159 status.sstat_state = sctp_assoc_to_state(asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160 status.sstat_rwnd = asoc->peer.rwnd;
5161 status.sstat_unackdata = asoc->unack_data;
5162
5163 status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
Xin Longcee360a2017-05-31 16:36:31 +08005164 status.sstat_instrms = asoc->stream.incnt;
5165 status.sstat_outstrms = asoc->stream.outcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166 status.sstat_fragmentation_point = asoc->frag_point;
5167 status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Al Viro8cec6b82006-11-20 17:23:01 -08005168 memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
5169 transport->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170 /* Map ipv4 address into v4-mapped-on-v6 address. */
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005171 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172 (union sctp_addr *)&status.sstat_primary.spinfo_address);
Frank Filz3f7a87d2005-06-20 13:14:57 -07005173 status.sstat_primary.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174 status.sstat_primary.spinfo_cwnd = transport->cwnd;
5175 status.sstat_primary.spinfo_srtt = transport->srtt;
5176 status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005177 status.sstat_primary.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178
Frank Filz3f7a87d2005-06-20 13:14:57 -07005179 if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
5180 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
5181
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182 if (put_user(len, optlen)) {
5183 retval = -EFAULT;
5184 goto out;
5185 }
5186
Daniel Borkmannbb333812013-06-28 19:49:40 +02005187 pr_debug("%s: len:%d, state:%d, rwnd:%d, assoc_id:%d\n",
5188 __func__, len, status.sstat_state, status.sstat_rwnd,
5189 status.sstat_assoc_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190
5191 if (copy_to_user(optval, &status, len)) {
5192 retval = -EFAULT;
5193 goto out;
5194 }
5195
5196out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00005197 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198}
5199
5200
5201/* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
5202 *
5203 * Applications can retrieve information about a specific peer address
5204 * of an association, including its reachability state, congestion
5205 * window, and retransmission timer values. This information is
5206 * read-only.
5207 */
5208static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
5209 char __user *optval,
5210 int __user *optlen)
5211{
5212 struct sctp_paddrinfo pinfo;
5213 struct sctp_transport *transport;
5214 int retval = 0;
5215
Neil Horman408f22e2007-06-16 14:03:45 -04005216 if (len < sizeof(pinfo)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217 retval = -EINVAL;
5218 goto out;
5219 }
5220
Neil Horman408f22e2007-06-16 14:03:45 -04005221 len = sizeof(pinfo);
5222 if (copy_from_user(&pinfo, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223 retval = -EFAULT;
5224 goto out;
5225 }
5226
5227 transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
5228 pinfo.spinfo_assoc_id);
5229 if (!transport)
5230 return -EINVAL;
5231
5232 pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07005233 pinfo.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234 pinfo.spinfo_cwnd = transport->cwnd;
5235 pinfo.spinfo_srtt = transport->srtt;
5236 pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005237 pinfo.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238
Frank Filz3f7a87d2005-06-20 13:14:57 -07005239 if (pinfo.spinfo_state == SCTP_UNKNOWN)
5240 pinfo.spinfo_state = SCTP_ACTIVE;
5241
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242 if (put_user(len, optlen)) {
5243 retval = -EFAULT;
5244 goto out;
5245 }
5246
5247 if (copy_to_user(optval, &pinfo, len)) {
5248 retval = -EFAULT;
5249 goto out;
5250 }
5251
5252out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00005253 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254}
5255
5256/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
5257 *
5258 * This option is a on/off flag. If enabled no SCTP message
5259 * fragmentation will be performed. Instead if a message being sent
5260 * exceeds the current PMTU size, the message will NOT be sent and
5261 * instead a error will be indicated to the user.
5262 */
5263static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
5264 char __user *optval, int __user *optlen)
5265{
5266 int val;
5267
5268 if (len < sizeof(int))
5269 return -EINVAL;
5270
5271 len = sizeof(int);
5272 val = (sctp_sk(sk)->disable_fragments == 1);
5273 if (put_user(len, optlen))
5274 return -EFAULT;
5275 if (copy_to_user(optval, &val, len))
5276 return -EFAULT;
5277 return 0;
5278}
5279
5280/* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
5281 *
5282 * This socket option is used to specify various notifications and
5283 * ancillary data the user wishes to receive.
5284 */
5285static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
5286 int __user *optlen)
5287{
Jiri Slabya4b8e712016-10-21 14:13:24 +02005288 if (len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289 return -EINVAL;
Thomas Grafacdd5982012-04-03 22:17:53 +00005290 if (len > sizeof(struct sctp_event_subscribe))
5291 len = sizeof(struct sctp_event_subscribe);
Neil Horman408f22e2007-06-16 14:03:45 -04005292 if (put_user(len, optlen))
5293 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294 if (copy_to_user(optval, &sctp_sk(sk)->subscribe, len))
5295 return -EFAULT;
5296 return 0;
5297}
5298
5299/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
5300 *
5301 * This socket option is applicable to the UDP-style socket only. When
5302 * set it will cause associations that are idle for more than the
5303 * specified number of seconds to automatically close. An association
5304 * being idle is defined an association that has NOT sent or received
5305 * user data. The special value of '0' indicates that no automatic
5306 * close of any associations should be performed. The option expects an
5307 * integer defining the number of seconds of idle time before an
5308 * association is closed.
5309 */
5310static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
5311{
5312 /* Applicable to UDP-style socket only */
5313 if (sctp_style(sk, TCP))
5314 return -EOPNOTSUPP;
Neil Horman408f22e2007-06-16 14:03:45 -04005315 if (len < sizeof(int))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005317 len = sizeof(int);
5318 if (put_user(len, optlen))
5319 return -EFAULT;
David Windsorb2ce04c2017-06-10 22:50:43 -04005320 if (put_user(sctp_sk(sk)->autoclose, (int __user *)optval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321 return -EFAULT;
5322 return 0;
5323}
5324
5325/* Helper routine to branch off an association to a new socket. */
Benjamin Poirier0343c552012-03-08 05:55:58 +00005326int sctp_do_peeloff(struct sock *sk, sctp_assoc_t id, struct socket **sockp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327{
Benjamin Poirier0343c552012-03-08 05:55:58 +00005328 struct sctp_association *asoc = sctp_id2assoc(sk, id);
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005329 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330 struct socket *sock;
5331 int err = 0;
5332
Xin Longdf80cd92017-10-17 23:26:10 +08005333 /* Do not peel off from one netns to another one. */
5334 if (!net_eq(current->nsproxy->net_ns, sock_net(sk)))
5335 return -EINVAL;
5336
Benjamin Poirier0343c552012-03-08 05:55:58 +00005337 if (!asoc)
5338 return -EINVAL;
5339
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340 /* An association cannot be branched off from an already peeled-off
5341 * socket, nor is this supported for tcp style sockets.
5342 */
5343 if (!sctp_style(sk, UDP))
5344 return -EINVAL;
5345
5346 /* Create a new socket. */
5347 err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
5348 if (err < 0)
5349 return err;
5350
Vlad Yasevich914e1c82009-02-13 08:33:44 +00005351 sctp_copy_sock(sock->sk, sk, asoc);
Vlad Yasevich4f444302006-10-30 18:54:32 -08005352
5353 /* Make peeled-off sockets more like 1-1 accepted sockets.
Richard Hainesb7e10c22018-02-24 16:18:51 +00005354 * Set the daddr and initialize id to something more random and also
5355 * copy over any ip options.
Vlad Yasevich4f444302006-10-30 18:54:32 -08005356 */
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005357 sp->pf->to_sk_daddr(&asoc->peer.primary_addr, sk);
Richard Hainesb7e10c22018-02-24 16:18:51 +00005358 sp->pf->copy_ip_options(sk, sock->sk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00005359
5360 /* Populate the fields of the newsk from the oldsk and migrate the
5361 * asoc to the newsk.
5362 */
5363 sctp_sock_migrate(sk, sock->sk, asoc, SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
Vlad Yasevich4f444302006-10-30 18:54:32 -08005364
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365 *sockp = sock;
5366
5367 return err;
5368}
Benjamin Poirier0343c552012-03-08 05:55:58 +00005369EXPORT_SYMBOL(sctp_do_peeloff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005371static int sctp_getsockopt_peeloff_common(struct sock *sk, sctp_peeloff_arg_t *peeloff,
5372 struct file **newfile, unsigned flags)
5373{
5374 struct socket *newsock;
5375 int retval;
5376
5377 retval = sctp_do_peeloff(sk, peeloff->associd, &newsock);
5378 if (retval < 0)
5379 goto out;
5380
5381 /* Map the socket to an unused fd that can be returned to the user. */
5382 retval = get_unused_fd_flags(flags & SOCK_CLOEXEC);
5383 if (retval < 0) {
5384 sock_release(newsock);
5385 goto out;
5386 }
5387
5388 *newfile = sock_alloc_file(newsock, 0, NULL);
5389 if (IS_ERR(*newfile)) {
5390 put_unused_fd(retval);
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005391 retval = PTR_ERR(*newfile);
5392 *newfile = NULL;
5393 return retval;
5394 }
5395
5396 pr_debug("%s: sk:%p, newsk:%p, sd:%d\n", __func__, sk, newsock->sk,
5397 retval);
5398
5399 peeloff->sd = retval;
5400
5401 if (flags & SOCK_NONBLOCK)
5402 (*newfile)->f_flags |= O_NONBLOCK;
5403out:
5404 return retval;
5405}
5406
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
5408{
5409 sctp_peeloff_arg_t peeloff;
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005410 struct file *newfile = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412
Neil Horman408f22e2007-06-16 14:03:45 -04005413 if (len < sizeof(sctp_peeloff_arg_t))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005415 len = sizeof(sctp_peeloff_arg_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416 if (copy_from_user(&peeloff, optval, len))
5417 return -EFAULT;
5418
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005419 retval = sctp_getsockopt_peeloff_common(sk, &peeloff, &newfile, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420 if (retval < 0)
5421 goto out;
5422
Linus Torvalds1da177e2005-04-16 15:20:36 -07005423 /* Return the fd mapped to the new socket. */
Al Viro56b31d12012-08-18 00:25:51 -04005424 if (put_user(len, optlen)) {
5425 fput(newfile);
5426 put_unused_fd(retval);
Neil Horman408f22e2007-06-16 14:03:45 -04005427 return -EFAULT;
Al Viro56b31d12012-08-18 00:25:51 -04005428 }
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005429
5430 if (copy_to_user(optval, &peeloff, len)) {
5431 fput(newfile);
5432 put_unused_fd(retval);
5433 return -EFAULT;
5434 }
5435 fd_install(retval, newfile);
5436out:
5437 return retval;
5438}
5439
5440static int sctp_getsockopt_peeloff_flags(struct sock *sk, int len,
5441 char __user *optval, int __user *optlen)
5442{
5443 sctp_peeloff_flags_arg_t peeloff;
5444 struct file *newfile = NULL;
5445 int retval = 0;
5446
5447 if (len < sizeof(sctp_peeloff_flags_arg_t))
5448 return -EINVAL;
5449 len = sizeof(sctp_peeloff_flags_arg_t);
5450 if (copy_from_user(&peeloff, optval, len))
5451 return -EFAULT;
5452
5453 retval = sctp_getsockopt_peeloff_common(sk, &peeloff.p_arg,
5454 &newfile, peeloff.flags);
5455 if (retval < 0)
5456 goto out;
5457
5458 /* Return the fd mapped to the new socket. */
5459 if (put_user(len, optlen)) {
5460 fput(newfile);
5461 put_unused_fd(retval);
5462 return -EFAULT;
5463 }
5464
Al Viro56b31d12012-08-18 00:25:51 -04005465 if (copy_to_user(optval, &peeloff, len)) {
5466 fput(newfile);
5467 put_unused_fd(retval);
5468 return -EFAULT;
5469 }
5470 fd_install(retval, newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471out:
5472 return retval;
5473}
5474
5475/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
5476 *
5477 * Applications can enable or disable heartbeats for any peer address of
5478 * an association, modify an address's heartbeat interval, force a
5479 * heartbeat to be sent immediately, and adjust the address's maximum
5480 * number of retransmissions sent before an address is considered
5481 * unreachable. The following structure is used to access and modify an
5482 * address's parameters:
5483 *
5484 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08005485 * sctp_assoc_t spp_assoc_id;
5486 * struct sockaddr_storage spp_address;
5487 * uint32_t spp_hbinterval;
5488 * uint16_t spp_pathmaxrxt;
5489 * uint32_t spp_pathmtu;
5490 * uint32_t spp_sackdelay;
5491 * uint32_t spp_flags;
5492 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07005493 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08005494 * spp_assoc_id - (one-to-many style socket) This is filled in the
5495 * application, and identifies the association for
5496 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497 * spp_address - This specifies which address is of interest.
5498 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08005499 * in milliseconds. If a value of zero
5500 * is present in this field then no changes are to
5501 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005502 * spp_pathmaxrxt - This contains the maximum number of
5503 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08005504 * considered unreachable. If a value of zero
5505 * is present in this field then no changes are to
5506 * be made to this parameter.
5507 * spp_pathmtu - When Path MTU discovery is disabled the value
5508 * specified here will be the "fixed" path mtu.
5509 * Note that if the spp_address field is empty
5510 * then all associations on this address will
5511 * have this fixed path mtu set upon them.
5512 *
5513 * spp_sackdelay - When delayed sack is enabled, this value specifies
5514 * the number of milliseconds that sacks will be delayed
5515 * for. This value will apply to all addresses of an
5516 * association if the spp_address field is empty. Note
5517 * also, that if delayed sack is enabled and this
5518 * value is set to 0, no change is made to the last
5519 * recorded delayed sack timer value.
5520 *
5521 * spp_flags - These flags are used to control various features
5522 * on an association. The flag field may contain
5523 * zero or more of the following options.
5524 *
5525 * SPP_HB_ENABLE - Enable heartbeats on the
5526 * specified address. Note that if the address
5527 * field is empty all addresses for the association
5528 * have heartbeats enabled upon them.
5529 *
5530 * SPP_HB_DISABLE - Disable heartbeats on the
5531 * speicifed address. Note that if the address
5532 * field is empty all addresses for the association
5533 * will have their heartbeats disabled. Note also
5534 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
5535 * mutually exclusive, only one of these two should
5536 * be specified. Enabling both fields will have
5537 * undetermined results.
5538 *
5539 * SPP_HB_DEMAND - Request a user initiated heartbeat
5540 * to be made immediately.
5541 *
5542 * SPP_PMTUD_ENABLE - This field will enable PMTU
5543 * discovery upon the specified address. Note that
5544 * if the address feild is empty then all addresses
5545 * on the association are effected.
5546 *
5547 * SPP_PMTUD_DISABLE - This field will disable PMTU
5548 * discovery upon the specified address. Note that
5549 * if the address feild is empty then all addresses
5550 * on the association are effected. Not also that
5551 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
5552 * exclusive. Enabling both will have undetermined
5553 * results.
5554 *
5555 * SPP_SACKDELAY_ENABLE - Setting this flag turns
5556 * on delayed sack. The time specified in spp_sackdelay
5557 * is used to specify the sack delay for this address. Note
5558 * that if spp_address is empty then all addresses will
5559 * enable delayed sack and take on the sack delay
5560 * value specified in spp_sackdelay.
5561 * SPP_SACKDELAY_DISABLE - Setting this flag turns
5562 * off delayed sack. If the spp_address field is blank then
5563 * delayed sack is disabled for the entire association. Note
5564 * also that this field is mutually exclusive to
5565 * SPP_SACKDELAY_ENABLE, setting both will have undefined
5566 * results.
Xin Long0b0dce72018-07-02 18:21:13 +08005567 *
5568 * SPP_IPV6_FLOWLABEL: Setting this flag enables the
5569 * setting of the IPV6 flow label value. The value is
5570 * contained in the spp_ipv6_flowlabel field.
5571 * Upon retrieval, this flag will be set to indicate that
5572 * the spp_ipv6_flowlabel field has a valid value returned.
5573 * If a specific destination address is set (in the
5574 * spp_address field), then the value returned is that of
5575 * the address. If just an association is specified (and
5576 * no address), then the association's default flow label
5577 * is returned. If neither an association nor a destination
5578 * is specified, then the socket's default flow label is
5579 * returned. For non-IPv6 sockets, this flag will be left
5580 * cleared.
5581 *
5582 * SPP_DSCP: Setting this flag enables the setting of the
5583 * Differentiated Services Code Point (DSCP) value
5584 * associated with either the association or a specific
5585 * address. The value is obtained in the spp_dscp field.
5586 * Upon retrieval, this flag will be set to indicate that
5587 * the spp_dscp field has a valid value returned. If a
5588 * specific destination address is set when called (in the
5589 * spp_address field), then that specific destination
5590 * address's DSCP value is returned. If just an association
5591 * is specified, then the association's default DSCP is
5592 * returned. If neither an association nor a destination is
5593 * specified, then the socket's default DSCP is returned.
5594 *
5595 * spp_ipv6_flowlabel
5596 * - This field is used in conjunction with the
5597 * SPP_IPV6_FLOWLABEL flag and contains the IPv6 flow label.
5598 * The 20 least significant bits are used for the flow
5599 * label. This setting has precedence over any IPv6-layer
5600 * setting.
5601 *
5602 * spp_dscp - This field is used in conjunction with the SPP_DSCP flag
5603 * and contains the DSCP. The 6 most significant bits are
5604 * used for the DSCP. This setting has precedence over any
5605 * IPv4- or IPv6- layer setting.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606 */
5607static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
Frank Filz52ccb8e2005-12-22 11:36:46 -08005608 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609{
Frank Filz52ccb8e2005-12-22 11:36:46 -08005610 struct sctp_paddrparams params;
5611 struct sctp_transport *trans = NULL;
5612 struct sctp_association *asoc = NULL;
5613 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614
Xin Long0b0dce72018-07-02 18:21:13 +08005615 if (len >= sizeof(params))
5616 len = sizeof(params);
5617 else if (len >= ALIGN(offsetof(struct sctp_paddrparams,
5618 spp_ipv6_flowlabel), 4))
5619 len = ALIGN(offsetof(struct sctp_paddrparams,
5620 spp_ipv6_flowlabel), 4);
5621 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622 return -EINVAL;
Xin Long0b0dce72018-07-02 18:21:13 +08005623
Linus Torvalds1da177e2005-04-16 15:20:36 -07005624 if (copy_from_user(&params, optval, len))
5625 return -EFAULT;
5626
Frank Filz52ccb8e2005-12-22 11:36:46 -08005627 /* If an address other than INADDR_ANY is specified, and
5628 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005629 */
wangweidongcb3f8372013-12-23 12:16:50 +08005630 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08005631 trans = sctp_addr_id2transport(sk, &params.spp_address,
5632 params.spp_assoc_id);
5633 if (!trans) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02005634 pr_debug("%s: failed no transport\n", __func__);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005635 return -EINVAL;
5636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005637 }
5638
Frank Filz52ccb8e2005-12-22 11:36:46 -08005639 /* Get association, if assoc_id != 0 and the socket is a one
5640 * to many style socket, and an association was not found, then
5641 * the id was invalid.
5642 */
5643 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
5644 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP)) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02005645 pr_debug("%s: failed no association\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08005647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648
Frank Filz52ccb8e2005-12-22 11:36:46 -08005649 if (trans) {
5650 /* Fetch transport values. */
5651 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
5652 params.spp_pathmtu = trans->pathmtu;
5653 params.spp_pathmaxrxt = trans->pathmaxrxt;
5654 params.spp_sackdelay = jiffies_to_msecs(trans->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655
Frank Filz52ccb8e2005-12-22 11:36:46 -08005656 /*draft-11 doesn't say what to return in spp_flags*/
5657 params.spp_flags = trans->param_flags;
Xin Long0b0dce72018-07-02 18:21:13 +08005658 if (trans->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5659 params.spp_ipv6_flowlabel = trans->flowlabel &
5660 SCTP_FLOWLABEL_VAL_MASK;
5661 params.spp_flags |= SPP_IPV6_FLOWLABEL;
5662 }
5663 if (trans->dscp & SCTP_DSCP_SET_MASK) {
5664 params.spp_dscp = trans->dscp & SCTP_DSCP_VAL_MASK;
5665 params.spp_flags |= SPP_DSCP;
5666 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08005667 } else if (asoc) {
5668 /* Fetch association values. */
5669 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
5670 params.spp_pathmtu = asoc->pathmtu;
5671 params.spp_pathmaxrxt = asoc->pathmaxrxt;
5672 params.spp_sackdelay = jiffies_to_msecs(asoc->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005673
Frank Filz52ccb8e2005-12-22 11:36:46 -08005674 /*draft-11 doesn't say what to return in spp_flags*/
5675 params.spp_flags = asoc->param_flags;
Xin Long0b0dce72018-07-02 18:21:13 +08005676 if (asoc->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5677 params.spp_ipv6_flowlabel = asoc->flowlabel &
5678 SCTP_FLOWLABEL_VAL_MASK;
5679 params.spp_flags |= SPP_IPV6_FLOWLABEL;
5680 }
5681 if (asoc->dscp & SCTP_DSCP_SET_MASK) {
5682 params.spp_dscp = asoc->dscp & SCTP_DSCP_VAL_MASK;
5683 params.spp_flags |= SPP_DSCP;
5684 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08005685 } else {
5686 /* Fetch socket values. */
5687 params.spp_hbinterval = sp->hbinterval;
5688 params.spp_pathmtu = sp->pathmtu;
5689 params.spp_sackdelay = sp->sackdelay;
5690 params.spp_pathmaxrxt = sp->pathmaxrxt;
5691
5692 /*draft-11 doesn't say what to return in spp_flags*/
5693 params.spp_flags = sp->param_flags;
Xin Long0b0dce72018-07-02 18:21:13 +08005694 if (sp->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5695 params.spp_ipv6_flowlabel = sp->flowlabel &
5696 SCTP_FLOWLABEL_VAL_MASK;
5697 params.spp_flags |= SPP_IPV6_FLOWLABEL;
5698 }
5699 if (sp->dscp & SCTP_DSCP_SET_MASK) {
5700 params.spp_dscp = sp->dscp & SCTP_DSCP_VAL_MASK;
5701 params.spp_flags |= SPP_DSCP;
5702 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08005703 }
5704
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705 if (copy_to_user(optval, &params, len))
5706 return -EFAULT;
5707
5708 if (put_user(len, optlen))
5709 return -EFAULT;
5710
5711 return 0;
5712}
5713
Wei Yongjund364d922008-05-09 15:13:26 -07005714/*
5715 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08005716 *
Wei Yongjund364d922008-05-09 15:13:26 -07005717 * This option will effect the way delayed acks are performed. This
5718 * option allows you to get or set the delayed ack time, in
5719 * milliseconds. It also allows changing the delayed ack frequency.
5720 * Changing the frequency to 1 disables the delayed sack algorithm. If
5721 * the assoc_id is 0, then this sets or gets the endpoints default
5722 * values. If the assoc_id field is non-zero, then the set or get
5723 * effects the specified association for the one to many model (the
5724 * assoc_id field is ignored by the one to one model). Note that if
5725 * sack_delay or sack_freq are 0 when setting this option, then the
5726 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08005727 *
Wei Yongjund364d922008-05-09 15:13:26 -07005728 * struct sctp_sack_info {
5729 * sctp_assoc_t sack_assoc_id;
5730 * uint32_t sack_delay;
5731 * uint32_t sack_freq;
5732 * };
Frank Filz77086102005-12-22 11:37:30 -08005733 *
Wei Yongjund364d922008-05-09 15:13:26 -07005734 * sack_assoc_id - This parameter, indicates which association the user
5735 * is performing an action upon. Note that if this field's value is
5736 * zero then the endpoints default value is changed (effecting future
5737 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08005738 *
Wei Yongjund364d922008-05-09 15:13:26 -07005739 * sack_delay - This parameter contains the number of milliseconds that
5740 * the user is requesting the delayed ACK timer be set to. Note that
5741 * this value is defined in the standard to be between 200 and 500
5742 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08005743 *
Wei Yongjund364d922008-05-09 15:13:26 -07005744 * sack_freq - This parameter contains the number of packets that must
5745 * be received before a sack is sent without waiting for the delay
5746 * timer to expire. The default value for this is 2, setting this
5747 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08005748 */
Wei Yongjund364d922008-05-09 15:13:26 -07005749static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
Frank Filz77086102005-12-22 11:37:30 -08005750 char __user *optval,
5751 int __user *optlen)
5752{
Wei Yongjund364d922008-05-09 15:13:26 -07005753 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08005754 struct sctp_association *asoc = NULL;
5755 struct sctp_sock *sp = sctp_sk(sk);
5756
Wei Yongjund364d922008-05-09 15:13:26 -07005757 if (len >= sizeof(struct sctp_sack_info)) {
5758 len = sizeof(struct sctp_sack_info);
5759
5760 if (copy_from_user(&params, optval, len))
5761 return -EFAULT;
5762 } else if (len == sizeof(struct sctp_assoc_value)) {
Neil Horman94f65192013-12-23 08:29:43 -05005763 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05005764 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05005765 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05005766 "Use struct sctp_sack_info instead\n",
5767 current->comm, task_pid_nr(current));
Wei Yongjund364d922008-05-09 15:13:26 -07005768 if (copy_from_user(&params, optval, len))
5769 return -EFAULT;
5770 } else
wangweidongcb3f8372013-12-23 12:16:50 +08005771 return -EINVAL;
Frank Filz77086102005-12-22 11:37:30 -08005772
Wei Yongjund364d922008-05-09 15:13:26 -07005773 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08005774 * to many style socket, and an association was not found, then
5775 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005776 */
Wei Yongjund364d922008-05-09 15:13:26 -07005777 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
5778 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08005779 return -EINVAL;
5780
5781 if (asoc) {
5782 /* Fetch association values. */
Wei Yongjund364d922008-05-09 15:13:26 -07005783 if (asoc->param_flags & SPP_SACKDELAY_ENABLE) {
5784 params.sack_delay = jiffies_to_msecs(
Frank Filz77086102005-12-22 11:37:30 -08005785 asoc->sackdelay);
Wei Yongjund364d922008-05-09 15:13:26 -07005786 params.sack_freq = asoc->sackfreq;
5787
5788 } else {
5789 params.sack_delay = 0;
5790 params.sack_freq = 1;
5791 }
Frank Filz77086102005-12-22 11:37:30 -08005792 } else {
5793 /* Fetch socket values. */
Wei Yongjund364d922008-05-09 15:13:26 -07005794 if (sp->param_flags & SPP_SACKDELAY_ENABLE) {
5795 params.sack_delay = sp->sackdelay;
5796 params.sack_freq = sp->sackfreq;
5797 } else {
5798 params.sack_delay = 0;
5799 params.sack_freq = 1;
5800 }
Frank Filz77086102005-12-22 11:37:30 -08005801 }
5802
5803 if (copy_to_user(optval, &params, len))
5804 return -EFAULT;
5805
5806 if (put_user(len, optlen))
5807 return -EFAULT;
5808
5809 return 0;
5810}
5811
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
5813 *
5814 * Applications can specify protocol parameters for the default association
5815 * initialization. The option name argument to setsockopt() and getsockopt()
5816 * is SCTP_INITMSG.
5817 *
5818 * Setting initialization parameters is effective only on an unconnected
5819 * socket (for UDP-style sockets only future associations are effected
5820 * by the change). With TCP-style sockets, this option is inherited by
5821 * sockets derived from a listener socket.
5822 */
5823static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
5824{
Neil Horman408f22e2007-06-16 14:03:45 -04005825 if (len < sizeof(struct sctp_initmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005827 len = sizeof(struct sctp_initmsg);
5828 if (put_user(len, optlen))
5829 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830 if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
5831 return -EFAULT;
5832 return 0;
5833}
5834
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005836static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
5837 char __user *optval, int __user *optlen)
5838{
5839 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005840 int cnt = 0;
5841 struct sctp_getaddrs getaddrs;
5842 struct sctp_transport *from;
5843 void __user *to;
5844 union sctp_addr temp;
5845 struct sctp_sock *sp = sctp_sk(sk);
5846 int addrlen;
5847 size_t space_left;
5848 int bytes_copied;
5849
5850 if (len < sizeof(struct sctp_getaddrs))
5851 return -EINVAL;
5852
5853 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
5854 return -EFAULT;
5855
5856 /* For UDP-style sockets, id specifies the association to query. */
5857 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
5858 if (!asoc)
5859 return -EINVAL;
5860
wangweidongcb3f8372013-12-23 12:16:50 +08005861 to = optval + offsetof(struct sctp_getaddrs, addrs);
5862 space_left = len - offsetof(struct sctp_getaddrs, addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005863
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07005864 list_for_each_entry(from, &asoc->peer.transport_addr_list,
5865 transports) {
Al Virob3f5b3b2006-11-20 17:22:43 -08005866 memcpy(&temp, &from->ipaddr, sizeof(temp));
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005867 addrlen = sctp_get_pf_specific(sk->sk_family)
5868 ->addr_to_user(sp, &temp);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005869 if (space_left < addrlen)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005870 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005871 if (copy_to_user(to, &temp, addrlen))
5872 return -EFAULT;
5873 to += addrlen;
5874 cnt++;
5875 space_left -= addrlen;
5876 }
5877
5878 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
5879 return -EFAULT;
5880 bytes_copied = ((char __user *)to) - optval;
5881 if (put_user(bytes_copied, optlen))
5882 return -EFAULT;
5883
5884 return 0;
5885}
5886
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005887static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to,
5888 size_t space_left, int *bytes_copied)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005889{
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005890 struct sctp_sockaddr_entry *addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005891 union sctp_addr temp;
5892 int cnt = 0;
5893 int addrlen;
Eric W. Biederman4db67e82012-08-06 08:42:04 +00005894 struct net *net = sock_net(sk);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005895
Vlad Yasevich29303542007-09-16 16:02:12 -07005896 rcu_read_lock();
Eric W. Biederman4db67e82012-08-06 08:42:04 +00005897 list_for_each_entry_rcu(addr, &net->sctp.local_addr_list, list) {
Vlad Yasevich29303542007-09-16 16:02:12 -07005898 if (!addr->valid)
5899 continue;
5900
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005901 if ((PF_INET == sk->sk_family) &&
Al Viro6244be42006-11-20 17:21:44 -08005902 (AF_INET6 == addr->a.sa.sa_family))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005903 continue;
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07005904 if ((PF_INET6 == sk->sk_family) &&
5905 inet_v6_ipv6only(sk) &&
5906 (AF_INET == addr->a.sa.sa_family))
5907 continue;
Al Viro6244be42006-11-20 17:21:44 -08005908 memcpy(&temp, &addr->a, sizeof(temp));
Vlad Yasevichb46ae362008-01-28 14:25:36 -05005909 if (!temp.v4.sin_port)
5910 temp.v4.sin_port = htons(port);
5911
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005912 addrlen = sctp_get_pf_specific(sk->sk_family)
5913 ->addr_to_user(sctp_sk(sk), &temp);
5914
Vlad Yasevich29303542007-09-16 16:02:12 -07005915 if (space_left < addrlen) {
5916 cnt = -ENOMEM;
5917 break;
5918 }
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005919 memcpy(to, &temp, addrlen);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08005920
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005921 to += addrlen;
wangweidongcb3f8372013-12-23 12:16:50 +08005922 cnt++;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005923 space_left -= addrlen;
Vlad Yasevich3663c302007-07-03 12:43:12 -04005924 *bytes_copied += addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005925 }
Vlad Yasevich29303542007-09-16 16:02:12 -07005926 rcu_read_unlock();
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005927
5928 return cnt;
5929}
5930
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005932static int sctp_getsockopt_local_addrs(struct sock *sk, int len,
5933 char __user *optval, int __user *optlen)
5934{
5935 struct sctp_bind_addr *bp;
5936 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005937 int cnt = 0;
5938 struct sctp_getaddrs getaddrs;
5939 struct sctp_sockaddr_entry *addr;
5940 void __user *to;
5941 union sctp_addr temp;
5942 struct sctp_sock *sp = sctp_sk(sk);
5943 int addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005944 int err = 0;
5945 size_t space_left;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005946 int bytes_copied = 0;
5947 void *addrs;
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005948 void *buf;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005949
Neil Horman408f22e2007-06-16 14:03:45 -04005950 if (len < sizeof(struct sctp_getaddrs))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005951 return -EINVAL;
5952
5953 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
5954 return -EFAULT;
5955
5956 /*
5957 * For UDP-style sockets, id specifies the association to query.
5958 * If the id field is set to the value '0' then the locally bound
5959 * addresses are returned without regard to any particular
5960 * association.
5961 */
5962 if (0 == getaddrs.assoc_id) {
5963 bp = &sctp_sk(sk)->ep->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005964 } else {
5965 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
5966 if (!asoc)
5967 return -EINVAL;
5968 bp = &asoc->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005969 }
5970
wangweidongcb3f8372013-12-23 12:16:50 +08005971 to = optval + offsetof(struct sctp_getaddrs, addrs);
5972 space_left = len - offsetof(struct sctp_getaddrs, addrs);
Neil Horman186e2342007-06-18 19:59:16 -04005973
Marcelo Ricardo Leitnercacc0622015-11-30 14:32:54 -02005974 addrs = kmalloc(space_left, GFP_USER | __GFP_NOWARN);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005975 if (!addrs)
5976 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005977
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005978 /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
5979 * addresses from the global local address list.
5980 */
5981 if (sctp_list_single_entry(&bp->address_list)) {
5982 addr = list_entry(bp->address_list.next,
5983 struct sctp_sockaddr_entry, list);
Vlad Yasevich52cae8f2008-08-18 10:34:34 -04005984 if (sctp_is_any(sk, &addr->a)) {
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005985 cnt = sctp_copy_laddrs(sk, bp->port, addrs,
5986 space_left, &bytes_copied);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005987 if (cnt < 0) {
5988 err = cnt;
Vlad Yasevich559cf712007-09-16 16:03:28 -07005989 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005990 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005991 goto copy_getaddrs;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005992 }
5993 }
5994
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005995 buf = addrs;
Vlad Yasevich559cf712007-09-16 16:03:28 -07005996 /* Protection on the bound address list is not needed since
5997 * in the socket option context we hold a socket lock and
5998 * thus the bound address list can't change.
5999 */
6000 list_for_each_entry(addr, &bp->address_list, list) {
Al Viro6244be42006-11-20 17:21:44 -08006001 memcpy(&temp, &addr->a, sizeof(temp));
Jason Gunthorpe299ee122014-07-30 12:40:53 -06006002 addrlen = sctp_get_pf_specific(sk->sk_family)
6003 ->addr_to_user(sp, &temp);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006004 if (space_left < addrlen) {
6005 err = -ENOMEM; /*fixme: right error?*/
Vlad Yasevich559cf712007-09-16 16:03:28 -07006006 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006007 }
Vlad Yasevich70b57b82007-05-09 13:51:31 -07006008 memcpy(buf, &temp, addrlen);
6009 buf += addrlen;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006010 bytes_copied += addrlen;
wangweidongcb3f8372013-12-23 12:16:50 +08006011 cnt++;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006012 space_left -= addrlen;
6013 }
6014
6015copy_getaddrs:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006016 if (copy_to_user(to, addrs, bytes_copied)) {
6017 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02006018 goto out;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006019 }
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04006020 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num)) {
6021 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02006022 goto out;
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04006023 }
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006024 /* XXX: We should have accounted for sizeof(struct sctp_getaddrs) too,
6025 * but we can't change it anymore.
6026 */
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006027 if (put_user(bytes_copied, optlen))
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04006028 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02006029out:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006030 kfree(addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006031 return err;
6032}
6033
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
6035 *
6036 * Requests that the local SCTP stack use the enclosed peer address as
6037 * the association primary. The enclosed address must be one of the
6038 * association peer's addresses.
6039 */
6040static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
6041 char __user *optval, int __user *optlen)
6042{
6043 struct sctp_prim prim;
6044 struct sctp_association *asoc;
6045 struct sctp_sock *sp = sctp_sk(sk);
6046
Neil Horman408f22e2007-06-16 14:03:45 -04006047 if (len < sizeof(struct sctp_prim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048 return -EINVAL;
6049
Neil Horman408f22e2007-06-16 14:03:45 -04006050 len = sizeof(struct sctp_prim);
6051
6052 if (copy_from_user(&prim, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053 return -EFAULT;
6054
6055 asoc = sctp_id2assoc(sk, prim.ssp_assoc_id);
6056 if (!asoc)
6057 return -EINVAL;
6058
6059 if (!asoc->peer.primary_path)
6060 return -ENOTCONN;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09006061
Al Viro8cec6b82006-11-20 17:23:01 -08006062 memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr,
6063 asoc->peer.primary_path->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064
Jason Gunthorpe299ee122014-07-30 12:40:53 -06006065 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066 (union sctp_addr *)&prim.ssp_addr);
6067
Neil Horman408f22e2007-06-16 14:03:45 -04006068 if (put_user(len, optlen))
6069 return -EFAULT;
6070 if (copy_to_user(optval, &prim, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071 return -EFAULT;
6072
6073 return 0;
6074}
6075
6076/*
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006077 * 7.1.11 Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006078 *
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006079 * Requests that the local endpoint set the specified Adaptation Layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080 * Indication parameter for all future INIT and INIT-ACK exchanges.
6081 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006082static int sctp_getsockopt_adaptation_layer(struct sock *sk, int len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006083 char __user *optval, int __user *optlen)
6084{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006085 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006086
Neil Horman408f22e2007-06-16 14:03:45 -04006087 if (len < sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006088 return -EINVAL;
6089
Neil Horman408f22e2007-06-16 14:03:45 -04006090 len = sizeof(struct sctp_setadaptation);
6091
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006092 adaptation.ssb_adaptation_ind = sctp_sk(sk)->adaptation_ind;
Neil Horman408f22e2007-06-16 14:03:45 -04006093
6094 if (put_user(len, optlen))
6095 return -EFAULT;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006096 if (copy_to_user(optval, &adaptation, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006097 return -EFAULT;
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07006098
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099 return 0;
6100}
6101
6102/*
6103 *
6104 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
6105 *
6106 * Applications that wish to use the sendto() system call may wish to
6107 * specify a default set of parameters that would normally be supplied
6108 * through the inclusion of ancillary data. This socket option allows
6109 * such an application to set the default sctp_sndrcvinfo structure.
6110
6111
6112 * The application that wishes to use this socket option simply passes
6113 * in to this call the sctp_sndrcvinfo structure defined in Section
6114 * 5.2.2) The input parameters accepted by this call include
6115 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
6116 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
6117 * to this call if the caller is using the UDP model.
6118 *
6119 * For getsockopt, it get the default sctp_sndrcvinfo structure.
6120 */
6121static int sctp_getsockopt_default_send_param(struct sock *sk,
6122 int len, char __user *optval,
6123 int __user *optlen)
6124{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125 struct sctp_sock *sp = sctp_sk(sk);
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006126 struct sctp_association *asoc;
6127 struct sctp_sndrcvinfo info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006129 if (len < sizeof(info))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04006131
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006132 len = sizeof(info);
Neil Horman408f22e2007-06-16 14:03:45 -04006133
6134 if (copy_from_user(&info, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006135 return -EFAULT;
6136
6137 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
6138 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
6139 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006140 if (asoc) {
6141 info.sinfo_stream = asoc->default_stream;
6142 info.sinfo_flags = asoc->default_flags;
6143 info.sinfo_ppid = asoc->default_ppid;
6144 info.sinfo_context = asoc->default_context;
6145 info.sinfo_timetolive = asoc->default_timetolive;
6146 } else {
6147 info.sinfo_stream = sp->default_stream;
6148 info.sinfo_flags = sp->default_flags;
6149 info.sinfo_ppid = sp->default_ppid;
6150 info.sinfo_context = sp->default_context;
6151 info.sinfo_timetolive = sp->default_timetolive;
6152 }
6153
Neil Horman408f22e2007-06-16 14:03:45 -04006154 if (put_user(len, optlen))
6155 return -EFAULT;
6156 if (copy_to_user(optval, &info, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006157 return -EFAULT;
6158
6159 return 0;
6160}
6161
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006162/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
6163 * (SCTP_DEFAULT_SNDINFO)
6164 */
6165static int sctp_getsockopt_default_sndinfo(struct sock *sk, int len,
6166 char __user *optval,
6167 int __user *optlen)
6168{
6169 struct sctp_sock *sp = sctp_sk(sk);
6170 struct sctp_association *asoc;
6171 struct sctp_sndinfo info;
6172
6173 if (len < sizeof(info))
6174 return -EINVAL;
6175
6176 len = sizeof(info);
6177
6178 if (copy_from_user(&info, optval, len))
6179 return -EFAULT;
6180
6181 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
6182 if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
6183 return -EINVAL;
6184 if (asoc) {
6185 info.snd_sid = asoc->default_stream;
6186 info.snd_flags = asoc->default_flags;
6187 info.snd_ppid = asoc->default_ppid;
6188 info.snd_context = asoc->default_context;
6189 } else {
6190 info.snd_sid = sp->default_stream;
6191 info.snd_flags = sp->default_flags;
6192 info.snd_ppid = sp->default_ppid;
6193 info.snd_context = sp->default_context;
6194 }
6195
6196 if (put_user(len, optlen))
6197 return -EFAULT;
6198 if (copy_to_user(optval, &info, len))
6199 return -EFAULT;
6200
6201 return 0;
6202}
6203
Linus Torvalds1da177e2005-04-16 15:20:36 -07006204/*
6205 *
6206 * 7.1.5 SCTP_NODELAY
6207 *
6208 * Turn on/off any Nagle-like algorithm. This means that packets are
6209 * generally sent as soon as possible and no unnecessary delays are
6210 * introduced, at the cost of more packets in the network. Expects an
6211 * integer boolean flag.
6212 */
6213
6214static int sctp_getsockopt_nodelay(struct sock *sk, int len,
6215 char __user *optval, int __user *optlen)
6216{
6217 int val;
6218
6219 if (len < sizeof(int))
6220 return -EINVAL;
6221
6222 len = sizeof(int);
6223 val = (sctp_sk(sk)->nodelay == 1);
6224 if (put_user(len, optlen))
6225 return -EFAULT;
6226 if (copy_to_user(optval, &val, len))
6227 return -EFAULT;
6228 return 0;
6229}
6230
6231/*
6232 *
6233 * 7.1.1 SCTP_RTOINFO
6234 *
6235 * The protocol parameters used to initialize and bound retransmission
6236 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
6237 * and modify these parameters.
6238 * All parameters are time values, in milliseconds. A value of 0, when
6239 * modifying the parameters, indicates that the current value should not
6240 * be changed.
6241 *
6242 */
6243static int sctp_getsockopt_rtoinfo(struct sock *sk, int len,
6244 char __user *optval,
6245 int __user *optlen) {
6246 struct sctp_rtoinfo rtoinfo;
6247 struct sctp_association *asoc;
6248
Neil Horman408f22e2007-06-16 14:03:45 -04006249 if (len < sizeof (struct sctp_rtoinfo))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006250 return -EINVAL;
6251
Neil Horman408f22e2007-06-16 14:03:45 -04006252 len = sizeof(struct sctp_rtoinfo);
6253
6254 if (copy_from_user(&rtoinfo, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255 return -EFAULT;
6256
6257 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
6258
6259 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
6260 return -EINVAL;
6261
6262 /* Values corresponding to the specific association. */
6263 if (asoc) {
6264 rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial);
6265 rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max);
6266 rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min);
6267 } else {
6268 /* Values corresponding to the endpoint. */
6269 struct sctp_sock *sp = sctp_sk(sk);
6270
6271 rtoinfo.srto_initial = sp->rtoinfo.srto_initial;
6272 rtoinfo.srto_max = sp->rtoinfo.srto_max;
6273 rtoinfo.srto_min = sp->rtoinfo.srto_min;
6274 }
6275
6276 if (put_user(len, optlen))
6277 return -EFAULT;
6278
6279 if (copy_to_user(optval, &rtoinfo, len))
6280 return -EFAULT;
6281
6282 return 0;
6283}
6284
6285/*
6286 *
6287 * 7.1.2 SCTP_ASSOCINFO
6288 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02006289 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290 * of the association.
6291 * Returns an error if the new association retransmission value is
6292 * greater than the sum of the retransmission value of the peer.
6293 * See [SCTP] for more information.
6294 *
6295 */
6296static int sctp_getsockopt_associnfo(struct sock *sk, int len,
6297 char __user *optval,
6298 int __user *optlen)
6299{
6300
6301 struct sctp_assocparams assocparams;
6302 struct sctp_association *asoc;
6303 struct list_head *pos;
6304 int cnt = 0;
6305
Neil Horman408f22e2007-06-16 14:03:45 -04006306 if (len < sizeof (struct sctp_assocparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307 return -EINVAL;
6308
Neil Horman408f22e2007-06-16 14:03:45 -04006309 len = sizeof(struct sctp_assocparams);
6310
6311 if (copy_from_user(&assocparams, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312 return -EFAULT;
6313
6314 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
6315
6316 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
6317 return -EINVAL;
6318
6319 /* Values correspoinding to the specific association */
Vladislav Yasevich17337212005-04-28 11:57:54 -07006320 if (asoc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006321 assocparams.sasoc_asocmaxrxt = asoc->max_retrans;
6322 assocparams.sasoc_peer_rwnd = asoc->peer.rwnd;
6323 assocparams.sasoc_local_rwnd = asoc->a_rwnd;
Daniel Borkmann52db8822013-06-25 18:17:27 +02006324 assocparams.sasoc_cookie_life = ktime_to_ms(asoc->cookie_life);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006325
6326 list_for_each(pos, &asoc->peer.transport_addr_list) {
wangweidongcb3f8372013-12-23 12:16:50 +08006327 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328 }
6329
6330 assocparams.sasoc_number_peer_destinations = cnt;
6331 } else {
6332 /* Values corresponding to the endpoint */
6333 struct sctp_sock *sp = sctp_sk(sk);
6334
6335 assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt;
6336 assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd;
6337 assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd;
6338 assocparams.sasoc_cookie_life =
6339 sp->assocparams.sasoc_cookie_life;
6340 assocparams.sasoc_number_peer_destinations =
6341 sp->assocparams.
6342 sasoc_number_peer_destinations;
6343 }
6344
6345 if (put_user(len, optlen))
6346 return -EFAULT;
6347
6348 if (copy_to_user(optval, &assocparams, len))
6349 return -EFAULT;
6350
6351 return 0;
6352}
6353
6354/*
6355 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
6356 *
6357 * This socket option is a boolean flag which turns on or off mapped V4
6358 * addresses. If this option is turned on and the socket is type
6359 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
6360 * If this option is turned off, then no mapping will be done of V4
6361 * addresses and a user will receive both PF_INET6 and PF_INET type
6362 * addresses on the socket.
6363 */
6364static int sctp_getsockopt_mappedv4(struct sock *sk, int len,
6365 char __user *optval, int __user *optlen)
6366{
6367 int val;
6368 struct sctp_sock *sp = sctp_sk(sk);
6369
6370 if (len < sizeof(int))
6371 return -EINVAL;
6372
6373 len = sizeof(int);
6374 val = sp->v4mapped;
6375 if (put_user(len, optlen))
6376 return -EFAULT;
6377 if (copy_to_user(optval, &val, len))
6378 return -EFAULT;
6379
6380 return 0;
6381}
6382
6383/*
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006384 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
6385 * (chapter and verse is quoted at sctp_setsockopt_context())
6386 */
6387static int sctp_getsockopt_context(struct sock *sk, int len,
6388 char __user *optval, int __user *optlen)
6389{
6390 struct sctp_assoc_value params;
6391 struct sctp_sock *sp;
6392 struct sctp_association *asoc;
6393
Neil Horman408f22e2007-06-16 14:03:45 -04006394 if (len < sizeof(struct sctp_assoc_value))
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006395 return -EINVAL;
6396
Neil Horman408f22e2007-06-16 14:03:45 -04006397 len = sizeof(struct sctp_assoc_value);
6398
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006399 if (copy_from_user(&params, optval, len))
6400 return -EFAULT;
6401
6402 sp = sctp_sk(sk);
6403
6404 if (params.assoc_id != 0) {
6405 asoc = sctp_id2assoc(sk, params.assoc_id);
6406 if (!asoc)
6407 return -EINVAL;
6408 params.assoc_value = asoc->default_rcv_context;
6409 } else {
6410 params.assoc_value = sp->default_rcv_context;
6411 }
6412
6413 if (put_user(len, optlen))
6414 return -EFAULT;
6415 if (copy_to_user(optval, &params, len))
6416 return -EFAULT;
6417
6418 return 0;
6419}
6420
6421/*
Wei Yongjune89c2092008-12-25 16:54:58 -08006422 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
6423 * This option will get or set the maximum size to put in any outgoing
6424 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425 * fragmented by SCTP into the specified size. Note that the underlying
6426 * SCTP implementation may fragment into smaller sized chunks when the
6427 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08006428 * the user. The default value for this option is '0' which indicates
6429 * the user is NOT limiting fragmentation and only the PMTU will effect
6430 * SCTP's choice of DATA chunk size. Note also that values set larger
6431 * than the maximum size of an IP datagram will effectively let SCTP
6432 * control fragmentation (i.e. the same as setting this option to 0).
6433 *
6434 * The following structure is used to access and modify this parameter:
6435 *
6436 * struct sctp_assoc_value {
6437 * sctp_assoc_t assoc_id;
6438 * uint32_t assoc_value;
6439 * };
6440 *
6441 * assoc_id: This parameter is ignored for one-to-one style sockets.
6442 * For one-to-many style sockets this parameter indicates which
6443 * association the user is performing an action upon. Note that if
6444 * this field's value is zero then the endpoints default value is
6445 * changed (effecting future associations only).
6446 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447 */
6448static int sctp_getsockopt_maxseg(struct sock *sk, int len,
6449 char __user *optval, int __user *optlen)
6450{
Wei Yongjune89c2092008-12-25 16:54:58 -08006451 struct sctp_assoc_value params;
6452 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006453
Wei Yongjune89c2092008-12-25 16:54:58 -08006454 if (len == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05006455 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05006456 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05006457 "Use of int in maxseg socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05006458 "Use struct sctp_assoc_value instead\n",
6459 current->comm, task_pid_nr(current));
Wei Yongjune89c2092008-12-25 16:54:58 -08006460 params.assoc_id = 0;
6461 } else if (len >= sizeof(struct sctp_assoc_value)) {
6462 len = sizeof(struct sctp_assoc_value);
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006463 if (copy_from_user(&params, optval, len))
Wei Yongjune89c2092008-12-25 16:54:58 -08006464 return -EFAULT;
6465 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07006466 return -EINVAL;
6467
Wei Yongjune89c2092008-12-25 16:54:58 -08006468 asoc = sctp_id2assoc(sk, params.assoc_id);
6469 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
6470 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006471
Wei Yongjune89c2092008-12-25 16:54:58 -08006472 if (asoc)
6473 params.assoc_value = asoc->frag_point;
6474 else
6475 params.assoc_value = sctp_sk(sk)->user_frag;
6476
Linus Torvalds1da177e2005-04-16 15:20:36 -07006477 if (put_user(len, optlen))
6478 return -EFAULT;
Wei Yongjune89c2092008-12-25 16:54:58 -08006479 if (len == sizeof(int)) {
6480 if (copy_to_user(optval, &params.assoc_value, len))
6481 return -EFAULT;
6482 } else {
6483 if (copy_to_user(optval, &params, len))
6484 return -EFAULT;
6485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486
6487 return 0;
6488}
6489
Vlad Yasevichb6e13312007-04-20 12:23:15 -07006490/*
6491 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
6492 * (chapter and verse is quoted at sctp_setsockopt_fragment_interleave())
6493 */
6494static int sctp_getsockopt_fragment_interleave(struct sock *sk, int len,
6495 char __user *optval, int __user *optlen)
6496{
6497 int val;
6498
6499 if (len < sizeof(int))
6500 return -EINVAL;
6501
6502 len = sizeof(int);
6503
6504 val = sctp_sk(sk)->frag_interleave;
6505 if (put_user(len, optlen))
6506 return -EFAULT;
6507 if (copy_to_user(optval, &val, len))
6508 return -EFAULT;
6509
6510 return 0;
6511}
6512
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006513/*
6514 * 7.1.25. Set or Get the sctp partial delivery point
6515 * (chapter and verse is quoted at sctp_setsockopt_partial_delivery_point())
6516 */
6517static int sctp_getsockopt_partial_delivery_point(struct sock *sk, int len,
6518 char __user *optval,
6519 int __user *optlen)
6520{
YOSHIFUJI Hideaki9cbcbf42007-07-19 10:44:50 +09006521 u32 val;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006522
6523 if (len < sizeof(u32))
6524 return -EINVAL;
6525
6526 len = sizeof(u32);
6527
6528 val = sctp_sk(sk)->pd_point;
6529 if (put_user(len, optlen))
6530 return -EFAULT;
6531 if (copy_to_user(optval, &val, len))
6532 return -EFAULT;
6533
Wei Yongjun7d743b72010-12-14 16:10:41 +00006534 return 0;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006535}
6536
Vlad Yasevich70331572007-03-23 11:34:36 -07006537/*
6538 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
6539 * (chapter and verse is quoted at sctp_setsockopt_maxburst())
6540 */
6541static int sctp_getsockopt_maxburst(struct sock *sk, int len,
6542 char __user *optval,
6543 int __user *optlen)
6544{
Neil Horman219b99a2008-03-05 13:44:46 -08006545 struct sctp_assoc_value params;
6546 struct sctp_sock *sp;
6547 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07006548
Neil Horman219b99a2008-03-05 13:44:46 -08006549 if (len == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05006550 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05006551 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05006552 "Use of int in max_burst socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05006553 "Use struct sctp_assoc_value instead\n",
6554 current->comm, task_pid_nr(current));
Neil Horman219b99a2008-03-05 13:44:46 -08006555 params.assoc_id = 0;
Wei Yongjunc6db93a2009-03-02 09:46:12 +00006556 } else if (len >= sizeof(struct sctp_assoc_value)) {
6557 len = sizeof(struct sctp_assoc_value);
Neil Horman219b99a2008-03-05 13:44:46 -08006558 if (copy_from_user(&params, optval, len))
6559 return -EFAULT;
6560 } else
6561 return -EINVAL;
Vlad Yasevich70331572007-03-23 11:34:36 -07006562
Neil Horman219b99a2008-03-05 13:44:46 -08006563 sp = sctp_sk(sk);
Vlad Yasevich70331572007-03-23 11:34:36 -07006564
Neil Horman219b99a2008-03-05 13:44:46 -08006565 if (params.assoc_id != 0) {
6566 asoc = sctp_id2assoc(sk, params.assoc_id);
6567 if (!asoc)
6568 return -EINVAL;
6569 params.assoc_value = asoc->max_burst;
6570 } else
6571 params.assoc_value = sp->max_burst;
6572
6573 if (len == sizeof(int)) {
6574 if (copy_to_user(optval, &params.assoc_value, len))
6575 return -EFAULT;
6576 } else {
6577 if (copy_to_user(optval, &params, len))
6578 return -EFAULT;
6579 }
6580
6581 return 0;
6582
Vlad Yasevich70331572007-03-23 11:34:36 -07006583}
6584
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006585static int sctp_getsockopt_hmac_ident(struct sock *sk, int len,
6586 char __user *optval, int __user *optlen)
6587{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006588 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006589 struct sctp_hmacalgo __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006590 struct sctp_hmac_algo_param *hmacs;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006591 __u16 data_len = 0;
6592 u32 num_idents;
Xin Long7a84bd42016-02-03 23:33:30 +08006593 int i;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006594
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006595 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006596 return -EACCES;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006597
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006598 hmacs = ep->auth_hmacs_list;
Xin Long3c918702017-06-30 11:52:16 +08006599 data_len = ntohs(hmacs->param_hdr.length) -
6600 sizeof(struct sctp_paramhdr);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006601
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006602 if (len < sizeof(struct sctp_hmacalgo) + data_len)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006603 return -EINVAL;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006604
6605 len = sizeof(struct sctp_hmacalgo) + data_len;
6606 num_idents = data_len / sizeof(u16);
6607
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006608 if (put_user(len, optlen))
6609 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006610 if (put_user(num_idents, &p->shmac_num_idents))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006611 return -EFAULT;
Xin Long7a84bd42016-02-03 23:33:30 +08006612 for (i = 0; i < num_idents; i++) {
6613 __u16 hmacid = ntohs(hmacs->hmac_ids[i]);
6614
6615 if (copy_to_user(&p->shmac_idents[i], &hmacid, sizeof(__u16)))
6616 return -EFAULT;
6617 }
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006618 return 0;
6619}
6620
6621static int sctp_getsockopt_active_key(struct sock *sk, int len,
6622 char __user *optval, int __user *optlen)
6623{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006624 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006625 struct sctp_authkeyid val;
6626 struct sctp_association *asoc;
6627
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006628 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006629 return -EACCES;
6630
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006631 if (len < sizeof(struct sctp_authkeyid))
6632 return -EINVAL;
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006633
6634 len = sizeof(struct sctp_authkeyid);
6635 if (copy_from_user(&val, optval, len))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006636 return -EFAULT;
6637
6638 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
6639 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
6640 return -EINVAL;
6641
6642 if (asoc)
6643 val.scact_keynumber = asoc->active_key_id;
6644 else
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006645 val.scact_keynumber = ep->active_key_id;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006646
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006647 if (put_user(len, optlen))
6648 return -EFAULT;
6649 if (copy_to_user(optval, &val, len))
6650 return -EFAULT;
6651
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006652 return 0;
6653}
6654
6655static int sctp_getsockopt_peer_auth_chunks(struct sock *sk, int len,
6656 char __user *optval, int __user *optlen)
6657{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006658 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Al Viro411223c2007-10-14 19:21:20 +01006659 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006660 struct sctp_authchunks val;
6661 struct sctp_association *asoc;
6662 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006663 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006664 char __user *to;
6665
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006666 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006667 return -EACCES;
6668
6669 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006670 return -EINVAL;
6671
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006672 if (copy_from_user(&val, optval, sizeof(val)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006673 return -EFAULT;
6674
Al Viro411223c2007-10-14 19:21:20 +01006675 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006676 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6677 if (!asoc)
6678 return -EINVAL;
6679
6680 ch = asoc->peer.peer_chunks;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006681 if (!ch)
6682 goto num;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006683
6684 /* See if the user provided enough room for all the data */
Xin Long3c918702017-06-30 11:52:16 +08006685 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
Vlad Yasevichb40db682008-02-27 14:40:37 -05006686 if (len < num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006687 return -EINVAL;
6688
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006689 if (copy_to_user(to, ch->chunks, num_chunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006690 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006691num:
6692 len = sizeof(struct sctp_authchunks) + num_chunks;
wangweidong8d726512013-12-23 12:16:53 +08006693 if (put_user(len, optlen))
6694 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05006695 if (put_user(num_chunks, &p->gauth_number_of_chunks))
6696 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006697 return 0;
6698}
6699
6700static int sctp_getsockopt_local_auth_chunks(struct sock *sk, int len,
6701 char __user *optval, int __user *optlen)
6702{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006703 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Al Viro411223c2007-10-14 19:21:20 +01006704 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006705 struct sctp_authchunks val;
6706 struct sctp_association *asoc;
6707 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006708 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006709 char __user *to;
6710
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006711 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006712 return -EACCES;
6713
6714 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006715 return -EINVAL;
6716
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006717 if (copy_from_user(&val, optval, sizeof(val)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006718 return -EFAULT;
6719
Al Viro411223c2007-10-14 19:21:20 +01006720 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006721 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6722 if (!asoc && val.gauth_assoc_id && sctp_style(sk, UDP))
6723 return -EINVAL;
6724
6725 if (asoc)
wangweidong26ac8e52013-12-23 12:16:51 +08006726 ch = (struct sctp_chunks_param *)asoc->c.auth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006727 else
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006728 ch = ep->auth_chunk_list;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006729
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006730 if (!ch)
6731 goto num;
6732
Xin Long3c918702017-06-30 11:52:16 +08006733 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006734 if (len < sizeof(struct sctp_authchunks) + num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006735 return -EINVAL;
6736
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006737 if (copy_to_user(to, ch->chunks, num_chunks))
6738 return -EFAULT;
6739num:
6740 len = sizeof(struct sctp_authchunks) + num_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006741 if (put_user(len, optlen))
6742 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05006743 if (put_user(num_chunks, &p->gauth_number_of_chunks))
6744 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006745
6746 return 0;
6747}
6748
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08006749/*
6750 * 8.2.5. Get the Current Number of Associations (SCTP_GET_ASSOC_NUMBER)
6751 * This option gets the current number of associations that are attached
6752 * to a one-to-many style socket. The option value is an uint32_t.
6753 */
6754static int sctp_getsockopt_assoc_number(struct sock *sk, int len,
6755 char __user *optval, int __user *optlen)
6756{
6757 struct sctp_sock *sp = sctp_sk(sk);
6758 struct sctp_association *asoc;
6759 u32 val = 0;
6760
6761 if (sctp_style(sk, TCP))
6762 return -EOPNOTSUPP;
6763
6764 if (len < sizeof(u32))
6765 return -EINVAL;
6766
6767 len = sizeof(u32);
6768
6769 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6770 val++;
6771 }
6772
6773 if (put_user(len, optlen))
6774 return -EFAULT;
6775 if (copy_to_user(optval, &val, len))
6776 return -EFAULT;
6777
6778 return 0;
6779}
6780
Wei Yongjun209ba422011-04-17 17:27:08 +00006781/*
Michio Honda7dc04d72011-04-26 20:16:31 +09006782 * 8.1.23 SCTP_AUTO_ASCONF
6783 * See the corresponding setsockopt entry as description
6784 */
6785static int sctp_getsockopt_auto_asconf(struct sock *sk, int len,
6786 char __user *optval, int __user *optlen)
6787{
6788 int val = 0;
6789
6790 if (len < sizeof(int))
6791 return -EINVAL;
6792
6793 len = sizeof(int);
6794 if (sctp_sk(sk)->do_auto_asconf && sctp_is_ep_boundall(sk))
6795 val = 1;
6796 if (put_user(len, optlen))
6797 return -EFAULT;
6798 if (copy_to_user(optval, &val, len))
6799 return -EFAULT;
6800 return 0;
6801}
6802
6803/*
Wei Yongjun209ba422011-04-17 17:27:08 +00006804 * 8.2.6. Get the Current Identifiers of Associations
6805 * (SCTP_GET_ASSOC_ID_LIST)
6806 *
6807 * This option gets the current list of SCTP association identifiers of
6808 * the SCTP associations handled by a one-to-many style socket.
6809 */
6810static int sctp_getsockopt_assoc_ids(struct sock *sk, int len,
6811 char __user *optval, int __user *optlen)
6812{
6813 struct sctp_sock *sp = sctp_sk(sk);
6814 struct sctp_association *asoc;
6815 struct sctp_assoc_ids *ids;
6816 u32 num = 0;
6817
6818 if (sctp_style(sk, TCP))
6819 return -EOPNOTSUPP;
6820
6821 if (len < sizeof(struct sctp_assoc_ids))
6822 return -EINVAL;
6823
6824 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6825 num++;
6826 }
6827
6828 if (len < sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num)
6829 return -EINVAL;
6830
6831 len = sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num;
6832
Marcelo Ricardo Leitner9ba0b962015-12-23 16:28:40 -02006833 ids = kmalloc(len, GFP_USER | __GFP_NOWARN);
Wei Yongjun209ba422011-04-17 17:27:08 +00006834 if (unlikely(!ids))
6835 return -ENOMEM;
6836
6837 ids->gaids_number_of_ids = num;
6838 num = 0;
6839 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6840 ids->gaids_assoc_id[num++] = asoc->assoc_id;
6841 }
6842
6843 if (put_user(len, optlen) || copy_to_user(optval, ids, len)) {
6844 kfree(ids);
6845 return -EFAULT;
6846 }
6847
6848 kfree(ids);
6849 return 0;
6850}
6851
Neil Horman5aa93bc2012-07-21 07:56:07 +00006852/*
6853 * SCTP_PEER_ADDR_THLDS
6854 *
6855 * This option allows us to fetch the partially failed threshold for one or all
6856 * transports in an association. See Section 6.1 of:
6857 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
6858 */
6859static int sctp_getsockopt_paddr_thresholds(struct sock *sk,
6860 char __user *optval,
6861 int len,
6862 int __user *optlen)
6863{
6864 struct sctp_paddrthlds val;
6865 struct sctp_transport *trans;
6866 struct sctp_association *asoc;
6867
6868 if (len < sizeof(struct sctp_paddrthlds))
6869 return -EINVAL;
6870 len = sizeof(struct sctp_paddrthlds);
6871 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval, len))
6872 return -EFAULT;
6873
6874 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
6875 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
6876 if (!asoc)
6877 return -ENOENT;
6878
6879 val.spt_pathpfthld = asoc->pf_retrans;
6880 val.spt_pathmaxrxt = asoc->pathmaxrxt;
6881 } else {
6882 trans = sctp_addr_id2transport(sk, &val.spt_address,
6883 val.spt_assoc_id);
6884 if (!trans)
6885 return -ENOENT;
6886
6887 val.spt_pathmaxrxt = trans->pathmaxrxt;
6888 val.spt_pathpfthld = trans->pf_retrans;
6889 }
6890
6891 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
6892 return -EFAULT;
6893
6894 return 0;
6895}
6896
Michele Baldessari196d6752012-12-01 04:49:42 +00006897/*
6898 * SCTP_GET_ASSOC_STATS
6899 *
6900 * This option retrieves local per endpoint statistics. It is modeled
6901 * after OpenSolaris' implementation
6902 */
6903static int sctp_getsockopt_assoc_stats(struct sock *sk, int len,
6904 char __user *optval,
6905 int __user *optlen)
6906{
6907 struct sctp_assoc_stats sas;
6908 struct sctp_association *asoc = NULL;
6909
6910 /* User must provide at least the assoc id */
6911 if (len < sizeof(sctp_assoc_t))
6912 return -EINVAL;
6913
Guenter Roeck726bc6b2013-02-27 10:57:31 +00006914 /* Allow the struct to grow and fill in as much as possible */
6915 len = min_t(size_t, len, sizeof(sas));
6916
Michele Baldessari196d6752012-12-01 04:49:42 +00006917 if (copy_from_user(&sas, optval, len))
6918 return -EFAULT;
6919
6920 asoc = sctp_id2assoc(sk, sas.sas_assoc_id);
6921 if (!asoc)
6922 return -EINVAL;
6923
6924 sas.sas_rtxchunks = asoc->stats.rtxchunks;
6925 sas.sas_gapcnt = asoc->stats.gapcnt;
6926 sas.sas_outofseqtsns = asoc->stats.outofseqtsns;
6927 sas.sas_osacks = asoc->stats.osacks;
6928 sas.sas_isacks = asoc->stats.isacks;
6929 sas.sas_octrlchunks = asoc->stats.octrlchunks;
6930 sas.sas_ictrlchunks = asoc->stats.ictrlchunks;
6931 sas.sas_oodchunks = asoc->stats.oodchunks;
6932 sas.sas_iodchunks = asoc->stats.iodchunks;
6933 sas.sas_ouodchunks = asoc->stats.ouodchunks;
6934 sas.sas_iuodchunks = asoc->stats.iuodchunks;
6935 sas.sas_idupchunks = asoc->stats.idupchunks;
6936 sas.sas_opackets = asoc->stats.opackets;
6937 sas.sas_ipackets = asoc->stats.ipackets;
6938
6939 /* New high max rto observed, will return 0 if not a single
6940 * RTO update took place. obs_rto_ipaddr will be bogus
6941 * in such a case
6942 */
6943 sas.sas_maxrto = asoc->stats.max_obs_rto;
6944 memcpy(&sas.sas_obs_rto_ipaddr, &asoc->stats.obs_rto_ipaddr,
6945 sizeof(struct sockaddr_storage));
6946
6947 /* Mark beginning of a new observation period */
6948 asoc->stats.max_obs_rto = asoc->rto_min;
6949
Michele Baldessari196d6752012-12-01 04:49:42 +00006950 if (put_user(len, optlen))
6951 return -EFAULT;
6952
Daniel Borkmannbb333812013-06-28 19:49:40 +02006953 pr_debug("%s: len:%d, assoc_id:%d\n", __func__, len, sas.sas_assoc_id);
Michele Baldessari196d6752012-12-01 04:49:42 +00006954
6955 if (copy_to_user(optval, &sas, len))
6956 return -EFAULT;
6957
6958 return 0;
6959}
6960
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02006961static int sctp_getsockopt_recvrcvinfo(struct sock *sk, int len,
6962 char __user *optval,
6963 int __user *optlen)
6964{
6965 int val = 0;
6966
6967 if (len < sizeof(int))
6968 return -EINVAL;
6969
6970 len = sizeof(int);
6971 if (sctp_sk(sk)->recvrcvinfo)
6972 val = 1;
6973 if (put_user(len, optlen))
6974 return -EFAULT;
6975 if (copy_to_user(optval, &val, len))
6976 return -EFAULT;
6977
6978 return 0;
6979}
6980
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02006981static int sctp_getsockopt_recvnxtinfo(struct sock *sk, int len,
6982 char __user *optval,
6983 int __user *optlen)
6984{
6985 int val = 0;
6986
6987 if (len < sizeof(int))
6988 return -EINVAL;
6989
6990 len = sizeof(int);
6991 if (sctp_sk(sk)->recvnxtinfo)
6992 val = 1;
6993 if (put_user(len, optlen))
6994 return -EFAULT;
6995 if (copy_to_user(optval, &val, len))
6996 return -EFAULT;
6997
6998 return 0;
6999}
7000
Xin Long28aa4c22016-07-09 19:47:40 +08007001static int sctp_getsockopt_pr_supported(struct sock *sk, int len,
7002 char __user *optval,
7003 int __user *optlen)
7004{
7005 struct sctp_assoc_value params;
7006 struct sctp_association *asoc;
7007 int retval = -EFAULT;
7008
7009 if (len < sizeof(params)) {
7010 retval = -EINVAL;
7011 goto out;
7012 }
7013
7014 len = sizeof(params);
7015 if (copy_from_user(&params, optval, len))
7016 goto out;
7017
7018 asoc = sctp_id2assoc(sk, params.assoc_id);
7019 if (asoc) {
7020 params.assoc_value = asoc->prsctp_enable;
7021 } else if (!params.assoc_id) {
7022 struct sctp_sock *sp = sctp_sk(sk);
7023
7024 params.assoc_value = sp->ep->prsctp_enable;
7025 } else {
7026 retval = -EINVAL;
7027 goto out;
7028 }
7029
7030 if (put_user(len, optlen))
7031 goto out;
7032
7033 if (copy_to_user(optval, &params, len))
7034 goto out;
7035
7036 retval = 0;
7037
7038out:
7039 return retval;
7040}
7041
Xin Longf959fb42016-07-09 19:47:41 +08007042static int sctp_getsockopt_default_prinfo(struct sock *sk, int len,
7043 char __user *optval,
7044 int __user *optlen)
7045{
7046 struct sctp_default_prinfo info;
7047 struct sctp_association *asoc;
7048 int retval = -EFAULT;
7049
7050 if (len < sizeof(info)) {
7051 retval = -EINVAL;
7052 goto out;
7053 }
7054
7055 len = sizeof(info);
7056 if (copy_from_user(&info, optval, len))
7057 goto out;
7058
7059 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
7060 if (asoc) {
7061 info.pr_policy = SCTP_PR_POLICY(asoc->default_flags);
7062 info.pr_value = asoc->default_timetolive;
7063 } else if (!info.pr_assoc_id) {
7064 struct sctp_sock *sp = sctp_sk(sk);
7065
7066 info.pr_policy = SCTP_PR_POLICY(sp->default_flags);
7067 info.pr_value = sp->default_timetolive;
7068 } else {
7069 retval = -EINVAL;
7070 goto out;
7071 }
7072
7073 if (put_user(len, optlen))
7074 goto out;
7075
7076 if (copy_to_user(optval, &info, len))
7077 goto out;
7078
7079 retval = 0;
7080
7081out:
7082 return retval;
7083}
7084
Xin Long826d2532016-07-09 19:47:42 +08007085static int sctp_getsockopt_pr_assocstatus(struct sock *sk, int len,
7086 char __user *optval,
7087 int __user *optlen)
7088{
7089 struct sctp_prstatus params;
7090 struct sctp_association *asoc;
7091 int policy;
7092 int retval = -EINVAL;
7093
7094 if (len < sizeof(params))
7095 goto out;
7096
7097 len = sizeof(params);
7098 if (copy_from_user(&params, optval, len)) {
7099 retval = -EFAULT;
7100 goto out;
7101 }
7102
7103 policy = params.sprstat_policy;
Xin Long0ac10772018-10-16 15:52:02 +08007104 if (!policy || (policy & ~(SCTP_PR_SCTP_MASK | SCTP_PR_SCTP_ALL)))
Xin Long826d2532016-07-09 19:47:42 +08007105 goto out;
7106
7107 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
7108 if (!asoc)
7109 goto out;
7110
Xin Long0ac10772018-10-16 15:52:02 +08007111 if (policy & SCTP_PR_SCTP_ALL) {
Xin Long826d2532016-07-09 19:47:42 +08007112 params.sprstat_abandoned_unsent = 0;
7113 params.sprstat_abandoned_sent = 0;
7114 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
7115 params.sprstat_abandoned_unsent +=
7116 asoc->abandoned_unsent[policy];
7117 params.sprstat_abandoned_sent +=
7118 asoc->abandoned_sent[policy];
7119 }
7120 } else {
7121 params.sprstat_abandoned_unsent =
7122 asoc->abandoned_unsent[__SCTP_PR_INDEX(policy)];
7123 params.sprstat_abandoned_sent =
7124 asoc->abandoned_sent[__SCTP_PR_INDEX(policy)];
7125 }
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
7137 retval = 0;
7138
7139out:
7140 return retval;
7141}
7142
Xin Longd229d482017-04-01 17:07:46 +08007143static int sctp_getsockopt_pr_streamstatus(struct sock *sk, int len,
7144 char __user *optval,
7145 int __user *optlen)
7146{
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007147 struct sctp_stream_out_ext *streamoute;
Xin Longd229d482017-04-01 17:07:46 +08007148 struct sctp_association *asoc;
7149 struct sctp_prstatus params;
7150 int retval = -EINVAL;
7151 int policy;
7152
7153 if (len < sizeof(params))
7154 goto out;
7155
7156 len = sizeof(params);
7157 if (copy_from_user(&params, optval, len)) {
7158 retval = -EFAULT;
7159 goto out;
7160 }
7161
7162 policy = params.sprstat_policy;
Xin Long0ac10772018-10-16 15:52:02 +08007163 if (!policy || (policy & ~(SCTP_PR_SCTP_MASK | SCTP_PR_SCTP_ALL)))
Xin Longd229d482017-04-01 17:07:46 +08007164 goto out;
7165
7166 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
Xin Longcee360a2017-05-31 16:36:31 +08007167 if (!asoc || params.sprstat_sid >= asoc->stream.outcnt)
Xin Longd229d482017-04-01 17:07:46 +08007168 goto out;
7169
Konstantin Khorenko05364ca2018-08-10 20:11:42 +03007170 streamoute = SCTP_SO(&asoc->stream, params.sprstat_sid)->ext;
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007171 if (!streamoute) {
7172 /* Not allocated yet, means all stats are 0 */
7173 params.sprstat_abandoned_unsent = 0;
7174 params.sprstat_abandoned_sent = 0;
7175 retval = 0;
7176 goto out;
7177 }
7178
Xin Long0ac10772018-10-16 15:52:02 +08007179 if (policy == SCTP_PR_SCTP_ALL) {
Xin Longd229d482017-04-01 17:07:46 +08007180 params.sprstat_abandoned_unsent = 0;
7181 params.sprstat_abandoned_sent = 0;
7182 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
7183 params.sprstat_abandoned_unsent +=
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007184 streamoute->abandoned_unsent[policy];
Xin Longd229d482017-04-01 17:07:46 +08007185 params.sprstat_abandoned_sent +=
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007186 streamoute->abandoned_sent[policy];
Xin Longd229d482017-04-01 17:07:46 +08007187 }
7188 } else {
7189 params.sprstat_abandoned_unsent =
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007190 streamoute->abandoned_unsent[__SCTP_PR_INDEX(policy)];
Xin Longd229d482017-04-01 17:07:46 +08007191 params.sprstat_abandoned_sent =
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007192 streamoute->abandoned_sent[__SCTP_PR_INDEX(policy)];
Xin Longd229d482017-04-01 17:07:46 +08007193 }
7194
7195 if (put_user(len, optlen) || copy_to_user(optval, &params, len)) {
7196 retval = -EFAULT;
7197 goto out;
7198 }
7199
7200 retval = 0;
7201
7202out:
7203 return retval;
7204}
7205
Xin Longc0d8bab2017-03-10 12:11:12 +08007206static int sctp_getsockopt_reconfig_supported(struct sock *sk, int len,
7207 char __user *optval,
7208 int __user *optlen)
7209{
7210 struct sctp_assoc_value params;
7211 struct sctp_association *asoc;
7212 int retval = -EFAULT;
7213
7214 if (len < sizeof(params)) {
7215 retval = -EINVAL;
7216 goto out;
7217 }
7218
7219 len = sizeof(params);
7220 if (copy_from_user(&params, optval, len))
7221 goto out;
7222
7223 asoc = sctp_id2assoc(sk, params.assoc_id);
7224 if (asoc) {
7225 params.assoc_value = asoc->reconf_enable;
7226 } else if (!params.assoc_id) {
7227 struct sctp_sock *sp = sctp_sk(sk);
7228
7229 params.assoc_value = sp->ep->reconf_enable;
7230 } else {
7231 retval = -EINVAL;
7232 goto out;
7233 }
7234
7235 if (put_user(len, optlen))
7236 goto out;
7237
7238 if (copy_to_user(optval, &params, len))
7239 goto out;
7240
7241 retval = 0;
7242
7243out:
7244 return retval;
7245}
7246
Xin Long9fb657a2017-01-18 00:44:46 +08007247static int sctp_getsockopt_enable_strreset(struct sock *sk, int len,
7248 char __user *optval,
7249 int __user *optlen)
7250{
7251 struct sctp_assoc_value params;
7252 struct sctp_association *asoc;
7253 int retval = -EFAULT;
7254
7255 if (len < sizeof(params)) {
7256 retval = -EINVAL;
7257 goto out;
7258 }
7259
7260 len = sizeof(params);
7261 if (copy_from_user(&params, optval, len))
7262 goto out;
7263
7264 asoc = sctp_id2assoc(sk, params.assoc_id);
7265 if (asoc) {
7266 params.assoc_value = asoc->strreset_enable;
7267 } else if (!params.assoc_id) {
7268 struct sctp_sock *sp = sctp_sk(sk);
7269
7270 params.assoc_value = sp->ep->strreset_enable;
7271 } else {
7272 retval = -EINVAL;
7273 goto out;
7274 }
7275
7276 if (put_user(len, optlen))
7277 goto out;
7278
7279 if (copy_to_user(optval, &params, len))
7280 goto out;
7281
7282 retval = 0;
7283
7284out:
7285 return retval;
7286}
7287
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03007288static int sctp_getsockopt_scheduler(struct sock *sk, int len,
7289 char __user *optval,
7290 int __user *optlen)
7291{
7292 struct sctp_assoc_value params;
7293 struct sctp_association *asoc;
7294 int retval = -EFAULT;
7295
7296 if (len < sizeof(params)) {
7297 retval = -EINVAL;
7298 goto out;
7299 }
7300
7301 len = sizeof(params);
7302 if (copy_from_user(&params, optval, len))
7303 goto out;
7304
7305 asoc = sctp_id2assoc(sk, params.assoc_id);
7306 if (!asoc) {
7307 retval = -EINVAL;
7308 goto out;
7309 }
7310
7311 params.assoc_value = sctp_sched_get_sched(asoc);
7312
7313 if (put_user(len, optlen))
7314 goto out;
7315
7316 if (copy_to_user(optval, &params, len))
7317 goto out;
7318
7319 retval = 0;
7320
7321out:
7322 return retval;
7323}
7324
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03007325static int sctp_getsockopt_scheduler_value(struct sock *sk, int len,
7326 char __user *optval,
7327 int __user *optlen)
7328{
7329 struct sctp_stream_value params;
7330 struct sctp_association *asoc;
7331 int retval = -EFAULT;
7332
7333 if (len < sizeof(params)) {
7334 retval = -EINVAL;
7335 goto out;
7336 }
7337
7338 len = sizeof(params);
7339 if (copy_from_user(&params, optval, len))
7340 goto out;
7341
7342 asoc = sctp_id2assoc(sk, params.assoc_id);
7343 if (!asoc) {
7344 retval = -EINVAL;
7345 goto out;
7346 }
7347
7348 retval = sctp_sched_get_value(asoc, params.stream_id,
7349 &params.stream_value);
7350 if (retval)
7351 goto out;
7352
7353 if (put_user(len, optlen)) {
7354 retval = -EFAULT;
7355 goto out;
7356 }
7357
7358 if (copy_to_user(optval, &params, len)) {
7359 retval = -EFAULT;
7360 goto out;
7361 }
7362
7363out:
7364 return retval;
7365}
7366
Xin Long772a5862017-12-08 21:03:58 +08007367static int sctp_getsockopt_interleaving_supported(struct sock *sk, int len,
7368 char __user *optval,
7369 int __user *optlen)
7370{
7371 struct sctp_assoc_value params;
7372 struct sctp_association *asoc;
7373 int retval = -EFAULT;
7374
7375 if (len < sizeof(params)) {
7376 retval = -EINVAL;
7377 goto out;
7378 }
7379
7380 len = sizeof(params);
7381 if (copy_from_user(&params, optval, len))
7382 goto out;
7383
7384 asoc = sctp_id2assoc(sk, params.assoc_id);
7385 if (asoc) {
7386 params.assoc_value = asoc->intl_enable;
7387 } else if (!params.assoc_id) {
7388 struct sctp_sock *sp = sctp_sk(sk);
7389
7390 params.assoc_value = sp->strm_interleave;
7391 } else {
7392 retval = -EINVAL;
7393 goto out;
7394 }
7395
7396 if (put_user(len, optlen))
7397 goto out;
7398
7399 if (copy_to_user(optval, &params, len))
7400 goto out;
7401
7402 retval = 0;
7403
7404out:
7405 return retval;
7406}
7407
Xin Longb0e9a2f2018-06-28 15:31:00 +08007408static int sctp_getsockopt_reuse_port(struct sock *sk, int len,
7409 char __user *optval,
7410 int __user *optlen)
7411{
7412 int val;
7413
7414 if (len < sizeof(int))
7415 return -EINVAL;
7416
7417 len = sizeof(int);
7418 val = sctp_sk(sk)->reuse;
7419 if (put_user(len, optlen))
7420 return -EFAULT;
7421
7422 if (copy_to_user(optval, &val, len))
7423 return -EFAULT;
7424
7425 return 0;
7426}
7427
Daniel Borkmanndda91922013-06-17 11:40:05 +02007428static int sctp_getsockopt(struct sock *sk, int level, int optname,
7429 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007430{
7431 int retval = 0;
7432 int len;
7433
Daniel Borkmannbb333812013-06-28 19:49:40 +02007434 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007435
7436 /* I can hardly begin to describe how wrong this is. This is
7437 * so broken as to be worse than useless. The API draft
7438 * REALLY is NOT helpful here... I am not convinced that the
7439 * semantics of getsockopt() with a level OTHER THAN SOL_SCTP
7440 * are at all well-founded.
7441 */
7442 if (level != SOL_SCTP) {
7443 struct sctp_af *af = sctp_sk(sk)->pf->af;
7444
7445 retval = af->getsockopt(sk, level, optname, optval, optlen);
7446 return retval;
7447 }
7448
7449 if (get_user(len, optlen))
7450 return -EFAULT;
7451
Jiri Slabya4b8e712016-10-21 14:13:24 +02007452 if (len < 0)
7453 return -EINVAL;
7454
wangweidong048ed4b2014-01-21 15:44:11 +08007455 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007456
7457 switch (optname) {
7458 case SCTP_STATUS:
7459 retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen);
7460 break;
7461 case SCTP_DISABLE_FRAGMENTS:
7462 retval = sctp_getsockopt_disable_fragments(sk, len, optval,
7463 optlen);
7464 break;
7465 case SCTP_EVENTS:
7466 retval = sctp_getsockopt_events(sk, len, optval, optlen);
7467 break;
7468 case SCTP_AUTOCLOSE:
7469 retval = sctp_getsockopt_autoclose(sk, len, optval, optlen);
7470 break;
7471 case SCTP_SOCKOPT_PEELOFF:
7472 retval = sctp_getsockopt_peeloff(sk, len, optval, optlen);
7473 break;
Neil Horman2cb5c8e2017-06-30 13:32:57 -04007474 case SCTP_SOCKOPT_PEELOFF_FLAGS:
7475 retval = sctp_getsockopt_peeloff_flags(sk, len, optval, optlen);
7476 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007477 case SCTP_PEER_ADDR_PARAMS:
7478 retval = sctp_getsockopt_peer_addr_params(sk, len, optval,
7479 optlen);
7480 break;
Shan Wei4580ccc2011-01-18 22:39:00 +00007481 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07007482 retval = sctp_getsockopt_delayed_ack(sk, len, optval,
Frank Filz77086102005-12-22 11:37:30 -08007483 optlen);
7484 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007485 case SCTP_INITMSG:
7486 retval = sctp_getsockopt_initmsg(sk, len, optval, optlen);
7487 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007488 case SCTP_GET_PEER_ADDRS:
7489 retval = sctp_getsockopt_peer_addrs(sk, len, optval,
7490 optlen);
7491 break;
7492 case SCTP_GET_LOCAL_ADDRS:
7493 retval = sctp_getsockopt_local_addrs(sk, len, optval,
7494 optlen);
7495 break;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04007496 case SCTP_SOCKOPT_CONNECTX3:
7497 retval = sctp_getsockopt_connectx3(sk, len, optval, optlen);
7498 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007499 case SCTP_DEFAULT_SEND_PARAM:
7500 retval = sctp_getsockopt_default_send_param(sk, len,
7501 optval, optlen);
7502 break;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02007503 case SCTP_DEFAULT_SNDINFO:
7504 retval = sctp_getsockopt_default_sndinfo(sk, len,
7505 optval, optlen);
7506 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007507 case SCTP_PRIMARY_ADDR:
7508 retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen);
7509 break;
7510 case SCTP_NODELAY:
7511 retval = sctp_getsockopt_nodelay(sk, len, optval, optlen);
7512 break;
7513 case SCTP_RTOINFO:
7514 retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen);
7515 break;
7516 case SCTP_ASSOCINFO:
7517 retval = sctp_getsockopt_associnfo(sk, len, optval, optlen);
7518 break;
7519 case SCTP_I_WANT_MAPPED_V4_ADDR:
7520 retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen);
7521 break;
7522 case SCTP_MAXSEG:
7523 retval = sctp_getsockopt_maxseg(sk, len, optval, optlen);
7524 break;
7525 case SCTP_GET_PEER_ADDR_INFO:
7526 retval = sctp_getsockopt_peer_addr_info(sk, len, optval,
7527 optlen);
7528 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08007529 case SCTP_ADAPTATION_LAYER:
7530 retval = sctp_getsockopt_adaptation_layer(sk, len, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007531 optlen);
7532 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08007533 case SCTP_CONTEXT:
7534 retval = sctp_getsockopt_context(sk, len, optval, optlen);
7535 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07007536 case SCTP_FRAGMENT_INTERLEAVE:
7537 retval = sctp_getsockopt_fragment_interleave(sk, len, optval,
7538 optlen);
7539 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07007540 case SCTP_PARTIAL_DELIVERY_POINT:
7541 retval = sctp_getsockopt_partial_delivery_point(sk, len, optval,
7542 optlen);
7543 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07007544 case SCTP_MAX_BURST:
7545 retval = sctp_getsockopt_maxburst(sk, len, optval, optlen);
7546 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007547 case SCTP_AUTH_KEY:
7548 case SCTP_AUTH_CHUNK:
7549 case SCTP_AUTH_DELETE_KEY:
Xin Long601590e2018-03-14 19:05:32 +08007550 case SCTP_AUTH_DEACTIVATE_KEY:
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007551 retval = -EOPNOTSUPP;
7552 break;
7553 case SCTP_HMAC_IDENT:
7554 retval = sctp_getsockopt_hmac_ident(sk, len, optval, optlen);
7555 break;
7556 case SCTP_AUTH_ACTIVE_KEY:
7557 retval = sctp_getsockopt_active_key(sk, len, optval, optlen);
7558 break;
7559 case SCTP_PEER_AUTH_CHUNKS:
7560 retval = sctp_getsockopt_peer_auth_chunks(sk, len, optval,
7561 optlen);
7562 break;
7563 case SCTP_LOCAL_AUTH_CHUNKS:
7564 retval = sctp_getsockopt_local_auth_chunks(sk, len, optval,
7565 optlen);
7566 break;
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08007567 case SCTP_GET_ASSOC_NUMBER:
7568 retval = sctp_getsockopt_assoc_number(sk, len, optval, optlen);
7569 break;
Wei Yongjun209ba422011-04-17 17:27:08 +00007570 case SCTP_GET_ASSOC_ID_LIST:
7571 retval = sctp_getsockopt_assoc_ids(sk, len, optval, optlen);
7572 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09007573 case SCTP_AUTO_ASCONF:
7574 retval = sctp_getsockopt_auto_asconf(sk, len, optval, optlen);
7575 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00007576 case SCTP_PEER_ADDR_THLDS:
7577 retval = sctp_getsockopt_paddr_thresholds(sk, optval, len, optlen);
7578 break;
Michele Baldessari196d6752012-12-01 04:49:42 +00007579 case SCTP_GET_ASSOC_STATS:
7580 retval = sctp_getsockopt_assoc_stats(sk, len, optval, optlen);
7581 break;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02007582 case SCTP_RECVRCVINFO:
7583 retval = sctp_getsockopt_recvrcvinfo(sk, len, optval, optlen);
7584 break;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02007585 case SCTP_RECVNXTINFO:
7586 retval = sctp_getsockopt_recvnxtinfo(sk, len, optval, optlen);
7587 break;
Xin Long28aa4c22016-07-09 19:47:40 +08007588 case SCTP_PR_SUPPORTED:
7589 retval = sctp_getsockopt_pr_supported(sk, len, optval, optlen);
7590 break;
Xin Longf959fb42016-07-09 19:47:41 +08007591 case SCTP_DEFAULT_PRINFO:
7592 retval = sctp_getsockopt_default_prinfo(sk, len, optval,
7593 optlen);
7594 break;
Xin Long826d2532016-07-09 19:47:42 +08007595 case SCTP_PR_ASSOC_STATUS:
7596 retval = sctp_getsockopt_pr_assocstatus(sk, len, optval,
7597 optlen);
7598 break;
Xin Longd229d482017-04-01 17:07:46 +08007599 case SCTP_PR_STREAM_STATUS:
7600 retval = sctp_getsockopt_pr_streamstatus(sk, len, optval,
7601 optlen);
7602 break;
Xin Longc0d8bab2017-03-10 12:11:12 +08007603 case SCTP_RECONFIG_SUPPORTED:
7604 retval = sctp_getsockopt_reconfig_supported(sk, len, optval,
7605 optlen);
7606 break;
Xin Long9fb657a2017-01-18 00:44:46 +08007607 case SCTP_ENABLE_STREAM_RESET:
7608 retval = sctp_getsockopt_enable_strreset(sk, len, optval,
7609 optlen);
7610 break;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03007611 case SCTP_STREAM_SCHEDULER:
7612 retval = sctp_getsockopt_scheduler(sk, len, optval,
7613 optlen);
7614 break;
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03007615 case SCTP_STREAM_SCHEDULER_VALUE:
7616 retval = sctp_getsockopt_scheduler_value(sk, len, optval,
7617 optlen);
7618 break;
Xin Long772a5862017-12-08 21:03:58 +08007619 case SCTP_INTERLEAVING_SUPPORTED:
7620 retval = sctp_getsockopt_interleaving_supported(sk, len, optval,
7621 optlen);
7622 break;
Xin Longb0e9a2f2018-06-28 15:31:00 +08007623 case SCTP_REUSE_PORT:
7624 retval = sctp_getsockopt_reuse_port(sk, len, optval, optlen);
7625 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007626 default:
7627 retval = -ENOPROTOOPT;
7628 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07007629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007630
wangweidong048ed4b2014-01-21 15:44:11 +08007631 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007632 return retval;
7633}
7634
Craig Gallek086c6532016-02-10 11:50:35 -05007635static int sctp_hash(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007636{
7637 /* STUB */
Craig Gallek086c6532016-02-10 11:50:35 -05007638 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007639}
7640
7641static void sctp_unhash(struct sock *sk)
7642{
7643 /* STUB */
7644}
7645
7646/* Check if port is acceptable. Possibly find first available port.
7647 *
7648 * The port hash table (contained in the 'global' SCTP protocol storage
7649 * returned by struct sctp_protocol *sctp_get_protocol()). The hash
7650 * table is an array of 4096 lists (sctp_bind_hashbucket). Each
7651 * list (the list number is the port number hashed out, so as you
7652 * would expect from a hash function, all the ports in a given list have
7653 * such a number that hashes out to the same list number; you were
7654 * expecting that, right?); so each list has a set of ports, with a
7655 * link to the socket (struct sock) that uses it, the port number and
7656 * a fastreuse flag (FIXME: NPI ipg).
7657 */
7658static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007659 struct sctp_bind_hashbucket *head, struct net *, unsigned short snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007660
7661static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
7662{
Xin Longb0e9a2f2018-06-28 15:31:00 +08007663 bool reuse = (sk->sk_reuse || sctp_sk(sk)->reuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007664 struct sctp_bind_hashbucket *head; /* hash list */
Sasha Levinb67bfe02013-02-27 17:06:00 -08007665 struct sctp_bind_bucket *pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007666 unsigned short snum;
7667 int ret;
7668
Al Viro04afd8b2006-11-20 17:02:01 -08007669 snum = ntohs(addr->v4.sin_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007670
Daniel Borkmannbb333812013-06-28 19:49:40 +02007671 pr_debug("%s: begins, snum:%d\n", __func__, snum);
7672
wangweidong79b91132014-01-21 15:44:07 +08007673 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007674
7675 if (snum == 0) {
Stephen Hemminger06393002007-10-10 17:30:18 -07007676 /* Search for an available port. */
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007677 int low, high, remaining, index;
7678 unsigned int rover;
WANG Cong122ff242014-05-12 16:04:53 -07007679 struct net *net = sock_net(sk);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007680
WANG Cong122ff242014-05-12 16:04:53 -07007681 inet_get_local_port_range(net, &low, &high);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007682 remaining = (high - low) + 1;
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05007683 rover = prandom_u32() % remaining + low;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007684
Linus Torvalds1da177e2005-04-16 15:20:36 -07007685 do {
7686 rover++;
7687 if ((rover < low) || (rover > high))
7688 rover = low;
WANG Cong122ff242014-05-12 16:04:53 -07007689 if (inet_is_local_reserved_port(net, rover))
Amerigo Wange3826f12010-05-05 00:27:06 +00007690 continue;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007691 index = sctp_phashfn(sock_net(sk), rover);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007692 head = &sctp_port_hashtable[index];
wangweidong3c8e43b2014-01-21 15:44:08 +08007693 spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08007694 sctp_for_each_hentry(pp, &head->chain)
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007695 if ((pp->port == rover) &&
7696 net_eq(sock_net(sk), pp->net))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007697 goto next;
7698 break;
7699 next:
wangweidong3c8e43b2014-01-21 15:44:08 +08007700 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007701 } while (--remaining > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007702
7703 /* Exhausted local port range during search? */
7704 ret = 1;
7705 if (remaining <= 0)
7706 goto fail;
7707
7708 /* OK, here is the one we will use. HEAD (the port
7709 * hash table list entry) is non-NULL and we hold it's
7710 * mutex.
7711 */
7712 snum = rover;
7713 } else {
7714 /* We are given an specific port number; we verify
7715 * that it is not being used. If it is used, we will
7716 * exahust the search in the hash list corresponding
7717 * to the port number (snum) - we detect that with the
7718 * port iterator, pp being NULL.
7719 */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007720 head = &sctp_port_hashtable[sctp_phashfn(sock_net(sk), snum)];
wangweidong3c8e43b2014-01-21 15:44:08 +08007721 spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08007722 sctp_for_each_hentry(pp, &head->chain) {
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007723 if ((pp->port == snum) && net_eq(pp->net, sock_net(sk)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007724 goto pp_found;
7725 }
7726 }
7727 pp = NULL;
7728 goto pp_not_found;
7729pp_found:
7730 if (!hlist_empty(&pp->owner)) {
7731 /* We had a port hash table hit - there is an
7732 * available port (pp != NULL) and it is being
7733 * used by other socket (pp->owner not empty); that other
7734 * socket is going to be sk2.
7735 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007736 struct sock *sk2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007737
Daniel Borkmannbb333812013-06-28 19:49:40 +02007738 pr_debug("%s: found a possible match\n", __func__);
7739
Xin Longb0e9a2f2018-06-28 15:31:00 +08007740 if (pp->fastreuse && reuse && sk->sk_state != SCTP_SS_LISTENING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007741 goto success;
7742
7743 /* Run through the list of sockets bound to the port
7744 * (pp->port) [via the pointers bind_next and
7745 * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one,
7746 * we get the endpoint they describe and run through
7747 * the endpoint's list of IP (v4 or v6) addresses,
7748 * comparing each of the addresses with the address of
7749 * the socket sk. If we find a match, then that means
7750 * that this port/socket (sk) combination are already
7751 * in an endpoint.
7752 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08007753 sk_for_each_bound(sk2, &pp->owner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007754 struct sctp_endpoint *ep2;
7755 ep2 = sctp_sk(sk2)->ep;
7756
Vlad Yasevich4e540642008-07-18 23:06:32 -07007757 if (sk == sk2 ||
Xin Longb0e9a2f2018-06-28 15:31:00 +08007758 (reuse && (sk2->sk_reuse || sctp_sk(sk2)->reuse) &&
Vlad Yasevich4e540642008-07-18 23:06:32 -07007759 sk2->sk_state != SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007760 continue;
7761
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07007762 if (sctp_bind_addr_conflict(&ep2->base.bind_addr, addr,
7763 sctp_sk(sk2), sctp_sk(sk))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007764 ret = (long)sk2;
7765 goto fail_unlock;
7766 }
7767 }
Daniel Borkmannbb333812013-06-28 19:49:40 +02007768
7769 pr_debug("%s: found a match\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007770 }
7771pp_not_found:
7772 /* If there was a hash table miss, create a new port. */
7773 ret = 1;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007774 if (!pp && !(pp = sctp_bucket_create(head, sock_net(sk), snum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007775 goto fail_unlock;
7776
7777 /* In either case (hit or miss), make sure fastreuse is 1 only
7778 * if sk->sk_reuse is too (that is, if the caller requested
7779 * SO_REUSEADDR on this socket -sk-).
7780 */
Vlad Yasevichce5325c2007-05-04 13:34:49 -07007781 if (hlist_empty(&pp->owner)) {
Xin Longb0e9a2f2018-06-28 15:31:00 +08007782 if (reuse && sk->sk_state != SCTP_SS_LISTENING)
Vlad Yasevichce5325c2007-05-04 13:34:49 -07007783 pp->fastreuse = 1;
7784 else
7785 pp->fastreuse = 0;
7786 } else if (pp->fastreuse &&
Xin Longb0e9a2f2018-06-28 15:31:00 +08007787 (!reuse || sk->sk_state == SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007788 pp->fastreuse = 0;
7789
7790 /* We are set, so fill up all the data in the hash table
7791 * entry, tie the socket list information with the rest of the
7792 * sockets FIXME: Blurry, NPI (ipg).
7793 */
7794success:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007795 if (!sctp_sk(sk)->bind_hash) {
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007796 inet_sk(sk)->inet_num = snum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007797 sk_add_bind_node(sk, &pp->owner);
7798 sctp_sk(sk)->bind_hash = pp;
7799 }
7800 ret = 0;
7801
7802fail_unlock:
wangweidong3c8e43b2014-01-21 15:44:08 +08007803 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007804
7805fail:
wangweidong79b91132014-01-21 15:44:07 +08007806 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007807 return ret;
7808}
7809
7810/* Assign a 'snum' port to the socket. If snum == 0, an ephemeral
7811 * port is requested.
7812 */
7813static int sctp_get_port(struct sock *sk, unsigned short snum)
7814{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007815 union sctp_addr addr;
7816 struct sctp_af *af = sctp_sk(sk)->pf->af;
7817
7818 /* Set up a dummy address struct from the sk. */
7819 af->from_sk(&addr, sk);
7820 addr.v4.sin_port = htons(snum);
7821
7822 /* Note: sk->sk_num gets filled in if ephemeral port request. */
Daniel Borkmann62208f12013-06-25 18:17:30 +02007823 return !!sctp_get_port_local(sk, &addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007824}
7825
7826/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007827 * Move a socket to LISTENING state.
7828 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02007829static int sctp_listen_start(struct sock *sk, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007830{
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007831 struct sctp_sock *sp = sctp_sk(sk);
7832 struct sctp_endpoint *ep = sp->ep;
Herbert Xu5821c762016-01-24 21:20:12 +08007833 struct crypto_shash *tfm = NULL;
Neil Horman3c681982012-10-24 09:20:03 +00007834 char alg[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007835
7836 /* Allocate HMAC for generating cookie. */
Neil Horman3c681982012-10-24 09:20:03 +00007837 if (!sp->hmac && sp->sctp_hmac_alg) {
7838 sprintf(alg, "hmac(%s)", sp->sctp_hmac_alg);
Herbert Xu5821c762016-01-24 21:20:12 +08007839 tfm = crypto_alloc_shash(alg, 0, 0);
Vlad Yasevich8dc49842007-05-09 13:50:20 -07007840 if (IS_ERR(tfm)) {
Joe Perchese87cc472012-05-13 21:56:26 +00007841 net_info_ratelimited("failed to load transform for %s: %ld\n",
Neil Horman3c681982012-10-24 09:20:03 +00007842 sp->sctp_hmac_alg, PTR_ERR(tfm));
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007843 return -ENOSYS;
7844 }
7845 sctp_sk(sk)->hmac = tfm;
7846 }
7847
7848 /*
7849 * If a bind() or sctp_bindx() is not called prior to a listen()
7850 * call that allows new associations to be accepted, the system
7851 * picks an ephemeral port and will choose an address set equivalent
7852 * to binding with a wildcard address.
7853 *
7854 * This is not currently spelled out in the SCTP sockets
7855 * extensions draft, but follows the practice as seen in TCP
7856 * sockets.
7857 *
7858 */
Yafang Shaocbabf462017-12-20 11:12:54 +08007859 inet_sk_set_state(sk, SCTP_SS_LISTENING);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007860 if (!ep->base.bind_addr.port) {
7861 if (sctp_autobind(sk))
7862 return -EAGAIN;
7863 } else {
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007864 if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
Yafang Shaocbabf462017-12-20 11:12:54 +08007865 inet_sk_set_state(sk, SCTP_SS_CLOSED);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007866 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007867 }
7868 }
7869
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007870 sk->sk_max_ack_backlog = backlog;
7871 sctp_hash_endpoint(ep);
7872 return 0;
7873}
7874
7875/*
7876 * 4.1.3 / 5.1.3 listen()
7877 *
7878 * By default, new associations are not accepted for UDP style sockets.
7879 * An application uses listen() to mark a socket as being able to
7880 * accept new associations.
7881 *
7882 * On TCP style sockets, applications use listen() to ready the SCTP
7883 * endpoint for accepting inbound associations.
7884 *
7885 * On both types of endpoints a backlog of '0' disables listening.
7886 *
7887 * Move a socket to LISTENING state.
7888 */
7889int sctp_inet_listen(struct socket *sock, int backlog)
7890{
7891 struct sock *sk = sock->sk;
7892 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
7893 int err = -EINVAL;
7894
7895 if (unlikely(backlog < 0))
7896 return err;
7897
wangweidong048ed4b2014-01-21 15:44:11 +08007898 lock_sock(sk);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007899
7900 /* Peeled-off sockets are not allowed to listen(). */
7901 if (sctp_style(sk, UDP_HIGH_BANDWIDTH))
7902 goto out;
7903
7904 if (sock->state != SS_UNCONNECTED)
7905 goto out;
7906
Xin Long34b27892017-04-06 13:10:52 +08007907 if (!sctp_sstate(sk, LISTENING) && !sctp_sstate(sk, CLOSED))
7908 goto out;
7909
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007910 /* If backlog is zero, disable listening. */
7911 if (!backlog) {
7912 if (sctp_sstate(sk, CLOSED))
7913 goto out;
7914
7915 err = 0;
7916 sctp_unhash_endpoint(ep);
7917 sk->sk_state = SCTP_SS_CLOSED;
Xin Longb0e9a2f2018-06-28 15:31:00 +08007918 if (sk->sk_reuse || sctp_sk(sk)->reuse)
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007919 sctp_sk(sk)->bind_hash->fastreuse = 1;
7920 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07007921 }
7922
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007923 /* If we are already listening, just update the backlog */
7924 if (sctp_sstate(sk, LISTENING))
7925 sk->sk_max_ack_backlog = backlog;
7926 else {
7927 err = sctp_listen_start(sk, backlog);
7928 if (err)
7929 goto out;
7930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007931
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007932 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007933out:
wangweidong048ed4b2014-01-21 15:44:11 +08007934 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007935 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007936}
7937
7938/*
7939 * This function is done by modeling the current datagram_poll() and the
7940 * tcp_poll(). Note that, based on these implementations, we don't
7941 * lock the socket in this function, even though it seems that,
7942 * ideally, locking or some other mechanisms can be used to ensure
Neil Horman9bffc4a2005-12-19 14:24:40 -08007943 * the integrity of the counters (sndbuf and wmem_alloc) used
Linus Torvalds1da177e2005-04-16 15:20:36 -07007944 * in this place. We assume that we don't need locks either until proven
7945 * otherwise.
7946 *
7947 * Another thing to note is that we include the Async I/O support
7948 * here, again, by modeling the current TCP/UDP code. We don't have
7949 * a good way to test with it yet.
7950 */
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07007951__poll_t sctp_poll(struct file *file, struct socket *sock, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007952{
7953 struct sock *sk = sock->sk;
7954 struct sctp_sock *sp = sctp_sk(sk);
Al Viroade994f2017-07-03 00:01:49 -04007955 __poll_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007956
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07007957 poll_wait(file, sk_sleep(sk), wait);
7958
Marcelo Ricardo Leitner486bdee2016-04-12 18:11:31 -03007959 sock_rps_record_flow(sk);
7960
Linus Torvalds1da177e2005-04-16 15:20:36 -07007961 /* A TCP-style listening socket becomes readable when the accept queue
7962 * is not empty.
7963 */
7964 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
7965 return (!list_empty(&sp->ep->asocs)) ?
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007966 (EPOLLIN | EPOLLRDNORM) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007967
7968 mask = 0;
7969
7970 /* Is there any exceptional events? */
7971 if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007972 mask |= EPOLLERR |
7973 (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? EPOLLPRI : 0);
Davide Libenzif348d702006-03-25 03:07:39 -08007974 if (sk->sk_shutdown & RCV_SHUTDOWN)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007975 mask |= EPOLLRDHUP | EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007976 if (sk->sk_shutdown == SHUTDOWN_MASK)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007977 mask |= EPOLLHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007978
7979 /* Is it readable? Reconsider this code with TCP-style support. */
Eric Dumazetdb409802010-09-06 11:13:50 +00007980 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007981 mask |= EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007982
7983 /* The association is either gone or not ready. */
7984 if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED))
7985 return mask;
7986
7987 /* Is it writable? */
7988 if (sctp_writeable(sk)) {
Linus Torvaldsa9a08842018-02-11 14:34:03 -08007989 mask |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007990 } else {
Eric Dumazet9cd3e072015-11-29 20:03:10 -08007991 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007992 /*
7993 * Since the socket is not locked, the buffer
7994 * might be made available after the writeable check and
7995 * before the bit is set. This could cause a lost I/O
7996 * signal. tcp_poll() has a race breaker for this race
7997 * condition. Based on their implementation, we put
7998 * in the following code to cover it as well.
7999 */
8000 if (sctp_writeable(sk))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008001 mask |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008002 }
8003 return mask;
8004}
8005
8006/********************************************************************
8007 * 2nd Level Abstractions
8008 ********************************************************************/
8009
8010static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008011 struct sctp_bind_hashbucket *head, struct net *net, unsigned short snum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008012{
8013 struct sctp_bind_bucket *pp;
8014
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08008015 pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008016 if (pp) {
Li Zefan935a7f62008-04-10 01:58:06 -07008017 SCTP_DBG_OBJCNT_INC(bind_bucket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008018 pp->port = snum;
8019 pp->fastreuse = 0;
8020 INIT_HLIST_HEAD(&pp->owner);
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008021 pp->net = net;
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05008022 hlist_add_head(&pp->node, &head->chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008023 }
8024 return pp;
8025}
8026
8027/* Caller must hold hashbucket lock for this tb with local BH disabled */
8028static void sctp_bucket_destroy(struct sctp_bind_bucket *pp)
8029{
Sridhar Samudrala37fa6872006-07-21 14:45:47 -07008030 if (pp && hlist_empty(&pp->owner)) {
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05008031 __hlist_del(&pp->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008032 kmem_cache_free(sctp_bucket_cachep, pp);
8033 SCTP_DBG_OBJCNT_DEC(bind_bucket);
8034 }
8035}
8036
8037/* Release this socket's reference to a local port. */
8038static inline void __sctp_put_port(struct sock *sk)
8039{
8040 struct sctp_bind_hashbucket *head =
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008041 &sctp_port_hashtable[sctp_phashfn(sock_net(sk),
8042 inet_sk(sk)->inet_num)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07008043 struct sctp_bind_bucket *pp;
8044
wangweidong3c8e43b2014-01-21 15:44:08 +08008045 spin_lock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008046 pp = sctp_sk(sk)->bind_hash;
8047 __sk_del_bind_node(sk);
8048 sctp_sk(sk)->bind_hash = NULL;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008049 inet_sk(sk)->inet_num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008050 sctp_bucket_destroy(pp);
wangweidong3c8e43b2014-01-21 15:44:08 +08008051 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008052}
8053
8054void sctp_put_port(struct sock *sk)
8055{
wangweidong79b91132014-01-21 15:44:07 +08008056 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008057 __sctp_put_port(sk);
wangweidong79b91132014-01-21 15:44:07 +08008058 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008059}
8060
8061/*
8062 * The system picks an ephemeral port and choose an address set equivalent
8063 * to binding with a wildcard address.
8064 * One of those addresses will be the primary address for the association.
8065 * This automatically enables the multihoming capability of SCTP.
8066 */
8067static int sctp_autobind(struct sock *sk)
8068{
8069 union sctp_addr autoaddr;
8070 struct sctp_af *af;
Al Viro6fbfa9f2006-11-20 17:24:53 -08008071 __be16 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008072
8073 /* Initialize a local sockaddr structure to INADDR_ANY. */
8074 af = sctp_sk(sk)->pf->af;
8075
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008076 port = htons(inet_sk(sk)->inet_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008077 af->inaddr_any(&autoaddr, port);
8078
8079 return sctp_do_bind(sk, &autoaddr, af->sockaddr_len);
8080}
8081
8082/* Parse out IPPROTO_SCTP CMSG headers. Perform only minimal validation.
8083 *
8084 * From RFC 2292
8085 * 4.2 The cmsghdr Structure *
8086 *
8087 * When ancillary data is sent or received, any number of ancillary data
8088 * objects can be specified by the msg_control and msg_controllen members of
8089 * the msghdr structure, because each object is preceded by
8090 * a cmsghdr structure defining the object's length (the cmsg_len member).
8091 * Historically Berkeley-derived implementations have passed only one object
8092 * at a time, but this API allows multiple objects to be
8093 * passed in a single call to sendmsg() or recvmsg(). The following example
8094 * shows two ancillary data objects in a control buffer.
8095 *
8096 * |<--------------------------- msg_controllen -------------------------->|
8097 * | |
8098 *
8099 * |<----- ancillary data object ----->|<----- ancillary data object ----->|
8100 *
8101 * |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->|
8102 * | | |
8103 *
8104 * |<---------- cmsg_len ---------->| |<--------- cmsg_len ----------->| |
8105 *
8106 * |<--------- CMSG_LEN() --------->| |<-------- CMSG_LEN() ---------->| |
8107 * | | | | |
8108 *
8109 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
8110 * |cmsg_|cmsg_|cmsg_|XX| |XX|cmsg_|cmsg_|cmsg_|XX| |XX|
8111 *
8112 * |len |level|type |XX|cmsg_data[]|XX|len |level|type |XX|cmsg_data[]|XX|
8113 *
8114 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
8115 * ^
8116 * |
8117 *
8118 * msg_control
8119 * points here
8120 */
Xin Longa05437a2017-08-11 10:23:48 +08008121static int sctp_msghdr_parse(const struct msghdr *msg, struct sctp_cmsgs *cmsgs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008122{
Vlad Yasevichab38fb02008-04-12 18:40:06 -07008123 struct msghdr *my_msg = (struct msghdr *)msg;
Xin Longa05437a2017-08-11 10:23:48 +08008124 struct cmsghdr *cmsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008125
Gu Zhengf95b4142014-12-11 11:22:04 +08008126 for_each_cmsghdr(cmsg, my_msg) {
Vlad Yasevichab38fb02008-04-12 18:40:06 -07008127 if (!CMSG_OK(my_msg, cmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008128 return -EINVAL;
8129
8130 /* Should we parse this header or ignore? */
8131 if (cmsg->cmsg_level != IPPROTO_SCTP)
8132 continue;
8133
8134 /* Strictly check lengths following example in SCM code. */
8135 switch (cmsg->cmsg_type) {
8136 case SCTP_INIT:
8137 /* SCTP Socket API Extension
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008138 * 5.3.1 SCTP Initiation Structure (SCTP_INIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008139 *
8140 * This cmsghdr structure provides information for
8141 * initializing new SCTP associations with sendmsg().
8142 * The SCTP_INITMSG socket option uses this same data
8143 * structure. This structure is not used for
8144 * recvmsg().
8145 *
8146 * cmsg_level cmsg_type cmsg_data[]
8147 * ------------ ------------ ----------------------
8148 * IPPROTO_SCTP SCTP_INIT struct sctp_initmsg
8149 */
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008150 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_initmsg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008151 return -EINVAL;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008152
8153 cmsgs->init = CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008154 break;
8155
8156 case SCTP_SNDRCV:
8157 /* SCTP Socket API Extension
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008158 * 5.3.2 SCTP Header Information Structure(SCTP_SNDRCV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008159 *
8160 * This cmsghdr structure specifies SCTP options for
8161 * sendmsg() and describes SCTP header information
8162 * about a received message through recvmsg().
8163 *
8164 * cmsg_level cmsg_type cmsg_data[]
8165 * ------------ ------------ ----------------------
8166 * IPPROTO_SCTP SCTP_SNDRCV struct sctp_sndrcvinfo
8167 */
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008168 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndrcvinfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008169 return -EINVAL;
8170
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008171 cmsgs->srinfo = CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008172
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008173 if (cmsgs->srinfo->sinfo_flags &
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07008174 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
Xin Long49102802018-03-05 20:44:20 +08008175 SCTP_SACK_IMMEDIATELY | SCTP_SENDALL |
8176 SCTP_PR_SCTP_MASK | SCTP_ABORT | SCTP_EOF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008177 return -EINVAL;
8178 break;
8179
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008180 case SCTP_SNDINFO:
8181 /* SCTP Socket API Extension
8182 * 5.3.4 SCTP Send Information Structure (SCTP_SNDINFO)
8183 *
8184 * This cmsghdr structure specifies SCTP options for
8185 * sendmsg(). This structure and SCTP_RCVINFO replaces
8186 * SCTP_SNDRCV which has been deprecated.
8187 *
8188 * cmsg_level cmsg_type cmsg_data[]
8189 * ------------ ------------ ---------------------
8190 * IPPROTO_SCTP SCTP_SNDINFO struct sctp_sndinfo
8191 */
8192 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndinfo)))
8193 return -EINVAL;
8194
8195 cmsgs->sinfo = CMSG_DATA(cmsg);
8196
8197 if (cmsgs->sinfo->snd_flags &
8198 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
Xin Long49102802018-03-05 20:44:20 +08008199 SCTP_SACK_IMMEDIATELY | SCTP_SENDALL |
8200 SCTP_PR_SCTP_MASK | SCTP_ABORT | SCTP_EOF))
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008201 return -EINVAL;
8202 break;
Xin Longed63afb2018-03-05 20:44:18 +08008203 case SCTP_PRINFO:
8204 /* SCTP Socket API Extension
8205 * 5.3.7 SCTP PR-SCTP Information Structure (SCTP_PRINFO)
8206 *
8207 * This cmsghdr structure specifies SCTP options for sendmsg().
8208 *
8209 * cmsg_level cmsg_type cmsg_data[]
8210 * ------------ ------------ ---------------------
8211 * IPPROTO_SCTP SCTP_PRINFO struct sctp_prinfo
8212 */
8213 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_prinfo)))
8214 return -EINVAL;
8215
8216 cmsgs->prinfo = CMSG_DATA(cmsg);
8217 if (cmsgs->prinfo->pr_policy & ~SCTP_PR_SCTP_MASK)
8218 return -EINVAL;
8219
8220 if (cmsgs->prinfo->pr_policy == SCTP_PR_SCTP_NONE)
8221 cmsgs->prinfo->pr_value = 0;
8222 break;
Xin Long3ff547c2018-03-14 19:05:31 +08008223 case SCTP_AUTHINFO:
8224 /* SCTP Socket API Extension
8225 * 5.3.8 SCTP AUTH Information Structure (SCTP_AUTHINFO)
8226 *
8227 * This cmsghdr structure specifies SCTP options for sendmsg().
8228 *
8229 * cmsg_level cmsg_type cmsg_data[]
8230 * ------------ ------------ ---------------------
8231 * IPPROTO_SCTP SCTP_AUTHINFO struct sctp_authinfo
8232 */
8233 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_authinfo)))
8234 return -EINVAL;
8235
8236 cmsgs->authinfo = CMSG_DATA(cmsg);
8237 break;
Xin Long2c0dbaa2018-03-05 20:44:19 +08008238 case SCTP_DSTADDRV4:
8239 case SCTP_DSTADDRV6:
8240 /* SCTP Socket API Extension
8241 * 5.3.9/10 SCTP Destination IPv4/6 Address Structure (SCTP_DSTADDRV4/6)
8242 *
8243 * This cmsghdr structure specifies SCTP options for sendmsg().
8244 *
8245 * cmsg_level cmsg_type cmsg_data[]
8246 * ------------ ------------ ---------------------
8247 * IPPROTO_SCTP SCTP_DSTADDRV4 struct in_addr
8248 * ------------ ------------ ---------------------
8249 * IPPROTO_SCTP SCTP_DSTADDRV6 struct in6_addr
8250 */
8251 cmsgs->addrs_msg = my_msg;
8252 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008253 default:
8254 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07008255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008256 }
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008257
Linus Torvalds1da177e2005-04-16 15:20:36 -07008258 return 0;
8259}
8260
8261/*
8262 * Wait for a packet..
8263 * Note: This function is the same function as in core/datagram.c
8264 * with a few modifications to make lksctp work.
8265 */
wangweidong26ac8e52013-12-23 12:16:51 +08008266static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008267{
8268 int error;
8269 DEFINE_WAIT(wait);
8270
Eric Dumazetaa395142010-04-20 13:03:51 +00008271 prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008272
8273 /* Socket errors? */
8274 error = sock_error(sk);
8275 if (error)
8276 goto out;
8277
8278 if (!skb_queue_empty(&sk->sk_receive_queue))
8279 goto ready;
8280
8281 /* Socket shut down? */
8282 if (sk->sk_shutdown & RCV_SHUTDOWN)
8283 goto out;
8284
8285 /* Sequenced packets can come disconnected. If so we report the
8286 * problem.
8287 */
8288 error = -ENOTCONN;
8289
8290 /* Is there a good reason to think that we may receive some data? */
8291 if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING))
8292 goto out;
8293
8294 /* Handle signals. */
8295 if (signal_pending(current))
8296 goto interrupted;
8297
8298 /* Let another process have a go. Since we are going to sleep
8299 * anyway. Note: This may cause odd behaviors if the message
8300 * does not fit in the user's buffer, but this seems to be the
8301 * only way to honor MSG_DONTWAIT realistically.
8302 */
wangweidong048ed4b2014-01-21 15:44:11 +08008303 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008304 *timeo_p = schedule_timeout(*timeo_p);
wangweidong048ed4b2014-01-21 15:44:11 +08008305 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008306
8307ready:
Eric Dumazetaa395142010-04-20 13:03:51 +00008308 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008309 return 0;
8310
8311interrupted:
8312 error = sock_intr_errno(*timeo_p);
8313
8314out:
Eric Dumazetaa395142010-04-20 13:03:51 +00008315 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008316 *err = error;
8317 return error;
8318}
8319
8320/* Receive a datagram.
8321 * Note: This is pretty much the same routine as in core/datagram.c
8322 * with a few changes to make lksctp work.
8323 */
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02008324struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags,
8325 int noblock, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008326{
8327 int error;
8328 struct sk_buff *skb;
8329 long timeo;
8330
Linus Torvalds1da177e2005-04-16 15:20:36 -07008331 timeo = sock_rcvtimeo(sk, noblock);
8332
Daniel Borkmannbb333812013-06-28 19:49:40 +02008333 pr_debug("%s: timeo:%ld, max:%ld\n", __func__, timeo,
8334 MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008335
8336 do {
8337 /* Again only user level code calls this function,
8338 * so nothing interrupt level
8339 * will suddenly eat the receive_queue.
8340 *
8341 * Look at current nfs client by the way...
David Shwatrz8917a3c2010-12-02 09:01:55 +00008342 * However, this function was correct in any case. 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008343 */
8344 if (flags & MSG_PEEK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008345 skb = skb_peek(&sk->sk_receive_queue);
8346 if (skb)
Reshetova, Elena63354792017-06-30 13:07:58 +03008347 refcount_inc(&skb->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008348 } else {
Marcelo Ricardo Leitner311b2172016-04-13 19:12:29 -03008349 skb = __skb_dequeue(&sk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008350 }
8351
8352 if (skb)
8353 return skb;
8354
Neil Horman6736dc32005-12-02 20:30:06 -08008355 /* Caller is allowed not to check sk->sk_err before calling. */
8356 error = sock_error(sk);
8357 if (error)
8358 goto no_packet;
8359
Linus Torvalds1da177e2005-04-16 15:20:36 -07008360 if (sk->sk_shutdown & RCV_SHUTDOWN)
8361 break;
8362
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07008363 if (sk_can_busy_loop(sk)) {
8364 sk_busy_loop(sk, noblock);
8365
8366 if (!skb_queue_empty(&sk->sk_receive_queue))
8367 continue;
8368 }
Neil Horman8465a5f2014-04-17 15:26:51 -04008369
Linus Torvalds1da177e2005-04-16 15:20:36 -07008370 /* User doesn't want to wait. */
8371 error = -EAGAIN;
8372 if (!timeo)
8373 goto no_packet;
8374 } while (sctp_wait_for_packet(sk, err, &timeo) == 0);
8375
8376 return NULL;
8377
8378no_packet:
8379 *err = error;
8380 return NULL;
8381}
8382
8383/* If sndbuf has changed, wake up per association sndbuf waiters. */
8384static void __sctp_write_space(struct sctp_association *asoc)
8385{
8386 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008387
Eric Dumazetceb5d582015-11-29 20:03:11 -08008388 if (sctp_wspace(asoc) <= 0)
8389 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008390
Eric Dumazetceb5d582015-11-29 20:03:11 -08008391 if (waitqueue_active(&asoc->wait))
8392 wake_up_interruptible(&asoc->wait);
Eric Dumazeteaefd112011-02-18 03:26:36 +00008393
Eric Dumazetceb5d582015-11-29 20:03:11 -08008394 if (sctp_writeable(sk)) {
8395 struct socket_wq *wq;
8396
8397 rcu_read_lock();
8398 wq = rcu_dereference(sk->sk_wq);
8399 if (wq) {
8400 if (waitqueue_active(&wq->wait))
8401 wake_up_interruptible(&wq->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008402
8403 /* Note that we try to include the Async I/O support
8404 * here by modeling from the current TCP/UDP code.
8405 * We have not tested with it yet.
8406 */
Eric Dumazeteaefd112011-02-18 03:26:36 +00008407 if (!(sk->sk_shutdown & SEND_SHUTDOWN))
Eric Dumazetceb5d582015-11-29 20:03:11 -08008408 sock_wake_async(wq, SOCK_WAKE_SPACE, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008409 }
Eric Dumazetceb5d582015-11-29 20:03:11 -08008410 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008411 }
8412}
8413
Daniel Borkmann52c35be2014-04-08 17:26:13 +02008414static void sctp_wake_up_waiters(struct sock *sk,
8415 struct sctp_association *asoc)
8416{
8417 struct sctp_association *tmp = asoc;
8418
8419 /* We do accounting for the sndbuf space per association,
8420 * so we only need to wake our own association.
8421 */
8422 if (asoc->ep->sndbuf_policy)
8423 return __sctp_write_space(asoc);
8424
Daniel Borkmann1e1cdf82014-04-09 16:10:20 +02008425 /* If association goes down and is just flushing its
8426 * outq, then just normally notify others.
8427 */
8428 if (asoc->base.dead)
8429 return sctp_write_space(sk);
8430
Daniel Borkmann52c35be2014-04-08 17:26:13 +02008431 /* Accounting for the sndbuf space is per socket, so we
8432 * need to wake up others, try to be fair and in case of
8433 * other associations, let them have a go first instead
8434 * of just doing a sctp_write_space() call.
8435 *
8436 * Note that we reach sctp_wake_up_waiters() only when
8437 * associations free up queued chunks, thus we are under
8438 * lock and the list of associations on a socket is
8439 * guaranteed not to change.
8440 */
8441 for (tmp = list_next_entry(tmp, asocs); 1;
8442 tmp = list_next_entry(tmp, asocs)) {
8443 /* Manually skip the head element. */
8444 if (&tmp->asocs == &((sctp_sk(sk))->ep->asocs))
8445 continue;
8446 /* Wake up association. */
8447 __sctp_write_space(tmp);
8448 /* We've reached the end. */
8449 if (tmp == asoc)
8450 break;
8451 }
8452}
8453
Linus Torvalds1da177e2005-04-16 15:20:36 -07008454/* Do accounting for the sndbuf space.
8455 * Decrement the used sndbuf space of the corresponding association by the
8456 * data size which was just transmitted(freed).
8457 */
8458static void sctp_wfree(struct sk_buff *skb)
8459{
Daniel Borkmannf869c912014-11-20 01:54:48 +01008460 struct sctp_chunk *chunk = skb_shinfo(skb)->destructor_arg;
8461 struct sctp_association *asoc = chunk->asoc;
8462 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008463
Neil Horman4eb701d2005-04-28 12:02:04 -07008464 asoc->sndbuf_used -= SCTP_DATA_SNDSIZE(chunk) +
8465 sizeof(struct sk_buff) +
8466 sizeof(struct sctp_chunk);
8467
Reshetova, Elena14afee42017-06-30 13:08:00 +03008468 WARN_ON(refcount_sub_and_test(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc));
Neil Horman4eb701d2005-04-28 12:02:04 -07008469
Neil Horman4d93df02007-08-15 16:07:44 -07008470 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008471 * This undoes what is done via sctp_set_owner_w and sk_mem_charge
Neil Horman4d93df02007-08-15 16:07:44 -07008472 */
8473 sk->sk_wmem_queued -= skb->truesize;
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008474 sk_mem_uncharge(sk, skb->truesize);
Neil Horman4d93df02007-08-15 16:07:44 -07008475
Xin Longec2e5062018-03-14 19:05:33 +08008476 if (chunk->shkey) {
8477 struct sctp_shared_key *shkey = chunk->shkey;
8478
8479 /* refcnt == 2 and !list_empty mean after this release, it's
8480 * not being used anywhere, and it's time to notify userland
8481 * that this shkey can be freed if it's been deactivated.
8482 */
8483 if (shkey->deactivated && !list_empty(&shkey->key_list) &&
8484 refcount_read(&shkey->refcnt) == 2) {
8485 struct sctp_ulpevent *ev;
8486
8487 ev = sctp_ulpevent_make_authkey(asoc, shkey->key_id,
8488 SCTP_AUTH_FREE_KEY,
8489 GFP_KERNEL);
8490 if (ev)
8491 asoc->stream.si->enqueue_event(&asoc->ulpq, ev);
8492 }
Xin Long1b1e0bc2018-03-14 19:05:30 +08008493 sctp_auth_shkey_release(chunk->shkey);
Xin Longec2e5062018-03-14 19:05:33 +08008494 }
Xin Long1b1e0bc2018-03-14 19:05:30 +08008495
Neil Horman4eb701d2005-04-28 12:02:04 -07008496 sock_wfree(skb);
Daniel Borkmann52c35be2014-04-08 17:26:13 +02008497 sctp_wake_up_waiters(sk, asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008498
8499 sctp_association_put(asoc);
8500}
8501
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07008502/* Do accounting for the receive space on the socket.
8503 * Accounting for the association is done in ulpevent.c
8504 * We set this as a destructor for the cloned data skbs so that
8505 * accounting is done at the correct time.
8506 */
8507void sctp_sock_rfree(struct sk_buff *skb)
8508{
8509 struct sock *sk = skb->sk;
8510 struct sctp_ulpevent *event = sctp_skb2event(skb);
8511
8512 atomic_sub(event->rmem_len, &sk->sk_rmem_alloc);
Neil Horman4d93df02007-08-15 16:07:44 -07008513
8514 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008515 * Mimic the behavior of sock_rfree
Neil Horman4d93df02007-08-15 16:07:44 -07008516 */
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008517 sk_mem_uncharge(sk, event->rmem_len);
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07008518}
8519
8520
Linus Torvalds1da177e2005-04-16 15:20:36 -07008521/* Helper function to wait for space in the sndbuf. */
8522static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
Xin Longa0ff6602018-01-15 17:01:36 +08008523 size_t msg_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008524{
8525 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008526 long current_timeo = *timeo_p;
8527 DEFINE_WAIT(wait);
Xin Longa0ff6602018-01-15 17:01:36 +08008528 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008529
Daniel Borkmannbb333812013-06-28 19:49:40 +02008530 pr_debug("%s: asoc:%p, timeo:%ld, msg_len:%zu\n", __func__, asoc,
8531 *timeo_p, msg_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008532
8533 /* Increment the association's refcnt. */
8534 sctp_association_hold(asoc);
8535
8536 /* Wait on the association specific sndbuf space. */
8537 for (;;) {
8538 prepare_to_wait_exclusive(&asoc->wait, &wait,
8539 TASK_INTERRUPTIBLE);
Xin Longca3af4d2017-11-15 16:55:54 +08008540 if (asoc->base.dead)
8541 goto do_dead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008542 if (!*timeo_p)
8543 goto do_nonblock;
Xin Longca3af4d2017-11-15 16:55:54 +08008544 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008545 goto do_error;
8546 if (signal_pending(current))
8547 goto do_interrupted;
8548 if (msg_len <= sctp_wspace(asoc))
8549 break;
8550
8551 /* Let another process have a go. Since we are going
8552 * to sleep anyway.
8553 */
wangweidong048ed4b2014-01-21 15:44:11 +08008554 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008555 current_timeo = schedule_timeout(current_timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08008556 lock_sock(sk);
Xin Longa0ff6602018-01-15 17:01:36 +08008557 if (sk != asoc->base.sk)
8558 goto do_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008559
8560 *timeo_p = current_timeo;
8561 }
8562
8563out:
8564 finish_wait(&asoc->wait, &wait);
8565
8566 /* Release the association's refcnt. */
8567 sctp_association_put(asoc);
8568
8569 return err;
8570
Xin Longca3af4d2017-11-15 16:55:54 +08008571do_dead:
8572 err = -ESRCH;
8573 goto out;
8574
Linus Torvalds1da177e2005-04-16 15:20:36 -07008575do_error:
8576 err = -EPIPE;
8577 goto out;
8578
8579do_interrupted:
8580 err = sock_intr_errno(*timeo_p);
8581 goto out;
8582
8583do_nonblock:
8584 err = -EAGAIN;
8585 goto out;
8586}
8587
David S. Miller676d2362014-04-11 16:15:36 -04008588void sctp_data_ready(struct sock *sk)
Wei Yongjun561b1732010-04-28 08:47:18 +00008589{
David S. Miller7ef52732010-05-02 21:43:40 -07008590 struct socket_wq *wq;
8591
8592 rcu_read_lock();
8593 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08008594 if (skwq_has_sleeper(wq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008595 wake_up_interruptible_sync_poll(&wq->wait, EPOLLIN |
8596 EPOLLRDNORM | EPOLLRDBAND);
Wei Yongjun561b1732010-04-28 08:47:18 +00008597 sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
David S. Miller7ef52732010-05-02 21:43:40 -07008598 rcu_read_unlock();
Wei Yongjun561b1732010-04-28 08:47:18 +00008599}
8600
Linus Torvalds1da177e2005-04-16 15:20:36 -07008601/* If socket sndbuf has changed, wake up all per association waiters. */
8602void sctp_write_space(struct sock *sk)
8603{
8604 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008605
8606 /* Wake up the tasks in each wait queue. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07008607 list_for_each_entry(asoc, &((sctp_sk(sk))->ep->asocs), asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008608 __sctp_write_space(asoc);
8609 }
8610}
8611
8612/* Is there any sndbuf space available on the socket?
8613 *
Neil Horman9bffc4a2005-12-19 14:24:40 -08008614 * Note that sk_wmem_alloc is the sum of the send buffers on all of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07008615 * associations on the same socket. For a UDP-style socket with
8616 * multiple associations, it is possible for it to be "unwriteable"
8617 * prematurely. I assume that this is acceptable because
8618 * a premature "unwriteable" is better than an accidental "writeable" which
8619 * would cause an unwanted block under certain circumstances. For the 1-1
8620 * UDP-style sockets or TCP-style sockets, this code should work.
8621 * - Daisy
8622 */
8623static int sctp_writeable(struct sock *sk)
8624{
8625 int amt = 0;
8626
Eric Dumazet31e6d362009-06-17 19:05:41 -07008627 amt = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008628 if (amt < 0)
8629 amt = 0;
8630 return amt;
8631}
8632
8633/* Wait for an association to go into ESTABLISHED state. If timeout is 0,
8634 * returns immediately with EINPROGRESS.
8635 */
8636static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p)
8637{
8638 struct sock *sk = asoc->base.sk;
8639 int err = 0;
8640 long current_timeo = *timeo_p;
8641 DEFINE_WAIT(wait);
8642
Daniel Borkmannbb333812013-06-28 19:49:40 +02008643 pr_debug("%s: asoc:%p, timeo:%ld\n", __func__, asoc, *timeo_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008644
8645 /* Increment the association's refcnt. */
8646 sctp_association_hold(asoc);
8647
8648 for (;;) {
8649 prepare_to_wait_exclusive(&asoc->wait, &wait,
8650 TASK_INTERRUPTIBLE);
8651 if (!*timeo_p)
8652 goto do_nonblock;
8653 if (sk->sk_shutdown & RCV_SHUTDOWN)
8654 break;
8655 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
8656 asoc->base.dead)
8657 goto do_error;
8658 if (signal_pending(current))
8659 goto do_interrupted;
8660
8661 if (sctp_state(asoc, ESTABLISHED))
8662 break;
8663
8664 /* Let another process have a go. Since we are going
8665 * to sleep anyway.
8666 */
wangweidong048ed4b2014-01-21 15:44:11 +08008667 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008668 current_timeo = schedule_timeout(current_timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08008669 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008670
8671 *timeo_p = current_timeo;
8672 }
8673
8674out:
8675 finish_wait(&asoc->wait, &wait);
8676
8677 /* Release the association's refcnt. */
8678 sctp_association_put(asoc);
8679
8680 return err;
8681
8682do_error:
Vlad Yasevich81845c22006-01-30 15:59:54 -08008683 if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008684 err = -ETIMEDOUT;
8685 else
8686 err = -ECONNREFUSED;
8687 goto out;
8688
8689do_interrupted:
8690 err = sock_intr_errno(*timeo_p);
8691 goto out;
8692
8693do_nonblock:
8694 err = -EINPROGRESS;
8695 goto out;
8696}
8697
8698static int sctp_wait_for_accept(struct sock *sk, long timeo)
8699{
8700 struct sctp_endpoint *ep;
8701 int err = 0;
8702 DEFINE_WAIT(wait);
8703
8704 ep = sctp_sk(sk)->ep;
8705
8706
8707 for (;;) {
Eric Dumazetaa395142010-04-20 13:03:51 +00008708 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008709 TASK_INTERRUPTIBLE);
8710
8711 if (list_empty(&ep->asocs)) {
wangweidong048ed4b2014-01-21 15:44:11 +08008712 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008713 timeo = schedule_timeout(timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08008714 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008715 }
8716
8717 err = -EINVAL;
8718 if (!sctp_sstate(sk, LISTENING))
8719 break;
8720
8721 err = 0;
8722 if (!list_empty(&ep->asocs))
8723 break;
8724
8725 err = sock_intr_errno(timeo);
8726 if (signal_pending(current))
8727 break;
8728
8729 err = -EAGAIN;
8730 if (!timeo)
8731 break;
8732 }
8733
Eric Dumazetaa395142010-04-20 13:03:51 +00008734 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008735
8736 return err;
8737}
8738
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +02008739static void sctp_wait_for_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008740{
8741 DEFINE_WAIT(wait);
8742
8743 do {
Eric Dumazetaa395142010-04-20 13:03:51 +00008744 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008745 if (list_empty(&sctp_sk(sk)->ep->asocs))
8746 break;
wangweidong048ed4b2014-01-21 15:44:11 +08008747 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008748 timeout = schedule_timeout(timeout);
wangweidong048ed4b2014-01-21 15:44:11 +08008749 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008750 } while (!signal_pending(current) && timeout);
8751
Eric Dumazetaa395142010-04-20 13:03:51 +00008752 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008753}
8754
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008755static void sctp_skb_set_owner_r_frag(struct sk_buff *skb, struct sock *sk)
8756{
8757 struct sk_buff *frag;
8758
8759 if (!skb->data_len)
8760 goto done;
8761
8762 /* Don't forget the fragments. */
David S. Miller1b003be2009-06-09 00:22:35 -07008763 skb_walk_frags(skb, frag)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008764 sctp_skb_set_owner_r_frag(frag, sk);
8765
8766done:
8767 sctp_skb_set_owner_r(skb, sk);
8768}
8769
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008770void sctp_copy_sock(struct sock *newsk, struct sock *sk,
8771 struct sctp_association *asoc)
8772{
8773 struct inet_sock *inet = inet_sk(sk);
Julia Lawall09cb47a2010-01-21 02:43:20 -08008774 struct inet_sock *newinet;
Richard Haines2277c7c2018-02-13 20:56:24 +00008775 struct sctp_sock *sp = sctp_sk(sk);
8776 struct sctp_endpoint *ep = sp->ep;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008777
8778 newsk->sk_type = sk->sk_type;
8779 newsk->sk_bound_dev_if = sk->sk_bound_dev_if;
8780 newsk->sk_flags = sk->sk_flags;
Marcelo Ricardo Leitner50a5ffb2015-12-04 15:14:05 -02008781 newsk->sk_tsflags = sk->sk_tsflags;
Tom Herbert28448b82014-05-23 08:47:19 -07008782 newsk->sk_no_check_tx = sk->sk_no_check_tx;
8783 newsk->sk_no_check_rx = sk->sk_no_check_rx;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008784 newsk->sk_reuse = sk->sk_reuse;
Xin Longb0e9a2f2018-06-28 15:31:00 +08008785 sctp_sk(newsk)->reuse = sp->reuse;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008786
8787 newsk->sk_shutdown = sk->sk_shutdown;
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02008788 newsk->sk_destruct = sctp_destruct_sock;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008789 newsk->sk_family = sk->sk_family;
8790 newsk->sk_protocol = IPPROTO_SCTP;
8791 newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
8792 newsk->sk_sndbuf = sk->sk_sndbuf;
8793 newsk->sk_rcvbuf = sk->sk_rcvbuf;
8794 newsk->sk_lingertime = sk->sk_lingertime;
8795 newsk->sk_rcvtimeo = sk->sk_rcvtimeo;
8796 newsk->sk_sndtimeo = sk->sk_sndtimeo;
Marcelo Ricardo Leitner486bdee2016-04-12 18:11:31 -03008797 newsk->sk_rxhash = sk->sk_rxhash;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008798
8799 newinet = inet_sk(newsk);
8800
8801 /* Initialize sk's sport, dport, rcv_saddr and daddr for
8802 * getsockname() and getpeername()
8803 */
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008804 newinet->inet_sport = inet->inet_sport;
8805 newinet->inet_saddr = inet->inet_saddr;
8806 newinet->inet_rcv_saddr = inet->inet_rcv_saddr;
8807 newinet->inet_dport = htons(asoc->peer.port);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008808 newinet->pmtudisc = inet->pmtudisc;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008809 newinet->inet_id = asoc->next_tsn ^ jiffies;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008810
8811 newinet->uc_ttl = inet->uc_ttl;
8812 newinet->mc_loop = 1;
8813 newinet->mc_ttl = 1;
8814 newinet->mc_index = 0;
8815 newinet->mc_list = NULL;
Marcelo Ricardo Leitner01ce63c2015-12-04 15:14:04 -02008816
8817 if (newsk->sk_flags & SK_FLAGS_TIMESTAMP)
8818 net_enable_timestamp();
Marcelo Ricardo Leitner3538a5c2015-12-23 16:44:09 -02008819
Richard Haines2277c7c2018-02-13 20:56:24 +00008820 /* Set newsk security attributes from orginal sk and connection
8821 * security attribute from ep.
8822 */
8823 security_sctp_sk_clone(ep, sk, newsk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008824}
8825
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03008826static inline void sctp_copy_descendant(struct sock *sk_to,
8827 const struct sock *sk_from)
8828{
8829 int ancestor_size = sizeof(struct inet_sock) +
8830 sizeof(struct sctp_sock) -
8831 offsetof(struct sctp_sock, auto_asconf_list);
8832
8833 if (sk_from->sk_family == PF_INET6)
8834 ancestor_size += sizeof(struct ipv6_pinfo);
8835
8836 __inet_sk_copy_descendant(sk_to, sk_from, ancestor_size);
8837}
8838
Linus Torvalds1da177e2005-04-16 15:20:36 -07008839/* Populate the fields of the newsk from the oldsk and migrate the assoc
8840 * and its messages to the newsk.
8841 */
8842static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
8843 struct sctp_association *assoc,
Xin Longb7ef2612017-08-11 10:23:50 +08008844 enum sctp_socket_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008845{
8846 struct sctp_sock *oldsp = sctp_sk(oldsk);
8847 struct sctp_sock *newsp = sctp_sk(newsk);
8848 struct sctp_bind_bucket *pp; /* hash list port iterator */
8849 struct sctp_endpoint *newep = newsp->ep;
8850 struct sk_buff *skb, *tmp;
8851 struct sctp_ulpevent *event;
Vlad Yasevichf26f7c42007-12-06 22:50:27 -08008852 struct sctp_bind_hashbucket *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008853
8854 /* Migrate socket buffer sizes and all the socket level options to the
8855 * new socket.
8856 */
8857 newsk->sk_sndbuf = oldsk->sk_sndbuf;
8858 newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
8859 /* Brute force copy old sctp opt. */
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03008860 sctp_copy_descendant(newsk, oldsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008861
8862 /* Restore the ep value that was overwritten with the above structure
8863 * copy.
8864 */
8865 newsp->ep = newep;
8866 newsp->hmac = NULL;
8867
8868 /* Hook this new socket in to the bind_hash list. */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008869 head = &sctp_port_hashtable[sctp_phashfn(sock_net(oldsk),
8870 inet_sk(oldsk)->inet_num)];
Nicholas Mc Guire489ce5f2016-03-13 11:48:24 +01008871 spin_lock_bh(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008872 pp = sctp_sk(oldsk)->bind_hash;
8873 sk_add_bind_node(newsk, &pp->owner);
8874 sctp_sk(newsk)->bind_hash = pp;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008875 inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num;
Nicholas Mc Guire489ce5f2016-03-13 11:48:24 +01008876 spin_unlock_bh(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008877
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07008878 /* Copy the bind_addr list from the original endpoint to the new
8879 * endpoint so that we can handle restarts properly
8880 */
Vlad Yasevich8e71a112007-12-06 22:50:54 -08008881 sctp_bind_addr_dup(&newsp->ep->base.bind_addr,
8882 &oldsp->ep->base.bind_addr, GFP_KERNEL);
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07008883
Linus Torvalds1da177e2005-04-16 15:20:36 -07008884 /* Move any messages in the old socket's receive queue that are for the
8885 * peeled off association to the new socket's receive queue.
8886 */
8887 sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) {
8888 event = sctp_skb2event(skb);
8889 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07008890 __skb_unlink(skb, &oldsk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008891 __skb_queue_tail(&newsk->sk_receive_queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008892 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008893 }
8894 }
8895
8896 /* Clean up any messages pending delivery due to partial
8897 * delivery. Three cases:
8898 * 1) No partial deliver; no work.
8899 * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby.
8900 * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue.
8901 */
8902 skb_queue_head_init(&newsp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008903 atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008904
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008905 if (atomic_read(&sctp_sk(oldsk)->pd_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008906 struct sk_buff_head *queue;
8907
8908 /* Decide which queue to move pd_lobby skbs to. */
8909 if (assoc->ulpq.pd_mode) {
8910 queue = &newsp->pd_lobby;
8911 } else
8912 queue = &newsk->sk_receive_queue;
8913
8914 /* Walk through the pd_lobby, looking for skbs that
8915 * need moved to the new socket.
8916 */
8917 sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) {
8918 event = sctp_skb2event(skb);
8919 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07008920 __skb_unlink(skb, &oldsp->pd_lobby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008921 __skb_queue_tail(queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008922 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008923 }
8924 }
8925
8926 /* Clear up any skbs waiting for the partial
8927 * delivery to finish.
8928 */
8929 if (assoc->ulpq.pd_mode)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008930 sctp_clear_pd(oldsk, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008931
8932 }
8933
Xin Long13228232017-12-08 21:04:09 +08008934 sctp_for_each_rx_skb(assoc, newsk, sctp_skb_set_owner_r_frag);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008935
Linus Torvalds1da177e2005-04-16 15:20:36 -07008936 /* Set the type of socket to indicate that it is peeled off from the
8937 * original UDP-style socket or created with the accept() call on a
8938 * TCP-style socket..
8939 */
8940 newsp->type = type;
8941
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07008942 /* Mark the new socket "in-use" by the user so that any packets
8943 * that may arrive on the association after we've moved it are
8944 * queued to the backlog. This prevents a potential race between
8945 * backlog processing on the old socket and new-packet processing
8946 * on the new socket.
Zach Brown5131a182007-06-22 15:14:46 -07008947 *
8948 * The caller has just allocated newsk so we can guarantee that other
8949 * paths won't try to lock it and then oldsk.
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07008950 */
Zach Brown5131a182007-06-22 15:14:46 -07008951 lock_sock_nested(newsk, SINGLE_DEPTH_NESTING);
Xin Longd04adf12017-10-28 02:13:29 +08008952 sctp_for_each_tx_datachunk(assoc, sctp_clear_owner_w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008953 sctp_assoc_migrate(assoc, newsk);
Xin Longd04adf12017-10-28 02:13:29 +08008954 sctp_for_each_tx_datachunk(assoc, sctp_set_owner_w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008955
8956 /* If the association on the newsk is already closed before accept()
8957 * is called, set RCV_SHUTDOWN flag.
8958 */
Xin Longd46e4162016-06-09 22:48:18 +08008959 if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP)) {
Yafang Shaocbabf462017-12-20 11:12:54 +08008960 inet_sk_set_state(newsk, SCTP_SS_CLOSED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008961 newsk->sk_shutdown |= RCV_SHUTDOWN;
Xin Longd46e4162016-06-09 22:48:18 +08008962 } else {
Yafang Shaocbabf462017-12-20 11:12:54 +08008963 inet_sk_set_state(newsk, SCTP_SS_ESTABLISHED);
Xin Longd46e4162016-06-09 22:48:18 +08008964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008965
wangweidong048ed4b2014-01-21 15:44:11 +08008966 release_sock(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008967}
8968
Neil Horman4d93df02007-08-15 16:07:44 -07008969
Linus Torvalds1da177e2005-04-16 15:20:36 -07008970/* This proto struct describes the ULP interface for SCTP. */
8971struct proto sctp_prot = {
8972 .name = "SCTP",
8973 .owner = THIS_MODULE,
8974 .close = sctp_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008975 .disconnect = sctp_disconnect,
8976 .accept = sctp_accept,
8977 .ioctl = sctp_ioctl,
8978 .init = sctp_init_sock,
8979 .destroy = sctp_destroy_sock,
8980 .shutdown = sctp_shutdown,
8981 .setsockopt = sctp_setsockopt,
8982 .getsockopt = sctp_getsockopt,
8983 .sendmsg = sctp_sendmsg,
8984 .recvmsg = sctp_recvmsg,
8985 .bind = sctp_bind,
8986 .backlog_rcv = sctp_backlog_rcv,
8987 .hash = sctp_hash,
8988 .unhash = sctp_unhash,
8989 .get_port = sctp_get_port,
8990 .obj_size = sizeof(struct sctp_sock),
David Windsorab9ee8e2017-08-24 16:57:57 -07008991 .useroffset = offsetof(struct sctp_sock, subscribe),
8992 .usersize = offsetof(struct sctp_sock, initmsg) -
8993 offsetof(struct sctp_sock, subscribe) +
8994 sizeof_field(struct sctp_sock, initmsg),
Neil Horman4d93df02007-08-15 16:07:44 -07008995 .sysctl_mem = sysctl_sctp_mem,
8996 .sysctl_rmem = sysctl_sctp_rmem,
8997 .sysctl_wmem = sysctl_sctp_wmem,
8998 .memory_pressure = &sctp_memory_pressure,
8999 .enter_memory_pressure = sctp_enter_memory_pressure,
9000 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08009001 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009002};
9003
Eric Dumazetdfd56b82011-12-10 09:48:31 +00009004#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazet8295b6d2007-11-05 23:40:28 -08009005
Eric Dumazet602dd622015-12-01 07:20:07 -08009006#include <net/transp_v6.h>
9007static void sctp_v6_destroy_sock(struct sock *sk)
9008{
9009 sctp_destroy_sock(sk);
9010 inet6_destroy_sock(sk);
9011}
9012
Linus Torvalds1da177e2005-04-16 15:20:36 -07009013struct proto sctpv6_prot = {
9014 .name = "SCTPv6",
9015 .owner = THIS_MODULE,
9016 .close = sctp_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009017 .disconnect = sctp_disconnect,
9018 .accept = sctp_accept,
9019 .ioctl = sctp_ioctl,
9020 .init = sctp_init_sock,
Eric Dumazet602dd622015-12-01 07:20:07 -08009021 .destroy = sctp_v6_destroy_sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009022 .shutdown = sctp_shutdown,
9023 .setsockopt = sctp_setsockopt,
9024 .getsockopt = sctp_getsockopt,
9025 .sendmsg = sctp_sendmsg,
9026 .recvmsg = sctp_recvmsg,
9027 .bind = sctp_bind,
9028 .backlog_rcv = sctp_backlog_rcv,
9029 .hash = sctp_hash,
9030 .unhash = sctp_unhash,
9031 .get_port = sctp_get_port,
9032 .obj_size = sizeof(struct sctp6_sock),
David Windsorab9ee8e2017-08-24 16:57:57 -07009033 .useroffset = offsetof(struct sctp6_sock, sctp.subscribe),
9034 .usersize = offsetof(struct sctp6_sock, sctp.initmsg) -
9035 offsetof(struct sctp6_sock, sctp.subscribe) +
9036 sizeof_field(struct sctp6_sock, sctp.initmsg),
Neil Horman4d93df02007-08-15 16:07:44 -07009037 .sysctl_mem = sysctl_sctp_mem,
9038 .sysctl_rmem = sysctl_sctp_rmem,
9039 .sysctl_wmem = sysctl_sctp_wmem,
9040 .memory_pressure = &sctp_memory_pressure,
9041 .enter_memory_pressure = sctp_enter_memory_pressure,
9042 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08009043 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009044};
Eric Dumazetdfd56b82011-12-10 09:48:31 +00009045#endif /* IS_ENABLED(CONFIG_IPV6) */