blob: bf915912a2e6267bc2f5b9ad91d74082d22e6abd [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. */
Xin Longcd305c72018-10-17 03:07:51 +080086static bool sctp_writeable(struct sock *sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static 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{
Xin Longcd305c72018-10-17 03:07:51 +0800122 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Xin Longcd305c72018-10-17 03:07:51 +0800124 return asoc->ep->sndbuf_policy ? sk->sk_sndbuf - asoc->sndbuf_used
125 : sk_stream_wspace(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
128/* Increment the used sndbuf space count of the corresponding association by
129 * the size of the outgoing data chunk.
130 * Also, set the skb destructor for sndbuf accounting later.
131 *
132 * Since it is always 1-1 between chunk and skb, and also a new skb is always
133 * allocated for chunk bundling in sctp_packet_transmit(), we can use the
134 * destructor in the data chunk skb for the purpose of the sndbuf space
135 * tracking.
136 */
137static inline void sctp_set_owner_w(struct sctp_chunk *chunk)
138{
139 struct sctp_association *asoc = chunk->asoc;
140 struct sock *sk = asoc->base.sk;
141
142 /* The sndbuf space is tracked per association. */
143 sctp_association_hold(asoc);
144
Xin Long1b1e0bc2018-03-14 19:05:30 +0800145 if (chunk->shkey)
146 sctp_auth_shkey_hold(chunk->shkey);
147
Neil Horman4eb701d2005-04-28 12:02:04 -0700148 skb_set_owner_w(chunk->skb, sk);
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 chunk->skb->destructor = sctp_wfree;
151 /* Save the chunk pointer in skb for sctp_wfree to use later. */
Daniel Borkmannf869c912014-11-20 01:54:48 +0100152 skb_shinfo(chunk->skb)->destructor_arg = chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Reshetova, Elena14afee42017-06-30 13:08:00 +0300154 refcount_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
Xin Long605c0ac2018-10-17 03:07:50 +0800155 asoc->sndbuf_used += chunk->skb->truesize + sizeof(struct sctp_chunk);
156 sk->sk_wmem_queued += chunk->skb->truesize + sizeof(struct sctp_chunk);
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800157 sk_mem_charge(sk, chunk->skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
Xin Longd04adf12017-10-28 02:13:29 +0800160static void sctp_clear_owner_w(struct sctp_chunk *chunk)
161{
162 skb_orphan(chunk->skb);
163}
164
165static void sctp_for_each_tx_datachunk(struct sctp_association *asoc,
166 void (*cb)(struct sctp_chunk *))
167
168{
169 struct sctp_outq *q = &asoc->outqueue;
170 struct sctp_transport *t;
171 struct sctp_chunk *chunk;
172
173 list_for_each_entry(t, &asoc->peer.transport_addr_list, transports)
174 list_for_each_entry(chunk, &t->transmitted, transmitted_list)
175 cb(chunk);
176
Xin Longa8dd3972017-11-26 20:56:07 +0800177 list_for_each_entry(chunk, &q->retransmit, transmitted_list)
Xin Longd04adf12017-10-28 02:13:29 +0800178 cb(chunk);
179
Xin Longa8dd3972017-11-26 20:56:07 +0800180 list_for_each_entry(chunk, &q->sacked, transmitted_list)
Xin Longd04adf12017-10-28 02:13:29 +0800181 cb(chunk);
182
Xin Longa8dd3972017-11-26 20:56:07 +0800183 list_for_each_entry(chunk, &q->abandoned, transmitted_list)
Xin Longd04adf12017-10-28 02:13:29 +0800184 cb(chunk);
185
186 list_for_each_entry(chunk, &q->out_chunk_list, list)
187 cb(chunk);
188}
189
Xin Long13228232017-12-08 21:04:09 +0800190static void sctp_for_each_rx_skb(struct sctp_association *asoc, struct sock *sk,
191 void (*cb)(struct sk_buff *, struct sock *))
192
193{
194 struct sk_buff *skb, *tmp;
195
196 sctp_skb_for_each(skb, &asoc->ulpq.lobby, tmp)
197 cb(skb, sk);
198
199 sctp_skb_for_each(skb, &asoc->ulpq.reasm, tmp)
200 cb(skb, sk);
201
202 sctp_skb_for_each(skb, &asoc->ulpq.reasm_uo, tmp)
203 cb(skb, sk);
204}
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206/* Verify that this is a valid address. */
207static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr,
208 int len)
209{
210 struct sctp_af *af;
211
212 /* Verify basic sockaddr. */
213 af = sctp_sockaddr_af(sctp_sk(sk), addr, len);
214 if (!af)
215 return -EINVAL;
216
217 /* Is this a valid SCTP address? */
Vlad Yasevich5636bef2006-06-17 22:55:35 -0700218 if (!af->addr_valid(addr, sctp_sk(sk), NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return -EINVAL;
220
221 if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr)))
222 return -EINVAL;
223
224 return 0;
225}
226
227/* Look up the association by its id. If this is not a UDP-style
228 * socket, the ID field is always ignored.
229 */
230struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
231{
232 struct sctp_association *asoc = NULL;
233
234 /* If this is not a UDP-style socket, assoc id should be ignored. */
235 if (!sctp_style(sk, UDP)) {
236 /* Return NULL if the socket state is not ESTABLISHED. It
237 * could be a TCP-style listening socket or a socket which
238 * hasn't yet called connect() to establish an association.
239 */
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -0300240 if (!sctp_sstate(sk, ESTABLISHED) && !sctp_sstate(sk, CLOSING))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return NULL;
242
243 /* Get the first and the only association from the list. */
244 if (!list_empty(&sctp_sk(sk)->ep->asocs))
245 asoc = list_entry(sctp_sk(sk)->ep->asocs.next,
246 struct sctp_association, asocs);
247 return asoc;
248 }
249
250 /* Otherwise this is a UDP-style socket. */
Xin Long80df2702019-01-28 15:08:23 +0800251 if (id <= SCTP_ALL_ASSOC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return NULL;
253
254 spin_lock_bh(&sctp_assocs_id_lock);
255 asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id);
Marcelo Ricardo Leitnerb336dec2018-10-16 15:18:17 -0300256 if (asoc && (asoc->base.sk != sk || asoc->base.dead))
257 asoc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 spin_unlock_bh(&sctp_assocs_id_lock);
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 return asoc;
261}
262
263/* Look up the transport from an address and an assoc id. If both address and
264 * id are specified, the associations matching the address and the id should be
265 * the same.
266 */
267static struct sctp_transport *sctp_addr_id2transport(struct sock *sk,
268 struct sockaddr_storage *addr,
269 sctp_assoc_t id)
270{
271 struct sctp_association *addr_asoc = NULL, *id_asoc = NULL;
Xin Long6f29a132017-01-24 14:01:53 +0800272 struct sctp_af *af = sctp_get_af_specific(addr->ss_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 union sctp_addr *laddr = (union sctp_addr *)addr;
Xin Long6f29a132017-01-24 14:01:53 +0800274 struct sctp_transport *transport;
275
Xin Long912964e2017-02-07 20:56:08 +0800276 if (!af || sctp_verify_addr(sk, laddr, af->sockaddr_len))
Xin Long6f29a132017-01-24 14:01:53 +0800277 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
Al Virocd4ff032006-11-20 17:11:33 -0800280 laddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 &transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 if (!addr_asoc)
284 return NULL;
285
286 id_asoc = sctp_id2assoc(sk, id);
287 if (id_asoc && (id_asoc != addr_asoc))
288 return NULL;
289
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600290 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 (union sctp_addr *)addr);
292
293 return transport;
294}
295
296/* API 3.1.2 bind() - UDP Style Syntax
297 * The syntax of bind() is,
298 *
299 * ret = bind(int sd, struct sockaddr *addr, int addrlen);
300 *
301 * sd - the socket descriptor returned by socket().
302 * addr - the address structure (struct sockaddr_in or struct
303 * sockaddr_in6 [RFC 2553]),
304 * addr_len - the size of the address structure.
305 */
Daniel Borkmanndda91922013-06-17 11:40:05 +0200306static int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
308 int retval = 0;
309
wangweidong048ed4b2014-01-21 15:44:11 +0800310 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Daniel Borkmannbb333812013-06-28 19:49:40 +0200312 pr_debug("%s: sk:%p, addr:%p, addr_len:%d\n", __func__, sk,
313 addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 /* Disallow binding twice. */
316 if (!sctp_sk(sk)->ep->base.bind_addr.port)
Frank Filz3f7a87d2005-06-20 13:14:57 -0700317 retval = sctp_do_bind(sk, (union sctp_addr *)addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 addr_len);
319 else
320 retval = -EINVAL;
321
wangweidong048ed4b2014-01-21 15:44:11 +0800322 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 return retval;
325}
326
327static long sctp_get_port_local(struct sock *, union sctp_addr *);
328
329/* Verify this is a valid sockaddr. */
330static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
331 union sctp_addr *addr, int len)
332{
333 struct sctp_af *af;
334
335 /* Check minimum size. */
336 if (len < sizeof (struct sockaddr))
337 return NULL;
338
Xin Longc5006b82018-01-15 17:02:00 +0800339 if (!opt->pf->af_supported(addr->sa.sa_family, opt))
340 return NULL;
341
Eric Dumazet81e98372018-04-08 07:52:08 -0700342 if (addr->sa.sa_family == AF_INET6) {
343 if (len < SIN6_LEN_RFC2133)
344 return NULL;
345 /* V4 mapped address are really of AF_INET family */
346 if (ipv6_addr_v4mapped(&addr->v6.sin6_addr) &&
347 !opt->pf->af_supported(AF_INET, opt))
348 return NULL;
349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 /* If we get this far, af is valid. */
352 af = sctp_get_af_specific(addr->sa.sa_family);
353
354 if (len < af->sockaddr_len)
355 return NULL;
356
357 return af;
358}
359
360/* Bind a local address either to an endpoint or to an association. */
Daniel Borkmanndda91922013-06-17 11:40:05 +0200361static int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Eric W. Biederman35946982012-11-16 03:03:12 +0000363 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 struct sctp_sock *sp = sctp_sk(sk);
365 struct sctp_endpoint *ep = sp->ep;
366 struct sctp_bind_addr *bp = &ep->base.bind_addr;
367 struct sctp_af *af;
368 unsigned short snum;
369 int ret = 0;
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 /* Common sockaddr verification. */
372 af = sctp_sockaddr_af(sp, addr, len);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700373 if (!af) {
Daniel Borkmannbb333812013-06-28 19:49:40 +0200374 pr_debug("%s: sk:%p, newaddr:%p, len:%d EINVAL\n",
375 __func__, sk, addr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return -EINVAL;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700377 }
378
379 snum = ntohs(addr->v4.sin_port);
380
Daniel Borkmannbb333812013-06-28 19:49:40 +0200381 pr_debug("%s: sk:%p, new addr:%pISc, port:%d, new port:%d, len:%d\n",
382 __func__, sk, &addr->sa, bp->port, snum, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 /* PF specific bind() address verification. */
385 if (!sp->pf->bind_verify(sp, addr))
386 return -EADDRNOTAVAIL;
387
Vlad Yasevich8b358052007-05-15 17:14:58 -0400388 /* We must either be unbound, or bind to the same port.
389 * It's OK to allow 0 ports if we are already bound.
390 * We'll just inhert an already bound port in this case
391 */
392 if (bp->port) {
393 if (!snum)
394 snum = bp->port;
395 else if (snum != bp->port) {
Daniel Borkmannbb333812013-06-28 19:49:40 +0200396 pr_debug("%s: new port %d doesn't match existing port "
397 "%d\n", __func__, snum, bp->port);
Vlad Yasevich8b358052007-05-15 17:14:58 -0400398 return -EINVAL;
399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
401
Krister Johansen4548b682017-01-20 17:49:11 -0800402 if (snum && snum < inet_prot_sock(net) &&
Eric W. Biederman35946982012-11-16 03:03:12 +0000403 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return -EACCES;
405
Vlad Yasevich4e540642008-07-18 23:06:32 -0700406 /* See if the address matches any of the addresses we may have
407 * already bound before checking against other endpoints.
408 */
409 if (sctp_bind_addr_match(bp, addr, sp))
410 return -EINVAL;
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 /* Make sure we are allowed to bind here.
413 * The function sctp_get_port_local() does duplicate address
414 * detection.
415 */
Vlad Yasevich2772b492007-08-21 14:24:30 +0900416 addr->v4.sin_port = htons(snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 if ((ret = sctp_get_port_local(sk, addr))) {
Vlad Yasevich4e540642008-07-18 23:06:32 -0700418 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
420
421 /* Refresh ephemeral port. */
422 if (!bp->port)
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000423 bp->port = inet_sk(sk)->inet_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Vlad Yasevich559cf712007-09-16 16:03:28 -0700425 /* Add the address to the bind address list.
426 * Use GFP_ATOMIC since BHs will be disabled.
427 */
Marcelo Ricardo Leitner133800d2016-03-08 10:34:28 -0300428 ret = sctp_add_bind_addr(bp, addr, af->sockaddr_len,
429 SCTP_ADDR_SRC, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 /* Copy back into socket for getsockname() use. */
432 if (!ret) {
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000433 inet_sk(sk)->inet_sport = htons(inet_sk(sk)->inet_num);
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600434 sp->pf->to_sk_saddr(addr, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
436
437 return ret;
438}
439
440 /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
441 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900442 * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 * at any one time. If a sender, after sending an ASCONF chunk, decides
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900444 * it needs to transfer another ASCONF Chunk, it MUST wait until the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900446 * subsequent ASCONF. Note this restriction binds each side, so at any
447 * time two ASCONF may be in-transit on any given association (one sent
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 * from each endpoint).
449 */
450static int sctp_send_asconf(struct sctp_association *asoc,
451 struct sctp_chunk *chunk)
452{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +0000453 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 int retval = 0;
455
456 /* If there is an outstanding ASCONF chunk, queue it for later
457 * transmission.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900458 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if (asoc->addip_last_asconf) {
David S. Miller79af02c2005-07-08 21:47:49 -0700460 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900461 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
463
464 /* Hold the chunk until an ASCONF_ACK is received. */
465 sctp_chunk_hold(chunk);
Eric W. Biederman55e26eb2012-08-07 07:25:24 +0000466 retval = sctp_primitive_ASCONF(net, asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (retval)
468 sctp_chunk_free(chunk);
469 else
470 asoc->addip_last_asconf = chunk;
471
472out:
473 return retval;
474}
475
476/* Add a list of addresses as bind addresses to local endpoint or
477 * association.
478 *
479 * Basically run through each address specified in the addrs/addrcnt
480 * array/length pair, determine if it is IPv6 or IPv4 and call
481 * sctp_do_bind() on it.
482 *
483 * If any of them fails, then the operation will be reversed and the
484 * ones that were added will be removed.
485 *
486 * Only sctp_setsockopt_bindx() is supposed to call this function.
487 */
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +0200488static int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
490 int cnt;
491 int retval = 0;
492 void *addr_buf;
493 struct sockaddr *sa_addr;
494 struct sctp_af *af;
495
Daniel Borkmannbb333812013-06-28 19:49:40 +0200496 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n", __func__, sk,
497 addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 addr_buf = addrs;
500 for (cnt = 0; cnt < addrcnt; cnt++) {
501 /* The list may contain either IPv4 or IPv6 address;
502 * determine the address length for walking thru the list.
503 */
Joe Perchesea110732011-06-13 16:21:26 +0000504 sa_addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 af = sctp_get_af_specific(sa_addr->sa_family);
506 if (!af) {
507 retval = -EINVAL;
508 goto err_bindx_add;
509 }
510
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900511 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 af->sockaddr_len);
513
514 addr_buf += af->sockaddr_len;
515
516err_bindx_add:
517 if (retval < 0) {
518 /* Failed. Cleanup the ones that have been added */
519 if (cnt > 0)
520 sctp_bindx_rem(sk, addrs, cnt);
521 return retval;
522 }
523 }
524
525 return retval;
526}
527
528/* Send an ASCONF chunk with Add IP address parameters to all the peers of the
529 * associations that are part of the endpoint indicating that a list of local
530 * addresses are added to the endpoint.
531 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900532 * If any of the addresses is already in the bind address list of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 * association, we do not send the chunk for that association. But it will not
534 * affect other associations.
535 *
536 * Only sctp_setsockopt_bindx() is supposed to call this function.
537 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900538static int sctp_send_asconf_add_ip(struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 struct sockaddr *addrs,
540 int addrcnt)
541{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000542 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 struct sctp_sock *sp;
544 struct sctp_endpoint *ep;
545 struct sctp_association *asoc;
546 struct sctp_bind_addr *bp;
547 struct sctp_chunk *chunk;
548 struct sctp_sockaddr_entry *laddr;
549 union sctp_addr *addr;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700550 union sctp_addr saveaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 void *addr_buf;
552 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 struct list_head *p;
554 int i;
555 int retval = 0;
556
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000557 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 return retval;
559
560 sp = sctp_sk(sk);
561 ep = sp->ep;
562
Daniel Borkmannbb333812013-06-28 19:49:40 +0200563 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
564 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700566 list_for_each_entry(asoc, &ep->asocs, asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 if (!asoc->peer.asconf_capable)
568 continue;
569
570 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_ADD_IP)
571 continue;
572
573 if (!sctp_state(asoc, ESTABLISHED))
574 continue;
575
576 /* Check if any address in the packed array of addresses is
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900577 * in the bind address list of the association. If so,
578 * do not send the asconf chunk to its peer, but continue with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 * other associations.
580 */
581 addr_buf = addrs;
582 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000583 addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 af = sctp_get_af_specific(addr->v4.sin_family);
585 if (!af) {
586 retval = -EINVAL;
587 goto out;
588 }
589
590 if (sctp_assoc_lookup_laddr(asoc, addr))
591 break;
592
593 addr_buf += af->sockaddr_len;
594 }
595 if (i < addrcnt)
596 continue;
597
Vlad Yasevich559cf712007-09-16 16:03:28 -0700598 /* Use the first valid address in bind addr list of
599 * association as Address Parameter of ASCONF CHUNK.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 bp = &asoc->base.bind_addr;
602 p = bp->address_list.next;
603 laddr = list_entry(p, struct sctp_sockaddr_entry, list);
Al Viro5ae955c2006-11-20 17:22:08 -0800604 chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 addrcnt, SCTP_PARAM_ADD_IP);
606 if (!chunk) {
607 retval = -ENOMEM;
608 goto out;
609 }
610
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700611 /* Add the new addresses to the bind address list with
612 * use_as_src set to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700614 addr_buf = addrs;
615 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000616 addr = addr_buf;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700617 af = sctp_get_af_specific(addr->v4.sin_family);
618 memcpy(&saveaddr, addr, af->sockaddr_len);
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800619 retval = sctp_add_bind_addr(bp, &saveaddr,
Marcelo Ricardo Leitner133800d2016-03-08 10:34:28 -0300620 sizeof(saveaddr),
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800621 SCTP_ADDR_NEW, GFP_ATOMIC);
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700622 addr_buf += af->sockaddr_len;
623 }
Michio Honda8a07eb02011-04-26 20:19:36 +0900624 if (asoc->src_out_of_asoc_ok) {
625 struct sctp_transport *trans;
626
627 list_for_each_entry(trans,
628 &asoc->peer.transport_addr_list, transports) {
Michio Honda8a07eb02011-04-26 20:19:36 +0900629 trans->cwnd = min(4*asoc->pathmtu, max_t(__u32,
630 2*asoc->pathmtu, 4380));
631 trans->ssthresh = asoc->peer.i.a_rwnd;
632 trans->rto = asoc->rto_initial;
Michele Baldessari196d6752012-12-01 04:49:42 +0000633 sctp_max_rto(asoc, trans);
Michio Honda8a07eb02011-04-26 20:19:36 +0900634 trans->rtt = trans->srtt = trans->rttvar = 0;
Marcelo Ricardo Leitner6e91b572018-04-26 16:58:59 -0300635 /* Clear the source and route cache */
Michio Honda8a07eb02011-04-26 20:19:36 +0900636 sctp_transport_route(trans, NULL,
Marcelo Ricardo Leitner6e91b572018-04-26 16:58:59 -0300637 sctp_sk(asoc->base.sk));
Michio Honda8a07eb02011-04-26 20:19:36 +0900638 }
639 }
640 retval = sctp_send_asconf(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
642
643out:
644 return retval;
645}
646
647/* Remove a list of addresses from bind addresses list. Do not remove the
648 * last address.
649 *
650 * Basically run through each address specified in the addrs/addrcnt
651 * array/length pair, determine if it is IPv6 or IPv4 and call
652 * sctp_del_bind() on it.
653 *
654 * If any of them fails, then the operation will be reversed and the
655 * ones that were removed will be added back.
656 *
657 * At least one address has to be left; if only one address is
658 * available, the operation will return -EBUSY.
659 *
660 * Only sctp_setsockopt_bindx() is supposed to call this function.
661 */
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +0200662static int sctp_bindx_rem(struct sock *sk, struct sockaddr *addrs, int addrcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
664 struct sctp_sock *sp = sctp_sk(sk);
665 struct sctp_endpoint *ep = sp->ep;
666 int cnt;
667 struct sctp_bind_addr *bp = &ep->base.bind_addr;
668 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 void *addr_buf;
Al Viroc9a08502006-11-20 17:07:48 -0800670 union sctp_addr *sa_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 struct sctp_af *af;
672
Daniel Borkmannbb333812013-06-28 19:49:40 +0200673 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
674 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 addr_buf = addrs;
677 for (cnt = 0; cnt < addrcnt; cnt++) {
678 /* If the bind address list is empty or if there is only one
679 * bind address, there is nothing more to be removed (we need
680 * at least one address here).
681 */
682 if (list_empty(&bp->address_list) ||
683 (sctp_list_single_entry(&bp->address_list))) {
684 retval = -EBUSY;
685 goto err_bindx_rem;
686 }
687
Joe Perchesea110732011-06-13 16:21:26 +0000688 sa_addr = addr_buf;
Al Viroc9a08502006-11-20 17:07:48 -0800689 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 if (!af) {
691 retval = -EINVAL;
692 goto err_bindx_rem;
693 }
Paolo Galtieri0304ff8a2007-04-17 12:52:36 -0700694
695 if (!af->addr_valid(sa_addr, sp, NULL)) {
696 retval = -EADDRNOTAVAIL;
697 goto err_bindx_rem;
698 }
699
Vlad Yasevichee9cbac2011-04-18 19:14:47 +0000700 if (sa_addr->v4.sin_port &&
701 sa_addr->v4.sin_port != htons(bp->port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 retval = -EINVAL;
703 goto err_bindx_rem;
704 }
705
Vlad Yasevichee9cbac2011-04-18 19:14:47 +0000706 if (!sa_addr->v4.sin_port)
707 sa_addr->v4.sin_port = htons(bp->port);
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 /* FIXME - There is probably a need to check if sk->sk_saddr and
710 * sk->sk_rcv_addr are currently set to one of the addresses to
711 * be removed. This is something which needs to be looked into
712 * when we are fixing the outstanding issues with multi-homing
713 * socket routing and failover schemes. Refer to comments in
714 * sctp_do_bind(). -daisy
715 */
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -0400716 retval = sctp_del_bind_addr(bp, sa_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 addr_buf += af->sockaddr_len;
719err_bindx_rem:
720 if (retval < 0) {
721 /* Failed. Add the ones that has been removed back */
722 if (cnt > 0)
723 sctp_bindx_add(sk, addrs, cnt);
724 return retval;
725 }
726 }
727
728 return retval;
729}
730
731/* Send an ASCONF chunk with Delete IP address parameters to all the peers of
732 * the associations that are part of the endpoint indicating that a list of
733 * local addresses are removed from the endpoint.
734 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900735 * If any of the addresses is already in the bind address list of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 * association, we do not send the chunk for that association. But it will not
737 * affect other associations.
738 *
739 * Only sctp_setsockopt_bindx() is supposed to call this function.
740 */
741static int sctp_send_asconf_del_ip(struct sock *sk,
742 struct sockaddr *addrs,
743 int addrcnt)
744{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000745 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 struct sctp_sock *sp;
747 struct sctp_endpoint *ep;
748 struct sctp_association *asoc;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700749 struct sctp_transport *transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 struct sctp_bind_addr *bp;
751 struct sctp_chunk *chunk;
752 union sctp_addr *laddr;
753 void *addr_buf;
754 struct sctp_af *af;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700755 struct sctp_sockaddr_entry *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 int i;
757 int retval = 0;
Michio Honda8a07eb02011-04-26 20:19:36 +0900758 int stored = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Michio Honda8a07eb02011-04-26 20:19:36 +0900760 chunk = NULL;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000761 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return retval;
763
764 sp = sctp_sk(sk);
765 ep = sp->ep;
766
Daniel Borkmannbb333812013-06-28 19:49:40 +0200767 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
768 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700770 list_for_each_entry(asoc, &ep->asocs, asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772 if (!asoc->peer.asconf_capable)
773 continue;
774
775 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_DEL_IP)
776 continue;
777
778 if (!sctp_state(asoc, ESTABLISHED))
779 continue;
780
781 /* Check if any address in the packed array of addresses is
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900782 * not present in the bind address list of the association.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 * If so, do not send the asconf chunk to its peer, but
784 * continue with other associations.
785 */
786 addr_buf = addrs;
787 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000788 laddr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 af = sctp_get_af_specific(laddr->v4.sin_family);
790 if (!af) {
791 retval = -EINVAL;
792 goto out;
793 }
794
795 if (!sctp_assoc_lookup_laddr(asoc, laddr))
796 break;
797
798 addr_buf += af->sockaddr_len;
799 }
800 if (i < addrcnt)
801 continue;
802
803 /* Find one address in the association's bind address list
804 * that is not in the packed array of addresses. This is to
805 * make sure that we do not delete all the addresses in the
806 * association.
807 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 bp = &asoc->base.bind_addr;
809 laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs,
810 addrcnt, sp);
Michio Honda8a07eb02011-04-26 20:19:36 +0900811 if ((laddr == NULL) && (addrcnt == 1)) {
812 if (asoc->asconf_addr_del_pending)
813 continue;
814 asoc->asconf_addr_del_pending =
815 kzalloc(sizeof(union sctp_addr), GFP_ATOMIC);
Michio Honda6d65e5e2011-06-10 16:42:14 +0900816 if (asoc->asconf_addr_del_pending == NULL) {
817 retval = -ENOMEM;
818 goto out;
819 }
Michio Honda8a07eb02011-04-26 20:19:36 +0900820 asoc->asconf_addr_del_pending->sa.sa_family =
821 addrs->sa_family;
822 asoc->asconf_addr_del_pending->v4.sin_port =
823 htons(bp->port);
824 if (addrs->sa_family == AF_INET) {
825 struct sockaddr_in *sin;
826
827 sin = (struct sockaddr_in *)addrs;
828 asoc->asconf_addr_del_pending->v4.sin_addr.s_addr = sin->sin_addr.s_addr;
829 } else if (addrs->sa_family == AF_INET6) {
830 struct sockaddr_in6 *sin6;
831
832 sin6 = (struct sockaddr_in6 *)addrs;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000833 asoc->asconf_addr_del_pending->v6.sin6_addr = sin6->sin6_addr;
Michio Honda8a07eb02011-04-26 20:19:36 +0900834 }
Daniel Borkmannbb333812013-06-28 19:49:40 +0200835
836 pr_debug("%s: keep the last address asoc:%p %pISc at %p\n",
837 __func__, asoc, &asoc->asconf_addr_del_pending->sa,
838 asoc->asconf_addr_del_pending);
839
Michio Honda8a07eb02011-04-26 20:19:36 +0900840 asoc->src_out_of_asoc_ok = 1;
841 stored = 1;
842 goto skip_mkasconf;
843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Daniel Borkmann88362ad2013-09-07 20:51:21 +0200845 if (laddr == NULL)
846 return -EINVAL;
847
Vlad Yasevich559cf712007-09-16 16:03:28 -0700848 /* We do not need RCU protection throughout this loop
849 * because this is done under a socket lock from the
850 * setsockopt call.
851 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 chunk = sctp_make_asconf_update_ip(asoc, laddr, addrs, addrcnt,
853 SCTP_PARAM_DEL_IP);
854 if (!chunk) {
855 retval = -ENOMEM;
856 goto out;
857 }
858
Michio Honda8a07eb02011-04-26 20:19:36 +0900859skip_mkasconf:
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700860 /* Reset use_as_src flag for the addresses in the bind address
861 * list that are to be deleted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700863 addr_buf = addrs;
864 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000865 laddr = addr_buf;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700866 af = sctp_get_af_specific(laddr->v4.sin_family);
Vlad Yasevich559cf712007-09-16 16:03:28 -0700867 list_for_each_entry(saddr, &bp->address_list, list) {
Al Viro5f242a132006-11-20 17:05:23 -0800868 if (sctp_cmp_addr_exact(&saddr->a, laddr))
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800869 saddr->state = SCTP_ADDR_DEL;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700870 }
871 addr_buf += af->sockaddr_len;
872 }
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700873
874 /* Update the route and saddr entries for all the transports
875 * as some of the addresses in the bind address list are
876 * about to be deleted and cannot be used as source addresses.
877 */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700878 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
879 transports) {
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700880 sctp_transport_route(transport, NULL,
881 sctp_sk(asoc->base.sk));
882 }
883
Michio Honda8a07eb02011-04-26 20:19:36 +0900884 if (stored)
885 /* We don't need to transmit ASCONF */
886 continue;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700887 retval = sctp_send_asconf(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 }
889out:
890 return retval;
891}
892
Michio Honda9f7d6532011-04-26 19:32:51 +0900893/* set addr events to assocs in the endpoint. ep and addr_wq must be locked */
894int sctp_asconf_mgmt(struct sctp_sock *sp, struct sctp_sockaddr_entry *addrw)
895{
896 struct sock *sk = sctp_opt2sk(sp);
897 union sctp_addr *addr;
898 struct sctp_af *af;
899
900 /* It is safe to write port space in caller. */
901 addr = &addrw->a;
902 addr->v4.sin_port = htons(sp->ep->base.bind_addr.port);
903 af = sctp_get_af_specific(addr->sa.sa_family);
904 if (!af)
905 return -EINVAL;
906 if (sctp_verify_addr(sk, addr, af->sockaddr_len))
907 return -EINVAL;
908
909 if (addrw->state == SCTP_ADDR_NEW)
910 return sctp_send_asconf_add_ip(sk, (struct sockaddr *)addr, 1);
911 else
912 return sctp_send_asconf_del_ip(sk, (struct sockaddr *)addr, 1);
913}
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915/* Helper for tunneling sctp_bindx() requests through sctp_setsockopt()
916 *
917 * API 8.1
918 * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt,
919 * int flags);
920 *
921 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
922 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
923 * or IPv6 addresses.
924 *
925 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
926 * Section 3.1.2 for this usage.
927 *
928 * addrs is a pointer to an array of one or more socket addresses. Each
929 * address is contained in its appropriate structure (i.e. struct
930 * sockaddr_in or struct sockaddr_in6) the family of the address type
Ville Nuorvala23c435f2006-10-16 22:08:28 -0700931 * must be used to distinguish the address length (note that this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 * representation is termed a "packed array" of addresses). The caller
933 * specifies the number of addresses in the array with addrcnt.
934 *
935 * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns
936 * -1, and sets errno to the appropriate error code.
937 *
938 * For SCTP, the port given in each socket address must be the same, or
939 * sctp_bindx() will fail, setting errno to EINVAL.
940 *
941 * The flags parameter is formed from the bitwise OR of zero or more of
942 * the following currently defined flags:
943 *
944 * SCTP_BINDX_ADD_ADDR
945 *
946 * SCTP_BINDX_REM_ADDR
947 *
948 * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the
949 * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given
950 * addresses from the association. The two flags are mutually exclusive;
951 * if both are given, sctp_bindx() will fail with EINVAL. A caller may
952 * not remove all addresses from an association; sctp_bindx() will
953 * reject such an attempt with EINVAL.
954 *
955 * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate
956 * additional addresses with an endpoint after calling bind(). Or use
957 * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening
958 * socket is associated with so that no new association accepted will be
959 * associated with those addresses. If the endpoint supports dynamic
960 * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a
961 * endpoint to send the appropriate message to the peer to change the
962 * peers address lists.
963 *
964 * Adding and removing addresses from a connected association is
965 * optional functionality. Implementations that do not support this
966 * functionality should return EOPNOTSUPP.
967 *
968 * Basically do nothing but copying the addresses from user to kernel
969 * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk.
Frank Filz3f7a87d2005-06-20 13:14:57 -0700970 * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
971 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
974 * it.
975 *
976 * sk The sk of the socket
977 * addrs The pointer to the addresses in user land
978 * addrssize Size of the addrs buffer
979 * op Operation to perform (add or remove, see the flags of
980 * sctp_bindx)
981 *
982 * Returns 0 if ok, <0 errno code on error.
983 */
wangweidong26ac8e52013-12-23 12:16:51 +0800984static int sctp_setsockopt_bindx(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +0200985 struct sockaddr __user *addrs,
986 int addrs_size, int op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
988 struct sockaddr *kaddrs;
989 int err;
990 int addrcnt = 0;
991 int walk_size = 0;
992 struct sockaddr *sa_addr;
993 void *addr_buf;
994 struct sctp_af *af;
995
Daniel Borkmannbb333812013-06-28 19:49:40 +0200996 pr_debug("%s: sk:%p addrs:%p addrs_size:%d opt:%d\n",
997 __func__, sk, addrs, addrs_size, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 if (unlikely(addrs_size <= 0))
1000 return -EINVAL;
1001
Al Viroc981f252018-01-07 13:19:09 -05001002 kaddrs = vmemdup_user(addrs, addrs_size);
1003 if (unlikely(IS_ERR(kaddrs)))
1004 return PTR_ERR(kaddrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001006 /* Walk through the addrs buffer and count the number of addresses. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 addr_buf = kaddrs;
1008 while (walk_size < addrs_size) {
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001009 if (walk_size + sizeof(sa_family_t) > addrs_size) {
Al Viroc981f252018-01-07 13:19:09 -05001010 kvfree(kaddrs);
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001011 return -EINVAL;
1012 }
1013
Joe Perchesea110732011-06-13 16:21:26 +00001014 sa_addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 af = sctp_get_af_specific(sa_addr->sa_family);
1016
1017 /* If the address family is not supported or if this address
1018 * causes the address buffer to overflow return EINVAL.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001019 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
Al Viroc981f252018-01-07 13:19:09 -05001021 kvfree(kaddrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return -EINVAL;
1023 }
1024 addrcnt++;
1025 addr_buf += af->sockaddr_len;
1026 walk_size += af->sockaddr_len;
1027 }
1028
1029 /* Do the work. */
1030 switch (op) {
1031 case SCTP_BINDX_ADD_ADDR:
Richard Haines2277c7c2018-02-13 20:56:24 +00001032 /* Allow security module to validate bindx addresses. */
1033 err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_BINDX_ADD,
1034 (struct sockaddr *)kaddrs,
1035 addrs_size);
1036 if (err)
1037 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 err = sctp_bindx_add(sk, kaddrs, addrcnt);
1039 if (err)
1040 goto out;
1041 err = sctp_send_asconf_add_ip(sk, kaddrs, addrcnt);
1042 break;
1043
1044 case SCTP_BINDX_REM_ADDR:
1045 err = sctp_bindx_rem(sk, kaddrs, addrcnt);
1046 if (err)
1047 goto out;
1048 err = sctp_send_asconf_del_ip(sk, kaddrs, addrcnt);
1049 break;
1050
1051 default:
1052 err = -EINVAL;
1053 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056out:
Al Viroc981f252018-01-07 13:19:09 -05001057 kvfree(kaddrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 return err;
1060}
1061
Frank Filz3f7a87d2005-06-20 13:14:57 -07001062/* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size)
1063 *
1064 * Common routine for handling connect() and sctp_connectx().
1065 * Connect will come in with just a single address.
1066 */
wangweidong26ac8e52013-12-23 12:16:51 +08001067static int __sctp_connect(struct sock *sk,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001068 struct sockaddr *kaddrs,
Xin Long644fbde2018-05-20 16:39:10 +08001069 int addrs_size, int flags,
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001070 sctp_assoc_t *assoc_id)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001071{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001072 struct net *net = sock_net(sk);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001073 struct sctp_sock *sp;
1074 struct sctp_endpoint *ep;
1075 struct sctp_association *asoc = NULL;
1076 struct sctp_association *asoc2;
1077 struct sctp_transport *transport;
1078 union sctp_addr to;
Xin Long1c662012017-08-05 19:59:54 +08001079 enum sctp_scope scope;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001080 long timeo;
1081 int err = 0;
1082 int addrcnt = 0;
1083 int walk_size = 0;
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001084 union sctp_addr *sa_addr = NULL;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001085 void *addr_buf;
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001086 unsigned short port;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001087
1088 sp = sctp_sk(sk);
1089 ep = sp->ep;
1090
1091 /* connect() cannot be done on a socket that is already in ESTABLISHED
1092 * state - UDP-style peeled off socket or a TCP-style socket that
1093 * is already connected.
1094 * It cannot be done even on a TCP-style listening socket.
1095 */
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -03001096 if (sctp_sstate(sk, ESTABLISHED) || sctp_sstate(sk, CLOSING) ||
Frank Filz3f7a87d2005-06-20 13:14:57 -07001097 (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))) {
1098 err = -EISCONN;
1099 goto out_free;
1100 }
1101
1102 /* Walk through the addrs buffer and count the number of addresses. */
1103 addr_buf = kaddrs;
1104 while (walk_size < addrs_size) {
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001105 struct sctp_af *af;
1106
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001107 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1108 err = -EINVAL;
1109 goto out_free;
1110 }
1111
Joe Perchesea110732011-06-13 16:21:26 +00001112 sa_addr = addr_buf;
Al Viro4bdf4b52006-11-20 17:10:20 -08001113 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001114
1115 /* If the address family is not supported or if this address
1116 * causes the address buffer to overflow return EINVAL.
1117 */
1118 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1119 err = -EINVAL;
1120 goto out_free;
1121 }
1122
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001123 port = ntohs(sa_addr->v4.sin_port);
1124
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001125 /* Save current address so we can work with it */
1126 memcpy(&to, sa_addr, af->sockaddr_len);
1127
1128 err = sctp_verify_addr(sk, &to, af->sockaddr_len);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001129 if (err)
1130 goto out_free;
1131
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001132 /* Make sure the destination port is correctly set
1133 * in all addresses.
1134 */
Wei Yongjun524fba62013-04-03 03:02:28 +00001135 if (asoc && asoc->peer.port && asoc->peer.port != port) {
1136 err = -EINVAL;
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001137 goto out_free;
Wei Yongjun524fba62013-04-03 03:02:28 +00001138 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001139
1140 /* Check if there already is a matching association on the
1141 * endpoint (other than the one created here).
1142 */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001143 asoc2 = sctp_endpoint_lookup_assoc(ep, &to, &transport);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001144 if (asoc2 && asoc2 != asoc) {
1145 if (asoc2->state >= SCTP_STATE_ESTABLISHED)
1146 err = -EISCONN;
1147 else
1148 err = -EALREADY;
1149 goto out_free;
1150 }
1151
1152 /* If we could not find a matching association on the endpoint,
1153 * make sure that there is no peeled-off association matching
1154 * the peer address even on another socket.
1155 */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001156 if (sctp_endpoint_is_peeled_off(ep, &to)) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07001157 err = -EADDRNOTAVAIL;
1158 goto out_free;
1159 }
1160
1161 if (!asoc) {
1162 /* If a bind() or sctp_bindx() is not called prior to
1163 * an sctp_connectx() call, the system picks an
1164 * ephemeral port and will choose an address set
1165 * equivalent to binding with a wildcard address.
1166 */
1167 if (!ep->base.bind_addr.port) {
1168 if (sctp_autobind(sk)) {
1169 err = -EAGAIN;
1170 goto out_free;
1171 }
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001172 } else {
1173 /*
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001174 * If an unprivileged user inherits a 1-many
1175 * style socket with open associations on a
1176 * privileged port, it MAY be permitted to
1177 * accept new associations, but it SHOULD NOT
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001178 * be permitted to open new associations.
1179 */
Krister Johansen4548b682017-01-20 17:49:11 -08001180 if (ep->base.bind_addr.port <
1181 inet_prot_sock(net) &&
1182 !ns_capable(net->user_ns,
1183 CAP_NET_BIND_SERVICE)) {
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001184 err = -EACCES;
1185 goto out_free;
1186 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001187 }
1188
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001189 scope = sctp_scope(&to);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001190 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1191 if (!asoc) {
1192 err = -ENOMEM;
1193 goto out_free;
1194 }
Vlad Yasevich409b95a2009-11-10 08:57:34 +00001195
1196 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope,
1197 GFP_KERNEL);
1198 if (err < 0) {
1199 goto out_free;
1200 }
1201
Frank Filz3f7a87d2005-06-20 13:14:57 -07001202 }
1203
1204 /* Prime the peer's transport structures. */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001205 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001206 SCTP_UNKNOWN);
1207 if (!transport) {
1208 err = -ENOMEM;
1209 goto out_free;
1210 }
1211
1212 addrcnt++;
1213 addr_buf += af->sockaddr_len;
1214 walk_size += af->sockaddr_len;
1215 }
1216
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001217 /* In case the user of sctp_connectx() wants an association
1218 * id back, assign one now.
1219 */
1220 if (assoc_id) {
1221 err = sctp_assoc_set_id(asoc, GFP_KERNEL);
1222 if (err < 0)
1223 goto out_free;
1224 }
1225
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001226 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001227 if (err < 0) {
1228 goto out_free;
1229 }
1230
1231 /* Initialize sk's dport and daddr for getpeername() */
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001232 inet_sk(sk)->inet_dport = htons(asoc->peer.port);
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001233 sp->pf->to_sk_daddr(sa_addr, sk);
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07001234 sk->sk_err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001235
Xin Long644fbde2018-05-20 16:39:10 +08001236 timeo = sock_sndtimeo(sk, flags & O_NONBLOCK);
Vlad Yasevichf50f95c2007-07-03 12:47:40 -04001237
Marcelo Ricardo Leitner7233bc82016-11-03 17:03:41 -02001238 if (assoc_id)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001239 *assoc_id = asoc->assoc_id;
Richard Haines2277c7c2018-02-13 20:56:24 +00001240
Marcelo Ricardo Leitner7233bc82016-11-03 17:03:41 -02001241 err = sctp_wait_for_connect(asoc, &timeo);
1242 /* Note: the asoc may be freed after the return of
1243 * sctp_wait_for_connect.
1244 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07001245
1246 /* Don't free association on exit. */
1247 asoc = NULL;
1248
1249out_free:
Daniel Borkmannbb333812013-06-28 19:49:40 +02001250 pr_debug("%s: took out_free path with asoc:%p kaddrs:%p err:%d\n",
1251 __func__, asoc, kaddrs, err);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001252
Neil Horman2eebc1e2012-07-16 09:13:51 +00001253 if (asoc) {
1254 /* sctp_primitive_ASSOCIATE may have added this association
1255 * To the hash table, try to unhash it, just in case, its a noop
1256 * if it wasn't hashed so we're safe
1257 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07001258 sctp_association_free(asoc);
Neil Horman2eebc1e2012-07-16 09:13:51 +00001259 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001260 return err;
1261}
1262
1263/* Helper for tunneling sctp_connectx() requests through sctp_setsockopt()
1264 *
1265 * API 8.9
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001266 * int sctp_connectx(int sd, struct sockaddr *addrs, int addrcnt,
1267 * sctp_assoc_t *asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001268 *
1269 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
1270 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
1271 * or IPv6 addresses.
1272 *
1273 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
1274 * Section 3.1.2 for this usage.
1275 *
1276 * addrs is a pointer to an array of one or more socket addresses. Each
1277 * address is contained in its appropriate structure (i.e. struct
1278 * sockaddr_in or struct sockaddr_in6) the family of the address type
1279 * must be used to distengish the address length (note that this
1280 * representation is termed a "packed array" of addresses). The caller
1281 * specifies the number of addresses in the array with addrcnt.
1282 *
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001283 * On success, sctp_connectx() returns 0. It also sets the assoc_id to
1284 * the association id of the new association. On failure, sctp_connectx()
1285 * returns -1, and sets errno to the appropriate error code. The assoc_id
1286 * is not touched by the kernel.
Frank Filz3f7a87d2005-06-20 13:14:57 -07001287 *
1288 * For SCTP, the port given in each socket address must be the same, or
1289 * sctp_connectx() will fail, setting errno to EINVAL.
1290 *
1291 * An application can use sctp_connectx to initiate an association with
1292 * an endpoint that is multi-homed. Much like sctp_bindx() this call
1293 * allows a caller to specify multiple addresses at which a peer can be
1294 * reached. The way the SCTP stack uses the list of addresses to set up
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001295 * the association is implementation dependent. This function only
Frank Filz3f7a87d2005-06-20 13:14:57 -07001296 * specifies that the stack will try to make use of all the addresses in
1297 * the list when needed.
1298 *
1299 * Note that the list of addresses passed in is only used for setting up
1300 * the association. It does not necessarily equal the set of addresses
1301 * the peer uses for the resulting association. If the caller wants to
1302 * find out the set of peer addresses, it must use sctp_getpaddrs() to
1303 * retrieve them after the association has been set up.
1304 *
1305 * Basically do nothing but copying the addresses from user to kernel
1306 * land and invoking either sctp_connectx(). This is used for tunneling
1307 * the sctp_connectx() request through sctp_setsockopt() from userspace.
1308 *
Frank Filz3f7a87d2005-06-20 13:14:57 -07001309 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
1310 * it.
1311 *
1312 * sk The sk of the socket
1313 * addrs The pointer to the addresses in user land
1314 * addrssize Size of the addrs buffer
1315 *
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001316 * Returns >=0 if ok, <0 errno code on error.
Frank Filz3f7a87d2005-06-20 13:14:57 -07001317 */
wangweidong26ac8e52013-12-23 12:16:51 +08001318static int __sctp_setsockopt_connectx(struct sock *sk,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001319 struct sockaddr __user *addrs,
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001320 int addrs_size,
1321 sctp_assoc_t *assoc_id)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001322{
Frank Filz3f7a87d2005-06-20 13:14:57 -07001323 struct sockaddr *kaddrs;
Xin Long644fbde2018-05-20 16:39:10 +08001324 int err = 0, flags = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001325
Daniel Borkmannbb333812013-06-28 19:49:40 +02001326 pr_debug("%s: sk:%p addrs:%p addrs_size:%d\n",
1327 __func__, sk, addrs, addrs_size);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001328
1329 if (unlikely(addrs_size <= 0))
1330 return -EINVAL;
1331
Al Viroc981f252018-01-07 13:19:09 -05001332 kaddrs = vmemdup_user(addrs, addrs_size);
1333 if (unlikely(IS_ERR(kaddrs)))
1334 return PTR_ERR(kaddrs);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001335
Richard Haines2277c7c2018-02-13 20:56:24 +00001336 /* Allow security module to validate connectx addresses. */
1337 err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_CONNECTX,
1338 (struct sockaddr *)kaddrs,
1339 addrs_size);
1340 if (err)
1341 goto out_free;
1342
Xin Long644fbde2018-05-20 16:39:10 +08001343 /* in-kernel sockets don't generally have a file allocated to them
1344 * if all they do is call sock_create_kern().
1345 */
1346 if (sk->sk_socket->file)
1347 flags = sk->sk_socket->file->f_flags;
1348
1349 err = __sctp_connect(sk, kaddrs, addrs_size, flags, assoc_id);
Richard Haines2277c7c2018-02-13 20:56:24 +00001350
1351out_free:
Al Viroc981f252018-01-07 13:19:09 -05001352 kvfree(kaddrs);
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001353
Frank Filz3f7a87d2005-06-20 13:14:57 -07001354 return err;
1355}
1356
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001357/*
1358 * This is an older interface. It's kept for backward compatibility
1359 * to the option that doesn't provide association id.
1360 */
wangweidong26ac8e52013-12-23 12:16:51 +08001361static int sctp_setsockopt_connectx_old(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001362 struct sockaddr __user *addrs,
1363 int addrs_size)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001364{
1365 return __sctp_setsockopt_connectx(sk, addrs, addrs_size, NULL);
1366}
1367
1368/*
1369 * New interface for the API. The since the API is done with a socket
1370 * option, to make it simple we feed back the association id is as a return
1371 * indication to the call. Error is always negative and association id is
1372 * always positive.
1373 */
wangweidong26ac8e52013-12-23 12:16:51 +08001374static int sctp_setsockopt_connectx(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001375 struct sockaddr __user *addrs,
1376 int addrs_size)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001377{
1378 sctp_assoc_t assoc_id = 0;
1379 int err = 0;
1380
1381 err = __sctp_setsockopt_connectx(sk, addrs, addrs_size, &assoc_id);
1382
1383 if (err)
1384 return err;
1385 else
1386 return assoc_id;
1387}
1388
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001389/*
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001390 * New (hopefully final) interface for the API.
1391 * We use the sctp_getaddrs_old structure so that use-space library
Daniel Borkmannffd59392014-02-17 12:11:11 +01001392 * can avoid any unnecessary allocations. The only different part
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001393 * is that we store the actual length of the address buffer into the
Daniel Borkmannffd59392014-02-17 12:11:11 +01001394 * addrs_num structure member. That way we can re-use the existing
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001395 * code.
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001396 */
Daniel Borkmannffd59392014-02-17 12:11:11 +01001397#ifdef CONFIG_COMPAT
1398struct compat_sctp_getaddrs_old {
1399 sctp_assoc_t assoc_id;
1400 s32 addr_num;
1401 compat_uptr_t addrs; /* struct sockaddr * */
1402};
1403#endif
1404
wangweidong26ac8e52013-12-23 12:16:51 +08001405static int sctp_getsockopt_connectx3(struct sock *sk, int len,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001406 char __user *optval,
1407 int __user *optlen)
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001408{
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001409 struct sctp_getaddrs_old param;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001410 sctp_assoc_t assoc_id = 0;
1411 int err = 0;
1412
Daniel Borkmannffd59392014-02-17 12:11:11 +01001413#ifdef CONFIG_COMPAT
Andy Lutomirski96c0e0a2016-03-22 14:25:07 -07001414 if (in_compat_syscall()) {
Daniel Borkmannffd59392014-02-17 12:11:11 +01001415 struct compat_sctp_getaddrs_old param32;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001416
Daniel Borkmannffd59392014-02-17 12:11:11 +01001417 if (len < sizeof(param32))
1418 return -EINVAL;
1419 if (copy_from_user(&param32, optval, sizeof(param32)))
1420 return -EFAULT;
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001421
Daniel Borkmannffd59392014-02-17 12:11:11 +01001422 param.assoc_id = param32.assoc_id;
1423 param.addr_num = param32.addr_num;
1424 param.addrs = compat_ptr(param32.addrs);
1425 } else
1426#endif
1427 {
1428 if (len < sizeof(param))
1429 return -EINVAL;
1430 if (copy_from_user(&param, optval, sizeof(param)))
1431 return -EFAULT;
1432 }
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001433
Daniel Borkmannffd59392014-02-17 12:11:11 +01001434 err = __sctp_setsockopt_connectx(sk, (struct sockaddr __user *)
1435 param.addrs, param.addr_num,
1436 &assoc_id);
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001437 if (err == 0 || err == -EINPROGRESS) {
1438 if (copy_to_user(optval, &assoc_id, sizeof(assoc_id)))
1439 return -EFAULT;
1440 if (put_user(sizeof(assoc_id), optlen))
1441 return -EFAULT;
1442 }
1443
1444 return err;
1445}
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447/* API 3.1.4 close() - UDP Style Syntax
1448 * Applications use close() to perform graceful shutdown (as described in
1449 * Section 10.1 of [SCTP]) on ALL the associations currently represented
1450 * by a UDP-style socket.
1451 *
1452 * The syntax is
1453 *
1454 * ret = close(int sd);
1455 *
1456 * sd - the socket descriptor of the associations to be closed.
1457 *
1458 * To gracefully shutdown a specific association represented by the
1459 * UDP-style socket, an application should use the sendmsg() call,
1460 * passing no user data, but including the appropriate flag in the
1461 * ancillary data (see Section xxxx).
1462 *
1463 * If sd in the close() call is a branched-off socket representing only
1464 * one association, the shutdown is performed on that association only.
1465 *
1466 * 4.1.6 close() - TCP Style Syntax
1467 *
1468 * Applications use close() to gracefully close down an association.
1469 *
1470 * The syntax is:
1471 *
1472 * int close(int sd);
1473 *
1474 * sd - the socket descriptor of the association to be closed.
1475 *
1476 * After an application calls close() on a socket descriptor, no further
1477 * socket operations will succeed on that descriptor.
1478 *
1479 * API 7.1.4 SO_LINGER
1480 *
1481 * An application using the TCP-style socket can use this option to
1482 * perform the SCTP ABORT primitive. The linger option structure is:
1483 *
1484 * struct linger {
1485 * int l_onoff; // option on/off
1486 * int l_linger; // linger time
1487 * };
1488 *
1489 * To enable the option, set l_onoff to 1. If the l_linger value is set
1490 * to 0, calling close() is the same as the ABORT primitive. If the
1491 * value is set to a negative value, the setsockopt() call will return
1492 * an error. If the value is set to a positive value linger_time, the
1493 * close() can be blocked for at most linger_time ms. If the graceful
1494 * shutdown phase does not finish during this period, close() will
1495 * return but the graceful shutdown phase continues in the system.
1496 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02001497static void sctp_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001499 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 struct sctp_endpoint *ep;
1501 struct sctp_association *asoc;
1502 struct list_head *pos, *temp;
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001503 unsigned int data_was_unread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Daniel Borkmannbb333812013-06-28 19:49:40 +02001505 pr_debug("%s: sk:%p, timeout:%ld\n", __func__, sk, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Xin Long6dfe4b92017-06-10 14:56:56 +08001507 lock_sock_nested(sk, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 sk->sk_shutdown = SHUTDOWN_MASK;
Yafang Shaocbabf462017-12-20 11:12:54 +08001509 inet_sk_set_state(sk, SCTP_SS_CLOSING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
1511 ep = sctp_sk(sk)->ep;
1512
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001513 /* Clean up any skbs sitting on the receive queue. */
1514 data_was_unread = sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1515 data_was_unread += sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1516
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07001517 /* Walk all associations on an endpoint. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 list_for_each_safe(pos, temp, &ep->asocs) {
1519 asoc = list_entry(pos, struct sctp_association, asocs);
1520
1521 if (sctp_style(sk, TCP)) {
1522 /* A closed association can still be in the list if
1523 * it belongs to a TCP-style listening socket that is
1524 * not yet accepted. If so, free it. If not, send an
1525 * ABORT or SHUTDOWN based on the linger options.
1526 */
1527 if (sctp_state(asoc, CLOSED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 sctp_association_free(asoc);
Vladislav Yasevichb89498a2006-05-19 14:32:06 -07001529 continue;
1530 }
1531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001533 if (data_was_unread || !skb_queue_empty(&asoc->ulpq.lobby) ||
1534 !skb_queue_empty(&asoc->ulpq.reasm) ||
Xin Long13228232017-12-08 21:04:09 +08001535 !skb_queue_empty(&asoc->ulpq.reasm_uo) ||
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001536 (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) {
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001537 struct sctp_chunk *chunk;
1538
1539 chunk = sctp_make_abort_user(asoc, NULL, 0);
Xin Long068d8bd2015-12-29 17:49:25 +08001540 sctp_primitive_ABORT(net, asoc, chunk);
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001541 } else
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001542 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 }
1544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 /* On a TCP-style socket, block for at most linger_time if set. */
1546 if (sctp_style(sk, TCP) && timeout)
1547 sctp_wait_for_close(sk, timeout);
1548
1549 /* This will run the backlog queue. */
wangweidong048ed4b2014-01-21 15:44:11 +08001550 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 /* Supposedly, no process has access to the socket, but
1553 * the net layers still may.
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001554 * Also, sctp_destroy_sock() needs to be called with addr_wq_lock
1555 * held and that should be grabbed before socket lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 */
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001557 spin_lock_bh(&net->sctp.addr_wq_lock);
Xin Long6dfe4b92017-06-10 14:56:56 +08001558 bh_lock_sock_nested(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
1560 /* Hold the sock, since sk_common_release() will put sock_put()
1561 * and we have just a little more cleanup.
1562 */
1563 sock_hold(sk);
1564 sk_common_release(sk);
1565
wangweidong5bc1d1b2014-01-21 15:44:12 +08001566 bh_unlock_sock(sk);
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001567 spin_unlock_bh(&net->sctp.addr_wq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
1569 sock_put(sk);
1570
1571 SCTP_DBG_OBJCNT_DEC(sock);
1572}
1573
1574/* Handle EPIPE error. */
1575static int sctp_error(struct sock *sk, int flags, int err)
1576{
1577 if (err == -EPIPE)
1578 err = sock_error(sk) ? : -EPIPE;
1579 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1580 send_sig(SIGPIPE, current, 0);
1581 return err;
1582}
1583
1584/* API 3.1.3 sendmsg() - UDP Style Syntax
1585 *
1586 * An application uses sendmsg() and recvmsg() calls to transmit data to
1587 * and receive data from its peer.
1588 *
1589 * ssize_t sendmsg(int socket, const struct msghdr *message,
1590 * int flags);
1591 *
1592 * socket - the socket descriptor of the endpoint.
1593 * message - pointer to the msghdr structure which contains a single
1594 * user message and possibly some ancillary data.
1595 *
1596 * See Section 5 for complete description of the data
1597 * structures.
1598 *
1599 * flags - flags sent or received with the user message, see Section
1600 * 5 for complete description of the flags.
1601 *
1602 * Note: This function could use a rewrite especially when explicit
1603 * connect support comes in.
1604 */
1605/* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */
1606
Xin Longa05437a2017-08-11 10:23:48 +08001607static int sctp_msghdr_parse(const struct msghdr *msg,
1608 struct sctp_cmsgs *cmsgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Xin Long204f8172018-03-01 23:05:14 +08001610static int sctp_sendmsg_parse(struct sock *sk, struct sctp_cmsgs *cmsgs,
1611 struct sctp_sndrcvinfo *srinfo,
1612 const struct msghdr *msg, size_t msg_len)
1613{
1614 __u16 sflags;
1615 int err;
1616
1617 if (sctp_sstate(sk, LISTENING) && sctp_style(sk, TCP))
1618 return -EPIPE;
1619
1620 if (msg_len > sk->sk_sndbuf)
1621 return -EMSGSIZE;
1622
1623 memset(cmsgs, 0, sizeof(*cmsgs));
1624 err = sctp_msghdr_parse(msg, cmsgs);
1625 if (err) {
1626 pr_debug("%s: msghdr parse err:%x\n", __func__, err);
1627 return err;
1628 }
1629
1630 memset(srinfo, 0, sizeof(*srinfo));
1631 if (cmsgs->srinfo) {
1632 srinfo->sinfo_stream = cmsgs->srinfo->sinfo_stream;
1633 srinfo->sinfo_flags = cmsgs->srinfo->sinfo_flags;
1634 srinfo->sinfo_ppid = cmsgs->srinfo->sinfo_ppid;
1635 srinfo->sinfo_context = cmsgs->srinfo->sinfo_context;
1636 srinfo->sinfo_assoc_id = cmsgs->srinfo->sinfo_assoc_id;
1637 srinfo->sinfo_timetolive = cmsgs->srinfo->sinfo_timetolive;
1638 }
1639
1640 if (cmsgs->sinfo) {
1641 srinfo->sinfo_stream = cmsgs->sinfo->snd_sid;
1642 srinfo->sinfo_flags = cmsgs->sinfo->snd_flags;
1643 srinfo->sinfo_ppid = cmsgs->sinfo->snd_ppid;
1644 srinfo->sinfo_context = cmsgs->sinfo->snd_context;
1645 srinfo->sinfo_assoc_id = cmsgs->sinfo->snd_assoc_id;
1646 }
1647
Xin Longed63afb2018-03-05 20:44:18 +08001648 if (cmsgs->prinfo) {
1649 srinfo->sinfo_timetolive = cmsgs->prinfo->pr_value;
1650 SCTP_PR_SET_POLICY(srinfo->sinfo_flags,
1651 cmsgs->prinfo->pr_policy);
1652 }
1653
Xin Long204f8172018-03-01 23:05:14 +08001654 sflags = srinfo->sinfo_flags;
1655 if (!sflags && msg_len)
1656 return 0;
1657
1658 if (sctp_style(sk, TCP) && (sflags & (SCTP_EOF | SCTP_ABORT)))
1659 return -EINVAL;
1660
1661 if (((sflags & SCTP_EOF) && msg_len > 0) ||
1662 (!(sflags & (SCTP_EOF | SCTP_ABORT)) && msg_len == 0))
1663 return -EINVAL;
1664
1665 if ((sflags & SCTP_ADDR_OVER) && !msg->msg_name)
1666 return -EINVAL;
1667
1668 return 0;
1669}
1670
Xin Long2bfd80f2018-03-01 23:05:11 +08001671static int sctp_sendmsg_new_asoc(struct sock *sk, __u16 sflags,
1672 struct sctp_cmsgs *cmsgs,
1673 union sctp_addr *daddr,
1674 struct sctp_transport **tp)
1675{
1676 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
1677 struct net *net = sock_net(sk);
1678 struct sctp_association *asoc;
1679 enum sctp_scope scope;
Xin Long2c0dbaa2018-03-05 20:44:19 +08001680 struct cmsghdr *cmsg;
Xin Long4be41392018-07-02 18:21:14 +08001681 __be32 flowinfo = 0;
Linus Torvalds9eda2d22018-04-06 15:39:26 -07001682 struct sctp_af *af;
Wei Yongjund98985d2018-03-13 03:03:30 +00001683 int err;
Xin Long2bfd80f2018-03-01 23:05:11 +08001684
1685 *tp = NULL;
1686
1687 if (sflags & (SCTP_EOF | SCTP_ABORT))
1688 return -EINVAL;
1689
1690 if (sctp_style(sk, TCP) && (sctp_sstate(sk, ESTABLISHED) ||
1691 sctp_sstate(sk, CLOSING)))
1692 return -EADDRNOTAVAIL;
1693
1694 if (sctp_endpoint_is_peeled_off(ep, daddr))
1695 return -EADDRNOTAVAIL;
1696
1697 if (!ep->base.bind_addr.port) {
1698 if (sctp_autobind(sk))
1699 return -EAGAIN;
1700 } else {
1701 if (ep->base.bind_addr.port < inet_prot_sock(net) &&
1702 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
1703 return -EACCES;
1704 }
1705
1706 scope = sctp_scope(daddr);
1707
Linus Torvalds9eda2d22018-04-06 15:39:26 -07001708 /* Label connection socket for first association 1-to-many
1709 * style for client sequence socket()->sendmsg(). This
1710 * needs to be done before sctp_assoc_add_peer() as that will
1711 * set up the initial packet that needs to account for any
1712 * security ip options (CIPSO/CALIPSO) added to the packet.
1713 */
1714 af = sctp_get_af_specific(daddr->sa.sa_family);
1715 if (!af)
1716 return -EINVAL;
1717 err = security_sctp_bind_connect(sk, SCTP_SENDMSG_CONNECT,
1718 (struct sockaddr *)daddr,
1719 af->sockaddr_len);
1720 if (err < 0)
1721 return err;
1722
Xin Long2bfd80f2018-03-01 23:05:11 +08001723 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1724 if (!asoc)
1725 return -ENOMEM;
1726
1727 if (sctp_assoc_set_bind_addr_from_ep(asoc, scope, GFP_KERNEL) < 0) {
1728 err = -ENOMEM;
1729 goto free;
1730 }
1731
1732 if (cmsgs->init) {
1733 struct sctp_initmsg *init = cmsgs->init;
1734
1735 if (init->sinit_num_ostreams) {
1736 __u16 outcnt = init->sinit_num_ostreams;
1737
1738 asoc->c.sinit_num_ostreams = outcnt;
1739 /* outcnt has been changed, need to re-init stream */
1740 err = sctp_stream_init(&asoc->stream, outcnt, 0,
1741 GFP_KERNEL);
1742 if (err)
1743 goto free;
1744 }
1745
1746 if (init->sinit_max_instreams)
1747 asoc->c.sinit_max_instreams = init->sinit_max_instreams;
1748
1749 if (init->sinit_max_attempts)
1750 asoc->max_init_attempts = init->sinit_max_attempts;
1751
1752 if (init->sinit_max_init_timeo)
1753 asoc->max_init_timeo =
1754 msecs_to_jiffies(init->sinit_max_init_timeo);
1755 }
1756
1757 *tp = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL, SCTP_UNKNOWN);
1758 if (!*tp) {
1759 err = -ENOMEM;
1760 goto free;
1761 }
1762
Xin Long2c0dbaa2018-03-05 20:44:19 +08001763 if (!cmsgs->addrs_msg)
1764 return 0;
1765
Xin Long4be41392018-07-02 18:21:14 +08001766 if (daddr->sa.sa_family == AF_INET6)
1767 flowinfo = daddr->v6.sin6_flowinfo;
1768
Xin Long2c0dbaa2018-03-05 20:44:19 +08001769 /* sendv addr list parse */
1770 for_each_cmsghdr(cmsg, cmsgs->addrs_msg) {
1771 struct sctp_transport *transport;
1772 struct sctp_association *old;
1773 union sctp_addr _daddr;
1774 int dlen;
1775
1776 if (cmsg->cmsg_level != IPPROTO_SCTP ||
1777 (cmsg->cmsg_type != SCTP_DSTADDRV4 &&
1778 cmsg->cmsg_type != SCTP_DSTADDRV6))
1779 continue;
1780
1781 daddr = &_daddr;
1782 memset(daddr, 0, sizeof(*daddr));
1783 dlen = cmsg->cmsg_len - sizeof(struct cmsghdr);
1784 if (cmsg->cmsg_type == SCTP_DSTADDRV4) {
Wei Yongjund98985d2018-03-13 03:03:30 +00001785 if (dlen < sizeof(struct in_addr)) {
1786 err = -EINVAL;
Xin Long2c0dbaa2018-03-05 20:44:19 +08001787 goto free;
Wei Yongjund98985d2018-03-13 03:03:30 +00001788 }
Xin Long2c0dbaa2018-03-05 20:44:19 +08001789
1790 dlen = sizeof(struct in_addr);
1791 daddr->v4.sin_family = AF_INET;
1792 daddr->v4.sin_port = htons(asoc->peer.port);
1793 memcpy(&daddr->v4.sin_addr, CMSG_DATA(cmsg), dlen);
1794 } else {
Wei Yongjund98985d2018-03-13 03:03:30 +00001795 if (dlen < sizeof(struct in6_addr)) {
1796 err = -EINVAL;
Xin Long2c0dbaa2018-03-05 20:44:19 +08001797 goto free;
Wei Yongjund98985d2018-03-13 03:03:30 +00001798 }
Xin Long2c0dbaa2018-03-05 20:44:19 +08001799
1800 dlen = sizeof(struct in6_addr);
Xin Long4be41392018-07-02 18:21:14 +08001801 daddr->v6.sin6_flowinfo = flowinfo;
Xin Long2c0dbaa2018-03-05 20:44:19 +08001802 daddr->v6.sin6_family = AF_INET6;
1803 daddr->v6.sin6_port = htons(asoc->peer.port);
1804 memcpy(&daddr->v6.sin6_addr, CMSG_DATA(cmsg), dlen);
1805 }
1806 err = sctp_verify_addr(sk, daddr, sizeof(*daddr));
1807 if (err)
1808 goto free;
1809
1810 old = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
1811 if (old && old != asoc) {
1812 if (old->state >= SCTP_STATE_ESTABLISHED)
1813 err = -EISCONN;
1814 else
1815 err = -EALREADY;
1816 goto free;
1817 }
1818
1819 if (sctp_endpoint_is_peeled_off(ep, daddr)) {
1820 err = -EADDRNOTAVAIL;
1821 goto free;
1822 }
1823
1824 transport = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL,
1825 SCTP_UNKNOWN);
1826 if (!transport) {
1827 err = -ENOMEM;
1828 goto free;
1829 }
1830 }
1831
Xin Long2bfd80f2018-03-01 23:05:11 +08001832 return 0;
1833
1834free:
1835 sctp_association_free(asoc);
1836 return err;
1837}
1838
Xin Longc2666de2018-03-01 23:05:12 +08001839static int sctp_sendmsg_check_sflags(struct sctp_association *asoc,
1840 __u16 sflags, struct msghdr *msg,
1841 size_t msg_len)
1842{
1843 struct sock *sk = asoc->base.sk;
1844 struct net *net = sock_net(sk);
1845
1846 if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP))
1847 return -EPIPE;
1848
Xin Long49102802018-03-05 20:44:20 +08001849 if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP) &&
1850 !sctp_state(asoc, ESTABLISHED))
1851 return 0;
1852
Xin Longc2666de2018-03-01 23:05:12 +08001853 if (sflags & SCTP_EOF) {
1854 pr_debug("%s: shutting down association:%p\n", __func__, asoc);
1855 sctp_primitive_SHUTDOWN(net, asoc, NULL);
1856
1857 return 0;
1858 }
1859
1860 if (sflags & SCTP_ABORT) {
1861 struct sctp_chunk *chunk;
1862
1863 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1864 if (!chunk)
1865 return -ENOMEM;
1866
1867 pr_debug("%s: aborting association:%p\n", __func__, asoc);
1868 sctp_primitive_ABORT(net, asoc, chunk);
1869
1870 return 0;
1871 }
1872
1873 return 1;
1874}
1875
Xin Longf84af332018-03-01 23:05:10 +08001876static int sctp_sendmsg_to_asoc(struct sctp_association *asoc,
1877 struct msghdr *msg, size_t msg_len,
1878 struct sctp_transport *transport,
1879 struct sctp_sndrcvinfo *sinfo)
1880{
1881 struct sock *sk = asoc->base.sk;
Marcelo Ricardo Leitner63d01332018-04-26 16:59:00 -03001882 struct sctp_sock *sp = sctp_sk(sk);
Xin Longf84af332018-03-01 23:05:10 +08001883 struct net *net = sock_net(sk);
1884 struct sctp_datamsg *datamsg;
1885 bool wait_connect = false;
1886 struct sctp_chunk *chunk;
1887 long timeo;
1888 int err;
1889
1890 if (sinfo->sinfo_stream >= asoc->stream.outcnt) {
1891 err = -EINVAL;
1892 goto err;
1893 }
1894
Konstantin Khorenko05364ca2018-08-10 20:11:42 +03001895 if (unlikely(!SCTP_SO(&asoc->stream, sinfo->sinfo_stream)->ext)) {
Xin Longf84af332018-03-01 23:05:10 +08001896 err = sctp_stream_init_ext(&asoc->stream, sinfo->sinfo_stream);
1897 if (err)
1898 goto err;
1899 }
1900
Marcelo Ricardo Leitner63d01332018-04-26 16:59:00 -03001901 if (sp->disable_fragments && msg_len > asoc->frag_point) {
Xin Longf84af332018-03-01 23:05:10 +08001902 err = -EMSGSIZE;
1903 goto err;
1904 }
1905
Marcelo Ricardo Leitner25216802018-04-26 16:58:56 -03001906 if (asoc->pmtu_pending) {
Marcelo Ricardo Leitner63d01332018-04-26 16:59:00 -03001907 if (sp->param_flags & SPP_PMTUD_ENABLE)
1908 sctp_assoc_sync_pmtu(asoc);
Marcelo Ricardo Leitner25216802018-04-26 16:58:56 -03001909 asoc->pmtu_pending = 0;
1910 }
Neil Horman0aee4c22018-03-12 14:15:25 -04001911
Xin Longcd305c72018-10-17 03:07:51 +08001912 if (sctp_wspace(asoc) < (int)msg_len)
Neil Horman0aee4c22018-03-12 14:15:25 -04001913 sctp_prsctp_prune(asoc, sinfo, msg_len - sctp_wspace(asoc));
1914
Xin Longcd305c72018-10-17 03:07:51 +08001915 if (sctp_wspace(asoc) <= 0) {
Neil Horman0aee4c22018-03-12 14:15:25 -04001916 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1917 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1918 if (err)
1919 goto err;
1920 }
1921
Xin Longf84af332018-03-01 23:05:10 +08001922 if (sctp_state(asoc, CLOSED)) {
1923 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
1924 if (err)
1925 goto err;
1926
Marcelo Ricardo Leitner63d01332018-04-26 16:59:00 -03001927 if (sp->strm_interleave) {
Xin Longf84af332018-03-01 23:05:10 +08001928 timeo = sock_sndtimeo(sk, 0);
1929 err = sctp_wait_for_connect(asoc, &timeo);
Xin Longc8638502018-10-17 03:06:12 +08001930 if (err) {
1931 err = -ESRCH;
Xin Longf84af332018-03-01 23:05:10 +08001932 goto err;
Xin Longc8638502018-10-17 03:06:12 +08001933 }
Xin Longf84af332018-03-01 23:05:10 +08001934 } else {
1935 wait_connect = true;
1936 }
1937
1938 pr_debug("%s: we associated primitively\n", __func__);
1939 }
1940
Xin Longf84af332018-03-01 23:05:10 +08001941 datamsg = sctp_datamsg_from_user(asoc, sinfo, &msg->msg_iter);
1942 if (IS_ERR(datamsg)) {
1943 err = PTR_ERR(datamsg);
1944 goto err;
1945 }
1946
1947 asoc->force_delay = !!(msg->msg_flags & MSG_MORE);
1948
1949 list_for_each_entry(chunk, &datamsg->chunks, frag_list) {
1950 sctp_chunk_hold(chunk);
1951 sctp_set_owner_w(chunk);
1952 chunk->transport = transport;
1953 }
1954
1955 err = sctp_primitive_SEND(net, asoc, datamsg);
1956 if (err) {
1957 sctp_datamsg_free(datamsg);
1958 goto err;
1959 }
1960
1961 pr_debug("%s: we sent primitively\n", __func__);
1962
1963 sctp_datamsg_put(datamsg);
1964
1965 if (unlikely(wait_connect)) {
1966 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1967 sctp_wait_for_connect(asoc, &timeo);
1968 }
1969
1970 err = msg_len;
1971
1972err:
1973 return err;
1974}
1975
Xin Longbecef9b2018-03-01 23:05:13 +08001976static union sctp_addr *sctp_sendmsg_get_daddr(struct sock *sk,
1977 const struct msghdr *msg,
1978 struct sctp_cmsgs *cmsgs)
1979{
1980 union sctp_addr *daddr = NULL;
1981 int err;
1982
1983 if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
1984 int len = msg->msg_namelen;
1985
1986 if (len > sizeof(*daddr))
1987 len = sizeof(*daddr);
1988
1989 daddr = (union sctp_addr *)msg->msg_name;
1990
1991 err = sctp_verify_addr(sk, daddr, len);
1992 if (err)
1993 return ERR_PTR(err);
1994 }
1995
1996 return daddr;
1997}
1998
Xin Longd42cb062018-03-01 23:05:15 +08001999static void sctp_sendmsg_update_sinfo(struct sctp_association *asoc,
2000 struct sctp_sndrcvinfo *sinfo,
2001 struct sctp_cmsgs *cmsgs)
2002{
2003 if (!cmsgs->srinfo && !cmsgs->sinfo) {
2004 sinfo->sinfo_stream = asoc->default_stream;
2005 sinfo->sinfo_ppid = asoc->default_ppid;
2006 sinfo->sinfo_context = asoc->default_context;
2007 sinfo->sinfo_assoc_id = sctp_assoc2id(asoc);
Xin Longed63afb2018-03-05 20:44:18 +08002008
2009 if (!cmsgs->prinfo)
2010 sinfo->sinfo_flags = asoc->default_flags;
Xin Longd42cb062018-03-01 23:05:15 +08002011 }
2012
Xin Longed63afb2018-03-05 20:44:18 +08002013 if (!cmsgs->srinfo && !cmsgs->prinfo)
Xin Longd42cb062018-03-01 23:05:15 +08002014 sinfo->sinfo_timetolive = asoc->default_timetolive;
Xin Long3ff547c2018-03-14 19:05:31 +08002015
2016 if (cmsgs->authinfo) {
2017 /* Reuse sinfo_tsn to indicate that authinfo was set and
2018 * sinfo_ssn to save the keyid on tx path.
2019 */
2020 sinfo->sinfo_tsn = 1;
2021 sinfo->sinfo_ssn = cmsgs->authinfo->auth_keynumber;
2022 }
Xin Longd42cb062018-03-01 23:05:15 +08002023}
2024
Ying Xue1b784142015-03-02 15:37:48 +08002025static int sctp_sendmsg(struct sock *sk, struct msghdr *msg, size_t msg_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026{
Xin Long204f8172018-03-01 23:05:14 +08002027 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Xin Long8e87c6e2018-03-01 23:05:16 +08002028 struct sctp_transport *transport = NULL;
Xin Long204f8172018-03-01 23:05:14 +08002029 struct sctp_sndrcvinfo _sinfo, *sinfo;
Xin Long007b7e12018-03-01 23:05:17 +08002030 struct sctp_association *asoc;
2031 struct sctp_cmsgs cmsgs;
Xin Longbecef9b2018-03-01 23:05:13 +08002032 union sctp_addr *daddr;
Xin Long007b7e12018-03-01 23:05:17 +08002033 bool new = false;
2034 __u16 sflags;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02002035 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
Xin Long204f8172018-03-01 23:05:14 +08002037 /* Parse and get snd_info */
2038 err = sctp_sendmsg_parse(sk, &cmsgs, &_sinfo, msg, msg_len);
2039 if (err)
Xin Long007b7e12018-03-01 23:05:17 +08002040 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Xin Long204f8172018-03-01 23:05:14 +08002042 sinfo = &_sinfo;
Xin Long007b7e12018-03-01 23:05:17 +08002043 sflags = sinfo->sinfo_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Xin Longbecef9b2018-03-01 23:05:13 +08002045 /* Get daddr from msg */
2046 daddr = sctp_sendmsg_get_daddr(sk, msg, &cmsgs);
2047 if (IS_ERR(daddr)) {
2048 err = PTR_ERR(daddr);
Xin Long007b7e12018-03-01 23:05:17 +08002049 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 }
2051
wangweidong048ed4b2014-01-21 15:44:11 +08002052 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Xin Long49102802018-03-05 20:44:20 +08002054 /* SCTP_SENDALL process */
2055 if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP)) {
2056 list_for_each_entry(asoc, &ep->asocs, asocs) {
2057 err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
2058 msg_len);
2059 if (err == 0)
2060 continue;
2061 if (err < 0)
2062 goto out_unlock;
2063
2064 sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
2065
2066 err = sctp_sendmsg_to_asoc(asoc, msg, msg_len,
2067 NULL, sinfo);
2068 if (err < 0)
2069 goto out_unlock;
2070
2071 iov_iter_revert(&msg->msg_iter, err);
2072 }
2073
2074 goto out_unlock;
2075 }
2076
Xin Long0a3920d2018-03-01 23:05:18 +08002077 /* Get and check or create asoc */
Xin Longbecef9b2018-03-01 23:05:13 +08002078 if (daddr) {
Xin Longbecef9b2018-03-01 23:05:13 +08002079 asoc = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
Xin Long0a3920d2018-03-01 23:05:18 +08002080 if (asoc) {
2081 err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
2082 msg_len);
2083 if (err <= 0)
2084 goto out_unlock;
2085 } else {
2086 err = sctp_sendmsg_new_asoc(sk, sflags, &cmsgs, daddr,
2087 &transport);
2088 if (err)
2089 goto out_unlock;
2090
2091 asoc = transport->asoc;
2092 new = true;
2093 }
2094
2095 if (!sctp_style(sk, TCP) && !(sflags & SCTP_ADDR_OVER))
2096 transport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 } else {
Xin Long007b7e12018-03-01 23:05:17 +08002098 asoc = sctp_id2assoc(sk, sinfo->sinfo_assoc_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 if (!asoc) {
2100 err = -EPIPE;
2101 goto out_unlock;
2102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Xin Long007b7e12018-03-01 23:05:17 +08002104 err = sctp_sendmsg_check_sflags(asoc, sflags, msg, msg_len);
Xin Longc2666de2018-03-01 23:05:12 +08002105 if (err <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 }
2108
Xin Longd42cb062018-03-01 23:05:15 +08002109 /* Update snd_info with the asoc */
2110 sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Xin Longf84af332018-03-01 23:05:10 +08002112 /* Send msg to the asoc */
Xin Long8e87c6e2018-03-01 23:05:16 +08002113 err = sctp_sendmsg_to_asoc(asoc, msg, msg_len, transport, sinfo);
Xin Long007b7e12018-03-01 23:05:17 +08002114 if (err < 0 && err != -ESRCH && new)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 sctp_association_free(asoc);
Xin Long8e87c6e2018-03-01 23:05:16 +08002116
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117out_unlock:
wangweidong048ed4b2014-01-21 15:44:11 +08002118 release_sock(sk);
Xin Long007b7e12018-03-01 23:05:17 +08002119out:
Xin Longf84af332018-03-01 23:05:10 +08002120 return sctp_error(sk, msg->msg_flags, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121}
2122
2123/* This is an extended version of skb_pull() that removes the data from the
2124 * start of a skb even when data is spread across the list of skb's in the
2125 * frag_list. len specifies the total amount of data that needs to be removed.
2126 * when 'len' bytes could be removed from the skb, it returns 0.
2127 * If 'len' exceeds the total skb length, it returns the no. of bytes that
2128 * could not be removed.
2129 */
2130static int sctp_skb_pull(struct sk_buff *skb, int len)
2131{
2132 struct sk_buff *list;
2133 int skb_len = skb_headlen(skb);
2134 int rlen;
2135
2136 if (len <= skb_len) {
2137 __skb_pull(skb, len);
2138 return 0;
2139 }
2140 len -= skb_len;
2141 __skb_pull(skb, skb_len);
2142
David S. Miller1b003be2009-06-09 00:22:35 -07002143 skb_walk_frags(skb, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 rlen = sctp_skb_pull(list, len);
2145 skb->len -= (len-rlen);
2146 skb->data_len -= (len-rlen);
2147
2148 if (!rlen)
2149 return 0;
2150
2151 len = rlen;
2152 }
2153
2154 return len;
2155}
2156
2157/* API 3.1.3 recvmsg() - UDP Style Syntax
2158 *
2159 * ssize_t recvmsg(int socket, struct msghdr *message,
2160 * int flags);
2161 *
2162 * socket - the socket descriptor of the endpoint.
2163 * message - pointer to the msghdr structure which contains a single
2164 * user message and possibly some ancillary data.
2165 *
2166 * See Section 5 for complete description of the data
2167 * structures.
2168 *
2169 * flags - flags sent or received with the user message, see Section
2170 * 5 for complete description of the flags.
2171 */
Ying Xue1b784142015-03-02 15:37:48 +08002172static int sctp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
2173 int noblock, int flags, int *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174{
2175 struct sctp_ulpevent *event = NULL;
2176 struct sctp_sock *sp = sctp_sk(sk);
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002177 struct sk_buff *skb, *head_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 int copied;
2179 int err = 0;
2180 int skb_len;
2181
Daniel Borkmannbb333812013-06-28 19:49:40 +02002182 pr_debug("%s: sk:%p, msghdr:%p, len:%zd, noblock:%d, flags:0x%x, "
2183 "addr_len:%p)\n", __func__, sk, msg, len, noblock, flags,
2184 addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
wangweidong048ed4b2014-01-21 15:44:11 +08002186 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -03002188 if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED) &&
Xin Longe0878692016-07-30 14:14:41 +08002189 !sctp_sstate(sk, CLOSING) && !sctp_sstate(sk, CLOSED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 err = -ENOTCONN;
2191 goto out;
2192 }
2193
2194 skb = sctp_skb_recv_datagram(sk, flags, noblock, &err);
2195 if (!skb)
2196 goto out;
2197
2198 /* Get the total length of the skb including any skb's in the
2199 * frag_list.
2200 */
2201 skb_len = skb->len;
2202
2203 copied = skb_len;
2204 if (copied > len)
2205 copied = len;
2206
David S. Miller51f3d022014-11-05 16:46:40 -05002207 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
2209 event = sctp_skb2event(skb);
2210
2211 if (err)
2212 goto out_free;
2213
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002214 if (event->chunk && event->chunk->head_skb)
2215 head_skb = event->chunk->head_skb;
2216 else
2217 head_skb = skb;
2218 sock_recv_ts_and_drops(msg, sk, head_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 if (sctp_ulpevent_is_notification(event)) {
2220 msg->msg_flags |= MSG_NOTIFICATION;
2221 sp->pf->event_msgname(event, msg->msg_name, addr_len);
2222 } else {
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002223 sp->pf->skb_msgname(head_skb, msg->msg_name, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 }
2225
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02002226 /* Check if we allow SCTP_NXTINFO. */
2227 if (sp->recvnxtinfo)
2228 sctp_ulpevent_read_nxtinfo(event, msg, sk);
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02002229 /* Check if we allow SCTP_RCVINFO. */
2230 if (sp->recvrcvinfo)
2231 sctp_ulpevent_read_rcvinfo(event, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 /* Check if we allow SCTP_SNDRCVINFO. */
Xin Long2cc0eeb2018-11-18 16:08:51 +08002233 if (sctp_ulpevent_type_enabled(sp->subscribe, SCTP_DATA_IO_EVENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 sctp_ulpevent_read_sndrcvinfo(event, msg);
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02002235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 err = copied;
2237
2238 /* If skb's length exceeds the user's buffer, update the skb and
2239 * push it back to the receive_queue so that the next call to
2240 * recvmsg() will return the remaining data. Don't set MSG_EOR.
2241 */
2242 if (skb_len > copied) {
2243 msg->msg_flags &= ~MSG_EOR;
2244 if (flags & MSG_PEEK)
2245 goto out_free;
2246 sctp_skb_pull(skb, copied);
2247 skb_queue_head(&sk->sk_receive_queue, skb);
2248
Daniel Borkmann362d5202014-04-14 21:45:17 +02002249 /* When only partial message is copied to the user, increase
2250 * rwnd by that amount. If all the data in the skb is read,
2251 * rwnd is updated when the event is freed.
2252 */
2253 if (!sctp_ulpevent_is_notification(event))
2254 sctp_assoc_rwnd_increase(event->asoc, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 goto out;
2256 } else if ((event->msg_flags & MSG_NOTIFICATION) ||
2257 (event->msg_flags & MSG_EOR))
2258 msg->msg_flags |= MSG_EOR;
2259 else
2260 msg->msg_flags &= ~MSG_EOR;
2261
2262out_free:
2263 if (flags & MSG_PEEK) {
2264 /* Release the skb reference acquired after peeking the skb in
2265 * sctp_skb_recv_datagram().
2266 */
2267 kfree_skb(skb);
2268 } else {
2269 /* Free the event which includes releasing the reference to
2270 * the owner of the skb, freeing the skb and updating the
2271 * rwnd.
2272 */
2273 sctp_ulpevent_free(event);
2274 }
2275out:
wangweidong048ed4b2014-01-21 15:44:11 +08002276 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 return err;
2278}
2279
2280/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
2281 *
2282 * This option is a on/off flag. If enabled no SCTP message
2283 * fragmentation will be performed. Instead if a message being sent
2284 * exceeds the current PMTU size, the message will NOT be sent and
2285 * instead a error will be indicated to the user.
2286 */
2287static int sctp_setsockopt_disable_fragments(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002288 char __user *optval,
2289 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290{
2291 int val;
2292
2293 if (optlen < sizeof(int))
2294 return -EINVAL;
2295
2296 if (get_user(val, (int __user *)optval))
2297 return -EFAULT;
2298
2299 sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1;
2300
2301 return 0;
2302}
2303
2304static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002305 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306{
Xin Long2cc0eeb2018-11-18 16:08:51 +08002307 struct sctp_event_subscribe subscribe;
2308 __u8 *sn_type = (__u8 *)&subscribe;
2309 struct sctp_sock *sp = sctp_sk(sk);
Xin Longa1e3a052018-11-18 16:08:52 +08002310 struct sctp_association *asoc;
Xin Long2cc0eeb2018-11-18 16:08:51 +08002311 int i;
Wei Yongjun94912302011-07-02 09:28:04 +00002312
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05002313 if (optlen > sizeof(struct sctp_event_subscribe))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 return -EINVAL;
Xin Long2cc0eeb2018-11-18 16:08:51 +08002315
2316 if (copy_from_user(&subscribe, optval, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 return -EFAULT;
Wei Yongjun94912302011-07-02 09:28:04 +00002318
Xin Long2cc0eeb2018-11-18 16:08:51 +08002319 for (i = 0; i < optlen; i++)
2320 sctp_ulpevent_type_set(&sp->subscribe, SCTP_SN_TYPE_BASE + i,
2321 sn_type[i]);
2322
Xin Longa1e3a052018-11-18 16:08:52 +08002323 list_for_each_entry(asoc, &sp->ep->asocs, asocs)
2324 asoc->subscribe = sctp_sk(sk)->subscribe;
2325
Daniel Borkmannbbbea412014-07-12 20:30:40 +02002326 /* At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT,
Wei Yongjun94912302011-07-02 09:28:04 +00002327 * if there is no data to be sent or retransmit, the stack will
2328 * immediately send up this notification.
2329 */
Xin Long2cc0eeb2018-11-18 16:08:51 +08002330 if (sctp_ulpevent_type_enabled(sp->subscribe, SCTP_SENDER_DRY_EVENT)) {
Xin Long2cc0eeb2018-11-18 16:08:51 +08002331 struct sctp_ulpevent *event;
Wei Yongjun94912302011-07-02 09:28:04 +00002332
Xin Longa1e3a052018-11-18 16:08:52 +08002333 asoc = sctp_id2assoc(sk, 0);
Wei Yongjun94912302011-07-02 09:28:04 +00002334 if (asoc && sctp_outq_is_empty(&asoc->outqueue)) {
2335 event = sctp_ulpevent_make_sender_dry_event(asoc,
Marcelo Ricardo Leitner2e83acb2018-01-08 19:02:27 -02002336 GFP_USER | __GFP_NOWARN);
Wei Yongjun94912302011-07-02 09:28:04 +00002337 if (!event)
2338 return -ENOMEM;
2339
Xin Long9162e0e2017-12-08 21:04:05 +08002340 asoc->stream.si->enqueue_event(&asoc->ulpq, event);
Wei Yongjun94912302011-07-02 09:28:04 +00002341 }
2342 }
2343
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 return 0;
2345}
2346
2347/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
2348 *
2349 * This socket option is applicable to the UDP-style socket only. When
2350 * set it will cause associations that are idle for more than the
2351 * specified number of seconds to automatically close. An association
2352 * being idle is defined an association that has NOT sent or received
2353 * user data. The special value of '0' indicates that no automatic
2354 * close of any associations should be performed. The option expects an
2355 * integer defining the number of seconds of idle time before an
2356 * association is closed.
2357 */
2358static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002359 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360{
2361 struct sctp_sock *sp = sctp_sk(sk);
Neil Horman9f70f462013-12-10 06:48:15 -05002362 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
2364 /* Applicable to UDP-style socket only */
2365 if (sctp_style(sk, TCP))
2366 return -EOPNOTSUPP;
2367 if (optlen != sizeof(int))
2368 return -EINVAL;
2369 if (copy_from_user(&sp->autoclose, optval, optlen))
2370 return -EFAULT;
2371
Neil Horman9f70f462013-12-10 06:48:15 -05002372 if (sp->autoclose > net->sctp.max_autoclose)
2373 sp->autoclose = net->sctp.max_autoclose;
2374
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 return 0;
2376}
2377
2378/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
2379 *
2380 * Applications can enable or disable heartbeats for any peer address of
2381 * an association, modify an address's heartbeat interval, force a
2382 * heartbeat to be sent immediately, and adjust the address's maximum
2383 * number of retransmissions sent before an address is considered
2384 * unreachable. The following structure is used to access and modify an
2385 * address's parameters:
2386 *
2387 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002388 * sctp_assoc_t spp_assoc_id;
2389 * struct sockaddr_storage spp_address;
2390 * uint32_t spp_hbinterval;
2391 * uint16_t spp_pathmaxrxt;
2392 * uint32_t spp_pathmtu;
2393 * uint32_t spp_sackdelay;
2394 * uint32_t spp_flags;
Xin Long0b0dce72018-07-02 18:21:13 +08002395 * uint32_t spp_ipv6_flowlabel;
2396 * uint8_t spp_dscp;
Frank Filz52ccb8e2005-12-22 11:36:46 -08002397 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002399 * spp_assoc_id - (one-to-many style socket) This is filled in the
2400 * application, and identifies the association for
2401 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 * spp_address - This specifies which address is of interest.
2403 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08002404 * in milliseconds. If a value of zero
2405 * is present in this field then no changes are to
2406 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 * spp_pathmaxrxt - This contains the maximum number of
2408 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08002409 * considered unreachable. If a value of zero
2410 * is present in this field then no changes are to
2411 * be made to this parameter.
2412 * spp_pathmtu - When Path MTU discovery is disabled the value
2413 * specified here will be the "fixed" path mtu.
2414 * Note that if the spp_address field is empty
2415 * then all associations on this address will
2416 * have this fixed path mtu set upon them.
2417 *
2418 * spp_sackdelay - When delayed sack is enabled, this value specifies
2419 * the number of milliseconds that sacks will be delayed
2420 * for. This value will apply to all addresses of an
2421 * association if the spp_address field is empty. Note
2422 * also, that if delayed sack is enabled and this
2423 * value is set to 0, no change is made to the last
2424 * recorded delayed sack timer value.
2425 *
2426 * spp_flags - These flags are used to control various features
2427 * on an association. The flag field may contain
2428 * zero or more of the following options.
2429 *
2430 * SPP_HB_ENABLE - Enable heartbeats on the
2431 * specified address. Note that if the address
2432 * field is empty all addresses for the association
2433 * have heartbeats enabled upon them.
2434 *
2435 * SPP_HB_DISABLE - Disable heartbeats on the
2436 * speicifed address. Note that if the address
2437 * field is empty all addresses for the association
2438 * will have their heartbeats disabled. Note also
2439 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
2440 * mutually exclusive, only one of these two should
2441 * be specified. Enabling both fields will have
2442 * undetermined results.
2443 *
2444 * SPP_HB_DEMAND - Request a user initiated heartbeat
2445 * to be made immediately.
2446 *
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002447 * SPP_HB_TIME_IS_ZERO - Specify's that the time for
2448 * heartbeat delayis to be set to the value of 0
2449 * milliseconds.
2450 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002451 * SPP_PMTUD_ENABLE - This field will enable PMTU
2452 * discovery upon the specified address. Note that
2453 * if the address feild is empty then all addresses
2454 * on the association are effected.
2455 *
2456 * SPP_PMTUD_DISABLE - This field will disable PMTU
2457 * discovery upon the specified address. Note that
2458 * if the address feild is empty then all addresses
2459 * on the association are effected. Not also that
2460 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2461 * exclusive. Enabling both will have undetermined
2462 * results.
2463 *
2464 * SPP_SACKDELAY_ENABLE - Setting this flag turns
2465 * on delayed sack. The time specified in spp_sackdelay
2466 * is used to specify the sack delay for this address. Note
2467 * that if spp_address is empty then all addresses will
2468 * enable delayed sack and take on the sack delay
2469 * value specified in spp_sackdelay.
2470 * SPP_SACKDELAY_DISABLE - Setting this flag turns
2471 * off delayed sack. If the spp_address field is blank then
2472 * delayed sack is disabled for the entire association. Note
2473 * also that this field is mutually exclusive to
2474 * SPP_SACKDELAY_ENABLE, setting both will have undefined
2475 * results.
Xin Long0b0dce72018-07-02 18:21:13 +08002476 *
2477 * SPP_IPV6_FLOWLABEL: Setting this flag enables the
2478 * setting of the IPV6 flow label value. The value is
2479 * contained in the spp_ipv6_flowlabel field.
2480 * Upon retrieval, this flag will be set to indicate that
2481 * the spp_ipv6_flowlabel field has a valid value returned.
2482 * If a specific destination address is set (in the
2483 * spp_address field), then the value returned is that of
2484 * the address. If just an association is specified (and
2485 * no address), then the association's default flow label
2486 * is returned. If neither an association nor a destination
2487 * is specified, then the socket's default flow label is
2488 * returned. For non-IPv6 sockets, this flag will be left
2489 * cleared.
2490 *
2491 * SPP_DSCP: Setting this flag enables the setting of the
2492 * Differentiated Services Code Point (DSCP) value
2493 * associated with either the association or a specific
2494 * address. The value is obtained in the spp_dscp field.
2495 * Upon retrieval, this flag will be set to indicate that
2496 * the spp_dscp field has a valid value returned. If a
2497 * specific destination address is set when called (in the
2498 * spp_address field), then that specific destination
2499 * address's DSCP value is returned. If just an association
2500 * is specified, then the association's default DSCP is
2501 * returned. If neither an association nor a destination is
2502 * specified, then the socket's default DSCP is returned.
2503 *
2504 * spp_ipv6_flowlabel
2505 * - This field is used in conjunction with the
2506 * SPP_IPV6_FLOWLABEL flag and contains the IPv6 flow label.
2507 * The 20 least significant bits are used for the flow
2508 * label. This setting has precedence over any IPv6-layer
2509 * setting.
2510 *
2511 * spp_dscp - This field is used in conjunction with the SPP_DSCP flag
2512 * and contains the DSCP. The 6 most significant bits are
2513 * used for the DSCP. This setting has precedence over any
2514 * IPv4- or IPv6- layer setting.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 */
Adrian Bunk16164362006-09-18 00:40:38 -07002516static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2517 struct sctp_transport *trans,
2518 struct sctp_association *asoc,
2519 struct sctp_sock *sp,
2520 int hb_change,
2521 int pmtud_change,
2522 int sackdelay_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 int error;
2525
Frank Filz52ccb8e2005-12-22 11:36:46 -08002526 if (params->spp_flags & SPP_HB_DEMAND && trans) {
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00002527 struct net *net = sock_net(trans->asoc->base.sk);
2528
2529 error = sctp_primitive_REQUESTHEARTBEAT(net, trans->asoc, trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 if (error)
2531 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 }
2533
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002534 /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2535 * this field is ignored. Note also that a value of zero indicates
2536 * the current setting should be left unchanged.
2537 */
2538 if (params->spp_flags & SPP_HB_ENABLE) {
2539
2540 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2541 * set. This lets us use 0 value when this flag
2542 * is set.
2543 */
2544 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2545 params->spp_hbinterval = 0;
2546
2547 if (params->spp_hbinterval ||
2548 (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2549 if (trans) {
2550 trans->hbinterval =
2551 msecs_to_jiffies(params->spp_hbinterval);
2552 } else if (asoc) {
2553 asoc->hbinterval =
2554 msecs_to_jiffies(params->spp_hbinterval);
2555 } else {
2556 sp->hbinterval = params->spp_hbinterval;
2557 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08002558 }
2559 }
2560
2561 if (hb_change) {
2562 if (trans) {
2563 trans->param_flags =
2564 (trans->param_flags & ~SPP_HB) | hb_change;
2565 } else if (asoc) {
2566 asoc->param_flags =
2567 (asoc->param_flags & ~SPP_HB) | hb_change;
2568 } else {
2569 sp->param_flags =
2570 (sp->param_flags & ~SPP_HB) | hb_change;
2571 }
2572 }
2573
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002574 /* When Path MTU discovery is disabled the value specified here will
2575 * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2576 * include the flag SPP_PMTUD_DISABLE for this field to have any
2577 * effect).
2578 */
2579 if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002580 if (trans) {
2581 trans->pathmtu = params->spp_pathmtu;
Xin Long3ebfdf02017-04-04 13:39:55 +08002582 sctp_assoc_sync_pmtu(asoc);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002583 } else if (asoc) {
Marcelo Ricardo Leitnerc4b28932018-04-26 16:58:53 -03002584 sctp_assoc_set_pmtu(asoc, params->spp_pathmtu);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002585 } else {
2586 sp->pathmtu = params->spp_pathmtu;
2587 }
2588 }
2589
2590 if (pmtud_change) {
2591 if (trans) {
2592 int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2593 (params->spp_flags & SPP_PMTUD_ENABLE);
2594 trans->param_flags =
2595 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2596 if (update) {
Vlad Yasevich9914ae32011-04-26 21:51:31 +00002597 sctp_transport_pmtu(trans, sctp_opt2sk(sp));
Xin Long3ebfdf02017-04-04 13:39:55 +08002598 sctp_assoc_sync_pmtu(asoc);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002599 }
2600 } else if (asoc) {
2601 asoc->param_flags =
2602 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2603 } else {
2604 sp->param_flags =
2605 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2606 }
2607 }
2608
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002609 /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2610 * value of this field is ignored. Note also that a value of zero
2611 * indicates the current setting should be left unchanged.
2612 */
2613 if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002614 if (trans) {
2615 trans->sackdelay =
2616 msecs_to_jiffies(params->spp_sackdelay);
2617 } else if (asoc) {
2618 asoc->sackdelay =
2619 msecs_to_jiffies(params->spp_sackdelay);
2620 } else {
2621 sp->sackdelay = params->spp_sackdelay;
2622 }
2623 }
2624
2625 if (sackdelay_change) {
2626 if (trans) {
2627 trans->param_flags =
2628 (trans->param_flags & ~SPP_SACKDELAY) |
2629 sackdelay_change;
2630 } else if (asoc) {
2631 asoc->param_flags =
2632 (asoc->param_flags & ~SPP_SACKDELAY) |
2633 sackdelay_change;
2634 } else {
2635 sp->param_flags =
2636 (sp->param_flags & ~SPP_SACKDELAY) |
2637 sackdelay_change;
2638 }
2639 }
2640
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002641 /* Note that a value of zero indicates the current setting should be
2642 left unchanged.
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002643 */
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002644 if (params->spp_pathmaxrxt) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002645 if (trans) {
2646 trans->pathmaxrxt = params->spp_pathmaxrxt;
2647 } else if (asoc) {
2648 asoc->pathmaxrxt = params->spp_pathmaxrxt;
2649 } else {
2650 sp->pathmaxrxt = params->spp_pathmaxrxt;
2651 }
2652 }
2653
Xin Long0b0dce72018-07-02 18:21:13 +08002654 if (params->spp_flags & SPP_IPV6_FLOWLABEL) {
Xin Long741880e2018-09-03 15:47:11 +08002655 if (trans) {
2656 if (trans->ipaddr.sa.sa_family == AF_INET6) {
2657 trans->flowlabel = params->spp_ipv6_flowlabel &
2658 SCTP_FLOWLABEL_VAL_MASK;
2659 trans->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2660 }
Xin Long0b0dce72018-07-02 18:21:13 +08002661 } else if (asoc) {
Xin Longaf8a2b82018-09-03 15:47:10 +08002662 struct sctp_transport *t;
2663
2664 list_for_each_entry(t, &asoc->peer.transport_addr_list,
Xin Long0b0dce72018-07-02 18:21:13 +08002665 transports) {
Xin Longaf8a2b82018-09-03 15:47:10 +08002666 if (t->ipaddr.sa.sa_family != AF_INET6)
Xin Long0b0dce72018-07-02 18:21:13 +08002667 continue;
Xin Longaf8a2b82018-09-03 15:47:10 +08002668 t->flowlabel = params->spp_ipv6_flowlabel &
2669 SCTP_FLOWLABEL_VAL_MASK;
2670 t->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
Xin Long0b0dce72018-07-02 18:21:13 +08002671 }
2672 asoc->flowlabel = params->spp_ipv6_flowlabel &
2673 SCTP_FLOWLABEL_VAL_MASK;
2674 asoc->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2675 } else if (sctp_opt2sk(sp)->sk_family == AF_INET6) {
2676 sp->flowlabel = params->spp_ipv6_flowlabel &
2677 SCTP_FLOWLABEL_VAL_MASK;
2678 sp->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2679 }
2680 }
2681
2682 if (params->spp_flags & SPP_DSCP) {
2683 if (trans) {
2684 trans->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2685 trans->dscp |= SCTP_DSCP_SET_MASK;
2686 } else if (asoc) {
Xin Longaf8a2b82018-09-03 15:47:10 +08002687 struct sctp_transport *t;
2688
2689 list_for_each_entry(t, &asoc->peer.transport_addr_list,
Xin Long0b0dce72018-07-02 18:21:13 +08002690 transports) {
Xin Longaf8a2b82018-09-03 15:47:10 +08002691 t->dscp = params->spp_dscp &
2692 SCTP_DSCP_VAL_MASK;
2693 t->dscp |= SCTP_DSCP_SET_MASK;
Xin Long0b0dce72018-07-02 18:21:13 +08002694 }
2695 asoc->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2696 asoc->dscp |= SCTP_DSCP_SET_MASK;
2697 } else {
2698 sp->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2699 sp->dscp |= SCTP_DSCP_SET_MASK;
2700 }
2701 }
2702
Frank Filz52ccb8e2005-12-22 11:36:46 -08002703 return 0;
2704}
2705
2706static int sctp_setsockopt_peer_addr_params(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002707 char __user *optval,
2708 unsigned int optlen)
Frank Filz52ccb8e2005-12-22 11:36:46 -08002709{
2710 struct sctp_paddrparams params;
2711 struct sctp_transport *trans = NULL;
2712 struct sctp_association *asoc = NULL;
2713 struct sctp_sock *sp = sctp_sk(sk);
2714 int error;
2715 int hb_change, pmtud_change, sackdelay_change;
2716
Xin Long0b0dce72018-07-02 18:21:13 +08002717 if (optlen == sizeof(params)) {
2718 if (copy_from_user(&params, optval, optlen))
2719 return -EFAULT;
2720 } else if (optlen == ALIGN(offsetof(struct sctp_paddrparams,
2721 spp_ipv6_flowlabel), 4)) {
2722 if (copy_from_user(&params, optval, optlen))
2723 return -EFAULT;
2724 if (params.spp_flags & (SPP_DSCP | SPP_IPV6_FLOWLABEL))
2725 return -EINVAL;
2726 } else {
wangweidongcb3f8372013-12-23 12:16:50 +08002727 return -EINVAL;
Xin Long0b0dce72018-07-02 18:21:13 +08002728 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08002729
2730 /* Validate flags and value parameters. */
2731 hb_change = params.spp_flags & SPP_HB;
2732 pmtud_change = params.spp_flags & SPP_PMTUD;
2733 sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2734
2735 if (hb_change == SPP_HB ||
2736 pmtud_change == SPP_PMTUD ||
2737 sackdelay_change == SPP_SACKDELAY ||
2738 params.spp_sackdelay > 500 ||
Joe Perchesf64f9e72009-11-29 16:55:45 -08002739 (params.spp_pathmtu &&
2740 params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
Frank Filz52ccb8e2005-12-22 11:36:46 -08002741 return -EINVAL;
2742
2743 /* If an address other than INADDR_ANY is specified, and
2744 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 */
wangweidongcb3f8372013-12-23 12:16:50 +08002746 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002747 trans = sctp_addr_id2transport(sk, &params.spp_address,
2748 params.spp_assoc_id);
2749 if (!trans)
2750 return -EINVAL;
2751 }
2752
Xin Longb99e5e02019-01-28 15:08:24 +08002753 /* Get association, if assoc_id != SCTP_FUTURE_ASSOC and the
2754 * socket is a one to many style socket, and an association
2755 * was not found, then the id was invalid.
Frank Filz52ccb8e2005-12-22 11:36:46 -08002756 */
2757 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
Xin Longb99e5e02019-01-28 15:08:24 +08002758 if (!asoc && params.spp_assoc_id != SCTP_FUTURE_ASSOC &&
2759 sctp_style(sk, UDP))
Frank Filz52ccb8e2005-12-22 11:36:46 -08002760 return -EINVAL;
2761
2762 /* Heartbeat demand can only be sent on a transport or
2763 * association, but not a socket.
2764 */
2765 if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2766 return -EINVAL;
2767
2768 /* Process parameters. */
2769 error = sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2770 hb_change, pmtud_change,
2771 sackdelay_change);
2772
2773 if (error)
2774 return error;
2775
2776 /* If changes are for association, also apply parameters to each
2777 * transport.
2778 */
2779 if (!trans && asoc) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002780 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2781 transports) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002782 sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2783 hb_change, pmtud_change,
2784 sackdelay_change);
2785 }
2786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787
2788 return 0;
2789}
2790
wangweidong0ea5e4d2014-01-15 17:24:01 +08002791static inline __u32 sctp_spp_sackdelay_enable(__u32 param_flags)
2792{
2793 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_ENABLE;
2794}
2795
2796static inline __u32 sctp_spp_sackdelay_disable(__u32 param_flags)
2797{
2798 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_DISABLE;
2799}
2800
Wei Yongjund364d922008-05-09 15:13:26 -07002801/*
2802 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08002803 *
Wei Yongjund364d922008-05-09 15:13:26 -07002804 * This option will effect the way delayed acks are performed. This
2805 * option allows you to get or set the delayed ack time, in
2806 * milliseconds. It also allows changing the delayed ack frequency.
2807 * Changing the frequency to 1 disables the delayed sack algorithm. If
2808 * the assoc_id is 0, then this sets or gets the endpoints default
2809 * values. If the assoc_id field is non-zero, then the set or get
2810 * effects the specified association for the one to many model (the
2811 * assoc_id field is ignored by the one to one model). Note that if
2812 * sack_delay or sack_freq are 0 when setting this option, then the
2813 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08002814 *
Wei Yongjund364d922008-05-09 15:13:26 -07002815 * struct sctp_sack_info {
2816 * sctp_assoc_t sack_assoc_id;
2817 * uint32_t sack_delay;
2818 * uint32_t sack_freq;
2819 * };
Frank Filz77086102005-12-22 11:37:30 -08002820 *
Wei Yongjund364d922008-05-09 15:13:26 -07002821 * sack_assoc_id - This parameter, indicates which association the user
2822 * is performing an action upon. Note that if this field's value is
2823 * zero then the endpoints default value is changed (effecting future
2824 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08002825 *
Wei Yongjund364d922008-05-09 15:13:26 -07002826 * sack_delay - This parameter contains the number of milliseconds that
2827 * the user is requesting the delayed ACK timer be set to. Note that
2828 * this value is defined in the standard to be between 200 and 500
2829 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08002830 *
Wei Yongjund364d922008-05-09 15:13:26 -07002831 * sack_freq - This parameter contains the number of packets that must
2832 * be received before a sack is sent without waiting for the delay
2833 * timer to expire. The default value for this is 2, setting this
2834 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08002835 */
2836
Wei Yongjund364d922008-05-09 15:13:26 -07002837static int sctp_setsockopt_delayed_ack(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002838 char __user *optval, unsigned int optlen)
Frank Filz77086102005-12-22 11:37:30 -08002839{
Wei Yongjund364d922008-05-09 15:13:26 -07002840 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08002841 struct sctp_transport *trans = NULL;
2842 struct sctp_association *asoc = NULL;
2843 struct sctp_sock *sp = sctp_sk(sk);
2844
Wei Yongjund364d922008-05-09 15:13:26 -07002845 if (optlen == sizeof(struct sctp_sack_info)) {
2846 if (copy_from_user(&params, optval, optlen))
2847 return -EFAULT;
2848
2849 if (params.sack_delay == 0 && params.sack_freq == 0)
2850 return 0;
2851 } else if (optlen == sizeof(struct sctp_assoc_value)) {
Neil Horman94f65192013-12-23 08:29:43 -05002852 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05002853 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05002854 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05002855 "Use struct sctp_sack_info instead\n",
2856 current->comm, task_pid_nr(current));
Wei Yongjund364d922008-05-09 15:13:26 -07002857 if (copy_from_user(&params, optval, optlen))
2858 return -EFAULT;
2859
2860 if (params.sack_delay == 0)
2861 params.sack_freq = 1;
2862 else
2863 params.sack_freq = 0;
2864 } else
wangweidongcb3f8372013-12-23 12:16:50 +08002865 return -EINVAL;
Frank Filz77086102005-12-22 11:37:30 -08002866
Frank Filz77086102005-12-22 11:37:30 -08002867 /* Validate value parameter. */
Wei Yongjund364d922008-05-09 15:13:26 -07002868 if (params.sack_delay > 500)
Frank Filz77086102005-12-22 11:37:30 -08002869 return -EINVAL;
2870
Wei Yongjund364d922008-05-09 15:13:26 -07002871 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08002872 * to many style socket, and an association was not found, then
2873 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002874 */
Wei Yongjund364d922008-05-09 15:13:26 -07002875 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
2876 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08002877 return -EINVAL;
2878
Wei Yongjund364d922008-05-09 15:13:26 -07002879 if (params.sack_delay) {
Frank Filz77086102005-12-22 11:37:30 -08002880 if (asoc) {
2881 asoc->sackdelay =
Wei Yongjund364d922008-05-09 15:13:26 -07002882 msecs_to_jiffies(params.sack_delay);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002883 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002884 sctp_spp_sackdelay_enable(asoc->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002885 } else {
Wei Yongjund364d922008-05-09 15:13:26 -07002886 sp->sackdelay = params.sack_delay;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002887 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002888 sctp_spp_sackdelay_enable(sp->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002889 }
Wei Yongjund364d922008-05-09 15:13:26 -07002890 }
2891
2892 if (params.sack_freq == 1) {
Frank Filz77086102005-12-22 11:37:30 -08002893 if (asoc) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002894 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002895 sctp_spp_sackdelay_disable(asoc->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002896 } else {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002897 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002898 sctp_spp_sackdelay_disable(sp->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002899 }
Wei Yongjund364d922008-05-09 15:13:26 -07002900 } else if (params.sack_freq > 1) {
2901 if (asoc) {
2902 asoc->sackfreq = params.sack_freq;
2903 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002904 sctp_spp_sackdelay_enable(asoc->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002905 } else {
2906 sp->sackfreq = params.sack_freq;
2907 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002908 sctp_spp_sackdelay_enable(sp->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002909 }
Frank Filz77086102005-12-22 11:37:30 -08002910 }
2911
2912 /* If change is for association, also apply to each transport. */
2913 if (asoc) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002914 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2915 transports) {
Wei Yongjund364d922008-05-09 15:13:26 -07002916 if (params.sack_delay) {
Frank Filz77086102005-12-22 11:37:30 -08002917 trans->sackdelay =
Wei Yongjund364d922008-05-09 15:13:26 -07002918 msecs_to_jiffies(params.sack_delay);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002919 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002920 sctp_spp_sackdelay_enable(trans->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002921 }
Vlad Yasevich7bfe8bdb2008-06-09 15:45:05 -07002922 if (params.sack_freq == 1) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002923 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002924 sctp_spp_sackdelay_disable(trans->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002925 } else if (params.sack_freq > 1) {
2926 trans->sackfreq = params.sack_freq;
2927 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002928 sctp_spp_sackdelay_enable(trans->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002929 }
2930 }
2931 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002932
Frank Filz77086102005-12-22 11:37:30 -08002933 return 0;
2934}
2935
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2937 *
2938 * Applications can specify protocol parameters for the default association
2939 * initialization. The option name argument to setsockopt() and getsockopt()
2940 * is SCTP_INITMSG.
2941 *
2942 * Setting initialization parameters is effective only on an unconnected
2943 * socket (for UDP-style sockets only future associations are effected
2944 * by the change). With TCP-style sockets, this option is inherited by
2945 * sockets derived from a listener socket.
2946 */
David S. Millerb7058842009-09-30 16:12:20 -07002947static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948{
2949 struct sctp_initmsg sinit;
2950 struct sctp_sock *sp = sctp_sk(sk);
2951
2952 if (optlen != sizeof(struct sctp_initmsg))
2953 return -EINVAL;
2954 if (copy_from_user(&sinit, optval, optlen))
2955 return -EFAULT;
2956
2957 if (sinit.sinit_num_ostreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002958 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 if (sinit.sinit_max_instreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002960 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 if (sinit.sinit_max_attempts)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002962 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 if (sinit.sinit_max_init_timeo)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002964 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965
2966 return 0;
2967}
2968
2969/*
2970 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2971 *
2972 * Applications that wish to use the sendto() system call may wish to
2973 * specify a default set of parameters that would normally be supplied
2974 * through the inclusion of ancillary data. This socket option allows
2975 * such an application to set the default sctp_sndrcvinfo structure.
2976 * The application that wishes to use this socket option simply passes
2977 * in to this call the sctp_sndrcvinfo structure defined in Section
2978 * 5.2.2) The input parameters accepted by this call include
2979 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2980 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
2981 * to this call if the caller is using the UDP model.
2982 */
2983static int sctp_setsockopt_default_send_param(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002984 char __user *optval,
2985 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 struct sctp_sock *sp = sctp_sk(sk);
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002988 struct sctp_association *asoc;
2989 struct sctp_sndrcvinfo info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002991 if (optlen != sizeof(info))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 return -EINVAL;
2993 if (copy_from_user(&info, optval, optlen))
2994 return -EFAULT;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002995 if (info.sinfo_flags &
2996 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2997 SCTP_ABORT | SCTP_EOF))
2998 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
3000 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
3001 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
3002 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 if (asoc) {
3004 asoc->default_stream = info.sinfo_stream;
3005 asoc->default_flags = info.sinfo_flags;
3006 asoc->default_ppid = info.sinfo_ppid;
3007 asoc->default_context = info.sinfo_context;
3008 asoc->default_timetolive = info.sinfo_timetolive;
3009 } else {
3010 sp->default_stream = info.sinfo_stream;
3011 sp->default_flags = info.sinfo_flags;
3012 sp->default_ppid = info.sinfo_ppid;
3013 sp->default_context = info.sinfo_context;
3014 sp->default_timetolive = info.sinfo_timetolive;
3015 }
3016
3017 return 0;
3018}
3019
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02003020/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
3021 * (SCTP_DEFAULT_SNDINFO)
3022 */
3023static int sctp_setsockopt_default_sndinfo(struct sock *sk,
3024 char __user *optval,
3025 unsigned int optlen)
3026{
3027 struct sctp_sock *sp = sctp_sk(sk);
3028 struct sctp_association *asoc;
3029 struct sctp_sndinfo info;
3030
3031 if (optlen != sizeof(info))
3032 return -EINVAL;
3033 if (copy_from_user(&info, optval, optlen))
3034 return -EFAULT;
3035 if (info.snd_flags &
3036 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
3037 SCTP_ABORT | SCTP_EOF))
3038 return -EINVAL;
3039
3040 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
3041 if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
3042 return -EINVAL;
3043 if (asoc) {
3044 asoc->default_stream = info.snd_sid;
3045 asoc->default_flags = info.snd_flags;
3046 asoc->default_ppid = info.snd_ppid;
3047 asoc->default_context = info.snd_context;
3048 } else {
3049 sp->default_stream = info.snd_sid;
3050 sp->default_flags = info.snd_flags;
3051 sp->default_ppid = info.snd_ppid;
3052 sp->default_context = info.snd_context;
3053 }
3054
3055 return 0;
3056}
3057
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
3059 *
3060 * Requests that the local SCTP stack use the enclosed peer address as
3061 * the association primary. The enclosed address must be one of the
3062 * association peer's addresses.
3063 */
3064static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003065 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066{
3067 struct sctp_prim prim;
3068 struct sctp_transport *trans;
Richard Haines2277c7c2018-02-13 20:56:24 +00003069 struct sctp_af *af;
3070 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071
3072 if (optlen != sizeof(struct sctp_prim))
3073 return -EINVAL;
3074
3075 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
3076 return -EFAULT;
3077
Richard Haines2277c7c2018-02-13 20:56:24 +00003078 /* Allow security module to validate address but need address len. */
3079 af = sctp_get_af_specific(prim.ssp_addr.ss_family);
3080 if (!af)
3081 return -EINVAL;
3082
3083 err = security_sctp_bind_connect(sk, SCTP_PRIMARY_ADDR,
3084 (struct sockaddr *)&prim.ssp_addr,
3085 af->sockaddr_len);
3086 if (err)
3087 return err;
3088
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
3090 if (!trans)
3091 return -EINVAL;
3092
3093 sctp_assoc_set_primary(trans->asoc, trans);
3094
3095 return 0;
3096}
3097
3098/*
3099 * 7.1.5 SCTP_NODELAY
3100 *
3101 * Turn on/off any Nagle-like algorithm. This means that packets are
3102 * generally sent as soon as possible and no unnecessary delays are
3103 * introduced, at the cost of more packets in the network. Expects an
3104 * integer boolean flag.
3105 */
3106static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003107 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108{
3109 int val;
3110
3111 if (optlen < sizeof(int))
3112 return -EINVAL;
3113 if (get_user(val, (int __user *)optval))
3114 return -EFAULT;
3115
3116 sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
3117 return 0;
3118}
3119
3120/*
3121 *
3122 * 7.1.1 SCTP_RTOINFO
3123 *
3124 * The protocol parameters used to initialize and bound retransmission
3125 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
3126 * and modify these parameters.
3127 * All parameters are time values, in milliseconds. A value of 0, when
3128 * modifying the parameters, indicates that the current value should not
3129 * be changed.
3130 *
3131 */
David S. Millerb7058842009-09-30 16:12:20 -07003132static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, unsigned int optlen)
3133{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 struct sctp_rtoinfo rtoinfo;
3135 struct sctp_association *asoc;
wangweidong85f935d2013-12-11 09:50:38 +08003136 unsigned long rto_min, rto_max;
3137 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138
3139 if (optlen != sizeof (struct sctp_rtoinfo))
3140 return -EINVAL;
3141
3142 if (copy_from_user(&rtoinfo, optval, optlen))
3143 return -EFAULT;
3144
3145 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
3146
3147 /* Set the values to the specific association */
Xin Long7adb5ed2019-01-28 15:08:25 +08003148 if (!asoc && rtoinfo.srto_assoc_id != SCTP_FUTURE_ASSOC &&
3149 sctp_style(sk, UDP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 return -EINVAL;
3151
wangweidong85f935d2013-12-11 09:50:38 +08003152 rto_max = rtoinfo.srto_max;
3153 rto_min = rtoinfo.srto_min;
3154
3155 if (rto_max)
3156 rto_max = asoc ? msecs_to_jiffies(rto_max) : rto_max;
3157 else
3158 rto_max = asoc ? asoc->rto_max : sp->rtoinfo.srto_max;
3159
3160 if (rto_min)
3161 rto_min = asoc ? msecs_to_jiffies(rto_min) : rto_min;
3162 else
3163 rto_min = asoc ? asoc->rto_min : sp->rtoinfo.srto_min;
3164
3165 if (rto_min > rto_max)
3166 return -EINVAL;
3167
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 if (asoc) {
3169 if (rtoinfo.srto_initial != 0)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003170 asoc->rto_initial =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 msecs_to_jiffies(rtoinfo.srto_initial);
wangweidong85f935d2013-12-11 09:50:38 +08003172 asoc->rto_max = rto_max;
3173 asoc->rto_min = rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 } else {
3175 /* If there is no association or the association-id = 0
3176 * set the values to the endpoint.
3177 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 if (rtoinfo.srto_initial != 0)
3179 sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
wangweidong85f935d2013-12-11 09:50:38 +08003180 sp->rtoinfo.srto_max = rto_max;
3181 sp->rtoinfo.srto_min = rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 }
3183
3184 return 0;
3185}
3186
3187/*
3188 *
3189 * 7.1.2 SCTP_ASSOCINFO
3190 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02003191 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 * of the association.
3193 * Returns an error if the new association retransmission value is
3194 * greater than the sum of the retransmission value of the peer.
3195 * See [SCTP] for more information.
3196 *
3197 */
David S. Millerb7058842009-09-30 16:12:20 -07003198static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199{
3200
3201 struct sctp_assocparams assocparams;
3202 struct sctp_association *asoc;
3203
3204 if (optlen != sizeof(struct sctp_assocparams))
3205 return -EINVAL;
3206 if (copy_from_user(&assocparams, optval, optlen))
3207 return -EFAULT;
3208
3209 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
3210
Xin Long88893942019-01-28 15:08:26 +08003211 if (!asoc && assocparams.sasoc_assoc_id != SCTP_FUTURE_ASSOC &&
3212 sctp_style(sk, UDP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 return -EINVAL;
3214
3215 /* Set the values to the specific association */
3216 if (asoc) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003217 if (assocparams.sasoc_asocmaxrxt != 0) {
3218 __u32 path_sum = 0;
3219 int paths = 0;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003220 struct sctp_transport *peer_addr;
3221
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07003222 list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
3223 transports) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003224 path_sum += peer_addr->pathmaxrxt;
3225 paths++;
3226 }
3227
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003228 /* Only validate asocmaxrxt if we have more than
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003229 * one path/transport. We do this because path
3230 * retransmissions are only counted when we have more
3231 * then one path.
3232 */
3233 if (paths > 1 &&
3234 assocparams.sasoc_asocmaxrxt > path_sum)
3235 return -EINVAL;
3236
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003238 }
3239
Daniel Borkmann52db8822013-06-25 18:17:27 +02003240 if (assocparams.sasoc_cookie_life != 0)
3241 asoc->cookie_life = ms_to_ktime(assocparams.sasoc_cookie_life);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 } else {
3243 /* Set the values to the endpoint */
3244 struct sctp_sock *sp = sctp_sk(sk);
3245
3246 if (assocparams.sasoc_asocmaxrxt != 0)
3247 sp->assocparams.sasoc_asocmaxrxt =
3248 assocparams.sasoc_asocmaxrxt;
3249 if (assocparams.sasoc_cookie_life != 0)
3250 sp->assocparams.sasoc_cookie_life =
3251 assocparams.sasoc_cookie_life;
3252 }
3253 return 0;
3254}
3255
3256/*
3257 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
3258 *
3259 * This socket option is a boolean flag which turns on or off mapped V4
3260 * addresses. If this option is turned on and the socket is type
3261 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
3262 * If this option is turned off, then no mapping will be done of V4
3263 * addresses and a user will receive both PF_INET6 and PF_INET type
3264 * addresses on the socket.
3265 */
David S. Millerb7058842009-09-30 16:12:20 -07003266static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267{
3268 int val;
3269 struct sctp_sock *sp = sctp_sk(sk);
3270
3271 if (optlen < sizeof(int))
3272 return -EINVAL;
3273 if (get_user(val, (int __user *)optval))
3274 return -EFAULT;
3275 if (val)
3276 sp->v4mapped = 1;
3277 else
3278 sp->v4mapped = 0;
3279
3280 return 0;
3281}
3282
3283/*
Wei Yongjune89c2092008-12-25 16:54:58 -08003284 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
3285 * This option will get or set the maximum size to put in any outgoing
3286 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 * fragmented by SCTP into the specified size. Note that the underlying
3288 * SCTP implementation may fragment into smaller sized chunks when the
3289 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08003290 * the user. The default value for this option is '0' which indicates
3291 * the user is NOT limiting fragmentation and only the PMTU will effect
3292 * SCTP's choice of DATA chunk size. Note also that values set larger
3293 * than the maximum size of an IP datagram will effectively let SCTP
3294 * control fragmentation (i.e. the same as setting this option to 0).
3295 *
3296 * The following structure is used to access and modify this parameter:
3297 *
3298 * struct sctp_assoc_value {
3299 * sctp_assoc_t assoc_id;
3300 * uint32_t assoc_value;
3301 * };
3302 *
3303 * assoc_id: This parameter is ignored for one-to-one style sockets.
3304 * For one-to-many style sockets this parameter indicates which
3305 * association the user is performing an action upon. Note that if
3306 * this field's value is zero then the endpoints default value is
3307 * changed (effecting future associations only).
3308 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 */
David S. Millerb7058842009-09-30 16:12:20 -07003310static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311{
Xin Longecca8f82017-11-17 14:11:11 +08003312 struct sctp_sock *sp = sctp_sk(sk);
Wei Yongjune89c2092008-12-25 16:54:58 -08003313 struct sctp_assoc_value params;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 int val;
3316
Wei Yongjune89c2092008-12-25 16:54:58 -08003317 if (optlen == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05003318 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05003319 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05003320 "Use of int in maxseg socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05003321 "Use struct sctp_assoc_value instead\n",
3322 current->comm, task_pid_nr(current));
Wei Yongjune89c2092008-12-25 16:54:58 -08003323 if (copy_from_user(&val, optval, optlen))
3324 return -EFAULT;
Xin Long6fd769b2019-01-28 15:08:27 +08003325 params.assoc_id = SCTP_FUTURE_ASSOC;
Wei Yongjune89c2092008-12-25 16:54:58 -08003326 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3327 if (copy_from_user(&params, optval, optlen))
3328 return -EFAULT;
3329 val = params.assoc_value;
Xin Longecca8f82017-11-17 14:11:11 +08003330 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 return -EINVAL;
Xin Longecca8f82017-11-17 14:11:11 +08003332 }
Wei Yongjune89c2092008-12-25 16:54:58 -08003333
Marcelo Ricardo Leitner439ef032018-04-26 16:59:01 -03003334 asoc = sctp_id2assoc(sk, params.assoc_id);
Xin Long6fd769b2019-01-28 15:08:27 +08003335 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
3336 sctp_style(sk, UDP))
3337 return -EINVAL;
Marcelo Ricardo Leitner439ef032018-04-26 16:59:01 -03003338
Xin Longecca8f82017-11-17 14:11:11 +08003339 if (val) {
3340 int min_len, max_len;
Marcelo Ricardo Leitner439ef032018-04-26 16:59:01 -03003341 __u16 datasize = asoc ? sctp_datachk_len(&asoc->stream) :
3342 sizeof(struct sctp_data_chunk);
Xin Longecca8f82017-11-17 14:11:11 +08003343
Jakub Audykowiczafd0a802018-12-04 20:27:41 +01003344 min_len = sctp_min_frag_point(sp, datasize);
Marcelo Ricardo Leitner439ef032018-04-26 16:59:01 -03003345 max_len = SCTP_MAX_CHUNK_LEN - datasize;
Xin Longecca8f82017-11-17 14:11:11 +08003346
3347 if (val < min_len || val > max_len)
3348 return -EINVAL;
3349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350
Wei Yongjune89c2092008-12-25 16:54:58 -08003351 if (asoc) {
Vlad Yasevichf68b2e02009-09-04 18:21:00 -04003352 asoc->user_frag = val;
Marcelo Ricardo Leitner2f5e3c92018-04-26 16:58:55 -03003353 sctp_assoc_update_frag_point(asoc);
Wei Yongjune89c2092008-12-25 16:54:58 -08003354 } else {
3355 sp->user_frag = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 }
3357
3358 return 0;
3359}
3360
3361
3362/*
3363 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3364 *
3365 * Requests that the peer mark the enclosed address as the association
3366 * primary. The enclosed address must be one of the association's
3367 * locally bound addresses. The following structure is used to make a
3368 * set primary request:
3369 */
3370static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003371 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003373 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 struct sctp_association *asoc = NULL;
3376 struct sctp_setpeerprim prim;
3377 struct sctp_chunk *chunk;
Wei Yongjun40a01032010-12-07 17:11:09 +00003378 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 int err;
3380
3381 sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003383 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 return -EPERM;
3385
3386 if (optlen != sizeof(struct sctp_setpeerprim))
3387 return -EINVAL;
3388
3389 if (copy_from_user(&prim, optval, optlen))
3390 return -EFAULT;
3391
3392 asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003393 if (!asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 return -EINVAL;
3395
3396 if (!asoc->peer.asconf_capable)
3397 return -EPERM;
3398
3399 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
3400 return -EPERM;
3401
3402 if (!sctp_state(asoc, ESTABLISHED))
3403 return -ENOTCONN;
3404
Wei Yongjun40a01032010-12-07 17:11:09 +00003405 af = sctp_get_af_specific(prim.sspp_addr.ss_family);
3406 if (!af)
3407 return -EINVAL;
3408
3409 if (!af->addr_valid((union sctp_addr *)&prim.sspp_addr, sp, NULL))
3410 return -EADDRNOTAVAIL;
3411
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
3413 return -EADDRNOTAVAIL;
3414
Richard Haines2277c7c2018-02-13 20:56:24 +00003415 /* Allow security module to validate address. */
3416 err = security_sctp_bind_connect(sk, SCTP_SET_PEER_PRIMARY_ADDR,
3417 (struct sockaddr *)&prim.sspp_addr,
3418 af->sockaddr_len);
3419 if (err)
3420 return err;
3421
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 /* Create an ASCONF chunk with SET_PRIMARY parameter */
3423 chunk = sctp_make_asconf_set_prim(asoc,
3424 (union sctp_addr *)&prim.sspp_addr);
3425 if (!chunk)
3426 return -ENOMEM;
3427
3428 err = sctp_send_asconf(asoc, chunk);
3429
Daniel Borkmannbb333812013-06-28 19:49:40 +02003430 pr_debug("%s: we set peer primary addr primitively\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431
3432 return err;
3433}
3434
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003435static int sctp_setsockopt_adaptation_layer(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003436 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003438 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003440 if (optlen != sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 return -EINVAL;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003442 if (copy_from_user(&adaptation, optval, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 return -EFAULT;
3444
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003445 sctp_sk(sk)->adaptation_ind = adaptation.ssb_adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446
3447 return 0;
3448}
3449
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003450/*
3451 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
3452 *
3453 * The context field in the sctp_sndrcvinfo structure is normally only
3454 * used when a failed message is retrieved holding the value that was
3455 * sent down on the actual send call. This option allows the setting of
3456 * a default context on an association basis that will be received on
3457 * reading messages from the peer. This is especially helpful in the
3458 * one-2-many model for an application to keep some reference to an
3459 * internal state machine that is processing messages on the
3460 * association. Note that the setting of this value only effects
3461 * received messages from the peer and does not effect the value that is
3462 * saved with outbound messages.
3463 */
3464static int sctp_setsockopt_context(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003465 unsigned int optlen)
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003466{
3467 struct sctp_assoc_value params;
3468 struct sctp_sock *sp;
3469 struct sctp_association *asoc;
3470
3471 if (optlen != sizeof(struct sctp_assoc_value))
3472 return -EINVAL;
3473 if (copy_from_user(&params, optval, optlen))
3474 return -EFAULT;
3475
3476 sp = sctp_sk(sk);
3477
3478 if (params.assoc_id != 0) {
3479 asoc = sctp_id2assoc(sk, params.assoc_id);
3480 if (!asoc)
3481 return -EINVAL;
3482 asoc->default_rcv_context = params.assoc_value;
3483 } else {
3484 sp->default_rcv_context = params.assoc_value;
3485 }
3486
3487 return 0;
3488}
3489
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003490/*
3491 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
3492 *
3493 * This options will at a minimum specify if the implementation is doing
3494 * fragmented interleave. Fragmented interleave, for a one to many
3495 * socket, is when subsequent calls to receive a message may return
3496 * parts of messages from different associations. Some implementations
3497 * may allow you to turn this value on or off. If so, when turned off,
3498 * no fragment interleave will occur (which will cause a head of line
3499 * blocking amongst multiple associations sharing the same one to many
3500 * socket). When this option is turned on, then each receive call may
3501 * come from a different association (thus the user must receive data
3502 * with the extended calls (e.g. sctp_recvmsg) to keep track of which
3503 * association each receive belongs to.
3504 *
3505 * This option takes a boolean value. A non-zero value indicates that
3506 * fragmented interleave is on. A value of zero indicates that
3507 * fragmented interleave is off.
3508 *
3509 * Note that it is important that an implementation that allows this
3510 * option to be turned on, have it off by default. Otherwise an unaware
3511 * application using the one to many model may become confused and act
3512 * incorrectly.
3513 */
3514static int sctp_setsockopt_fragment_interleave(struct sock *sk,
3515 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003516 unsigned int optlen)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003517{
3518 int val;
3519
3520 if (optlen != sizeof(int))
3521 return -EINVAL;
3522 if (get_user(val, (int __user *)optval))
3523 return -EFAULT;
3524
Xin Long772a5862017-12-08 21:03:58 +08003525 sctp_sk(sk)->frag_interleave = !!val;
3526
3527 if (!sctp_sk(sk)->frag_interleave)
3528 sctp_sk(sk)->strm_interleave = 0;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003529
3530 return 0;
3531}
3532
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003533/*
Wei Yongjun8510b932008-12-25 16:59:03 -08003534 * 8.1.21. Set or Get the SCTP Partial Delivery Point
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003535 * (SCTP_PARTIAL_DELIVERY_POINT)
Wei Yongjun8510b932008-12-25 16:59:03 -08003536 *
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003537 * This option will set or get the SCTP partial delivery point. This
3538 * point is the size of a message where the partial delivery API will be
3539 * invoked to help free up rwnd space for the peer. Setting this to a
Wei Yongjun8510b932008-12-25 16:59:03 -08003540 * lower value will cause partial deliveries to happen more often. The
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003541 * calls argument is an integer that sets or gets the partial delivery
Wei Yongjun8510b932008-12-25 16:59:03 -08003542 * point. Note also that the call will fail if the user attempts to set
3543 * this value larger than the socket receive buffer size.
3544 *
3545 * Note that any single message having a length smaller than or equal to
3546 * the SCTP partial delivery point will be delivered in one single read
3547 * call as long as the user provided buffer is large enough to hold the
3548 * message.
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003549 */
3550static int sctp_setsockopt_partial_delivery_point(struct sock *sk,
3551 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003552 unsigned int optlen)
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003553{
3554 u32 val;
3555
3556 if (optlen != sizeof(u32))
3557 return -EINVAL;
3558 if (get_user(val, (int __user *)optval))
3559 return -EFAULT;
3560
Wei Yongjun8510b932008-12-25 16:59:03 -08003561 /* Note: We double the receive buffer from what the user sets
3562 * it to be, also initial rwnd is based on rcvbuf/2.
3563 */
3564 if (val > (sk->sk_rcvbuf >> 1))
3565 return -EINVAL;
3566
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003567 sctp_sk(sk)->pd_point = val;
3568
3569 return 0; /* is this the right error code? */
3570}
3571
Vlad Yasevich70331572007-03-23 11:34:36 -07003572/*
3573 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
3574 *
3575 * This option will allow a user to change the maximum burst of packets
3576 * that can be emitted by this association. Note that the default value
3577 * is 4, and some implementations may restrict this setting so that it
3578 * can only be lowered.
3579 *
3580 * NOTE: This text doesn't seem right. Do this on a socket basis with
3581 * future associations inheriting the socket value.
3582 */
3583static int sctp_setsockopt_maxburst(struct sock *sk,
3584 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003585 unsigned int optlen)
Vlad Yasevich70331572007-03-23 11:34:36 -07003586{
Neil Horman219b99a2008-03-05 13:44:46 -08003587 struct sctp_assoc_value params;
3588 struct sctp_sock *sp;
3589 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07003590 int val;
Neil Horman219b99a2008-03-05 13:44:46 -08003591 int assoc_id = 0;
Vlad Yasevich70331572007-03-23 11:34:36 -07003592
Neil Horman219b99a2008-03-05 13:44:46 -08003593 if (optlen == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05003594 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05003595 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05003596 "Use of int in max_burst socket option deprecated.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05003597 "Use struct sctp_assoc_value instead\n",
3598 current->comm, task_pid_nr(current));
Neil Horman219b99a2008-03-05 13:44:46 -08003599 if (copy_from_user(&val, optval, optlen))
3600 return -EFAULT;
3601 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3602 if (copy_from_user(&params, optval, optlen))
3603 return -EFAULT;
3604 val = params.assoc_value;
3605 assoc_id = params.assoc_id;
3606 } else
3607 return -EINVAL;
3608
3609 sp = sctp_sk(sk);
3610
3611 if (assoc_id != 0) {
3612 asoc = sctp_id2assoc(sk, assoc_id);
3613 if (!asoc)
3614 return -EINVAL;
3615 asoc->max_burst = val;
3616 } else
3617 sp->max_burst = val;
Vlad Yasevich70331572007-03-23 11:34:36 -07003618
3619 return 0;
3620}
3621
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003622/*
3623 * 7.1.18. Add a chunk that must be authenticated (SCTP_AUTH_CHUNK)
3624 *
3625 * This set option adds a chunk type that the user is requesting to be
3626 * received only in an authenticated way. Changes to the list of chunks
3627 * will only effect future associations on the socket.
3628 */
3629static int sctp_setsockopt_auth_chunk(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003630 char __user *optval,
3631 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003632{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003633 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003634 struct sctp_authchunk val;
3635
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003636 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003637 return -EACCES;
3638
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003639 if (optlen != sizeof(struct sctp_authchunk))
3640 return -EINVAL;
3641 if (copy_from_user(&val, optval, optlen))
3642 return -EFAULT;
3643
3644 switch (val.sauth_chunk) {
Joe Perches7fd71b12011-07-01 09:43:11 +00003645 case SCTP_CID_INIT:
3646 case SCTP_CID_INIT_ACK:
3647 case SCTP_CID_SHUTDOWN_COMPLETE:
3648 case SCTP_CID_AUTH:
3649 return -EINVAL;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003650 }
3651
3652 /* add this chunk id to the endpoint */
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003653 return sctp_auth_ep_add_chunkid(ep, val.sauth_chunk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003654}
3655
3656/*
3657 * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
3658 *
3659 * This option gets or sets the list of HMAC algorithms that the local
3660 * endpoint requires the peer to use.
3661 */
3662static int sctp_setsockopt_hmac_ident(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003663 char __user *optval,
3664 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003665{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003666 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003667 struct sctp_hmacalgo *hmacs;
Vlad Yasevichd9724052008-08-27 16:09:49 -07003668 u32 idents;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003669 int err;
3670
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003671 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003672 return -EACCES;
3673
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003674 if (optlen < sizeof(struct sctp_hmacalgo))
3675 return -EINVAL;
Marcelo Ricardo Leitner5960cef2018-01-08 19:02:28 -02003676 optlen = min_t(unsigned int, optlen, sizeof(struct sctp_hmacalgo) +
3677 SCTP_AUTH_NUM_HMACS * sizeof(u16));
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003678
wangweidongcb3f8372013-12-23 12:16:50 +08003679 hmacs = memdup_user(optval, optlen);
Shan Wei934253a2011-04-18 19:13:18 +00003680 if (IS_ERR(hmacs))
3681 return PTR_ERR(hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003682
Vlad Yasevichd9724052008-08-27 16:09:49 -07003683 idents = hmacs->shmac_num_idents;
3684 if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS ||
3685 (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo))) {
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003686 err = -EINVAL;
3687 goto out;
3688 }
3689
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003690 err = sctp_auth_ep_set_hmacs(ep, hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003691out:
3692 kfree(hmacs);
3693 return err;
3694}
3695
3696/*
3697 * 7.1.20. Set a shared key (SCTP_AUTH_KEY)
3698 *
3699 * This option will set a shared secret key which is used to build an
3700 * association shared key.
3701 */
3702static int sctp_setsockopt_auth_key(struct sock *sk,
3703 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003704 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003705{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003706 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003707 struct sctp_authkey *authkey;
3708 struct sctp_association *asoc;
3709 int ret;
3710
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003711 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003712 return -EACCES;
3713
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003714 if (optlen <= sizeof(struct sctp_authkey))
3715 return -EINVAL;
Marcelo Ricardo Leitner5960cef2018-01-08 19:02:28 -02003716 /* authkey->sca_keylength is u16, so optlen can't be bigger than
3717 * this.
3718 */
3719 optlen = min_t(unsigned int, optlen, USHRT_MAX +
3720 sizeof(struct sctp_authkey));
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003721
wangweidongcb3f8372013-12-23 12:16:50 +08003722 authkey = memdup_user(optval, optlen);
Shan Wei934253a2011-04-18 19:13:18 +00003723 if (IS_ERR(authkey))
3724 return PTR_ERR(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003725
Vlad Yasevich328fc472008-08-27 16:08:54 -07003726 if (authkey->sca_keylength > optlen - sizeof(struct sctp_authkey)) {
Vlad Yasevich30c22352008-08-25 15:16:19 -07003727 ret = -EINVAL;
3728 goto out;
3729 }
3730
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003731 asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
3732 if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) {
3733 ret = -EINVAL;
3734 goto out;
3735 }
3736
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003737 ret = sctp_auth_set_key(ep, asoc, authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003738out:
Daniel Borkmann6ba542a2013-02-08 03:04:34 +00003739 kzfree(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003740 return ret;
3741}
3742
3743/*
3744 * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
3745 *
3746 * This option will get or set the active shared key to be used to build
3747 * the association shared key.
3748 */
3749static int sctp_setsockopt_active_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003750 char __user *optval,
3751 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003752{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003753 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003754 struct sctp_authkeyid val;
3755 struct sctp_association *asoc;
3756
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003757 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003758 return -EACCES;
3759
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003760 if (optlen != sizeof(struct sctp_authkeyid))
3761 return -EINVAL;
3762 if (copy_from_user(&val, optval, optlen))
3763 return -EFAULT;
3764
3765 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3766 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3767 return -EINVAL;
3768
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003769 return sctp_auth_set_active_key(ep, asoc, val.scact_keynumber);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003770}
3771
3772/*
3773 * 7.1.22. Delete a shared key (SCTP_AUTH_DELETE_KEY)
3774 *
3775 * This set option will delete a shared secret key from use.
3776 */
3777static int sctp_setsockopt_del_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003778 char __user *optval,
3779 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003780{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003781 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003782 struct sctp_authkeyid val;
3783 struct sctp_association *asoc;
3784
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003785 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003786 return -EACCES;
3787
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003788 if (optlen != sizeof(struct sctp_authkeyid))
3789 return -EINVAL;
3790 if (copy_from_user(&val, optval, optlen))
3791 return -EFAULT;
3792
3793 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3794 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3795 return -EINVAL;
3796
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003797 return sctp_auth_del_key_id(ep, asoc, val.scact_keynumber);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003798
3799}
3800
Michio Honda7dc04d72011-04-26 20:16:31 +09003801/*
Xin Long601590e2018-03-14 19:05:32 +08003802 * 8.3.4 Deactivate a Shared Key (SCTP_AUTH_DEACTIVATE_KEY)
3803 *
3804 * This set option will deactivate a shared secret key.
3805 */
3806static int sctp_setsockopt_deactivate_key(struct sock *sk, char __user *optval,
3807 unsigned int optlen)
3808{
3809 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3810 struct sctp_authkeyid val;
3811 struct sctp_association *asoc;
3812
3813 if (!ep->auth_enable)
3814 return -EACCES;
3815
3816 if (optlen != sizeof(struct sctp_authkeyid))
3817 return -EINVAL;
3818 if (copy_from_user(&val, optval, optlen))
3819 return -EFAULT;
3820
3821 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3822 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3823 return -EINVAL;
3824
3825 return sctp_auth_deact_key_id(ep, asoc, val.scact_keynumber);
3826}
3827
3828/*
Michio Honda7dc04d72011-04-26 20:16:31 +09003829 * 8.1.23 SCTP_AUTO_ASCONF
3830 *
3831 * This option will enable or disable the use of the automatic generation of
3832 * ASCONF chunks to add and delete addresses to an existing association. Note
3833 * that this option has two caveats namely: a) it only affects sockets that
3834 * are bound to all addresses available to the SCTP stack, and b) the system
3835 * administrator may have an overriding control that turns the ASCONF feature
3836 * off no matter what setting the socket option may have.
3837 * This option expects an integer boolean flag, where a non-zero value turns on
3838 * the option, and a zero value turns off the option.
3839 * Note. In this implementation, socket operation overrides default parameter
3840 * being set by sysctl as well as FreeBSD implementation
3841 */
3842static int sctp_setsockopt_auto_asconf(struct sock *sk, char __user *optval,
3843 unsigned int optlen)
3844{
3845 int val;
3846 struct sctp_sock *sp = sctp_sk(sk);
3847
3848 if (optlen < sizeof(int))
3849 return -EINVAL;
3850 if (get_user(val, (int __user *)optval))
3851 return -EFAULT;
3852 if (!sctp_is_ep_boundall(sk) && val)
3853 return -EINVAL;
3854 if ((val && sp->do_auto_asconf) || (!val && !sp->do_auto_asconf))
3855 return 0;
3856
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03003857 spin_lock_bh(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda7dc04d72011-04-26 20:16:31 +09003858 if (val == 0 && sp->do_auto_asconf) {
3859 list_del(&sp->auto_asconf_list);
3860 sp->do_auto_asconf = 0;
3861 } else if (val && !sp->do_auto_asconf) {
3862 list_add_tail(&sp->auto_asconf_list,
Eric W. Biederman4db67e82012-08-06 08:42:04 +00003863 &sock_net(sk)->sctp.auto_asconf_splist);
Michio Honda7dc04d72011-04-26 20:16:31 +09003864 sp->do_auto_asconf = 1;
3865 }
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03003866 spin_unlock_bh(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda7dc04d72011-04-26 20:16:31 +09003867 return 0;
3868}
3869
Neil Horman5aa93bc2012-07-21 07:56:07 +00003870/*
3871 * SCTP_PEER_ADDR_THLDS
3872 *
3873 * This option allows us to alter the partially failed threshold for one or all
3874 * transports in an association. See Section 6.1 of:
3875 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
3876 */
3877static int sctp_setsockopt_paddr_thresholds(struct sock *sk,
3878 char __user *optval,
3879 unsigned int optlen)
3880{
3881 struct sctp_paddrthlds val;
3882 struct sctp_transport *trans;
3883 struct sctp_association *asoc;
3884
3885 if (optlen < sizeof(struct sctp_paddrthlds))
3886 return -EINVAL;
3887 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval,
3888 sizeof(struct sctp_paddrthlds)))
3889 return -EFAULT;
3890
Xin Long8add5432019-01-28 15:08:29 +08003891 if (!sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
3892 trans = sctp_addr_id2transport(sk, &val.spt_address,
3893 val.spt_assoc_id);
3894 if (!trans)
Neil Horman5aa93bc2012-07-21 07:56:07 +00003895 return -ENOENT;
Xin Long8add5432019-01-28 15:08:29 +08003896
3897 if (val.spt_pathmaxrxt)
3898 trans->pathmaxrxt = val.spt_pathmaxrxt;
3899 trans->pf_retrans = val.spt_pathpfthld;
3900
3901 return 0;
3902 }
3903
3904 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
3905 if (!asoc && val.spt_assoc_id != SCTP_FUTURE_ASSOC &&
3906 sctp_style(sk, UDP))
3907 return -EINVAL;
3908
3909 if (asoc) {
Neil Horman5aa93bc2012-07-21 07:56:07 +00003910 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
3911 transports) {
3912 if (val.spt_pathmaxrxt)
3913 trans->pathmaxrxt = val.spt_pathmaxrxt;
3914 trans->pf_retrans = val.spt_pathpfthld;
3915 }
3916
3917 if (val.spt_pathmaxrxt)
3918 asoc->pathmaxrxt = val.spt_pathmaxrxt;
3919 asoc->pf_retrans = val.spt_pathpfthld;
3920 } else {
Xin Long8add5432019-01-28 15:08:29 +08003921 struct sctp_sock *sp = sctp_sk(sk);
Neil Horman5aa93bc2012-07-21 07:56:07 +00003922
3923 if (val.spt_pathmaxrxt)
Xin Long8add5432019-01-28 15:08:29 +08003924 sp->pathmaxrxt = val.spt_pathmaxrxt;
3925 sp->pf_retrans = val.spt_pathpfthld;
Neil Horman5aa93bc2012-07-21 07:56:07 +00003926 }
3927
3928 return 0;
3929}
3930
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02003931static int sctp_setsockopt_recvrcvinfo(struct sock *sk,
3932 char __user *optval,
3933 unsigned int optlen)
3934{
3935 int val;
3936
3937 if (optlen < sizeof(int))
3938 return -EINVAL;
3939 if (get_user(val, (int __user *) optval))
3940 return -EFAULT;
3941
3942 sctp_sk(sk)->recvrcvinfo = (val == 0) ? 0 : 1;
3943
3944 return 0;
3945}
3946
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02003947static int sctp_setsockopt_recvnxtinfo(struct sock *sk,
3948 char __user *optval,
3949 unsigned int optlen)
3950{
3951 int val;
3952
3953 if (optlen < sizeof(int))
3954 return -EINVAL;
3955 if (get_user(val, (int __user *) optval))
3956 return -EFAULT;
3957
3958 sctp_sk(sk)->recvnxtinfo = (val == 0) ? 0 : 1;
3959
3960 return 0;
3961}
3962
Xin Long28aa4c22016-07-09 19:47:40 +08003963static int sctp_setsockopt_pr_supported(struct sock *sk,
3964 char __user *optval,
3965 unsigned int optlen)
3966{
3967 struct sctp_assoc_value params;
Xin Longfb195602019-01-28 15:08:30 +08003968 struct sctp_association *asoc;
Xin Long28aa4c22016-07-09 19:47:40 +08003969
3970 if (optlen != sizeof(params))
Xin Longcc3ccf22018-11-18 15:21:53 +08003971 return -EINVAL;
Xin Long28aa4c22016-07-09 19:47:40 +08003972
Xin Longcc3ccf22018-11-18 15:21:53 +08003973 if (copy_from_user(&params, optval, optlen))
3974 return -EFAULT;
Xin Long28aa4c22016-07-09 19:47:40 +08003975
Xin Longfb195602019-01-28 15:08:30 +08003976 asoc = sctp_id2assoc(sk, params.assoc_id);
3977 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
3978 sctp_style(sk, UDP))
3979 return -EINVAL;
3980
Xin Longcc3ccf22018-11-18 15:21:53 +08003981 sctp_sk(sk)->ep->prsctp_enable = !!params.assoc_value;
Xin Long28aa4c22016-07-09 19:47:40 +08003982
Xin Longcc3ccf22018-11-18 15:21:53 +08003983 return 0;
Xin Long28aa4c22016-07-09 19:47:40 +08003984}
3985
Xin Longf959fb42016-07-09 19:47:41 +08003986static int sctp_setsockopt_default_prinfo(struct sock *sk,
3987 char __user *optval,
3988 unsigned int optlen)
3989{
3990 struct sctp_default_prinfo info;
3991 struct sctp_association *asoc;
3992 int retval = -EINVAL;
3993
3994 if (optlen != sizeof(info))
3995 goto out;
3996
3997 if (copy_from_user(&info, optval, sizeof(info))) {
3998 retval = -EFAULT;
3999 goto out;
4000 }
4001
4002 if (info.pr_policy & ~SCTP_PR_SCTP_MASK)
4003 goto out;
4004
4005 if (info.pr_policy == SCTP_PR_SCTP_NONE)
4006 info.pr_value = 0;
4007
4008 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
4009 if (asoc) {
4010 SCTP_PR_SET_POLICY(asoc->default_flags, info.pr_policy);
4011 asoc->default_timetolive = info.pr_value;
4012 } else if (!info.pr_assoc_id) {
4013 struct sctp_sock *sp = sctp_sk(sk);
4014
4015 SCTP_PR_SET_POLICY(sp->default_flags, info.pr_policy);
4016 sp->default_timetolive = info.pr_value;
4017 } else {
4018 goto out;
4019 }
4020
4021 retval = 0;
4022
4023out:
4024 return retval;
4025}
4026
Xin Longc0d8bab2017-03-10 12:11:12 +08004027static int sctp_setsockopt_reconfig_supported(struct sock *sk,
4028 char __user *optval,
4029 unsigned int optlen)
4030{
4031 struct sctp_assoc_value params;
4032 struct sctp_association *asoc;
4033 int retval = -EINVAL;
4034
4035 if (optlen != sizeof(params))
4036 goto out;
4037
4038 if (copy_from_user(&params, optval, optlen)) {
4039 retval = -EFAULT;
4040 goto out;
4041 }
4042
4043 asoc = sctp_id2assoc(sk, params.assoc_id);
Xin Longacce7f32019-01-28 15:08:31 +08004044 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
4045 sctp_style(sk, UDP))
Xin Longc0d8bab2017-03-10 12:11:12 +08004046 goto out;
Xin Longacce7f32019-01-28 15:08:31 +08004047
4048 if (asoc)
4049 asoc->reconf_enable = !!params.assoc_value;
4050 else
4051 sctp_sk(sk)->ep->reconf_enable = !!params.assoc_value;
Xin Longc0d8bab2017-03-10 12:11:12 +08004052
4053 retval = 0;
4054
4055out:
4056 return retval;
4057}
4058
Xin Long9fb657a2017-01-18 00:44:46 +08004059static int sctp_setsockopt_enable_strreset(struct sock *sk,
4060 char __user *optval,
4061 unsigned int optlen)
4062{
4063 struct sctp_assoc_value params;
4064 struct sctp_association *asoc;
4065 int retval = -EINVAL;
4066
4067 if (optlen != sizeof(params))
4068 goto out;
4069
4070 if (copy_from_user(&params, optval, optlen)) {
4071 retval = -EFAULT;
4072 goto out;
4073 }
4074
4075 if (params.assoc_value & (~SCTP_ENABLE_STRRESET_MASK))
4076 goto out;
4077
4078 asoc = sctp_id2assoc(sk, params.assoc_id);
4079 if (asoc) {
4080 asoc->strreset_enable = params.assoc_value;
4081 } else if (!params.assoc_id) {
4082 struct sctp_sock *sp = sctp_sk(sk);
4083
4084 sp->ep->strreset_enable = params.assoc_value;
4085 } else {
4086 goto out;
4087 }
4088
4089 retval = 0;
4090
4091out:
4092 return retval;
4093}
4094
Xin Long7f9d68a2017-01-18 00:44:47 +08004095static int sctp_setsockopt_reset_streams(struct sock *sk,
4096 char __user *optval,
4097 unsigned int optlen)
4098{
4099 struct sctp_reset_streams *params;
4100 struct sctp_association *asoc;
4101 int retval = -EINVAL;
4102
Xin Long2342b8d2017-12-10 15:40:51 +08004103 if (optlen < sizeof(*params))
Xin Long7f9d68a2017-01-18 00:44:47 +08004104 return -EINVAL;
Marcelo Ricardo Leitner5960cef2018-01-08 19:02:28 -02004105 /* srs_number_streams is u16, so optlen can't be bigger than this. */
4106 optlen = min_t(unsigned int, optlen, USHRT_MAX +
4107 sizeof(__u16) * sizeof(*params));
Xin Long7f9d68a2017-01-18 00:44:47 +08004108
4109 params = memdup_user(optval, optlen);
4110 if (IS_ERR(params))
4111 return PTR_ERR(params);
4112
Xin Long2342b8d2017-12-10 15:40:51 +08004113 if (params->srs_number_streams * sizeof(__u16) >
4114 optlen - sizeof(*params))
4115 goto out;
4116
Xin Long7f9d68a2017-01-18 00:44:47 +08004117 asoc = sctp_id2assoc(sk, params->srs_assoc_id);
4118 if (!asoc)
4119 goto out;
4120
4121 retval = sctp_send_reset_streams(asoc, params);
4122
4123out:
4124 kfree(params);
4125 return retval;
4126}
4127
Xin Longa92ce1a2017-02-09 01:18:18 +08004128static int sctp_setsockopt_reset_assoc(struct sock *sk,
4129 char __user *optval,
4130 unsigned int optlen)
4131{
4132 struct sctp_association *asoc;
4133 sctp_assoc_t associd;
4134 int retval = -EINVAL;
4135
4136 if (optlen != sizeof(associd))
4137 goto out;
4138
4139 if (copy_from_user(&associd, optval, optlen)) {
4140 retval = -EFAULT;
4141 goto out;
4142 }
4143
4144 asoc = sctp_id2assoc(sk, associd);
4145 if (!asoc)
4146 goto out;
4147
4148 retval = sctp_send_reset_assoc(asoc);
4149
4150out:
4151 return retval;
4152}
4153
Xin Long242bd2d2017-02-09 01:18:20 +08004154static int sctp_setsockopt_add_streams(struct sock *sk,
4155 char __user *optval,
4156 unsigned int optlen)
4157{
4158 struct sctp_association *asoc;
4159 struct sctp_add_streams params;
4160 int retval = -EINVAL;
4161
4162 if (optlen != sizeof(params))
4163 goto out;
4164
4165 if (copy_from_user(&params, optval, optlen)) {
4166 retval = -EFAULT;
4167 goto out;
4168 }
4169
4170 asoc = sctp_id2assoc(sk, params.sas_assoc_id);
4171 if (!asoc)
4172 goto out;
4173
4174 retval = sctp_send_add_streams(asoc, &params);
4175
4176out:
4177 return retval;
4178}
4179
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004180static int sctp_setsockopt_scheduler(struct sock *sk,
4181 char __user *optval,
4182 unsigned int optlen)
4183{
4184 struct sctp_association *asoc;
4185 struct sctp_assoc_value params;
4186 int retval = -EINVAL;
4187
4188 if (optlen < sizeof(params))
4189 goto out;
4190
4191 optlen = sizeof(params);
4192 if (copy_from_user(&params, optval, optlen)) {
4193 retval = -EFAULT;
4194 goto out;
4195 }
4196
4197 if (params.assoc_value > SCTP_SS_MAX)
4198 goto out;
4199
4200 asoc = sctp_id2assoc(sk, params.assoc_id);
4201 if (!asoc)
4202 goto out;
4203
4204 retval = sctp_sched_set_sched(asoc, params.assoc_value);
4205
4206out:
4207 return retval;
4208}
4209
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004210static int sctp_setsockopt_scheduler_value(struct sock *sk,
4211 char __user *optval,
4212 unsigned int optlen)
4213{
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004214 struct sctp_stream_value params;
Xin Longe7f28242019-01-28 15:08:33 +08004215 struct sctp_association *asoc;
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004216 int retval = -EINVAL;
4217
4218 if (optlen < sizeof(params))
4219 goto out;
4220
4221 optlen = sizeof(params);
4222 if (copy_from_user(&params, optval, optlen)) {
4223 retval = -EFAULT;
4224 goto out;
4225 }
4226
4227 asoc = sctp_id2assoc(sk, params.assoc_id);
Xin Longe7f28242019-01-28 15:08:33 +08004228 if (!asoc && params.assoc_id != SCTP_CURRENT_ASSOC &&
4229 sctp_style(sk, UDP))
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004230 goto out;
4231
Xin Longe7f28242019-01-28 15:08:33 +08004232 if (asoc) {
4233 retval = sctp_sched_set_value(asoc, params.stream_id,
4234 params.stream_value, GFP_KERNEL);
4235 goto out;
4236 }
4237
4238 retval = 0;
4239
4240 list_for_each_entry(asoc, &sctp_sk(sk)->ep->asocs, asocs) {
4241 int ret = sctp_sched_set_value(asoc, params.stream_id,
4242 params.stream_value, GFP_KERNEL);
4243 if (ret && !retval) /* try to return the 1st error. */
4244 retval = ret;
4245 }
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004246
4247out:
4248 return retval;
4249}
4250
Xin Long772a5862017-12-08 21:03:58 +08004251static int sctp_setsockopt_interleaving_supported(struct sock *sk,
4252 char __user *optval,
4253 unsigned int optlen)
4254{
4255 struct sctp_sock *sp = sctp_sk(sk);
Xin Long772a5862017-12-08 21:03:58 +08004256 struct sctp_assoc_value params;
Xin Long2e7709d2019-01-28 15:08:32 +08004257 struct sctp_association *asoc;
Xin Long772a5862017-12-08 21:03:58 +08004258 int retval = -EINVAL;
4259
4260 if (optlen < sizeof(params))
4261 goto out;
4262
4263 optlen = sizeof(params);
4264 if (copy_from_user(&params, optval, optlen)) {
4265 retval = -EFAULT;
4266 goto out;
4267 }
4268
Xin Long2e7709d2019-01-28 15:08:32 +08004269 asoc = sctp_id2assoc(sk, params.assoc_id);
4270 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
4271 sctp_style(sk, UDP))
Xin Long772a5862017-12-08 21:03:58 +08004272 goto out;
4273
Xin Long2e7709d2019-01-28 15:08:32 +08004274 if (!sock_net(sk)->sctp.intl_enable || !sp->frag_interleave) {
Xin Long772a5862017-12-08 21:03:58 +08004275 retval = -EPERM;
4276 goto out;
4277 }
4278
4279 sp->strm_interleave = !!params.assoc_value;
4280
4281 retval = 0;
4282
4283out:
4284 return retval;
4285}
4286
Xin Longb0e9a2f2018-06-28 15:31:00 +08004287static int sctp_setsockopt_reuse_port(struct sock *sk, char __user *optval,
4288 unsigned int optlen)
4289{
4290 int val;
4291
4292 if (!sctp_style(sk, TCP))
4293 return -EOPNOTSUPP;
4294
4295 if (sctp_sk(sk)->ep->base.bind_addr.port)
4296 return -EFAULT;
4297
4298 if (optlen < sizeof(int))
4299 return -EINVAL;
4300
4301 if (get_user(val, (int __user *)optval))
4302 return -EFAULT;
4303
4304 sctp_sk(sk)->reuse = !!val;
4305
4306 return 0;
4307}
4308
Xin Long480ba9c2018-11-18 16:08:54 +08004309static int sctp_setsockopt_event(struct sock *sk, char __user *optval,
4310 unsigned int optlen)
4311{
4312 struct sctp_association *asoc;
4313 struct sctp_ulpevent *event;
4314 struct sctp_event param;
4315 int retval = 0;
4316
4317 if (optlen < sizeof(param)) {
4318 retval = -EINVAL;
4319 goto out;
4320 }
4321
4322 optlen = sizeof(param);
4323 if (copy_from_user(&param, optval, optlen)) {
4324 retval = -EFAULT;
4325 goto out;
4326 }
4327
4328 if (param.se_type < SCTP_SN_TYPE_BASE ||
4329 param.se_type > SCTP_SN_TYPE_MAX) {
4330 retval = -EINVAL;
4331 goto out;
4332 }
4333
4334 asoc = sctp_id2assoc(sk, param.se_assoc_id);
4335 if (!asoc) {
4336 sctp_ulpevent_type_set(&sctp_sk(sk)->subscribe,
4337 param.se_type, param.se_on);
4338 goto out;
4339 }
4340
4341 sctp_ulpevent_type_set(&asoc->subscribe, param.se_type, param.se_on);
4342
4343 if (param.se_type == SCTP_SENDER_DRY_EVENT && param.se_on) {
4344 if (sctp_outq_is_empty(&asoc->outqueue)) {
4345 event = sctp_ulpevent_make_sender_dry_event(asoc,
4346 GFP_USER | __GFP_NOWARN);
4347 if (!event) {
4348 retval = -ENOMEM;
4349 goto out;
4350 }
4351
4352 asoc->stream.si->enqueue_event(&asoc->ulpq, event);
4353 }
4354 }
4355
4356out:
4357 return retval;
4358}
4359
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360/* API 6.2 setsockopt(), getsockopt()
4361 *
4362 * Applications use setsockopt() and getsockopt() to set or retrieve
4363 * socket options. Socket options are used to change the default
4364 * behavior of sockets calls. They are described in Section 7.
4365 *
4366 * The syntax is:
4367 *
4368 * ret = getsockopt(int sd, int level, int optname, void __user *optval,
4369 * int __user *optlen);
4370 * ret = setsockopt(int sd, int level, int optname, const void __user *optval,
4371 * int optlen);
4372 *
4373 * sd - the socket descript.
4374 * level - set to IPPROTO_SCTP for all SCTP options.
4375 * optname - the option name.
4376 * optval - the buffer to store the value of the option.
4377 * optlen - the size of the buffer.
4378 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004379static int sctp_setsockopt(struct sock *sk, int level, int optname,
4380 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381{
4382 int retval = 0;
4383
Daniel Borkmannbb333812013-06-28 19:49:40 +02004384 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385
4386 /* I can hardly begin to describe how wrong this is. This is
4387 * so broken as to be worse than useless. The API draft
4388 * REALLY is NOT helpful here... I am not convinced that the
4389 * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
4390 * are at all well-founded.
4391 */
4392 if (level != SOL_SCTP) {
4393 struct sctp_af *af = sctp_sk(sk)->pf->af;
4394 retval = af->setsockopt(sk, level, optname, optval, optlen);
4395 goto out_nounlock;
4396 }
4397
wangweidong048ed4b2014-01-21 15:44:11 +08004398 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399
4400 switch (optname) {
4401 case SCTP_SOCKOPT_BINDX_ADD:
4402 /* 'optlen' is the size of the addresses buffer. */
4403 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
4404 optlen, SCTP_BINDX_ADD_ADDR);
4405 break;
4406
4407 case SCTP_SOCKOPT_BINDX_REM:
4408 /* 'optlen' is the size of the addresses buffer. */
4409 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
4410 optlen, SCTP_BINDX_REM_ADDR);
4411 break;
4412
Vlad Yasevich88a0a942008-05-09 15:14:11 -07004413 case SCTP_SOCKOPT_CONNECTX_OLD:
4414 /* 'optlen' is the size of the addresses buffer. */
4415 retval = sctp_setsockopt_connectx_old(sk,
4416 (struct sockaddr __user *)optval,
4417 optlen);
4418 break;
4419
Frank Filz3f7a87d2005-06-20 13:14:57 -07004420 case SCTP_SOCKOPT_CONNECTX:
4421 /* 'optlen' is the size of the addresses buffer. */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07004422 retval = sctp_setsockopt_connectx(sk,
4423 (struct sockaddr __user *)optval,
4424 optlen);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004425 break;
4426
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427 case SCTP_DISABLE_FRAGMENTS:
4428 retval = sctp_setsockopt_disable_fragments(sk, optval, optlen);
4429 break;
4430
4431 case SCTP_EVENTS:
4432 retval = sctp_setsockopt_events(sk, optval, optlen);
4433 break;
4434
4435 case SCTP_AUTOCLOSE:
4436 retval = sctp_setsockopt_autoclose(sk, optval, optlen);
4437 break;
4438
4439 case SCTP_PEER_ADDR_PARAMS:
4440 retval = sctp_setsockopt_peer_addr_params(sk, optval, optlen);
4441 break;
4442
Shan Wei4580ccc2011-01-18 22:39:00 +00004443 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07004444 retval = sctp_setsockopt_delayed_ack(sk, optval, optlen);
Frank Filz77086102005-12-22 11:37:30 -08004445 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07004446 case SCTP_PARTIAL_DELIVERY_POINT:
4447 retval = sctp_setsockopt_partial_delivery_point(sk, optval, optlen);
4448 break;
Frank Filz77086102005-12-22 11:37:30 -08004449
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450 case SCTP_INITMSG:
4451 retval = sctp_setsockopt_initmsg(sk, optval, optlen);
4452 break;
4453 case SCTP_DEFAULT_SEND_PARAM:
4454 retval = sctp_setsockopt_default_send_param(sk, optval,
4455 optlen);
4456 break;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02004457 case SCTP_DEFAULT_SNDINFO:
4458 retval = sctp_setsockopt_default_sndinfo(sk, optval, optlen);
4459 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460 case SCTP_PRIMARY_ADDR:
4461 retval = sctp_setsockopt_primary_addr(sk, optval, optlen);
4462 break;
4463 case SCTP_SET_PEER_PRIMARY_ADDR:
4464 retval = sctp_setsockopt_peer_primary_addr(sk, optval, optlen);
4465 break;
4466 case SCTP_NODELAY:
4467 retval = sctp_setsockopt_nodelay(sk, optval, optlen);
4468 break;
4469 case SCTP_RTOINFO:
4470 retval = sctp_setsockopt_rtoinfo(sk, optval, optlen);
4471 break;
4472 case SCTP_ASSOCINFO:
4473 retval = sctp_setsockopt_associnfo(sk, optval, optlen);
4474 break;
4475 case SCTP_I_WANT_MAPPED_V4_ADDR:
4476 retval = sctp_setsockopt_mappedv4(sk, optval, optlen);
4477 break;
4478 case SCTP_MAXSEG:
4479 retval = sctp_setsockopt_maxseg(sk, optval, optlen);
4480 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004481 case SCTP_ADAPTATION_LAYER:
4482 retval = sctp_setsockopt_adaptation_layer(sk, optval, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004484 case SCTP_CONTEXT:
4485 retval = sctp_setsockopt_context(sk, optval, optlen);
4486 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004487 case SCTP_FRAGMENT_INTERLEAVE:
4488 retval = sctp_setsockopt_fragment_interleave(sk, optval, optlen);
4489 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07004490 case SCTP_MAX_BURST:
4491 retval = sctp_setsockopt_maxburst(sk, optval, optlen);
4492 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07004493 case SCTP_AUTH_CHUNK:
4494 retval = sctp_setsockopt_auth_chunk(sk, optval, optlen);
4495 break;
4496 case SCTP_HMAC_IDENT:
4497 retval = sctp_setsockopt_hmac_ident(sk, optval, optlen);
4498 break;
4499 case SCTP_AUTH_KEY:
4500 retval = sctp_setsockopt_auth_key(sk, optval, optlen);
4501 break;
4502 case SCTP_AUTH_ACTIVE_KEY:
4503 retval = sctp_setsockopt_active_key(sk, optval, optlen);
4504 break;
4505 case SCTP_AUTH_DELETE_KEY:
4506 retval = sctp_setsockopt_del_key(sk, optval, optlen);
4507 break;
Xin Long601590e2018-03-14 19:05:32 +08004508 case SCTP_AUTH_DEACTIVATE_KEY:
4509 retval = sctp_setsockopt_deactivate_key(sk, optval, optlen);
4510 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09004511 case SCTP_AUTO_ASCONF:
4512 retval = sctp_setsockopt_auto_asconf(sk, optval, optlen);
4513 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00004514 case SCTP_PEER_ADDR_THLDS:
4515 retval = sctp_setsockopt_paddr_thresholds(sk, optval, optlen);
4516 break;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004517 case SCTP_RECVRCVINFO:
4518 retval = sctp_setsockopt_recvrcvinfo(sk, optval, optlen);
4519 break;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02004520 case SCTP_RECVNXTINFO:
4521 retval = sctp_setsockopt_recvnxtinfo(sk, optval, optlen);
4522 break;
Xin Long28aa4c22016-07-09 19:47:40 +08004523 case SCTP_PR_SUPPORTED:
4524 retval = sctp_setsockopt_pr_supported(sk, optval, optlen);
4525 break;
Xin Longf959fb42016-07-09 19:47:41 +08004526 case SCTP_DEFAULT_PRINFO:
4527 retval = sctp_setsockopt_default_prinfo(sk, optval, optlen);
4528 break;
Xin Longc0d8bab2017-03-10 12:11:12 +08004529 case SCTP_RECONFIG_SUPPORTED:
4530 retval = sctp_setsockopt_reconfig_supported(sk, optval, optlen);
4531 break;
Xin Long9fb657a2017-01-18 00:44:46 +08004532 case SCTP_ENABLE_STREAM_RESET:
4533 retval = sctp_setsockopt_enable_strreset(sk, optval, optlen);
4534 break;
Xin Long7f9d68a2017-01-18 00:44:47 +08004535 case SCTP_RESET_STREAMS:
4536 retval = sctp_setsockopt_reset_streams(sk, optval, optlen);
4537 break;
Xin Longa92ce1a2017-02-09 01:18:18 +08004538 case SCTP_RESET_ASSOC:
4539 retval = sctp_setsockopt_reset_assoc(sk, optval, optlen);
4540 break;
Xin Long242bd2d2017-02-09 01:18:20 +08004541 case SCTP_ADD_STREAMS:
4542 retval = sctp_setsockopt_add_streams(sk, optval, optlen);
4543 break;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004544 case SCTP_STREAM_SCHEDULER:
4545 retval = sctp_setsockopt_scheduler(sk, optval, optlen);
4546 break;
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004547 case SCTP_STREAM_SCHEDULER_VALUE:
4548 retval = sctp_setsockopt_scheduler_value(sk, optval, optlen);
4549 break;
Xin Long772a5862017-12-08 21:03:58 +08004550 case SCTP_INTERLEAVING_SUPPORTED:
4551 retval = sctp_setsockopt_interleaving_supported(sk, optval,
4552 optlen);
4553 break;
Xin Longb0e9a2f2018-06-28 15:31:00 +08004554 case SCTP_REUSE_PORT:
4555 retval = sctp_setsockopt_reuse_port(sk, optval, optlen);
4556 break;
Xin Long480ba9c2018-11-18 16:08:54 +08004557 case SCTP_EVENT:
4558 retval = sctp_setsockopt_event(sk, optval, optlen);
4559 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560 default:
4561 retval = -ENOPROTOOPT;
4562 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07004563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564
wangweidong048ed4b2014-01-21 15:44:11 +08004565 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566
4567out_nounlock:
4568 return retval;
4569}
4570
4571/* API 3.1.6 connect() - UDP Style Syntax
4572 *
4573 * An application may use the connect() call in the UDP model to initiate an
4574 * association without sending data.
4575 *
4576 * The syntax is:
4577 *
4578 * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
4579 *
4580 * sd: the socket descriptor to have a new association added to.
4581 *
4582 * nam: the address structure (either struct sockaddr_in or struct
4583 * sockaddr_in6 defined in RFC2553 [7]).
4584 *
4585 * len: the size of the address.
4586 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004587static int sctp_connect(struct sock *sk, struct sockaddr *addr,
Xin Long644fbde2018-05-20 16:39:10 +08004588 int addr_len, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589{
Xin Long644fbde2018-05-20 16:39:10 +08004590 struct inet_sock *inet = inet_sk(sk);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004591 struct sctp_af *af;
Xin Long644fbde2018-05-20 16:39:10 +08004592 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593
wangweidong048ed4b2014-01-21 15:44:11 +08004594 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595
Daniel Borkmannbb333812013-06-28 19:49:40 +02004596 pr_debug("%s: sk:%p, sockaddr:%p, addr_len:%d\n", __func__, sk,
4597 addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598
Xin Long644fbde2018-05-20 16:39:10 +08004599 /* We may need to bind the socket. */
4600 if (!inet->inet_num) {
4601 if (sk->sk_prot->get_port(sk, 0)) {
4602 release_sock(sk);
4603 return -EAGAIN;
4604 }
4605 inet->inet_sport = htons(inet->inet_num);
4606 }
4607
Frank Filz3f7a87d2005-06-20 13:14:57 -07004608 /* Validate addr_len before calling common connect/connectx routine. */
4609 af = sctp_get_af_specific(addr->sa_family);
4610 if (!af || addr_len < af->sockaddr_len) {
4611 err = -EINVAL;
4612 } else {
4613 /* Pass correct addr len to common routine (so it knows there
4614 * is only one address being passed.
4615 */
Xin Long644fbde2018-05-20 16:39:10 +08004616 err = __sctp_connect(sk, addr, af->sockaddr_len, flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617 }
4618
wangweidong048ed4b2014-01-21 15:44:11 +08004619 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620 return err;
4621}
4622
Xin Long644fbde2018-05-20 16:39:10 +08004623int sctp_inet_connect(struct socket *sock, struct sockaddr *uaddr,
4624 int addr_len, int flags)
4625{
4626 if (addr_len < sizeof(uaddr->sa_family))
4627 return -EINVAL;
4628
4629 if (uaddr->sa_family == AF_UNSPEC)
4630 return -EOPNOTSUPP;
4631
4632 return sctp_connect(sock->sk, uaddr, addr_len, flags);
4633}
4634
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635/* FIXME: Write comments. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004636static int sctp_disconnect(struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637{
4638 return -EOPNOTSUPP; /* STUB */
4639}
4640
4641/* 4.1.4 accept() - TCP Style Syntax
4642 *
4643 * Applications use accept() call to remove an established SCTP
4644 * association from the accept queue of the endpoint. A new socket
4645 * descriptor will be returned from accept() to represent the newly
4646 * formed association.
4647 */
David Howellscdfbabf2017-03-09 08:09:05 +00004648static struct sock *sctp_accept(struct sock *sk, int flags, int *err, bool kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649{
4650 struct sctp_sock *sp;
4651 struct sctp_endpoint *ep;
4652 struct sock *newsk = NULL;
4653 struct sctp_association *asoc;
4654 long timeo;
4655 int error = 0;
4656
wangweidong048ed4b2014-01-21 15:44:11 +08004657 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658
4659 sp = sctp_sk(sk);
4660 ep = sp->ep;
4661
4662 if (!sctp_style(sk, TCP)) {
4663 error = -EOPNOTSUPP;
4664 goto out;
4665 }
4666
4667 if (!sctp_sstate(sk, LISTENING)) {
4668 error = -EINVAL;
4669 goto out;
4670 }
4671
Sridhar Samudrala8abfedd2006-08-22 00:24:09 -07004672 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673
4674 error = sctp_wait_for_accept(sk, timeo);
4675 if (error)
4676 goto out;
4677
4678 /* We treat the list of associations on the endpoint as the accept
4679 * queue and pick the first association on the list.
4680 */
4681 asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
4682
David Howellscdfbabf2017-03-09 08:09:05 +00004683 newsk = sp->pf->create_accept_sk(sk, asoc, kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684 if (!newsk) {
4685 error = -ENOMEM;
4686 goto out;
4687 }
4688
4689 /* Populate the fields of the newsk from the oldsk and migrate the
4690 * asoc to the newsk.
4691 */
4692 sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
4693
4694out:
wangweidong048ed4b2014-01-21 15:44:11 +08004695 release_sock(sk);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004696 *err = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 return newsk;
4698}
4699
4700/* The SCTP ioctl handler. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004701static int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702{
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004703 int rc = -ENOTCONN;
4704
wangweidong048ed4b2014-01-21 15:44:11 +08004705 lock_sock(sk);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004706
4707 /*
4708 * SEQPACKET-style sockets in LISTENING state are valid, for
4709 * SCTP, so only discard TCP-style sockets in LISTENING state.
4710 */
4711 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
4712 goto out;
4713
4714 switch (cmd) {
4715 case SIOCINQ: {
4716 struct sk_buff *skb;
4717 unsigned int amount = 0;
4718
4719 skb = skb_peek(&sk->sk_receive_queue);
4720 if (skb != NULL) {
4721 /*
4722 * We will only return the amount of this packet since
4723 * that is all that will be read.
4724 */
4725 amount = skb->len;
4726 }
4727 rc = put_user(amount, (int __user *)arg);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004728 break;
David S. Miller9a7241c2010-10-03 22:14:37 -07004729 }
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004730 default:
4731 rc = -ENOIOCTLCMD;
4732 break;
4733 }
4734out:
wangweidong048ed4b2014-01-21 15:44:11 +08004735 release_sock(sk);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004736 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737}
4738
4739/* This is the function which gets called during socket creation to
4740 * initialized the SCTP-specific portion of the sock.
4741 * The sock structure should already be zero-filled memory.
4742 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004743static int sctp_init_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004745 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746 struct sctp_sock *sp;
4747
Daniel Borkmannbb333812013-06-28 19:49:40 +02004748 pr_debug("%s: sk:%p\n", __func__, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749
4750 sp = sctp_sk(sk);
4751
4752 /* Initialize the SCTP per socket area. */
4753 switch (sk->sk_type) {
4754 case SOCK_SEQPACKET:
4755 sp->type = SCTP_SOCKET_UDP;
4756 break;
4757 case SOCK_STREAM:
4758 sp->type = SCTP_SOCKET_TCP;
4759 break;
4760 default:
4761 return -ESOCKTNOSUPPORT;
4762 }
4763
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -03004764 sk->sk_gso_type = SKB_GSO_SCTP;
4765
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766 /* Initialize default send parameters. These parameters can be
4767 * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
4768 */
4769 sp->default_stream = 0;
4770 sp->default_ppid = 0;
4771 sp->default_flags = 0;
4772 sp->default_context = 0;
4773 sp->default_timetolive = 0;
4774
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004775 sp->default_rcv_context = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004776 sp->max_burst = net->sctp.max_burst;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004777
Neil Horman3c681982012-10-24 09:20:03 +00004778 sp->sctp_hmac_alg = net->sctp.sctp_hmac_alg;
4779
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780 /* Initialize default setup parameters. These parameters
4781 * can be modified with the SCTP_INITMSG socket option or
4782 * overridden by the SCTP_INIT CMSG.
4783 */
4784 sp->initmsg.sinit_num_ostreams = sctp_max_outstreams;
4785 sp->initmsg.sinit_max_instreams = sctp_max_instreams;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004786 sp->initmsg.sinit_max_attempts = net->sctp.max_retrans_init;
4787 sp->initmsg.sinit_max_init_timeo = net->sctp.rto_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788
4789 /* Initialize default RTO related parameters. These parameters can
4790 * be modified for with the SCTP_RTOINFO socket option.
4791 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004792 sp->rtoinfo.srto_initial = net->sctp.rto_initial;
4793 sp->rtoinfo.srto_max = net->sctp.rto_max;
4794 sp->rtoinfo.srto_min = net->sctp.rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795
4796 /* Initialize default association related parameters. These parameters
4797 * can be modified with the SCTP_ASSOCINFO socket option.
4798 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004799 sp->assocparams.sasoc_asocmaxrxt = net->sctp.max_retrans_association;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800 sp->assocparams.sasoc_number_peer_destinations = 0;
4801 sp->assocparams.sasoc_peer_rwnd = 0;
4802 sp->assocparams.sasoc_local_rwnd = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004803 sp->assocparams.sasoc_cookie_life = net->sctp.valid_cookie_life;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804
4805 /* Initialize default event subscriptions. By default, all the
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004806 * options are off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 */
Xin Long2cc0eeb2018-11-18 16:08:51 +08004808 sp->subscribe = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809
4810 /* Default Peer Address Parameters. These defaults can
4811 * be modified via SCTP_PEER_ADDR_PARAMS
4812 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004813 sp->hbinterval = net->sctp.hb_interval;
4814 sp->pathmaxrxt = net->sctp.max_retrans_path;
Xin Long8add5432019-01-28 15:08:29 +08004815 sp->pf_retrans = net->sctp.pf_retrans;
wangweidong4e2d52b2013-12-23 12:16:54 +08004816 sp->pathmtu = 0; /* allow default discovery */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004817 sp->sackdelay = net->sctp.sack_timeout;
Vlad Yasevich7bfe8bdb2008-06-09 15:45:05 -07004818 sp->sackfreq = 2;
Frank Filz52ccb8e2005-12-22 11:36:46 -08004819 sp->param_flags = SPP_HB_ENABLE |
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004820 SPP_PMTUD_ENABLE |
4821 SPP_SACKDELAY_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822
4823 /* If enabled no SCTP message fragmentation will be performed.
4824 * Configure through SCTP_DISABLE_FRAGMENTS socket option.
4825 */
4826 sp->disable_fragments = 0;
4827
Sridhar Samudrala208edef2006-09-29 17:08:01 -07004828 /* Enable Nagle algorithm by default. */
4829 sp->nodelay = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004831 sp->recvrcvinfo = 0;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02004832 sp->recvnxtinfo = 0;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004833
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834 /* Enable by default. */
4835 sp->v4mapped = 1;
4836
4837 /* Auto-close idle associations after the configured
4838 * number of seconds. A value of 0 disables this
4839 * feature. Configure through the SCTP_AUTOCLOSE socket option,
4840 * for UDP-style sockets only.
4841 */
4842 sp->autoclose = 0;
4843
4844 /* User specified fragmentation limit. */
4845 sp->user_frag = 0;
4846
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004847 sp->adaptation_ind = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848
4849 sp->pf = sctp_get_pf_specific(sk->sk_family);
4850
4851 /* Control variables for partial data delivery. */
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004852 atomic_set(&sp->pd_mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853 skb_queue_head_init(&sp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004854 sp->frag_interleave = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855
4856 /* Create a per socket endpoint structure. Even if we
4857 * change the data structure relationships, this may still
4858 * be useful for storing pre-connect address information.
4859 */
Daniel Borkmannc164b832013-06-14 18:24:06 +02004860 sp->ep = sctp_endpoint_new(sk, GFP_KERNEL);
4861 if (!sp->ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862 return -ENOMEM;
4863
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864 sp->hmac = NULL;
4865
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004866 sk->sk_destruct = sctp_destruct_sock;
4867
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868 SCTP_DBG_OBJCNT_INC(sock);
David S. Miller6f756a82008-11-23 17:34:03 -08004869
4870 local_bh_disable();
Tonghao Zhang8cb38a62017-12-22 10:15:20 -08004871 sk_sockets_allocated_inc(sk);
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004872 sock_prot_inuse_add(net, sk->sk_prot, 1);
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004873
4874 /* Nothing can fail after this block, otherwise
4875 * sctp_destroy_sock() will be called without addr_wq_lock held
4876 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004877 if (net->sctp.default_auto_asconf) {
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004878 spin_lock(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda9f7d6532011-04-26 19:32:51 +09004879 list_add_tail(&sp->auto_asconf_list,
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004880 &net->sctp.auto_asconf_splist);
Michio Honda9f7d6532011-04-26 19:32:51 +09004881 sp->do_auto_asconf = 1;
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004882 spin_unlock(&sock_net(sk)->sctp.addr_wq_lock);
4883 } else {
Michio Honda9f7d6532011-04-26 19:32:51 +09004884 sp->do_auto_asconf = 0;
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004885 }
4886
David S. Miller6f756a82008-11-23 17:34:03 -08004887 local_bh_enable();
4888
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889 return 0;
4890}
4891
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004892/* Cleanup any SCTP per socket resources. Must be called with
4893 * sock_net(sk)->sctp.addr_wq_lock held if sp->do_auto_asconf is true
4894 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004895static void sctp_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896{
Michio Honda9f7d6532011-04-26 19:32:51 +09004897 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898
Daniel Borkmannbb333812013-06-28 19:49:40 +02004899 pr_debug("%s: sk:%p\n", __func__, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900
4901 /* Release our hold on the endpoint. */
Michio Honda9f7d6532011-04-26 19:32:51 +09004902 sp = sctp_sk(sk);
Daniel Borkmann1abd1652013-06-06 15:53:47 +02004903 /* This could happen during socket init, thus we bail out
4904 * early, since the rest of the below is not setup either.
4905 */
4906 if (sp->ep == NULL)
4907 return;
4908
Michio Honda9f7d6532011-04-26 19:32:51 +09004909 if (sp->do_auto_asconf) {
4910 sp->do_auto_asconf = 0;
4911 list_del(&sp->auto_asconf_list);
4912 }
4913 sctp_endpoint_free(sp->ep);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004914 local_bh_disable();
Tonghao Zhang8cb38a62017-12-22 10:15:20 -08004915 sk_sockets_allocated_dec(sk);
Eric Dumazet9a57f7f2008-11-17 02:41:00 -08004916 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004917 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918}
4919
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004920/* Triggered when there are no references on the socket anymore */
4921static void sctp_destruct_sock(struct sock *sk)
4922{
4923 struct sctp_sock *sp = sctp_sk(sk);
4924
4925 /* Free up the HMAC transform. */
Herbert Xu5821c762016-01-24 21:20:12 +08004926 crypto_free_shash(sp->hmac);
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004927
4928 inet_sock_destruct(sk);
4929}
4930
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931/* API 4.1.7 shutdown() - TCP Style Syntax
4932 * int shutdown(int socket, int how);
4933 *
4934 * sd - the socket descriptor of the association to be closed.
4935 * how - Specifies the type of shutdown. The values are
4936 * as follows:
4937 * SHUT_RD
4938 * Disables further receive operations. No SCTP
4939 * protocol action is taken.
4940 * SHUT_WR
4941 * Disables further send operations, and initiates
4942 * the SCTP shutdown sequence.
4943 * SHUT_RDWR
4944 * Disables further send and receive operations
4945 * and initiates the SCTP shutdown sequence.
4946 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004947static void sctp_shutdown(struct sock *sk, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00004949 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950 struct sctp_endpoint *ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951
4952 if (!sctp_style(sk, TCP))
4953 return;
4954
Xin Long5bf35dd2016-11-13 21:44:37 +08004955 ep = sctp_sk(sk)->ep;
4956 if (how & SEND_SHUTDOWN && !list_empty(&ep->asocs)) {
4957 struct sctp_association *asoc;
4958
Yafang Shaocbabf462017-12-20 11:12:54 +08004959 inet_sk_set_state(sk, SCTP_SS_CLOSING);
Xin Long5bf35dd2016-11-13 21:44:37 +08004960 asoc = list_entry(ep->asocs.next,
4961 struct sctp_association, asocs);
4962 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963 }
4964}
4965
Xin Long52c52a62016-04-14 15:35:30 +08004966int sctp_get_sctp_info(struct sock *sk, struct sctp_association *asoc,
4967 struct sctp_info *info)
4968{
4969 struct sctp_transport *prim;
4970 struct list_head *pos;
4971 int mask;
4972
4973 memset(info, 0, sizeof(*info));
4974 if (!asoc) {
4975 struct sctp_sock *sp = sctp_sk(sk);
4976
4977 info->sctpi_s_autoclose = sp->autoclose;
4978 info->sctpi_s_adaptation_ind = sp->adaptation_ind;
4979 info->sctpi_s_pd_point = sp->pd_point;
4980 info->sctpi_s_nodelay = sp->nodelay;
4981 info->sctpi_s_disable_fragments = sp->disable_fragments;
4982 info->sctpi_s_v4mapped = sp->v4mapped;
4983 info->sctpi_s_frag_interleave = sp->frag_interleave;
Xin Long40eb90e92016-05-29 17:42:13 +08004984 info->sctpi_s_type = sp->type;
Xin Long52c52a62016-04-14 15:35:30 +08004985
4986 return 0;
4987 }
4988
4989 info->sctpi_tag = asoc->c.my_vtag;
4990 info->sctpi_state = asoc->state;
4991 info->sctpi_rwnd = asoc->a_rwnd;
4992 info->sctpi_unackdata = asoc->unack_data;
4993 info->sctpi_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
Xin Longcee360a2017-05-31 16:36:31 +08004994 info->sctpi_instrms = asoc->stream.incnt;
4995 info->sctpi_outstrms = asoc->stream.outcnt;
Xin Long52c52a62016-04-14 15:35:30 +08004996 list_for_each(pos, &asoc->base.inqueue.in_chunk_list)
4997 info->sctpi_inqueue++;
4998 list_for_each(pos, &asoc->outqueue.out_chunk_list)
4999 info->sctpi_outqueue++;
5000 info->sctpi_overall_error = asoc->overall_error_count;
5001 info->sctpi_max_burst = asoc->max_burst;
5002 info->sctpi_maxseg = asoc->frag_point;
5003 info->sctpi_peer_rwnd = asoc->peer.rwnd;
5004 info->sctpi_peer_tag = asoc->c.peer_vtag;
5005
5006 mask = asoc->peer.ecn_capable << 1;
5007 mask = (mask | asoc->peer.ipv4_address) << 1;
5008 mask = (mask | asoc->peer.ipv6_address) << 1;
5009 mask = (mask | asoc->peer.hostname_address) << 1;
5010 mask = (mask | asoc->peer.asconf_capable) << 1;
5011 mask = (mask | asoc->peer.prsctp_capable) << 1;
5012 mask = (mask | asoc->peer.auth_capable);
5013 info->sctpi_peer_capable = mask;
5014 mask = asoc->peer.sack_needed << 1;
5015 mask = (mask | asoc->peer.sack_generation) << 1;
5016 mask = (mask | asoc->peer.zero_window_announced);
5017 info->sctpi_peer_sack = mask;
5018
5019 info->sctpi_isacks = asoc->stats.isacks;
5020 info->sctpi_osacks = asoc->stats.osacks;
5021 info->sctpi_opackets = asoc->stats.opackets;
5022 info->sctpi_ipackets = asoc->stats.ipackets;
5023 info->sctpi_rtxchunks = asoc->stats.rtxchunks;
5024 info->sctpi_outofseqtsns = asoc->stats.outofseqtsns;
5025 info->sctpi_idupchunks = asoc->stats.idupchunks;
5026 info->sctpi_gapcnt = asoc->stats.gapcnt;
5027 info->sctpi_ouodchunks = asoc->stats.ouodchunks;
5028 info->sctpi_iuodchunks = asoc->stats.iuodchunks;
5029 info->sctpi_oodchunks = asoc->stats.oodchunks;
5030 info->sctpi_iodchunks = asoc->stats.iodchunks;
5031 info->sctpi_octrlchunks = asoc->stats.octrlchunks;
5032 info->sctpi_ictrlchunks = asoc->stats.ictrlchunks;
5033
5034 prim = asoc->peer.primary_path;
Stefano Brivioee6c88b2017-08-23 13:27:13 +02005035 memcpy(&info->sctpi_p_address, &prim->ipaddr, sizeof(prim->ipaddr));
Xin Long52c52a62016-04-14 15:35:30 +08005036 info->sctpi_p_state = prim->state;
5037 info->sctpi_p_cwnd = prim->cwnd;
5038 info->sctpi_p_srtt = prim->srtt;
5039 info->sctpi_p_rto = jiffies_to_msecs(prim->rto);
5040 info->sctpi_p_hbinterval = prim->hbinterval;
5041 info->sctpi_p_pathmaxrxt = prim->pathmaxrxt;
5042 info->sctpi_p_sackdelay = jiffies_to_msecs(prim->sackdelay);
5043 info->sctpi_p_ssthresh = prim->ssthresh;
5044 info->sctpi_p_partial_bytes_acked = prim->partial_bytes_acked;
5045 info->sctpi_p_flight_size = prim->flight_size;
5046 info->sctpi_p_error = prim->error_count;
5047
5048 return 0;
5049}
5050EXPORT_SYMBOL_GPL(sctp_get_sctp_info);
5051
Xin Long626d16f2016-04-14 15:35:31 +08005052/* use callback to avoid exporting the core structure */
Tom Herbert97a6ec42017-12-04 10:31:41 -08005053void sctp_transport_walk_start(struct rhashtable_iter *iter)
Xin Long626d16f2016-04-14 15:35:31 +08005054{
Xin Long7fda7022016-11-15 23:23:11 +08005055 rhltable_walk_enter(&sctp_transport_hashtable, iter);
Xin Long626d16f2016-04-14 15:35:31 +08005056
Tom Herbert97a6ec42017-12-04 10:31:41 -08005057 rhashtable_walk_start(iter);
Xin Long626d16f2016-04-14 15:35:31 +08005058}
5059
5060void sctp_transport_walk_stop(struct rhashtable_iter *iter)
5061{
5062 rhashtable_walk_stop(iter);
5063 rhashtable_walk_exit(iter);
5064}
5065
5066struct sctp_transport *sctp_transport_get_next(struct net *net,
5067 struct rhashtable_iter *iter)
5068{
5069 struct sctp_transport *t;
5070
5071 t = rhashtable_walk_next(iter);
5072 for (; t; t = rhashtable_walk_next(iter)) {
5073 if (IS_ERR(t)) {
5074 if (PTR_ERR(t) == -EAGAIN)
5075 continue;
5076 break;
5077 }
5078
Xin Longbab1be72018-08-27 18:38:31 +08005079 if (!sctp_transport_hold(t))
5080 continue;
5081
Xin Long626d16f2016-04-14 15:35:31 +08005082 if (net_eq(sock_net(t->asoc->base.sk), net) &&
5083 t->asoc->peer.primary_path == t)
5084 break;
Xin Longbab1be72018-08-27 18:38:31 +08005085
5086 sctp_transport_put(t);
Xin Long626d16f2016-04-14 15:35:31 +08005087 }
5088
5089 return t;
5090}
5091
5092struct sctp_transport *sctp_transport_get_idx(struct net *net,
5093 struct rhashtable_iter *iter,
5094 int pos)
5095{
Xin Longbab1be72018-08-27 18:38:31 +08005096 struct sctp_transport *t;
Xin Long626d16f2016-04-14 15:35:31 +08005097
Xin Longbab1be72018-08-27 18:38:31 +08005098 if (!pos)
5099 return SEQ_START_TOKEN;
Xin Long626d16f2016-04-14 15:35:31 +08005100
Xin Longbab1be72018-08-27 18:38:31 +08005101 while ((t = sctp_transport_get_next(net, iter)) && !IS_ERR(t)) {
5102 if (!--pos)
5103 break;
5104 sctp_transport_put(t);
5105 }
5106
5107 return t;
Xin Long626d16f2016-04-14 15:35:31 +08005108}
5109
5110int sctp_for_each_endpoint(int (*cb)(struct sctp_endpoint *, void *),
5111 void *p) {
5112 int err = 0;
5113 int hash = 0;
5114 struct sctp_ep_common *epb;
5115 struct sctp_hashbucket *head;
5116
5117 for (head = sctp_ep_hashtable; hash < sctp_ep_hashsize;
5118 hash++, head++) {
Xin Long581409d2017-06-10 14:48:14 +08005119 read_lock_bh(&head->lock);
Xin Long626d16f2016-04-14 15:35:31 +08005120 sctp_for_each_hentry(epb, &head->chain) {
5121 err = cb(sctp_ep(epb), p);
5122 if (err)
5123 break;
5124 }
Xin Long581409d2017-06-10 14:48:14 +08005125 read_unlock_bh(&head->lock);
Xin Long626d16f2016-04-14 15:35:31 +08005126 }
5127
5128 return err;
5129}
5130EXPORT_SYMBOL_GPL(sctp_for_each_endpoint);
5131
5132int sctp_transport_lookup_process(int (*cb)(struct sctp_transport *, void *),
5133 struct net *net,
5134 const union sctp_addr *laddr,
5135 const union sctp_addr *paddr, void *p)
5136{
5137 struct sctp_transport *transport;
Xin Long08abb792016-12-15 23:05:52 +08005138 int err;
Xin Long626d16f2016-04-14 15:35:31 +08005139
5140 rcu_read_lock();
5141 transport = sctp_addrs_lookup_transport(net, laddr, paddr);
Xin Long626d16f2016-04-14 15:35:31 +08005142 rcu_read_unlock();
Xin Long08abb792016-12-15 23:05:52 +08005143 if (!transport)
5144 return -ENOENT;
5145
Xin Long1cceda782016-09-29 02:55:44 +08005146 err = cb(transport, p);
Xin Longcd26da42016-10-31 20:32:31 +08005147 sctp_transport_put(transport);
Xin Long1cceda782016-09-29 02:55:44 +08005148
Xin Long626d16f2016-04-14 15:35:31 +08005149 return err;
5150}
5151EXPORT_SYMBOL_GPL(sctp_transport_lookup_process);
5152
5153int sctp_for_each_transport(int (*cb)(struct sctp_transport *, void *),
Xin Longd25adbe2017-09-15 11:02:21 +08005154 int (*cb_done)(struct sctp_transport *, void *),
5155 struct net *net, int *pos, void *p) {
Xin Long626d16f2016-04-14 15:35:31 +08005156 struct rhashtable_iter hti;
Xin Longd25adbe2017-09-15 11:02:21 +08005157 struct sctp_transport *tsp;
5158 int ret;
Xin Long626d16f2016-04-14 15:35:31 +08005159
Xin Longd25adbe2017-09-15 11:02:21 +08005160again:
Xin Longf53d77e2018-01-23 18:22:25 +08005161 ret = 0;
Tom Herbert97a6ec42017-12-04 10:31:41 -08005162 sctp_transport_walk_start(&hti);
Xin Long626d16f2016-04-14 15:35:31 +08005163
Xin Longd25adbe2017-09-15 11:02:21 +08005164 tsp = sctp_transport_get_idx(net, &hti, *pos + 1);
5165 for (; !IS_ERR_OR_NULL(tsp); tsp = sctp_transport_get_next(net, &hti)) {
Xin Longd25adbe2017-09-15 11:02:21 +08005166 ret = cb(tsp, p);
5167 if (ret)
Xin Long626d16f2016-04-14 15:35:31 +08005168 break;
Xin Longd25adbe2017-09-15 11:02:21 +08005169 (*pos)++;
5170 sctp_transport_put(tsp);
Xin Long626d16f2016-04-14 15:35:31 +08005171 }
Xin Long626d16f2016-04-14 15:35:31 +08005172 sctp_transport_walk_stop(&hti);
Xin Long53fa1032016-04-14 15:35:35 +08005173
Xin Longd25adbe2017-09-15 11:02:21 +08005174 if (ret) {
5175 if (cb_done && !cb_done(tsp, p)) {
5176 (*pos)++;
5177 sctp_transport_put(tsp);
5178 goto again;
5179 }
5180 sctp_transport_put(tsp);
5181 }
5182
5183 return ret;
Xin Long626d16f2016-04-14 15:35:31 +08005184}
5185EXPORT_SYMBOL_GPL(sctp_for_each_transport);
5186
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187/* 7.2.1 Association Status (SCTP_STATUS)
5188
5189 * Applications can retrieve current status information about an
5190 * association, including association state, peer receiver window size,
5191 * number of unacked data chunks, and number of data chunks pending
5192 * receipt. This information is read-only.
5193 */
5194static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
5195 char __user *optval,
5196 int __user *optlen)
5197{
5198 struct sctp_status status;
5199 struct sctp_association *asoc = NULL;
5200 struct sctp_transport *transport;
5201 sctp_assoc_t associd;
5202 int retval = 0;
5203
Neil Horman408f22e2007-06-16 14:03:45 -04005204 if (len < sizeof(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205 retval = -EINVAL;
5206 goto out;
5207 }
5208
Neil Horman408f22e2007-06-16 14:03:45 -04005209 len = sizeof(status);
5210 if (copy_from_user(&status, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211 retval = -EFAULT;
5212 goto out;
5213 }
5214
5215 associd = status.sstat_assoc_id;
5216 asoc = sctp_id2assoc(sk, associd);
5217 if (!asoc) {
5218 retval = -EINVAL;
5219 goto out;
5220 }
5221
5222 transport = asoc->peer.primary_path;
5223
5224 status.sstat_assoc_id = sctp_assoc2id(asoc);
Daniel Borkmann38ab1fa2014-08-28 15:28:26 +02005225 status.sstat_state = sctp_assoc_to_state(asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226 status.sstat_rwnd = asoc->peer.rwnd;
5227 status.sstat_unackdata = asoc->unack_data;
5228
5229 status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
Xin Longcee360a2017-05-31 16:36:31 +08005230 status.sstat_instrms = asoc->stream.incnt;
5231 status.sstat_outstrms = asoc->stream.outcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232 status.sstat_fragmentation_point = asoc->frag_point;
5233 status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Al Viro8cec6b82006-11-20 17:23:01 -08005234 memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
5235 transport->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236 /* Map ipv4 address into v4-mapped-on-v6 address. */
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005237 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238 (union sctp_addr *)&status.sstat_primary.spinfo_address);
Frank Filz3f7a87d2005-06-20 13:14:57 -07005239 status.sstat_primary.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240 status.sstat_primary.spinfo_cwnd = transport->cwnd;
5241 status.sstat_primary.spinfo_srtt = transport->srtt;
5242 status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005243 status.sstat_primary.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244
Frank Filz3f7a87d2005-06-20 13:14:57 -07005245 if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
5246 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
5247
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248 if (put_user(len, optlen)) {
5249 retval = -EFAULT;
5250 goto out;
5251 }
5252
Daniel Borkmannbb333812013-06-28 19:49:40 +02005253 pr_debug("%s: len:%d, state:%d, rwnd:%d, assoc_id:%d\n",
5254 __func__, len, status.sstat_state, status.sstat_rwnd,
5255 status.sstat_assoc_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256
5257 if (copy_to_user(optval, &status, len)) {
5258 retval = -EFAULT;
5259 goto out;
5260 }
5261
5262out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00005263 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264}
5265
5266
5267/* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
5268 *
5269 * Applications can retrieve information about a specific peer address
5270 * of an association, including its reachability state, congestion
5271 * window, and retransmission timer values. This information is
5272 * read-only.
5273 */
5274static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
5275 char __user *optval,
5276 int __user *optlen)
5277{
5278 struct sctp_paddrinfo pinfo;
5279 struct sctp_transport *transport;
5280 int retval = 0;
5281
Neil Horman408f22e2007-06-16 14:03:45 -04005282 if (len < sizeof(pinfo)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283 retval = -EINVAL;
5284 goto out;
5285 }
5286
Neil Horman408f22e2007-06-16 14:03:45 -04005287 len = sizeof(pinfo);
5288 if (copy_from_user(&pinfo, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289 retval = -EFAULT;
5290 goto out;
5291 }
5292
5293 transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
5294 pinfo.spinfo_assoc_id);
5295 if (!transport)
5296 return -EINVAL;
5297
5298 pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07005299 pinfo.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300 pinfo.spinfo_cwnd = transport->cwnd;
5301 pinfo.spinfo_srtt = transport->srtt;
5302 pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005303 pinfo.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304
Frank Filz3f7a87d2005-06-20 13:14:57 -07005305 if (pinfo.spinfo_state == SCTP_UNKNOWN)
5306 pinfo.spinfo_state = SCTP_ACTIVE;
5307
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308 if (put_user(len, optlen)) {
5309 retval = -EFAULT;
5310 goto out;
5311 }
5312
5313 if (copy_to_user(optval, &pinfo, len)) {
5314 retval = -EFAULT;
5315 goto out;
5316 }
5317
5318out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00005319 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320}
5321
5322/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
5323 *
5324 * This option is a on/off flag. If enabled no SCTP message
5325 * fragmentation will be performed. Instead if a message being sent
5326 * exceeds the current PMTU size, the message will NOT be sent and
5327 * instead a error will be indicated to the user.
5328 */
5329static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
5330 char __user *optval, int __user *optlen)
5331{
5332 int val;
5333
5334 if (len < sizeof(int))
5335 return -EINVAL;
5336
5337 len = sizeof(int);
5338 val = (sctp_sk(sk)->disable_fragments == 1);
5339 if (put_user(len, optlen))
5340 return -EFAULT;
5341 if (copy_to_user(optval, &val, len))
5342 return -EFAULT;
5343 return 0;
5344}
5345
5346/* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
5347 *
5348 * This socket option is used to specify various notifications and
5349 * ancillary data the user wishes to receive.
5350 */
5351static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
5352 int __user *optlen)
5353{
Xin Long2cc0eeb2018-11-18 16:08:51 +08005354 struct sctp_event_subscribe subscribe;
5355 __u8 *sn_type = (__u8 *)&subscribe;
5356 int i;
5357
Jiri Slabya4b8e712016-10-21 14:13:24 +02005358 if (len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359 return -EINVAL;
Thomas Grafacdd5982012-04-03 22:17:53 +00005360 if (len > sizeof(struct sctp_event_subscribe))
5361 len = sizeof(struct sctp_event_subscribe);
Neil Horman408f22e2007-06-16 14:03:45 -04005362 if (put_user(len, optlen))
5363 return -EFAULT;
Xin Long2cc0eeb2018-11-18 16:08:51 +08005364
5365 for (i = 0; i < len; i++)
5366 sn_type[i] = sctp_ulpevent_type_enabled(sctp_sk(sk)->subscribe,
5367 SCTP_SN_TYPE_BASE + i);
5368
5369 if (copy_to_user(optval, &subscribe, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370 return -EFAULT;
Xin Long2cc0eeb2018-11-18 16:08:51 +08005371
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372 return 0;
5373}
5374
5375/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
5376 *
5377 * This socket option is applicable to the UDP-style socket only. When
5378 * set it will cause associations that are idle for more than the
5379 * specified number of seconds to automatically close. An association
5380 * being idle is defined an association that has NOT sent or received
5381 * user data. The special value of '0' indicates that no automatic
5382 * close of any associations should be performed. The option expects an
5383 * integer defining the number of seconds of idle time before an
5384 * association is closed.
5385 */
5386static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
5387{
5388 /* Applicable to UDP-style socket only */
5389 if (sctp_style(sk, TCP))
5390 return -EOPNOTSUPP;
Neil Horman408f22e2007-06-16 14:03:45 -04005391 if (len < sizeof(int))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005393 len = sizeof(int);
5394 if (put_user(len, optlen))
5395 return -EFAULT;
David Windsorb2ce04c2017-06-10 22:50:43 -04005396 if (put_user(sctp_sk(sk)->autoclose, (int __user *)optval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397 return -EFAULT;
5398 return 0;
5399}
5400
5401/* Helper routine to branch off an association to a new socket. */
Benjamin Poirier0343c552012-03-08 05:55:58 +00005402int sctp_do_peeloff(struct sock *sk, sctp_assoc_t id, struct socket **sockp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403{
Benjamin Poirier0343c552012-03-08 05:55:58 +00005404 struct sctp_association *asoc = sctp_id2assoc(sk, id);
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005405 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406 struct socket *sock;
5407 int err = 0;
5408
Xin Longdf80cd92017-10-17 23:26:10 +08005409 /* Do not peel off from one netns to another one. */
5410 if (!net_eq(current->nsproxy->net_ns, sock_net(sk)))
5411 return -EINVAL;
5412
Benjamin Poirier0343c552012-03-08 05:55:58 +00005413 if (!asoc)
5414 return -EINVAL;
5415
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416 /* An association cannot be branched off from an already peeled-off
5417 * socket, nor is this supported for tcp style sockets.
5418 */
5419 if (!sctp_style(sk, UDP))
5420 return -EINVAL;
5421
5422 /* Create a new socket. */
5423 err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
5424 if (err < 0)
5425 return err;
5426
Vlad Yasevich914e1c82009-02-13 08:33:44 +00005427 sctp_copy_sock(sock->sk, sk, asoc);
Vlad Yasevich4f444302006-10-30 18:54:32 -08005428
5429 /* Make peeled-off sockets more like 1-1 accepted sockets.
Richard Hainesb7e10c22018-02-24 16:18:51 +00005430 * Set the daddr and initialize id to something more random and also
5431 * copy over any ip options.
Vlad Yasevich4f444302006-10-30 18:54:32 -08005432 */
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005433 sp->pf->to_sk_daddr(&asoc->peer.primary_addr, sk);
Richard Hainesb7e10c22018-02-24 16:18:51 +00005434 sp->pf->copy_ip_options(sk, sock->sk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00005435
5436 /* Populate the fields of the newsk from the oldsk and migrate the
5437 * asoc to the newsk.
5438 */
5439 sctp_sock_migrate(sk, sock->sk, asoc, SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
Vlad Yasevich4f444302006-10-30 18:54:32 -08005440
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441 *sockp = sock;
5442
5443 return err;
5444}
Benjamin Poirier0343c552012-03-08 05:55:58 +00005445EXPORT_SYMBOL(sctp_do_peeloff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005446
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005447static int sctp_getsockopt_peeloff_common(struct sock *sk, sctp_peeloff_arg_t *peeloff,
5448 struct file **newfile, unsigned flags)
5449{
5450 struct socket *newsock;
5451 int retval;
5452
5453 retval = sctp_do_peeloff(sk, peeloff->associd, &newsock);
5454 if (retval < 0)
5455 goto out;
5456
5457 /* Map the socket to an unused fd that can be returned to the user. */
5458 retval = get_unused_fd_flags(flags & SOCK_CLOEXEC);
5459 if (retval < 0) {
5460 sock_release(newsock);
5461 goto out;
5462 }
5463
5464 *newfile = sock_alloc_file(newsock, 0, NULL);
5465 if (IS_ERR(*newfile)) {
5466 put_unused_fd(retval);
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005467 retval = PTR_ERR(*newfile);
5468 *newfile = NULL;
5469 return retval;
5470 }
5471
5472 pr_debug("%s: sk:%p, newsk:%p, sd:%d\n", __func__, sk, newsock->sk,
5473 retval);
5474
5475 peeloff->sd = retval;
5476
5477 if (flags & SOCK_NONBLOCK)
5478 (*newfile)->f_flags |= O_NONBLOCK;
5479out:
5480 return retval;
5481}
5482
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
5484{
5485 sctp_peeloff_arg_t peeloff;
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005486 struct file *newfile = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488
Neil Horman408f22e2007-06-16 14:03:45 -04005489 if (len < sizeof(sctp_peeloff_arg_t))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005491 len = sizeof(sctp_peeloff_arg_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492 if (copy_from_user(&peeloff, optval, len))
5493 return -EFAULT;
5494
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005495 retval = sctp_getsockopt_peeloff_common(sk, &peeloff, &newfile, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496 if (retval < 0)
5497 goto out;
5498
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499 /* Return the fd mapped to the new socket. */
Al Viro56b31d12012-08-18 00:25:51 -04005500 if (put_user(len, optlen)) {
5501 fput(newfile);
5502 put_unused_fd(retval);
Neil Horman408f22e2007-06-16 14:03:45 -04005503 return -EFAULT;
Al Viro56b31d12012-08-18 00:25:51 -04005504 }
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005505
5506 if (copy_to_user(optval, &peeloff, len)) {
5507 fput(newfile);
5508 put_unused_fd(retval);
5509 return -EFAULT;
5510 }
5511 fd_install(retval, newfile);
5512out:
5513 return retval;
5514}
5515
5516static int sctp_getsockopt_peeloff_flags(struct sock *sk, int len,
5517 char __user *optval, int __user *optlen)
5518{
5519 sctp_peeloff_flags_arg_t peeloff;
5520 struct file *newfile = NULL;
5521 int retval = 0;
5522
5523 if (len < sizeof(sctp_peeloff_flags_arg_t))
5524 return -EINVAL;
5525 len = sizeof(sctp_peeloff_flags_arg_t);
5526 if (copy_from_user(&peeloff, optval, len))
5527 return -EFAULT;
5528
5529 retval = sctp_getsockopt_peeloff_common(sk, &peeloff.p_arg,
5530 &newfile, peeloff.flags);
5531 if (retval < 0)
5532 goto out;
5533
5534 /* Return the fd mapped to the new socket. */
5535 if (put_user(len, optlen)) {
5536 fput(newfile);
5537 put_unused_fd(retval);
5538 return -EFAULT;
5539 }
5540
Al Viro56b31d12012-08-18 00:25:51 -04005541 if (copy_to_user(optval, &peeloff, len)) {
5542 fput(newfile);
5543 put_unused_fd(retval);
5544 return -EFAULT;
5545 }
5546 fd_install(retval, newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547out:
5548 return retval;
5549}
5550
5551/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
5552 *
5553 * Applications can enable or disable heartbeats for any peer address of
5554 * an association, modify an address's heartbeat interval, force a
5555 * heartbeat to be sent immediately, and adjust the address's maximum
5556 * number of retransmissions sent before an address is considered
5557 * unreachable. The following structure is used to access and modify an
5558 * address's parameters:
5559 *
5560 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08005561 * sctp_assoc_t spp_assoc_id;
5562 * struct sockaddr_storage spp_address;
5563 * uint32_t spp_hbinterval;
5564 * uint16_t spp_pathmaxrxt;
5565 * uint32_t spp_pathmtu;
5566 * uint32_t spp_sackdelay;
5567 * uint32_t spp_flags;
5568 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07005569 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08005570 * spp_assoc_id - (one-to-many style socket) This is filled in the
5571 * application, and identifies the association for
5572 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005573 * spp_address - This specifies which address is of interest.
5574 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08005575 * in milliseconds. If a value of zero
5576 * is present in this field then no changes are to
5577 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578 * spp_pathmaxrxt - This contains the maximum number of
5579 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08005580 * considered unreachable. If a value of zero
5581 * is present in this field then no changes are to
5582 * be made to this parameter.
5583 * spp_pathmtu - When Path MTU discovery is disabled the value
5584 * specified here will be the "fixed" path mtu.
5585 * Note that if the spp_address field is empty
5586 * then all associations on this address will
5587 * have this fixed path mtu set upon them.
5588 *
5589 * spp_sackdelay - When delayed sack is enabled, this value specifies
5590 * the number of milliseconds that sacks will be delayed
5591 * for. This value will apply to all addresses of an
5592 * association if the spp_address field is empty. Note
5593 * also, that if delayed sack is enabled and this
5594 * value is set to 0, no change is made to the last
5595 * recorded delayed sack timer value.
5596 *
5597 * spp_flags - These flags are used to control various features
5598 * on an association. The flag field may contain
5599 * zero or more of the following options.
5600 *
5601 * SPP_HB_ENABLE - Enable heartbeats on the
5602 * specified address. Note that if the address
5603 * field is empty all addresses for the association
5604 * have heartbeats enabled upon them.
5605 *
5606 * SPP_HB_DISABLE - Disable heartbeats on the
5607 * speicifed address. Note that if the address
5608 * field is empty all addresses for the association
5609 * will have their heartbeats disabled. Note also
5610 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
5611 * mutually exclusive, only one of these two should
5612 * be specified. Enabling both fields will have
5613 * undetermined results.
5614 *
5615 * SPP_HB_DEMAND - Request a user initiated heartbeat
5616 * to be made immediately.
5617 *
5618 * SPP_PMTUD_ENABLE - This field will enable PMTU
5619 * discovery upon the specified address. Note that
5620 * if the address feild is empty then all addresses
5621 * on the association are effected.
5622 *
5623 * SPP_PMTUD_DISABLE - This field will disable PMTU
5624 * discovery upon the specified address. Note that
5625 * if the address feild is empty then all addresses
5626 * on the association are effected. Not also that
5627 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
5628 * exclusive. Enabling both will have undetermined
5629 * results.
5630 *
5631 * SPP_SACKDELAY_ENABLE - Setting this flag turns
5632 * on delayed sack. The time specified in spp_sackdelay
5633 * is used to specify the sack delay for this address. Note
5634 * that if spp_address is empty then all addresses will
5635 * enable delayed sack and take on the sack delay
5636 * value specified in spp_sackdelay.
5637 * SPP_SACKDELAY_DISABLE - Setting this flag turns
5638 * off delayed sack. If the spp_address field is blank then
5639 * delayed sack is disabled for the entire association. Note
5640 * also that this field is mutually exclusive to
5641 * SPP_SACKDELAY_ENABLE, setting both will have undefined
5642 * results.
Xin Long0b0dce72018-07-02 18:21:13 +08005643 *
5644 * SPP_IPV6_FLOWLABEL: Setting this flag enables the
5645 * setting of the IPV6 flow label value. The value is
5646 * contained in the spp_ipv6_flowlabel field.
5647 * Upon retrieval, this flag will be set to indicate that
5648 * the spp_ipv6_flowlabel field has a valid value returned.
5649 * If a specific destination address is set (in the
5650 * spp_address field), then the value returned is that of
5651 * the address. If just an association is specified (and
5652 * no address), then the association's default flow label
5653 * is returned. If neither an association nor a destination
5654 * is specified, then the socket's default flow label is
5655 * returned. For non-IPv6 sockets, this flag will be left
5656 * cleared.
5657 *
5658 * SPP_DSCP: Setting this flag enables the setting of the
5659 * Differentiated Services Code Point (DSCP) value
5660 * associated with either the association or a specific
5661 * address. The value is obtained in the spp_dscp field.
5662 * Upon retrieval, this flag will be set to indicate that
5663 * the spp_dscp field has a valid value returned. If a
5664 * specific destination address is set when called (in the
5665 * spp_address field), then that specific destination
5666 * address's DSCP value is returned. If just an association
5667 * is specified, then the association's default DSCP is
5668 * returned. If neither an association nor a destination is
5669 * specified, then the socket's default DSCP is returned.
5670 *
5671 * spp_ipv6_flowlabel
5672 * - This field is used in conjunction with the
5673 * SPP_IPV6_FLOWLABEL flag and contains the IPv6 flow label.
5674 * The 20 least significant bits are used for the flow
5675 * label. This setting has precedence over any IPv6-layer
5676 * setting.
5677 *
5678 * spp_dscp - This field is used in conjunction with the SPP_DSCP flag
5679 * and contains the DSCP. The 6 most significant bits are
5680 * used for the DSCP. This setting has precedence over any
5681 * IPv4- or IPv6- layer setting.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682 */
5683static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
Frank Filz52ccb8e2005-12-22 11:36:46 -08005684 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685{
Frank Filz52ccb8e2005-12-22 11:36:46 -08005686 struct sctp_paddrparams params;
5687 struct sctp_transport *trans = NULL;
5688 struct sctp_association *asoc = NULL;
5689 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690
Xin Long0b0dce72018-07-02 18:21:13 +08005691 if (len >= sizeof(params))
5692 len = sizeof(params);
5693 else if (len >= ALIGN(offsetof(struct sctp_paddrparams,
5694 spp_ipv6_flowlabel), 4))
5695 len = ALIGN(offsetof(struct sctp_paddrparams,
5696 spp_ipv6_flowlabel), 4);
5697 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698 return -EINVAL;
Xin Long0b0dce72018-07-02 18:21:13 +08005699
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700 if (copy_from_user(&params, optval, len))
5701 return -EFAULT;
5702
Frank Filz52ccb8e2005-12-22 11:36:46 -08005703 /* If an address other than INADDR_ANY is specified, and
5704 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705 */
wangweidongcb3f8372013-12-23 12:16:50 +08005706 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08005707 trans = sctp_addr_id2transport(sk, &params.spp_address,
5708 params.spp_assoc_id);
5709 if (!trans) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02005710 pr_debug("%s: failed no transport\n", __func__);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005711 return -EINVAL;
5712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713 }
5714
Xin Longb99e5e02019-01-28 15:08:24 +08005715 /* Get association, if assoc_id != SCTP_FUTURE_ASSOC and the
5716 * socket is a one to many style socket, and an association
5717 * was not found, then the id was invalid.
Frank Filz52ccb8e2005-12-22 11:36:46 -08005718 */
5719 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
Xin Longb99e5e02019-01-28 15:08:24 +08005720 if (!asoc && params.spp_assoc_id != SCTP_FUTURE_ASSOC &&
5721 sctp_style(sk, UDP)) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02005722 pr_debug("%s: failed no association\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005723 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08005724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725
Frank Filz52ccb8e2005-12-22 11:36:46 -08005726 if (trans) {
5727 /* Fetch transport values. */
5728 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
5729 params.spp_pathmtu = trans->pathmtu;
5730 params.spp_pathmaxrxt = trans->pathmaxrxt;
5731 params.spp_sackdelay = jiffies_to_msecs(trans->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732
Frank Filz52ccb8e2005-12-22 11:36:46 -08005733 /*draft-11 doesn't say what to return in spp_flags*/
5734 params.spp_flags = trans->param_flags;
Xin Long0b0dce72018-07-02 18:21:13 +08005735 if (trans->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5736 params.spp_ipv6_flowlabel = trans->flowlabel &
5737 SCTP_FLOWLABEL_VAL_MASK;
5738 params.spp_flags |= SPP_IPV6_FLOWLABEL;
5739 }
5740 if (trans->dscp & SCTP_DSCP_SET_MASK) {
5741 params.spp_dscp = trans->dscp & SCTP_DSCP_VAL_MASK;
5742 params.spp_flags |= SPP_DSCP;
5743 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08005744 } else if (asoc) {
5745 /* Fetch association values. */
5746 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
5747 params.spp_pathmtu = asoc->pathmtu;
5748 params.spp_pathmaxrxt = asoc->pathmaxrxt;
5749 params.spp_sackdelay = jiffies_to_msecs(asoc->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750
Frank Filz52ccb8e2005-12-22 11:36:46 -08005751 /*draft-11 doesn't say what to return in spp_flags*/
5752 params.spp_flags = asoc->param_flags;
Xin Long0b0dce72018-07-02 18:21:13 +08005753 if (asoc->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5754 params.spp_ipv6_flowlabel = asoc->flowlabel &
5755 SCTP_FLOWLABEL_VAL_MASK;
5756 params.spp_flags |= SPP_IPV6_FLOWLABEL;
5757 }
5758 if (asoc->dscp & SCTP_DSCP_SET_MASK) {
5759 params.spp_dscp = asoc->dscp & SCTP_DSCP_VAL_MASK;
5760 params.spp_flags |= SPP_DSCP;
5761 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08005762 } else {
5763 /* Fetch socket values. */
5764 params.spp_hbinterval = sp->hbinterval;
5765 params.spp_pathmtu = sp->pathmtu;
5766 params.spp_sackdelay = sp->sackdelay;
5767 params.spp_pathmaxrxt = sp->pathmaxrxt;
5768
5769 /*draft-11 doesn't say what to return in spp_flags*/
5770 params.spp_flags = sp->param_flags;
Xin Long0b0dce72018-07-02 18:21:13 +08005771 if (sp->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5772 params.spp_ipv6_flowlabel = sp->flowlabel &
5773 SCTP_FLOWLABEL_VAL_MASK;
5774 params.spp_flags |= SPP_IPV6_FLOWLABEL;
5775 }
5776 if (sp->dscp & SCTP_DSCP_SET_MASK) {
5777 params.spp_dscp = sp->dscp & SCTP_DSCP_VAL_MASK;
5778 params.spp_flags |= SPP_DSCP;
5779 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08005780 }
5781
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782 if (copy_to_user(optval, &params, len))
5783 return -EFAULT;
5784
5785 if (put_user(len, optlen))
5786 return -EFAULT;
5787
5788 return 0;
5789}
5790
Wei Yongjund364d922008-05-09 15:13:26 -07005791/*
5792 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08005793 *
Wei Yongjund364d922008-05-09 15:13:26 -07005794 * This option will effect the way delayed acks are performed. This
5795 * option allows you to get or set the delayed ack time, in
5796 * milliseconds. It also allows changing the delayed ack frequency.
5797 * Changing the frequency to 1 disables the delayed sack algorithm. If
5798 * the assoc_id is 0, then this sets or gets the endpoints default
5799 * values. If the assoc_id field is non-zero, then the set or get
5800 * effects the specified association for the one to many model (the
5801 * assoc_id field is ignored by the one to one model). Note that if
5802 * sack_delay or sack_freq are 0 when setting this option, then the
5803 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08005804 *
Wei Yongjund364d922008-05-09 15:13:26 -07005805 * struct sctp_sack_info {
5806 * sctp_assoc_t sack_assoc_id;
5807 * uint32_t sack_delay;
5808 * uint32_t sack_freq;
5809 * };
Frank Filz77086102005-12-22 11:37:30 -08005810 *
Wei Yongjund364d922008-05-09 15:13:26 -07005811 * sack_assoc_id - This parameter, indicates which association the user
5812 * is performing an action upon. Note that if this field's value is
5813 * zero then the endpoints default value is changed (effecting future
5814 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08005815 *
Wei Yongjund364d922008-05-09 15:13:26 -07005816 * sack_delay - This parameter contains the number of milliseconds that
5817 * the user is requesting the delayed ACK timer be set to. Note that
5818 * this value is defined in the standard to be between 200 and 500
5819 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08005820 *
Wei Yongjund364d922008-05-09 15:13:26 -07005821 * sack_freq - This parameter contains the number of packets that must
5822 * be received before a sack is sent without waiting for the delay
5823 * timer to expire. The default value for this is 2, setting this
5824 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08005825 */
Wei Yongjund364d922008-05-09 15:13:26 -07005826static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
Frank Filz77086102005-12-22 11:37:30 -08005827 char __user *optval,
5828 int __user *optlen)
5829{
Wei Yongjund364d922008-05-09 15:13:26 -07005830 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08005831 struct sctp_association *asoc = NULL;
5832 struct sctp_sock *sp = sctp_sk(sk);
5833
Wei Yongjund364d922008-05-09 15:13:26 -07005834 if (len >= sizeof(struct sctp_sack_info)) {
5835 len = sizeof(struct sctp_sack_info);
5836
5837 if (copy_from_user(&params, optval, len))
5838 return -EFAULT;
5839 } else if (len == sizeof(struct sctp_assoc_value)) {
Neil Horman94f65192013-12-23 08:29:43 -05005840 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05005841 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05005842 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05005843 "Use struct sctp_sack_info instead\n",
5844 current->comm, task_pid_nr(current));
Wei Yongjund364d922008-05-09 15:13:26 -07005845 if (copy_from_user(&params, optval, len))
5846 return -EFAULT;
5847 } else
wangweidongcb3f8372013-12-23 12:16:50 +08005848 return -EINVAL;
Frank Filz77086102005-12-22 11:37:30 -08005849
Wei Yongjund364d922008-05-09 15:13:26 -07005850 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08005851 * to many style socket, and an association was not found, then
5852 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005853 */
Wei Yongjund364d922008-05-09 15:13:26 -07005854 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
5855 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08005856 return -EINVAL;
5857
5858 if (asoc) {
5859 /* Fetch association values. */
Wei Yongjund364d922008-05-09 15:13:26 -07005860 if (asoc->param_flags & SPP_SACKDELAY_ENABLE) {
5861 params.sack_delay = jiffies_to_msecs(
Frank Filz77086102005-12-22 11:37:30 -08005862 asoc->sackdelay);
Wei Yongjund364d922008-05-09 15:13:26 -07005863 params.sack_freq = asoc->sackfreq;
5864
5865 } else {
5866 params.sack_delay = 0;
5867 params.sack_freq = 1;
5868 }
Frank Filz77086102005-12-22 11:37:30 -08005869 } else {
5870 /* Fetch socket values. */
Wei Yongjund364d922008-05-09 15:13:26 -07005871 if (sp->param_flags & SPP_SACKDELAY_ENABLE) {
5872 params.sack_delay = sp->sackdelay;
5873 params.sack_freq = sp->sackfreq;
5874 } else {
5875 params.sack_delay = 0;
5876 params.sack_freq = 1;
5877 }
Frank Filz77086102005-12-22 11:37:30 -08005878 }
5879
5880 if (copy_to_user(optval, &params, len))
5881 return -EFAULT;
5882
5883 if (put_user(len, optlen))
5884 return -EFAULT;
5885
5886 return 0;
5887}
5888
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
5890 *
5891 * Applications can specify protocol parameters for the default association
5892 * initialization. The option name argument to setsockopt() and getsockopt()
5893 * is SCTP_INITMSG.
5894 *
5895 * Setting initialization parameters is effective only on an unconnected
5896 * socket (for UDP-style sockets only future associations are effected
5897 * by the change). With TCP-style sockets, this option is inherited by
5898 * sockets derived from a listener socket.
5899 */
5900static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
5901{
Neil Horman408f22e2007-06-16 14:03:45 -04005902 if (len < sizeof(struct sctp_initmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005903 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005904 len = sizeof(struct sctp_initmsg);
5905 if (put_user(len, optlen))
5906 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005907 if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
5908 return -EFAULT;
5909 return 0;
5910}
5911
Linus Torvalds1da177e2005-04-16 15:20:36 -07005912
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005913static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
5914 char __user *optval, int __user *optlen)
5915{
5916 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005917 int cnt = 0;
5918 struct sctp_getaddrs getaddrs;
5919 struct sctp_transport *from;
5920 void __user *to;
5921 union sctp_addr temp;
5922 struct sctp_sock *sp = sctp_sk(sk);
5923 int addrlen;
5924 size_t space_left;
5925 int bytes_copied;
5926
5927 if (len < sizeof(struct sctp_getaddrs))
5928 return -EINVAL;
5929
5930 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
5931 return -EFAULT;
5932
5933 /* For UDP-style sockets, id specifies the association to query. */
5934 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
5935 if (!asoc)
5936 return -EINVAL;
5937
wangweidongcb3f8372013-12-23 12:16:50 +08005938 to = optval + offsetof(struct sctp_getaddrs, addrs);
5939 space_left = len - offsetof(struct sctp_getaddrs, addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005940
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07005941 list_for_each_entry(from, &asoc->peer.transport_addr_list,
5942 transports) {
Al Virob3f5b3b2006-11-20 17:22:43 -08005943 memcpy(&temp, &from->ipaddr, sizeof(temp));
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005944 addrlen = sctp_get_pf_specific(sk->sk_family)
5945 ->addr_to_user(sp, &temp);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005946 if (space_left < addrlen)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005947 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005948 if (copy_to_user(to, &temp, addrlen))
5949 return -EFAULT;
5950 to += addrlen;
5951 cnt++;
5952 space_left -= addrlen;
5953 }
5954
5955 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
5956 return -EFAULT;
5957 bytes_copied = ((char __user *)to) - optval;
5958 if (put_user(bytes_copied, optlen))
5959 return -EFAULT;
5960
5961 return 0;
5962}
5963
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005964static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to,
5965 size_t space_left, int *bytes_copied)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005966{
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005967 struct sctp_sockaddr_entry *addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005968 union sctp_addr temp;
5969 int cnt = 0;
5970 int addrlen;
Eric W. Biederman4db67e82012-08-06 08:42:04 +00005971 struct net *net = sock_net(sk);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005972
Vlad Yasevich29303542007-09-16 16:02:12 -07005973 rcu_read_lock();
Eric W. Biederman4db67e82012-08-06 08:42:04 +00005974 list_for_each_entry_rcu(addr, &net->sctp.local_addr_list, list) {
Vlad Yasevich29303542007-09-16 16:02:12 -07005975 if (!addr->valid)
5976 continue;
5977
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005978 if ((PF_INET == sk->sk_family) &&
Al Viro6244be42006-11-20 17:21:44 -08005979 (AF_INET6 == addr->a.sa.sa_family))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005980 continue;
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07005981 if ((PF_INET6 == sk->sk_family) &&
5982 inet_v6_ipv6only(sk) &&
5983 (AF_INET == addr->a.sa.sa_family))
5984 continue;
Al Viro6244be42006-11-20 17:21:44 -08005985 memcpy(&temp, &addr->a, sizeof(temp));
Vlad Yasevichb46ae362008-01-28 14:25:36 -05005986 if (!temp.v4.sin_port)
5987 temp.v4.sin_port = htons(port);
5988
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005989 addrlen = sctp_get_pf_specific(sk->sk_family)
5990 ->addr_to_user(sctp_sk(sk), &temp);
5991
Vlad Yasevich29303542007-09-16 16:02:12 -07005992 if (space_left < addrlen) {
5993 cnt = -ENOMEM;
5994 break;
5995 }
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005996 memcpy(to, &temp, addrlen);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08005997
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005998 to += addrlen;
wangweidongcb3f8372013-12-23 12:16:50 +08005999 cnt++;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006000 space_left -= addrlen;
Vlad Yasevich3663c302007-07-03 12:43:12 -04006001 *bytes_copied += addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006002 }
Vlad Yasevich29303542007-09-16 16:02:12 -07006003 rcu_read_unlock();
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006004
6005 return cnt;
6006}
6007
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006009static int sctp_getsockopt_local_addrs(struct sock *sk, int len,
6010 char __user *optval, int __user *optlen)
6011{
6012 struct sctp_bind_addr *bp;
6013 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006014 int cnt = 0;
6015 struct sctp_getaddrs getaddrs;
6016 struct sctp_sockaddr_entry *addr;
6017 void __user *to;
6018 union sctp_addr temp;
6019 struct sctp_sock *sp = sctp_sk(sk);
6020 int addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006021 int err = 0;
6022 size_t space_left;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006023 int bytes_copied = 0;
6024 void *addrs;
Vlad Yasevich70b57b82007-05-09 13:51:31 -07006025 void *buf;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006026
Neil Horman408f22e2007-06-16 14:03:45 -04006027 if (len < sizeof(struct sctp_getaddrs))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006028 return -EINVAL;
6029
6030 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
6031 return -EFAULT;
6032
6033 /*
6034 * For UDP-style sockets, id specifies the association to query.
6035 * If the id field is set to the value '0' then the locally bound
6036 * addresses are returned without regard to any particular
6037 * association.
6038 */
6039 if (0 == getaddrs.assoc_id) {
6040 bp = &sctp_sk(sk)->ep->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006041 } else {
6042 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
6043 if (!asoc)
6044 return -EINVAL;
6045 bp = &asoc->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006046 }
6047
wangweidongcb3f8372013-12-23 12:16:50 +08006048 to = optval + offsetof(struct sctp_getaddrs, addrs);
6049 space_left = len - offsetof(struct sctp_getaddrs, addrs);
Neil Horman186e2342007-06-18 19:59:16 -04006050
Marcelo Ricardo Leitnercacc0622015-11-30 14:32:54 -02006051 addrs = kmalloc(space_left, GFP_USER | __GFP_NOWARN);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006052 if (!addrs)
6053 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006054
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006055 /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
6056 * addresses from the global local address list.
6057 */
6058 if (sctp_list_single_entry(&bp->address_list)) {
6059 addr = list_entry(bp->address_list.next,
6060 struct sctp_sockaddr_entry, list);
Vlad Yasevich52cae8f2008-08-18 10:34:34 -04006061 if (sctp_is_any(sk, &addr->a)) {
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006062 cnt = sctp_copy_laddrs(sk, bp->port, addrs,
6063 space_left, &bytes_copied);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006064 if (cnt < 0) {
6065 err = cnt;
Vlad Yasevich559cf712007-09-16 16:03:28 -07006066 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006067 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09006068 goto copy_getaddrs;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006069 }
6070 }
6071
Vlad Yasevich70b57b82007-05-09 13:51:31 -07006072 buf = addrs;
Vlad Yasevich559cf712007-09-16 16:03:28 -07006073 /* Protection on the bound address list is not needed since
6074 * in the socket option context we hold a socket lock and
6075 * thus the bound address list can't change.
6076 */
6077 list_for_each_entry(addr, &bp->address_list, list) {
Al Viro6244be42006-11-20 17:21:44 -08006078 memcpy(&temp, &addr->a, sizeof(temp));
Jason Gunthorpe299ee122014-07-30 12:40:53 -06006079 addrlen = sctp_get_pf_specific(sk->sk_family)
6080 ->addr_to_user(sp, &temp);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006081 if (space_left < addrlen) {
6082 err = -ENOMEM; /*fixme: right error?*/
Vlad Yasevich559cf712007-09-16 16:03:28 -07006083 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006084 }
Vlad Yasevich70b57b82007-05-09 13:51:31 -07006085 memcpy(buf, &temp, addrlen);
6086 buf += addrlen;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006087 bytes_copied += addrlen;
wangweidongcb3f8372013-12-23 12:16:50 +08006088 cnt++;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006089 space_left -= addrlen;
6090 }
6091
6092copy_getaddrs:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006093 if (copy_to_user(to, addrs, bytes_copied)) {
6094 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02006095 goto out;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006096 }
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04006097 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num)) {
6098 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02006099 goto out;
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04006100 }
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006101 /* XXX: We should have accounted for sizeof(struct sctp_getaddrs) too,
6102 * but we can't change it anymore.
6103 */
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006104 if (put_user(bytes_copied, optlen))
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04006105 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02006106out:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006107 kfree(addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006108 return err;
6109}
6110
Linus Torvalds1da177e2005-04-16 15:20:36 -07006111/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
6112 *
6113 * Requests that the local SCTP stack use the enclosed peer address as
6114 * the association primary. The enclosed address must be one of the
6115 * association peer's addresses.
6116 */
6117static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
6118 char __user *optval, int __user *optlen)
6119{
6120 struct sctp_prim prim;
6121 struct sctp_association *asoc;
6122 struct sctp_sock *sp = sctp_sk(sk);
6123
Neil Horman408f22e2007-06-16 14:03:45 -04006124 if (len < sizeof(struct sctp_prim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125 return -EINVAL;
6126
Neil Horman408f22e2007-06-16 14:03:45 -04006127 len = sizeof(struct sctp_prim);
6128
6129 if (copy_from_user(&prim, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130 return -EFAULT;
6131
6132 asoc = sctp_id2assoc(sk, prim.ssp_assoc_id);
6133 if (!asoc)
6134 return -EINVAL;
6135
6136 if (!asoc->peer.primary_path)
6137 return -ENOTCONN;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09006138
Al Viro8cec6b82006-11-20 17:23:01 -08006139 memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr,
6140 asoc->peer.primary_path->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006141
Jason Gunthorpe299ee122014-07-30 12:40:53 -06006142 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006143 (union sctp_addr *)&prim.ssp_addr);
6144
Neil Horman408f22e2007-06-16 14:03:45 -04006145 if (put_user(len, optlen))
6146 return -EFAULT;
6147 if (copy_to_user(optval, &prim, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148 return -EFAULT;
6149
6150 return 0;
6151}
6152
6153/*
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006154 * 7.1.11 Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006155 *
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006156 * Requests that the local endpoint set the specified Adaptation Layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07006157 * Indication parameter for all future INIT and INIT-ACK exchanges.
6158 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006159static int sctp_getsockopt_adaptation_layer(struct sock *sk, int len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006160 char __user *optval, int __user *optlen)
6161{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006162 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006163
Neil Horman408f22e2007-06-16 14:03:45 -04006164 if (len < sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006165 return -EINVAL;
6166
Neil Horman408f22e2007-06-16 14:03:45 -04006167 len = sizeof(struct sctp_setadaptation);
6168
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006169 adaptation.ssb_adaptation_ind = sctp_sk(sk)->adaptation_ind;
Neil Horman408f22e2007-06-16 14:03:45 -04006170
6171 if (put_user(len, optlen))
6172 return -EFAULT;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006173 if (copy_to_user(optval, &adaptation, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006174 return -EFAULT;
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07006175
Linus Torvalds1da177e2005-04-16 15:20:36 -07006176 return 0;
6177}
6178
6179/*
6180 *
6181 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
6182 *
6183 * Applications that wish to use the sendto() system call may wish to
6184 * specify a default set of parameters that would normally be supplied
6185 * through the inclusion of ancillary data. This socket option allows
6186 * such an application to set the default sctp_sndrcvinfo structure.
6187
6188
6189 * The application that wishes to use this socket option simply passes
6190 * in to this call the sctp_sndrcvinfo structure defined in Section
6191 * 5.2.2) The input parameters accepted by this call include
6192 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
6193 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
6194 * to this call if the caller is using the UDP model.
6195 *
6196 * For getsockopt, it get the default sctp_sndrcvinfo structure.
6197 */
6198static int sctp_getsockopt_default_send_param(struct sock *sk,
6199 int len, char __user *optval,
6200 int __user *optlen)
6201{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202 struct sctp_sock *sp = sctp_sk(sk);
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006203 struct sctp_association *asoc;
6204 struct sctp_sndrcvinfo info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006206 if (len < sizeof(info))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006207 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04006208
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006209 len = sizeof(info);
Neil Horman408f22e2007-06-16 14:03:45 -04006210
6211 if (copy_from_user(&info, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212 return -EFAULT;
6213
6214 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
6215 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
6216 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006217 if (asoc) {
6218 info.sinfo_stream = asoc->default_stream;
6219 info.sinfo_flags = asoc->default_flags;
6220 info.sinfo_ppid = asoc->default_ppid;
6221 info.sinfo_context = asoc->default_context;
6222 info.sinfo_timetolive = asoc->default_timetolive;
6223 } else {
6224 info.sinfo_stream = sp->default_stream;
6225 info.sinfo_flags = sp->default_flags;
6226 info.sinfo_ppid = sp->default_ppid;
6227 info.sinfo_context = sp->default_context;
6228 info.sinfo_timetolive = sp->default_timetolive;
6229 }
6230
Neil Horman408f22e2007-06-16 14:03:45 -04006231 if (put_user(len, optlen))
6232 return -EFAULT;
6233 if (copy_to_user(optval, &info, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234 return -EFAULT;
6235
6236 return 0;
6237}
6238
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006239/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
6240 * (SCTP_DEFAULT_SNDINFO)
6241 */
6242static int sctp_getsockopt_default_sndinfo(struct sock *sk, int len,
6243 char __user *optval,
6244 int __user *optlen)
6245{
6246 struct sctp_sock *sp = sctp_sk(sk);
6247 struct sctp_association *asoc;
6248 struct sctp_sndinfo info;
6249
6250 if (len < sizeof(info))
6251 return -EINVAL;
6252
6253 len = sizeof(info);
6254
6255 if (copy_from_user(&info, optval, len))
6256 return -EFAULT;
6257
6258 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
6259 if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
6260 return -EINVAL;
6261 if (asoc) {
6262 info.snd_sid = asoc->default_stream;
6263 info.snd_flags = asoc->default_flags;
6264 info.snd_ppid = asoc->default_ppid;
6265 info.snd_context = asoc->default_context;
6266 } else {
6267 info.snd_sid = sp->default_stream;
6268 info.snd_flags = sp->default_flags;
6269 info.snd_ppid = sp->default_ppid;
6270 info.snd_context = sp->default_context;
6271 }
6272
6273 if (put_user(len, optlen))
6274 return -EFAULT;
6275 if (copy_to_user(optval, &info, len))
6276 return -EFAULT;
6277
6278 return 0;
6279}
6280
Linus Torvalds1da177e2005-04-16 15:20:36 -07006281/*
6282 *
6283 * 7.1.5 SCTP_NODELAY
6284 *
6285 * Turn on/off any Nagle-like algorithm. This means that packets are
6286 * generally sent as soon as possible and no unnecessary delays are
6287 * introduced, at the cost of more packets in the network. Expects an
6288 * integer boolean flag.
6289 */
6290
6291static int sctp_getsockopt_nodelay(struct sock *sk, int len,
6292 char __user *optval, int __user *optlen)
6293{
6294 int val;
6295
6296 if (len < sizeof(int))
6297 return -EINVAL;
6298
6299 len = sizeof(int);
6300 val = (sctp_sk(sk)->nodelay == 1);
6301 if (put_user(len, optlen))
6302 return -EFAULT;
6303 if (copy_to_user(optval, &val, len))
6304 return -EFAULT;
6305 return 0;
6306}
6307
6308/*
6309 *
6310 * 7.1.1 SCTP_RTOINFO
6311 *
6312 * The protocol parameters used to initialize and bound retransmission
6313 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
6314 * and modify these parameters.
6315 * All parameters are time values, in milliseconds. A value of 0, when
6316 * modifying the parameters, indicates that the current value should not
6317 * be changed.
6318 *
6319 */
6320static int sctp_getsockopt_rtoinfo(struct sock *sk, int len,
6321 char __user *optval,
6322 int __user *optlen) {
6323 struct sctp_rtoinfo rtoinfo;
6324 struct sctp_association *asoc;
6325
Neil Horman408f22e2007-06-16 14:03:45 -04006326 if (len < sizeof (struct sctp_rtoinfo))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006327 return -EINVAL;
6328
Neil Horman408f22e2007-06-16 14:03:45 -04006329 len = sizeof(struct sctp_rtoinfo);
6330
6331 if (copy_from_user(&rtoinfo, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006332 return -EFAULT;
6333
6334 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
6335
Xin Long7adb5ed2019-01-28 15:08:25 +08006336 if (!asoc && rtoinfo.srto_assoc_id != SCTP_FUTURE_ASSOC &&
6337 sctp_style(sk, UDP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006338 return -EINVAL;
6339
6340 /* Values corresponding to the specific association. */
6341 if (asoc) {
6342 rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial);
6343 rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max);
6344 rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min);
6345 } else {
6346 /* Values corresponding to the endpoint. */
6347 struct sctp_sock *sp = sctp_sk(sk);
6348
6349 rtoinfo.srto_initial = sp->rtoinfo.srto_initial;
6350 rtoinfo.srto_max = sp->rtoinfo.srto_max;
6351 rtoinfo.srto_min = sp->rtoinfo.srto_min;
6352 }
6353
6354 if (put_user(len, optlen))
6355 return -EFAULT;
6356
6357 if (copy_to_user(optval, &rtoinfo, len))
6358 return -EFAULT;
6359
6360 return 0;
6361}
6362
6363/*
6364 *
6365 * 7.1.2 SCTP_ASSOCINFO
6366 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02006367 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368 * of the association.
6369 * Returns an error if the new association retransmission value is
6370 * greater than the sum of the retransmission value of the peer.
6371 * See [SCTP] for more information.
6372 *
6373 */
6374static int sctp_getsockopt_associnfo(struct sock *sk, int len,
6375 char __user *optval,
6376 int __user *optlen)
6377{
6378
6379 struct sctp_assocparams assocparams;
6380 struct sctp_association *asoc;
6381 struct list_head *pos;
6382 int cnt = 0;
6383
Neil Horman408f22e2007-06-16 14:03:45 -04006384 if (len < sizeof (struct sctp_assocparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385 return -EINVAL;
6386
Neil Horman408f22e2007-06-16 14:03:45 -04006387 len = sizeof(struct sctp_assocparams);
6388
6389 if (copy_from_user(&assocparams, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006390 return -EFAULT;
6391
6392 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
6393
Xin Long88893942019-01-28 15:08:26 +08006394 if (!asoc && assocparams.sasoc_assoc_id != SCTP_FUTURE_ASSOC &&
6395 sctp_style(sk, UDP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006396 return -EINVAL;
6397
6398 /* Values correspoinding to the specific association */
Vladislav Yasevich17337212005-04-28 11:57:54 -07006399 if (asoc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400 assocparams.sasoc_asocmaxrxt = asoc->max_retrans;
6401 assocparams.sasoc_peer_rwnd = asoc->peer.rwnd;
6402 assocparams.sasoc_local_rwnd = asoc->a_rwnd;
Daniel Borkmann52db8822013-06-25 18:17:27 +02006403 assocparams.sasoc_cookie_life = ktime_to_ms(asoc->cookie_life);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006404
6405 list_for_each(pos, &asoc->peer.transport_addr_list) {
wangweidongcb3f8372013-12-23 12:16:50 +08006406 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006407 }
6408
6409 assocparams.sasoc_number_peer_destinations = cnt;
6410 } else {
6411 /* Values corresponding to the endpoint */
6412 struct sctp_sock *sp = sctp_sk(sk);
6413
6414 assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt;
6415 assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd;
6416 assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd;
6417 assocparams.sasoc_cookie_life =
6418 sp->assocparams.sasoc_cookie_life;
6419 assocparams.sasoc_number_peer_destinations =
6420 sp->assocparams.
6421 sasoc_number_peer_destinations;
6422 }
6423
6424 if (put_user(len, optlen))
6425 return -EFAULT;
6426
6427 if (copy_to_user(optval, &assocparams, len))
6428 return -EFAULT;
6429
6430 return 0;
6431}
6432
6433/*
6434 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
6435 *
6436 * This socket option is a boolean flag which turns on or off mapped V4
6437 * addresses. If this option is turned on and the socket is type
6438 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
6439 * If this option is turned off, then no mapping will be done of V4
6440 * addresses and a user will receive both PF_INET6 and PF_INET type
6441 * addresses on the socket.
6442 */
6443static int sctp_getsockopt_mappedv4(struct sock *sk, int len,
6444 char __user *optval, int __user *optlen)
6445{
6446 int val;
6447 struct sctp_sock *sp = sctp_sk(sk);
6448
6449 if (len < sizeof(int))
6450 return -EINVAL;
6451
6452 len = sizeof(int);
6453 val = sp->v4mapped;
6454 if (put_user(len, optlen))
6455 return -EFAULT;
6456 if (copy_to_user(optval, &val, len))
6457 return -EFAULT;
6458
6459 return 0;
6460}
6461
6462/*
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006463 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
6464 * (chapter and verse is quoted at sctp_setsockopt_context())
6465 */
6466static int sctp_getsockopt_context(struct sock *sk, int len,
6467 char __user *optval, int __user *optlen)
6468{
6469 struct sctp_assoc_value params;
6470 struct sctp_sock *sp;
6471 struct sctp_association *asoc;
6472
Neil Horman408f22e2007-06-16 14:03:45 -04006473 if (len < sizeof(struct sctp_assoc_value))
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006474 return -EINVAL;
6475
Neil Horman408f22e2007-06-16 14:03:45 -04006476 len = sizeof(struct sctp_assoc_value);
6477
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006478 if (copy_from_user(&params, optval, len))
6479 return -EFAULT;
6480
6481 sp = sctp_sk(sk);
6482
6483 if (params.assoc_id != 0) {
6484 asoc = sctp_id2assoc(sk, params.assoc_id);
6485 if (!asoc)
6486 return -EINVAL;
6487 params.assoc_value = asoc->default_rcv_context;
6488 } else {
6489 params.assoc_value = sp->default_rcv_context;
6490 }
6491
6492 if (put_user(len, optlen))
6493 return -EFAULT;
6494 if (copy_to_user(optval, &params, len))
6495 return -EFAULT;
6496
6497 return 0;
6498}
6499
6500/*
Wei Yongjune89c2092008-12-25 16:54:58 -08006501 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
6502 * This option will get or set the maximum size to put in any outgoing
6503 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07006504 * fragmented by SCTP into the specified size. Note that the underlying
6505 * SCTP implementation may fragment into smaller sized chunks when the
6506 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08006507 * the user. The default value for this option is '0' which indicates
6508 * the user is NOT limiting fragmentation and only the PMTU will effect
6509 * SCTP's choice of DATA chunk size. Note also that values set larger
6510 * than the maximum size of an IP datagram will effectively let SCTP
6511 * control fragmentation (i.e. the same as setting this option to 0).
6512 *
6513 * The following structure is used to access and modify this parameter:
6514 *
6515 * struct sctp_assoc_value {
6516 * sctp_assoc_t assoc_id;
6517 * uint32_t assoc_value;
6518 * };
6519 *
6520 * assoc_id: This parameter is ignored for one-to-one style sockets.
6521 * For one-to-many style sockets this parameter indicates which
6522 * association the user is performing an action upon. Note that if
6523 * this field's value is zero then the endpoints default value is
6524 * changed (effecting future associations only).
6525 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526 */
6527static int sctp_getsockopt_maxseg(struct sock *sk, int len,
6528 char __user *optval, int __user *optlen)
6529{
Wei Yongjune89c2092008-12-25 16:54:58 -08006530 struct sctp_assoc_value params;
6531 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006532
Wei Yongjune89c2092008-12-25 16:54:58 -08006533 if (len == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05006534 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05006535 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05006536 "Use of int in maxseg socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05006537 "Use struct sctp_assoc_value instead\n",
6538 current->comm, task_pid_nr(current));
Xin Long6fd769b2019-01-28 15:08:27 +08006539 params.assoc_id = SCTP_FUTURE_ASSOC;
Wei Yongjune89c2092008-12-25 16:54:58 -08006540 } else if (len >= sizeof(struct sctp_assoc_value)) {
6541 len = sizeof(struct sctp_assoc_value);
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006542 if (copy_from_user(&params, optval, len))
Wei Yongjune89c2092008-12-25 16:54:58 -08006543 return -EFAULT;
6544 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545 return -EINVAL;
6546
Wei Yongjune89c2092008-12-25 16:54:58 -08006547 asoc = sctp_id2assoc(sk, params.assoc_id);
Xin Long6fd769b2019-01-28 15:08:27 +08006548 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
6549 sctp_style(sk, UDP))
Wei Yongjune89c2092008-12-25 16:54:58 -08006550 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006551
Wei Yongjune89c2092008-12-25 16:54:58 -08006552 if (asoc)
6553 params.assoc_value = asoc->frag_point;
6554 else
6555 params.assoc_value = sctp_sk(sk)->user_frag;
6556
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557 if (put_user(len, optlen))
6558 return -EFAULT;
Wei Yongjune89c2092008-12-25 16:54:58 -08006559 if (len == sizeof(int)) {
6560 if (copy_to_user(optval, &params.assoc_value, len))
6561 return -EFAULT;
6562 } else {
6563 if (copy_to_user(optval, &params, len))
6564 return -EFAULT;
6565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566
6567 return 0;
6568}
6569
Vlad Yasevichb6e13312007-04-20 12:23:15 -07006570/*
6571 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
6572 * (chapter and verse is quoted at sctp_setsockopt_fragment_interleave())
6573 */
6574static int sctp_getsockopt_fragment_interleave(struct sock *sk, int len,
6575 char __user *optval, int __user *optlen)
6576{
6577 int val;
6578
6579 if (len < sizeof(int))
6580 return -EINVAL;
6581
6582 len = sizeof(int);
6583
6584 val = sctp_sk(sk)->frag_interleave;
6585 if (put_user(len, optlen))
6586 return -EFAULT;
6587 if (copy_to_user(optval, &val, len))
6588 return -EFAULT;
6589
6590 return 0;
6591}
6592
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006593/*
6594 * 7.1.25. Set or Get the sctp partial delivery point
6595 * (chapter and verse is quoted at sctp_setsockopt_partial_delivery_point())
6596 */
6597static int sctp_getsockopt_partial_delivery_point(struct sock *sk, int len,
6598 char __user *optval,
6599 int __user *optlen)
6600{
YOSHIFUJI Hideaki9cbcbf42007-07-19 10:44:50 +09006601 u32 val;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006602
6603 if (len < sizeof(u32))
6604 return -EINVAL;
6605
6606 len = sizeof(u32);
6607
6608 val = sctp_sk(sk)->pd_point;
6609 if (put_user(len, optlen))
6610 return -EFAULT;
6611 if (copy_to_user(optval, &val, len))
6612 return -EFAULT;
6613
Wei Yongjun7d743b72010-12-14 16:10:41 +00006614 return 0;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006615}
6616
Vlad Yasevich70331572007-03-23 11:34:36 -07006617/*
6618 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
6619 * (chapter and verse is quoted at sctp_setsockopt_maxburst())
6620 */
6621static int sctp_getsockopt_maxburst(struct sock *sk, int len,
6622 char __user *optval,
6623 int __user *optlen)
6624{
Neil Horman219b99a2008-03-05 13:44:46 -08006625 struct sctp_assoc_value params;
6626 struct sctp_sock *sp;
6627 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07006628
Neil Horman219b99a2008-03-05 13:44:46 -08006629 if (len == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05006630 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05006631 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05006632 "Use of int in max_burst socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05006633 "Use struct sctp_assoc_value instead\n",
6634 current->comm, task_pid_nr(current));
Neil Horman219b99a2008-03-05 13:44:46 -08006635 params.assoc_id = 0;
Wei Yongjunc6db93a2009-03-02 09:46:12 +00006636 } else if (len >= sizeof(struct sctp_assoc_value)) {
6637 len = sizeof(struct sctp_assoc_value);
Neil Horman219b99a2008-03-05 13:44:46 -08006638 if (copy_from_user(&params, optval, len))
6639 return -EFAULT;
6640 } else
6641 return -EINVAL;
Vlad Yasevich70331572007-03-23 11:34:36 -07006642
Neil Horman219b99a2008-03-05 13:44:46 -08006643 sp = sctp_sk(sk);
Vlad Yasevich70331572007-03-23 11:34:36 -07006644
Neil Horman219b99a2008-03-05 13:44:46 -08006645 if (params.assoc_id != 0) {
6646 asoc = sctp_id2assoc(sk, params.assoc_id);
6647 if (!asoc)
6648 return -EINVAL;
6649 params.assoc_value = asoc->max_burst;
6650 } else
6651 params.assoc_value = sp->max_burst;
6652
6653 if (len == sizeof(int)) {
6654 if (copy_to_user(optval, &params.assoc_value, len))
6655 return -EFAULT;
6656 } else {
6657 if (copy_to_user(optval, &params, len))
6658 return -EFAULT;
6659 }
6660
6661 return 0;
6662
Vlad Yasevich70331572007-03-23 11:34:36 -07006663}
6664
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006665static int sctp_getsockopt_hmac_ident(struct sock *sk, int len,
6666 char __user *optval, int __user *optlen)
6667{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006668 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006669 struct sctp_hmacalgo __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006670 struct sctp_hmac_algo_param *hmacs;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006671 __u16 data_len = 0;
6672 u32 num_idents;
Xin Long7a84bd42016-02-03 23:33:30 +08006673 int i;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006674
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006675 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006676 return -EACCES;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006677
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006678 hmacs = ep->auth_hmacs_list;
Xin Long3c918702017-06-30 11:52:16 +08006679 data_len = ntohs(hmacs->param_hdr.length) -
6680 sizeof(struct sctp_paramhdr);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006681
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006682 if (len < sizeof(struct sctp_hmacalgo) + data_len)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006683 return -EINVAL;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006684
6685 len = sizeof(struct sctp_hmacalgo) + data_len;
6686 num_idents = data_len / sizeof(u16);
6687
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006688 if (put_user(len, optlen))
6689 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006690 if (put_user(num_idents, &p->shmac_num_idents))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006691 return -EFAULT;
Xin Long7a84bd42016-02-03 23:33:30 +08006692 for (i = 0; i < num_idents; i++) {
6693 __u16 hmacid = ntohs(hmacs->hmac_ids[i]);
6694
6695 if (copy_to_user(&p->shmac_idents[i], &hmacid, sizeof(__u16)))
6696 return -EFAULT;
6697 }
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006698 return 0;
6699}
6700
6701static int sctp_getsockopt_active_key(struct sock *sk, int len,
6702 char __user *optval, int __user *optlen)
6703{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006704 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006705 struct sctp_authkeyid val;
6706 struct sctp_association *asoc;
6707
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006708 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006709 return -EACCES;
6710
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006711 if (len < sizeof(struct sctp_authkeyid))
6712 return -EINVAL;
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006713
6714 len = sizeof(struct sctp_authkeyid);
6715 if (copy_from_user(&val, optval, len))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006716 return -EFAULT;
6717
6718 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
6719 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
6720 return -EINVAL;
6721
6722 if (asoc)
6723 val.scact_keynumber = asoc->active_key_id;
6724 else
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006725 val.scact_keynumber = ep->active_key_id;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006726
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006727 if (put_user(len, optlen))
6728 return -EFAULT;
6729 if (copy_to_user(optval, &val, len))
6730 return -EFAULT;
6731
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006732 return 0;
6733}
6734
6735static int sctp_getsockopt_peer_auth_chunks(struct sock *sk, int len,
6736 char __user *optval, int __user *optlen)
6737{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006738 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Al Viro411223c2007-10-14 19:21:20 +01006739 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006740 struct sctp_authchunks val;
6741 struct sctp_association *asoc;
6742 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006743 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006744 char __user *to;
6745
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006746 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006747 return -EACCES;
6748
6749 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006750 return -EINVAL;
6751
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006752 if (copy_from_user(&val, optval, sizeof(val)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006753 return -EFAULT;
6754
Al Viro411223c2007-10-14 19:21:20 +01006755 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006756 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6757 if (!asoc)
6758 return -EINVAL;
6759
6760 ch = asoc->peer.peer_chunks;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006761 if (!ch)
6762 goto num;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006763
6764 /* See if the user provided enough room for all the data */
Xin Long3c918702017-06-30 11:52:16 +08006765 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
Vlad Yasevichb40db682008-02-27 14:40:37 -05006766 if (len < num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006767 return -EINVAL;
6768
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006769 if (copy_to_user(to, ch->chunks, num_chunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006770 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006771num:
6772 len = sizeof(struct sctp_authchunks) + num_chunks;
wangweidong8d726512013-12-23 12:16:53 +08006773 if (put_user(len, optlen))
6774 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05006775 if (put_user(num_chunks, &p->gauth_number_of_chunks))
6776 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006777 return 0;
6778}
6779
6780static int sctp_getsockopt_local_auth_chunks(struct sock *sk, int len,
6781 char __user *optval, int __user *optlen)
6782{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006783 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Al Viro411223c2007-10-14 19:21:20 +01006784 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006785 struct sctp_authchunks val;
6786 struct sctp_association *asoc;
6787 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006788 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006789 char __user *to;
6790
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006791 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006792 return -EACCES;
6793
6794 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006795 return -EINVAL;
6796
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006797 if (copy_from_user(&val, optval, sizeof(val)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006798 return -EFAULT;
6799
Al Viro411223c2007-10-14 19:21:20 +01006800 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006801 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
Xin Long48c07212019-01-28 15:08:28 +08006802 if (!asoc && val.gauth_assoc_id != SCTP_FUTURE_ASSOC &&
6803 sctp_style(sk, UDP))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006804 return -EINVAL;
6805
Xin Long48c07212019-01-28 15:08:28 +08006806 ch = asoc ? (struct sctp_chunks_param *)asoc->c.auth_chunks
6807 : ep->auth_chunk_list;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006808 if (!ch)
6809 goto num;
6810
Xin Long3c918702017-06-30 11:52:16 +08006811 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006812 if (len < sizeof(struct sctp_authchunks) + num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006813 return -EINVAL;
6814
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006815 if (copy_to_user(to, ch->chunks, num_chunks))
6816 return -EFAULT;
6817num:
6818 len = sizeof(struct sctp_authchunks) + num_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006819 if (put_user(len, optlen))
6820 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05006821 if (put_user(num_chunks, &p->gauth_number_of_chunks))
6822 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006823
6824 return 0;
6825}
6826
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08006827/*
6828 * 8.2.5. Get the Current Number of Associations (SCTP_GET_ASSOC_NUMBER)
6829 * This option gets the current number of associations that are attached
6830 * to a one-to-many style socket. The option value is an uint32_t.
6831 */
6832static int sctp_getsockopt_assoc_number(struct sock *sk, int len,
6833 char __user *optval, int __user *optlen)
6834{
6835 struct sctp_sock *sp = sctp_sk(sk);
6836 struct sctp_association *asoc;
6837 u32 val = 0;
6838
6839 if (sctp_style(sk, TCP))
6840 return -EOPNOTSUPP;
6841
6842 if (len < sizeof(u32))
6843 return -EINVAL;
6844
6845 len = sizeof(u32);
6846
6847 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6848 val++;
6849 }
6850
6851 if (put_user(len, optlen))
6852 return -EFAULT;
6853 if (copy_to_user(optval, &val, len))
6854 return -EFAULT;
6855
6856 return 0;
6857}
6858
Wei Yongjun209ba422011-04-17 17:27:08 +00006859/*
Michio Honda7dc04d72011-04-26 20:16:31 +09006860 * 8.1.23 SCTP_AUTO_ASCONF
6861 * See the corresponding setsockopt entry as description
6862 */
6863static int sctp_getsockopt_auto_asconf(struct sock *sk, int len,
6864 char __user *optval, int __user *optlen)
6865{
6866 int val = 0;
6867
6868 if (len < sizeof(int))
6869 return -EINVAL;
6870
6871 len = sizeof(int);
6872 if (sctp_sk(sk)->do_auto_asconf && sctp_is_ep_boundall(sk))
6873 val = 1;
6874 if (put_user(len, optlen))
6875 return -EFAULT;
6876 if (copy_to_user(optval, &val, len))
6877 return -EFAULT;
6878 return 0;
6879}
6880
6881/*
Wei Yongjun209ba422011-04-17 17:27:08 +00006882 * 8.2.6. Get the Current Identifiers of Associations
6883 * (SCTP_GET_ASSOC_ID_LIST)
6884 *
6885 * This option gets the current list of SCTP association identifiers of
6886 * the SCTP associations handled by a one-to-many style socket.
6887 */
6888static int sctp_getsockopt_assoc_ids(struct sock *sk, int len,
6889 char __user *optval, int __user *optlen)
6890{
6891 struct sctp_sock *sp = sctp_sk(sk);
6892 struct sctp_association *asoc;
6893 struct sctp_assoc_ids *ids;
6894 u32 num = 0;
6895
6896 if (sctp_style(sk, TCP))
6897 return -EOPNOTSUPP;
6898
6899 if (len < sizeof(struct sctp_assoc_ids))
6900 return -EINVAL;
6901
6902 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6903 num++;
6904 }
6905
6906 if (len < sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num)
6907 return -EINVAL;
6908
6909 len = sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num;
6910
Marcelo Ricardo Leitner9ba0b962015-12-23 16:28:40 -02006911 ids = kmalloc(len, GFP_USER | __GFP_NOWARN);
Wei Yongjun209ba422011-04-17 17:27:08 +00006912 if (unlikely(!ids))
6913 return -ENOMEM;
6914
6915 ids->gaids_number_of_ids = num;
6916 num = 0;
6917 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6918 ids->gaids_assoc_id[num++] = asoc->assoc_id;
6919 }
6920
6921 if (put_user(len, optlen) || copy_to_user(optval, ids, len)) {
6922 kfree(ids);
6923 return -EFAULT;
6924 }
6925
6926 kfree(ids);
6927 return 0;
6928}
6929
Neil Horman5aa93bc2012-07-21 07:56:07 +00006930/*
6931 * SCTP_PEER_ADDR_THLDS
6932 *
6933 * This option allows us to fetch the partially failed threshold for one or all
6934 * transports in an association. See Section 6.1 of:
6935 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
6936 */
6937static int sctp_getsockopt_paddr_thresholds(struct sock *sk,
6938 char __user *optval,
6939 int len,
6940 int __user *optlen)
6941{
6942 struct sctp_paddrthlds val;
6943 struct sctp_transport *trans;
6944 struct sctp_association *asoc;
6945
6946 if (len < sizeof(struct sctp_paddrthlds))
6947 return -EINVAL;
6948 len = sizeof(struct sctp_paddrthlds);
6949 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval, len))
6950 return -EFAULT;
6951
Xin Long8add5432019-01-28 15:08:29 +08006952 if (!sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
Neil Horman5aa93bc2012-07-21 07:56:07 +00006953 trans = sctp_addr_id2transport(sk, &val.spt_address,
6954 val.spt_assoc_id);
6955 if (!trans)
6956 return -ENOENT;
6957
6958 val.spt_pathmaxrxt = trans->pathmaxrxt;
6959 val.spt_pathpfthld = trans->pf_retrans;
Xin Long8add5432019-01-28 15:08:29 +08006960
6961 return 0;
6962 }
6963
6964 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
6965 if (!asoc && val.spt_assoc_id != SCTP_FUTURE_ASSOC &&
6966 sctp_style(sk, UDP))
6967 return -EINVAL;
6968
6969 if (asoc) {
6970 val.spt_pathpfthld = asoc->pf_retrans;
6971 val.spt_pathmaxrxt = asoc->pathmaxrxt;
6972 } else {
6973 struct sctp_sock *sp = sctp_sk(sk);
6974
6975 val.spt_pathpfthld = sp->pf_retrans;
6976 val.spt_pathmaxrxt = sp->pathmaxrxt;
Neil Horman5aa93bc2012-07-21 07:56:07 +00006977 }
6978
6979 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
6980 return -EFAULT;
6981
6982 return 0;
6983}
6984
Michele Baldessari196d6752012-12-01 04:49:42 +00006985/*
6986 * SCTP_GET_ASSOC_STATS
6987 *
6988 * This option retrieves local per endpoint statistics. It is modeled
6989 * after OpenSolaris' implementation
6990 */
6991static int sctp_getsockopt_assoc_stats(struct sock *sk, int len,
6992 char __user *optval,
6993 int __user *optlen)
6994{
6995 struct sctp_assoc_stats sas;
6996 struct sctp_association *asoc = NULL;
6997
6998 /* User must provide at least the assoc id */
6999 if (len < sizeof(sctp_assoc_t))
7000 return -EINVAL;
7001
Guenter Roeck726bc6b2013-02-27 10:57:31 +00007002 /* Allow the struct to grow and fill in as much as possible */
7003 len = min_t(size_t, len, sizeof(sas));
7004
Michele Baldessari196d6752012-12-01 04:49:42 +00007005 if (copy_from_user(&sas, optval, len))
7006 return -EFAULT;
7007
7008 asoc = sctp_id2assoc(sk, sas.sas_assoc_id);
7009 if (!asoc)
7010 return -EINVAL;
7011
7012 sas.sas_rtxchunks = asoc->stats.rtxchunks;
7013 sas.sas_gapcnt = asoc->stats.gapcnt;
7014 sas.sas_outofseqtsns = asoc->stats.outofseqtsns;
7015 sas.sas_osacks = asoc->stats.osacks;
7016 sas.sas_isacks = asoc->stats.isacks;
7017 sas.sas_octrlchunks = asoc->stats.octrlchunks;
7018 sas.sas_ictrlchunks = asoc->stats.ictrlchunks;
7019 sas.sas_oodchunks = asoc->stats.oodchunks;
7020 sas.sas_iodchunks = asoc->stats.iodchunks;
7021 sas.sas_ouodchunks = asoc->stats.ouodchunks;
7022 sas.sas_iuodchunks = asoc->stats.iuodchunks;
7023 sas.sas_idupchunks = asoc->stats.idupchunks;
7024 sas.sas_opackets = asoc->stats.opackets;
7025 sas.sas_ipackets = asoc->stats.ipackets;
7026
7027 /* New high max rto observed, will return 0 if not a single
7028 * RTO update took place. obs_rto_ipaddr will be bogus
7029 * in such a case
7030 */
7031 sas.sas_maxrto = asoc->stats.max_obs_rto;
7032 memcpy(&sas.sas_obs_rto_ipaddr, &asoc->stats.obs_rto_ipaddr,
7033 sizeof(struct sockaddr_storage));
7034
7035 /* Mark beginning of a new observation period */
7036 asoc->stats.max_obs_rto = asoc->rto_min;
7037
Michele Baldessari196d6752012-12-01 04:49:42 +00007038 if (put_user(len, optlen))
7039 return -EFAULT;
7040
Daniel Borkmannbb333812013-06-28 19:49:40 +02007041 pr_debug("%s: len:%d, assoc_id:%d\n", __func__, len, sas.sas_assoc_id);
Michele Baldessari196d6752012-12-01 04:49:42 +00007042
7043 if (copy_to_user(optval, &sas, len))
7044 return -EFAULT;
7045
7046 return 0;
7047}
7048
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02007049static int sctp_getsockopt_recvrcvinfo(struct sock *sk, int len,
7050 char __user *optval,
7051 int __user *optlen)
7052{
7053 int val = 0;
7054
7055 if (len < sizeof(int))
7056 return -EINVAL;
7057
7058 len = sizeof(int);
7059 if (sctp_sk(sk)->recvrcvinfo)
7060 val = 1;
7061 if (put_user(len, optlen))
7062 return -EFAULT;
7063 if (copy_to_user(optval, &val, len))
7064 return -EFAULT;
7065
7066 return 0;
7067}
7068
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02007069static int sctp_getsockopt_recvnxtinfo(struct sock *sk, int len,
7070 char __user *optval,
7071 int __user *optlen)
7072{
7073 int val = 0;
7074
7075 if (len < sizeof(int))
7076 return -EINVAL;
7077
7078 len = sizeof(int);
7079 if (sctp_sk(sk)->recvnxtinfo)
7080 val = 1;
7081 if (put_user(len, optlen))
7082 return -EFAULT;
7083 if (copy_to_user(optval, &val, len))
7084 return -EFAULT;
7085
7086 return 0;
7087}
7088
Xin Long28aa4c22016-07-09 19:47:40 +08007089static int sctp_getsockopt_pr_supported(struct sock *sk, int len,
7090 char __user *optval,
7091 int __user *optlen)
7092{
7093 struct sctp_assoc_value params;
7094 struct sctp_association *asoc;
7095 int retval = -EFAULT;
7096
7097 if (len < sizeof(params)) {
7098 retval = -EINVAL;
7099 goto out;
7100 }
7101
7102 len = sizeof(params);
7103 if (copy_from_user(&params, optval, len))
7104 goto out;
7105
7106 asoc = sctp_id2assoc(sk, params.assoc_id);
Xin Longfb195602019-01-28 15:08:30 +08007107 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7108 sctp_style(sk, UDP)) {
Xin Long28aa4c22016-07-09 19:47:40 +08007109 retval = -EINVAL;
7110 goto out;
7111 }
7112
Xin Longfb195602019-01-28 15:08:30 +08007113 params.assoc_value = asoc ? asoc->prsctp_enable
7114 : sctp_sk(sk)->ep->prsctp_enable;
7115
Xin Long28aa4c22016-07-09 19:47:40 +08007116 if (put_user(len, optlen))
7117 goto out;
7118
7119 if (copy_to_user(optval, &params, len))
7120 goto out;
7121
7122 retval = 0;
7123
7124out:
7125 return retval;
7126}
7127
Xin Longf959fb42016-07-09 19:47:41 +08007128static int sctp_getsockopt_default_prinfo(struct sock *sk, int len,
7129 char __user *optval,
7130 int __user *optlen)
7131{
7132 struct sctp_default_prinfo info;
7133 struct sctp_association *asoc;
7134 int retval = -EFAULT;
7135
7136 if (len < sizeof(info)) {
7137 retval = -EINVAL;
7138 goto out;
7139 }
7140
7141 len = sizeof(info);
7142 if (copy_from_user(&info, optval, len))
7143 goto out;
7144
7145 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
7146 if (asoc) {
7147 info.pr_policy = SCTP_PR_POLICY(asoc->default_flags);
7148 info.pr_value = asoc->default_timetolive;
7149 } else if (!info.pr_assoc_id) {
7150 struct sctp_sock *sp = sctp_sk(sk);
7151
7152 info.pr_policy = SCTP_PR_POLICY(sp->default_flags);
7153 info.pr_value = sp->default_timetolive;
7154 } else {
7155 retval = -EINVAL;
7156 goto out;
7157 }
7158
7159 if (put_user(len, optlen))
7160 goto out;
7161
7162 if (copy_to_user(optval, &info, len))
7163 goto out;
7164
7165 retval = 0;
7166
7167out:
7168 return retval;
7169}
7170
Xin Long826d2532016-07-09 19:47:42 +08007171static int sctp_getsockopt_pr_assocstatus(struct sock *sk, int len,
7172 char __user *optval,
7173 int __user *optlen)
7174{
7175 struct sctp_prstatus params;
7176 struct sctp_association *asoc;
7177 int policy;
7178 int retval = -EINVAL;
7179
7180 if (len < sizeof(params))
7181 goto out;
7182
7183 len = sizeof(params);
7184 if (copy_from_user(&params, optval, len)) {
7185 retval = -EFAULT;
7186 goto out;
7187 }
7188
7189 policy = params.sprstat_policy;
Xin Long71335832018-10-29 23:13:11 +08007190 if (!policy || (policy & ~(SCTP_PR_SCTP_MASK | SCTP_PR_SCTP_ALL)) ||
7191 ((policy & SCTP_PR_SCTP_ALL) && (policy & SCTP_PR_SCTP_MASK)))
Xin Long826d2532016-07-09 19:47:42 +08007192 goto out;
7193
7194 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
7195 if (!asoc)
7196 goto out;
7197
Xin Long71335832018-10-29 23:13:11 +08007198 if (policy == SCTP_PR_SCTP_ALL) {
Xin Long826d2532016-07-09 19:47:42 +08007199 params.sprstat_abandoned_unsent = 0;
7200 params.sprstat_abandoned_sent = 0;
7201 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
7202 params.sprstat_abandoned_unsent +=
7203 asoc->abandoned_unsent[policy];
7204 params.sprstat_abandoned_sent +=
7205 asoc->abandoned_sent[policy];
7206 }
7207 } else {
7208 params.sprstat_abandoned_unsent =
7209 asoc->abandoned_unsent[__SCTP_PR_INDEX(policy)];
7210 params.sprstat_abandoned_sent =
7211 asoc->abandoned_sent[__SCTP_PR_INDEX(policy)];
7212 }
7213
7214 if (put_user(len, optlen)) {
7215 retval = -EFAULT;
7216 goto out;
7217 }
7218
7219 if (copy_to_user(optval, &params, len)) {
7220 retval = -EFAULT;
7221 goto out;
7222 }
7223
7224 retval = 0;
7225
7226out:
7227 return retval;
7228}
7229
Xin Longd229d482017-04-01 17:07:46 +08007230static int sctp_getsockopt_pr_streamstatus(struct sock *sk, int len,
7231 char __user *optval,
7232 int __user *optlen)
7233{
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007234 struct sctp_stream_out_ext *streamoute;
Xin Longd229d482017-04-01 17:07:46 +08007235 struct sctp_association *asoc;
7236 struct sctp_prstatus params;
7237 int retval = -EINVAL;
7238 int policy;
7239
7240 if (len < sizeof(params))
7241 goto out;
7242
7243 len = sizeof(params);
7244 if (copy_from_user(&params, optval, len)) {
7245 retval = -EFAULT;
7246 goto out;
7247 }
7248
7249 policy = params.sprstat_policy;
Xin Long71335832018-10-29 23:13:11 +08007250 if (!policy || (policy & ~(SCTP_PR_SCTP_MASK | SCTP_PR_SCTP_ALL)) ||
7251 ((policy & SCTP_PR_SCTP_ALL) && (policy & SCTP_PR_SCTP_MASK)))
Xin Longd229d482017-04-01 17:07:46 +08007252 goto out;
7253
7254 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
Xin Longcee360a2017-05-31 16:36:31 +08007255 if (!asoc || params.sprstat_sid >= asoc->stream.outcnt)
Xin Longd229d482017-04-01 17:07:46 +08007256 goto out;
7257
Konstantin Khorenko05364ca2018-08-10 20:11:42 +03007258 streamoute = SCTP_SO(&asoc->stream, params.sprstat_sid)->ext;
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007259 if (!streamoute) {
7260 /* Not allocated yet, means all stats are 0 */
7261 params.sprstat_abandoned_unsent = 0;
7262 params.sprstat_abandoned_sent = 0;
7263 retval = 0;
7264 goto out;
7265 }
7266
Xin Long0ac10772018-10-16 15:52:02 +08007267 if (policy == SCTP_PR_SCTP_ALL) {
Xin Longd229d482017-04-01 17:07:46 +08007268 params.sprstat_abandoned_unsent = 0;
7269 params.sprstat_abandoned_sent = 0;
7270 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
7271 params.sprstat_abandoned_unsent +=
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007272 streamoute->abandoned_unsent[policy];
Xin Longd229d482017-04-01 17:07:46 +08007273 params.sprstat_abandoned_sent +=
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007274 streamoute->abandoned_sent[policy];
Xin Longd229d482017-04-01 17:07:46 +08007275 }
7276 } else {
7277 params.sprstat_abandoned_unsent =
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007278 streamoute->abandoned_unsent[__SCTP_PR_INDEX(policy)];
Xin Longd229d482017-04-01 17:07:46 +08007279 params.sprstat_abandoned_sent =
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007280 streamoute->abandoned_sent[__SCTP_PR_INDEX(policy)];
Xin Longd229d482017-04-01 17:07:46 +08007281 }
7282
7283 if (put_user(len, optlen) || copy_to_user(optval, &params, len)) {
7284 retval = -EFAULT;
7285 goto out;
7286 }
7287
7288 retval = 0;
7289
7290out:
7291 return retval;
7292}
7293
Xin Longc0d8bab2017-03-10 12:11:12 +08007294static int sctp_getsockopt_reconfig_supported(struct sock *sk, int len,
7295 char __user *optval,
7296 int __user *optlen)
7297{
7298 struct sctp_assoc_value params;
7299 struct sctp_association *asoc;
7300 int retval = -EFAULT;
7301
7302 if (len < sizeof(params)) {
7303 retval = -EINVAL;
7304 goto out;
7305 }
7306
7307 len = sizeof(params);
7308 if (copy_from_user(&params, optval, len))
7309 goto out;
7310
7311 asoc = sctp_id2assoc(sk, params.assoc_id);
Xin Longacce7f32019-01-28 15:08:31 +08007312 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7313 sctp_style(sk, UDP)) {
Xin Longc0d8bab2017-03-10 12:11:12 +08007314 retval = -EINVAL;
7315 goto out;
7316 }
7317
Xin Longacce7f32019-01-28 15:08:31 +08007318 params.assoc_value = asoc ? asoc->reconf_enable
7319 : sctp_sk(sk)->ep->reconf_enable;
7320
Xin Longc0d8bab2017-03-10 12:11:12 +08007321 if (put_user(len, optlen))
7322 goto out;
7323
7324 if (copy_to_user(optval, &params, len))
7325 goto out;
7326
7327 retval = 0;
7328
7329out:
7330 return retval;
7331}
7332
Xin Long9fb657a2017-01-18 00:44:46 +08007333static int sctp_getsockopt_enable_strreset(struct sock *sk, int len,
7334 char __user *optval,
7335 int __user *optlen)
7336{
7337 struct sctp_assoc_value params;
7338 struct sctp_association *asoc;
7339 int retval = -EFAULT;
7340
7341 if (len < sizeof(params)) {
7342 retval = -EINVAL;
7343 goto out;
7344 }
7345
7346 len = sizeof(params);
7347 if (copy_from_user(&params, optval, len))
7348 goto out;
7349
7350 asoc = sctp_id2assoc(sk, params.assoc_id);
7351 if (asoc) {
7352 params.assoc_value = asoc->strreset_enable;
7353 } else if (!params.assoc_id) {
7354 struct sctp_sock *sp = sctp_sk(sk);
7355
7356 params.assoc_value = sp->ep->strreset_enable;
7357 } else {
7358 retval = -EINVAL;
7359 goto out;
7360 }
7361
7362 if (put_user(len, optlen))
7363 goto out;
7364
7365 if (copy_to_user(optval, &params, len))
7366 goto out;
7367
7368 retval = 0;
7369
7370out:
7371 return retval;
7372}
7373
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03007374static int sctp_getsockopt_scheduler(struct sock *sk, int len,
7375 char __user *optval,
7376 int __user *optlen)
7377{
7378 struct sctp_assoc_value params;
7379 struct sctp_association *asoc;
7380 int retval = -EFAULT;
7381
7382 if (len < sizeof(params)) {
7383 retval = -EINVAL;
7384 goto out;
7385 }
7386
7387 len = sizeof(params);
7388 if (copy_from_user(&params, optval, len))
7389 goto out;
7390
7391 asoc = sctp_id2assoc(sk, params.assoc_id);
7392 if (!asoc) {
7393 retval = -EINVAL;
7394 goto out;
7395 }
7396
7397 params.assoc_value = sctp_sched_get_sched(asoc);
7398
7399 if (put_user(len, optlen))
7400 goto out;
7401
7402 if (copy_to_user(optval, &params, len))
7403 goto out;
7404
7405 retval = 0;
7406
7407out:
7408 return retval;
7409}
7410
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03007411static int sctp_getsockopt_scheduler_value(struct sock *sk, int len,
7412 char __user *optval,
7413 int __user *optlen)
7414{
7415 struct sctp_stream_value params;
7416 struct sctp_association *asoc;
7417 int retval = -EFAULT;
7418
7419 if (len < sizeof(params)) {
7420 retval = -EINVAL;
7421 goto out;
7422 }
7423
7424 len = sizeof(params);
7425 if (copy_from_user(&params, optval, len))
7426 goto out;
7427
7428 asoc = sctp_id2assoc(sk, params.assoc_id);
7429 if (!asoc) {
7430 retval = -EINVAL;
7431 goto out;
7432 }
7433
7434 retval = sctp_sched_get_value(asoc, params.stream_id,
7435 &params.stream_value);
7436 if (retval)
7437 goto out;
7438
7439 if (put_user(len, optlen)) {
7440 retval = -EFAULT;
7441 goto out;
7442 }
7443
7444 if (copy_to_user(optval, &params, len)) {
7445 retval = -EFAULT;
7446 goto out;
7447 }
7448
7449out:
7450 return retval;
7451}
7452
Xin Long772a5862017-12-08 21:03:58 +08007453static int sctp_getsockopt_interleaving_supported(struct sock *sk, int len,
7454 char __user *optval,
7455 int __user *optlen)
7456{
7457 struct sctp_assoc_value params;
7458 struct sctp_association *asoc;
7459 int retval = -EFAULT;
7460
7461 if (len < sizeof(params)) {
7462 retval = -EINVAL;
7463 goto out;
7464 }
7465
7466 len = sizeof(params);
7467 if (copy_from_user(&params, optval, len))
7468 goto out;
7469
7470 asoc = sctp_id2assoc(sk, params.assoc_id);
Xin Long2e7709d2019-01-28 15:08:32 +08007471 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7472 sctp_style(sk, UDP)) {
Xin Long772a5862017-12-08 21:03:58 +08007473 retval = -EINVAL;
7474 goto out;
7475 }
7476
Xin Long2e7709d2019-01-28 15:08:32 +08007477 params.assoc_value = asoc ? asoc->intl_enable
7478 : sctp_sk(sk)->strm_interleave;
7479
Xin Long772a5862017-12-08 21:03:58 +08007480 if (put_user(len, optlen))
7481 goto out;
7482
7483 if (copy_to_user(optval, &params, len))
7484 goto out;
7485
7486 retval = 0;
7487
7488out:
7489 return retval;
7490}
7491
Xin Longb0e9a2f2018-06-28 15:31:00 +08007492static int sctp_getsockopt_reuse_port(struct sock *sk, int len,
7493 char __user *optval,
7494 int __user *optlen)
7495{
7496 int val;
7497
7498 if (len < sizeof(int))
7499 return -EINVAL;
7500
7501 len = sizeof(int);
7502 val = sctp_sk(sk)->reuse;
7503 if (put_user(len, optlen))
7504 return -EFAULT;
7505
7506 if (copy_to_user(optval, &val, len))
7507 return -EFAULT;
7508
7509 return 0;
7510}
7511
Xin Long480ba9c2018-11-18 16:08:54 +08007512static int sctp_getsockopt_event(struct sock *sk, int len, char __user *optval,
7513 int __user *optlen)
7514{
7515 struct sctp_association *asoc;
7516 struct sctp_event param;
7517 __u16 subscribe;
7518
7519 if (len < sizeof(param))
7520 return -EINVAL;
7521
7522 len = sizeof(param);
7523 if (copy_from_user(&param, optval, len))
7524 return -EFAULT;
7525
7526 if (param.se_type < SCTP_SN_TYPE_BASE ||
7527 param.se_type > SCTP_SN_TYPE_MAX)
7528 return -EINVAL;
7529
7530 asoc = sctp_id2assoc(sk, param.se_assoc_id);
7531 subscribe = asoc ? asoc->subscribe : sctp_sk(sk)->subscribe;
7532 param.se_on = sctp_ulpevent_type_enabled(subscribe, param.se_type);
7533
7534 if (put_user(len, optlen))
7535 return -EFAULT;
7536
7537 if (copy_to_user(optval, &param, len))
7538 return -EFAULT;
7539
7540 return 0;
7541}
7542
Daniel Borkmanndda91922013-06-17 11:40:05 +02007543static int sctp_getsockopt(struct sock *sk, int level, int optname,
7544 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007545{
7546 int retval = 0;
7547 int len;
7548
Daniel Borkmannbb333812013-06-28 19:49:40 +02007549 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007550
7551 /* I can hardly begin to describe how wrong this is. This is
7552 * so broken as to be worse than useless. The API draft
7553 * REALLY is NOT helpful here... I am not convinced that the
7554 * semantics of getsockopt() with a level OTHER THAN SOL_SCTP
7555 * are at all well-founded.
7556 */
7557 if (level != SOL_SCTP) {
7558 struct sctp_af *af = sctp_sk(sk)->pf->af;
7559
7560 retval = af->getsockopt(sk, level, optname, optval, optlen);
7561 return retval;
7562 }
7563
7564 if (get_user(len, optlen))
7565 return -EFAULT;
7566
Jiri Slabya4b8e712016-10-21 14:13:24 +02007567 if (len < 0)
7568 return -EINVAL;
7569
wangweidong048ed4b2014-01-21 15:44:11 +08007570 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007571
7572 switch (optname) {
7573 case SCTP_STATUS:
7574 retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen);
7575 break;
7576 case SCTP_DISABLE_FRAGMENTS:
7577 retval = sctp_getsockopt_disable_fragments(sk, len, optval,
7578 optlen);
7579 break;
7580 case SCTP_EVENTS:
7581 retval = sctp_getsockopt_events(sk, len, optval, optlen);
7582 break;
7583 case SCTP_AUTOCLOSE:
7584 retval = sctp_getsockopt_autoclose(sk, len, optval, optlen);
7585 break;
7586 case SCTP_SOCKOPT_PEELOFF:
7587 retval = sctp_getsockopt_peeloff(sk, len, optval, optlen);
7588 break;
Neil Horman2cb5c8e2017-06-30 13:32:57 -04007589 case SCTP_SOCKOPT_PEELOFF_FLAGS:
7590 retval = sctp_getsockopt_peeloff_flags(sk, len, optval, optlen);
7591 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007592 case SCTP_PEER_ADDR_PARAMS:
7593 retval = sctp_getsockopt_peer_addr_params(sk, len, optval,
7594 optlen);
7595 break;
Shan Wei4580ccc2011-01-18 22:39:00 +00007596 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07007597 retval = sctp_getsockopt_delayed_ack(sk, len, optval,
Frank Filz77086102005-12-22 11:37:30 -08007598 optlen);
7599 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007600 case SCTP_INITMSG:
7601 retval = sctp_getsockopt_initmsg(sk, len, optval, optlen);
7602 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007603 case SCTP_GET_PEER_ADDRS:
7604 retval = sctp_getsockopt_peer_addrs(sk, len, optval,
7605 optlen);
7606 break;
7607 case SCTP_GET_LOCAL_ADDRS:
7608 retval = sctp_getsockopt_local_addrs(sk, len, optval,
7609 optlen);
7610 break;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04007611 case SCTP_SOCKOPT_CONNECTX3:
7612 retval = sctp_getsockopt_connectx3(sk, len, optval, optlen);
7613 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007614 case SCTP_DEFAULT_SEND_PARAM:
7615 retval = sctp_getsockopt_default_send_param(sk, len,
7616 optval, optlen);
7617 break;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02007618 case SCTP_DEFAULT_SNDINFO:
7619 retval = sctp_getsockopt_default_sndinfo(sk, len,
7620 optval, optlen);
7621 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007622 case SCTP_PRIMARY_ADDR:
7623 retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen);
7624 break;
7625 case SCTP_NODELAY:
7626 retval = sctp_getsockopt_nodelay(sk, len, optval, optlen);
7627 break;
7628 case SCTP_RTOINFO:
7629 retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen);
7630 break;
7631 case SCTP_ASSOCINFO:
7632 retval = sctp_getsockopt_associnfo(sk, len, optval, optlen);
7633 break;
7634 case SCTP_I_WANT_MAPPED_V4_ADDR:
7635 retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen);
7636 break;
7637 case SCTP_MAXSEG:
7638 retval = sctp_getsockopt_maxseg(sk, len, optval, optlen);
7639 break;
7640 case SCTP_GET_PEER_ADDR_INFO:
7641 retval = sctp_getsockopt_peer_addr_info(sk, len, optval,
7642 optlen);
7643 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08007644 case SCTP_ADAPTATION_LAYER:
7645 retval = sctp_getsockopt_adaptation_layer(sk, len, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007646 optlen);
7647 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08007648 case SCTP_CONTEXT:
7649 retval = sctp_getsockopt_context(sk, len, optval, optlen);
7650 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07007651 case SCTP_FRAGMENT_INTERLEAVE:
7652 retval = sctp_getsockopt_fragment_interleave(sk, len, optval,
7653 optlen);
7654 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07007655 case SCTP_PARTIAL_DELIVERY_POINT:
7656 retval = sctp_getsockopt_partial_delivery_point(sk, len, optval,
7657 optlen);
7658 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07007659 case SCTP_MAX_BURST:
7660 retval = sctp_getsockopt_maxburst(sk, len, optval, optlen);
7661 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007662 case SCTP_AUTH_KEY:
7663 case SCTP_AUTH_CHUNK:
7664 case SCTP_AUTH_DELETE_KEY:
Xin Long601590e2018-03-14 19:05:32 +08007665 case SCTP_AUTH_DEACTIVATE_KEY:
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007666 retval = -EOPNOTSUPP;
7667 break;
7668 case SCTP_HMAC_IDENT:
7669 retval = sctp_getsockopt_hmac_ident(sk, len, optval, optlen);
7670 break;
7671 case SCTP_AUTH_ACTIVE_KEY:
7672 retval = sctp_getsockopt_active_key(sk, len, optval, optlen);
7673 break;
7674 case SCTP_PEER_AUTH_CHUNKS:
7675 retval = sctp_getsockopt_peer_auth_chunks(sk, len, optval,
7676 optlen);
7677 break;
7678 case SCTP_LOCAL_AUTH_CHUNKS:
7679 retval = sctp_getsockopt_local_auth_chunks(sk, len, optval,
7680 optlen);
7681 break;
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08007682 case SCTP_GET_ASSOC_NUMBER:
7683 retval = sctp_getsockopt_assoc_number(sk, len, optval, optlen);
7684 break;
Wei Yongjun209ba422011-04-17 17:27:08 +00007685 case SCTP_GET_ASSOC_ID_LIST:
7686 retval = sctp_getsockopt_assoc_ids(sk, len, optval, optlen);
7687 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09007688 case SCTP_AUTO_ASCONF:
7689 retval = sctp_getsockopt_auto_asconf(sk, len, optval, optlen);
7690 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00007691 case SCTP_PEER_ADDR_THLDS:
7692 retval = sctp_getsockopt_paddr_thresholds(sk, optval, len, optlen);
7693 break;
Michele Baldessari196d6752012-12-01 04:49:42 +00007694 case SCTP_GET_ASSOC_STATS:
7695 retval = sctp_getsockopt_assoc_stats(sk, len, optval, optlen);
7696 break;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02007697 case SCTP_RECVRCVINFO:
7698 retval = sctp_getsockopt_recvrcvinfo(sk, len, optval, optlen);
7699 break;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02007700 case SCTP_RECVNXTINFO:
7701 retval = sctp_getsockopt_recvnxtinfo(sk, len, optval, optlen);
7702 break;
Xin Long28aa4c22016-07-09 19:47:40 +08007703 case SCTP_PR_SUPPORTED:
7704 retval = sctp_getsockopt_pr_supported(sk, len, optval, optlen);
7705 break;
Xin Longf959fb42016-07-09 19:47:41 +08007706 case SCTP_DEFAULT_PRINFO:
7707 retval = sctp_getsockopt_default_prinfo(sk, len, optval,
7708 optlen);
7709 break;
Xin Long826d2532016-07-09 19:47:42 +08007710 case SCTP_PR_ASSOC_STATUS:
7711 retval = sctp_getsockopt_pr_assocstatus(sk, len, optval,
7712 optlen);
7713 break;
Xin Longd229d482017-04-01 17:07:46 +08007714 case SCTP_PR_STREAM_STATUS:
7715 retval = sctp_getsockopt_pr_streamstatus(sk, len, optval,
7716 optlen);
7717 break;
Xin Longc0d8bab2017-03-10 12:11:12 +08007718 case SCTP_RECONFIG_SUPPORTED:
7719 retval = sctp_getsockopt_reconfig_supported(sk, len, optval,
7720 optlen);
7721 break;
Xin Long9fb657a2017-01-18 00:44:46 +08007722 case SCTP_ENABLE_STREAM_RESET:
7723 retval = sctp_getsockopt_enable_strreset(sk, len, optval,
7724 optlen);
7725 break;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03007726 case SCTP_STREAM_SCHEDULER:
7727 retval = sctp_getsockopt_scheduler(sk, len, optval,
7728 optlen);
7729 break;
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03007730 case SCTP_STREAM_SCHEDULER_VALUE:
7731 retval = sctp_getsockopt_scheduler_value(sk, len, optval,
7732 optlen);
7733 break;
Xin Long772a5862017-12-08 21:03:58 +08007734 case SCTP_INTERLEAVING_SUPPORTED:
7735 retval = sctp_getsockopt_interleaving_supported(sk, len, optval,
7736 optlen);
7737 break;
Xin Longb0e9a2f2018-06-28 15:31:00 +08007738 case SCTP_REUSE_PORT:
7739 retval = sctp_getsockopt_reuse_port(sk, len, optval, optlen);
7740 break;
Xin Long480ba9c2018-11-18 16:08:54 +08007741 case SCTP_EVENT:
7742 retval = sctp_getsockopt_event(sk, len, optval, optlen);
7743 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007744 default:
7745 retval = -ENOPROTOOPT;
7746 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07007747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748
wangweidong048ed4b2014-01-21 15:44:11 +08007749 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007750 return retval;
7751}
7752
Craig Gallek086c6532016-02-10 11:50:35 -05007753static int sctp_hash(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007754{
7755 /* STUB */
Craig Gallek086c6532016-02-10 11:50:35 -05007756 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007757}
7758
7759static void sctp_unhash(struct sock *sk)
7760{
7761 /* STUB */
7762}
7763
7764/* Check if port is acceptable. Possibly find first available port.
7765 *
7766 * The port hash table (contained in the 'global' SCTP protocol storage
7767 * returned by struct sctp_protocol *sctp_get_protocol()). The hash
7768 * table is an array of 4096 lists (sctp_bind_hashbucket). Each
7769 * list (the list number is the port number hashed out, so as you
7770 * would expect from a hash function, all the ports in a given list have
7771 * such a number that hashes out to the same list number; you were
7772 * expecting that, right?); so each list has a set of ports, with a
7773 * link to the socket (struct sock) that uses it, the port number and
7774 * a fastreuse flag (FIXME: NPI ipg).
7775 */
7776static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007777 struct sctp_bind_hashbucket *head, struct net *, unsigned short snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007778
7779static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
7780{
Xin Long6ba84572018-11-12 18:27:17 +08007781 struct sctp_sock *sp = sctp_sk(sk);
7782 bool reuse = (sk->sk_reuse || sp->reuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007783 struct sctp_bind_hashbucket *head; /* hash list */
Xin Long6ba84572018-11-12 18:27:17 +08007784 kuid_t uid = sock_i_uid(sk);
Sasha Levinb67bfe02013-02-27 17:06:00 -08007785 struct sctp_bind_bucket *pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007786 unsigned short snum;
7787 int ret;
7788
Al Viro04afd8b2006-11-20 17:02:01 -08007789 snum = ntohs(addr->v4.sin_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007790
Daniel Borkmannbb333812013-06-28 19:49:40 +02007791 pr_debug("%s: begins, snum:%d\n", __func__, snum);
7792
wangweidong79b91132014-01-21 15:44:07 +08007793 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007794
7795 if (snum == 0) {
Stephen Hemminger06393002007-10-10 17:30:18 -07007796 /* Search for an available port. */
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007797 int low, high, remaining, index;
7798 unsigned int rover;
WANG Cong122ff242014-05-12 16:04:53 -07007799 struct net *net = sock_net(sk);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007800
WANG Cong122ff242014-05-12 16:04:53 -07007801 inet_get_local_port_range(net, &low, &high);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007802 remaining = (high - low) + 1;
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05007803 rover = prandom_u32() % remaining + low;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007804
Linus Torvalds1da177e2005-04-16 15:20:36 -07007805 do {
7806 rover++;
7807 if ((rover < low) || (rover > high))
7808 rover = low;
WANG Cong122ff242014-05-12 16:04:53 -07007809 if (inet_is_local_reserved_port(net, rover))
Amerigo Wange3826f12010-05-05 00:27:06 +00007810 continue;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007811 index = sctp_phashfn(sock_net(sk), rover);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007812 head = &sctp_port_hashtable[index];
wangweidong3c8e43b2014-01-21 15:44:08 +08007813 spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08007814 sctp_for_each_hentry(pp, &head->chain)
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007815 if ((pp->port == rover) &&
7816 net_eq(sock_net(sk), pp->net))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007817 goto next;
7818 break;
7819 next:
wangweidong3c8e43b2014-01-21 15:44:08 +08007820 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007821 } while (--remaining > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007822
7823 /* Exhausted local port range during search? */
7824 ret = 1;
7825 if (remaining <= 0)
7826 goto fail;
7827
7828 /* OK, here is the one we will use. HEAD (the port
7829 * hash table list entry) is non-NULL and we hold it's
7830 * mutex.
7831 */
7832 snum = rover;
7833 } else {
7834 /* We are given an specific port number; we verify
7835 * that it is not being used. If it is used, we will
7836 * exahust the search in the hash list corresponding
7837 * to the port number (snum) - we detect that with the
7838 * port iterator, pp being NULL.
7839 */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007840 head = &sctp_port_hashtable[sctp_phashfn(sock_net(sk), snum)];
wangweidong3c8e43b2014-01-21 15:44:08 +08007841 spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08007842 sctp_for_each_hentry(pp, &head->chain) {
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007843 if ((pp->port == snum) && net_eq(pp->net, sock_net(sk)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007844 goto pp_found;
7845 }
7846 }
7847 pp = NULL;
7848 goto pp_not_found;
7849pp_found:
7850 if (!hlist_empty(&pp->owner)) {
7851 /* We had a port hash table hit - there is an
7852 * available port (pp != NULL) and it is being
7853 * used by other socket (pp->owner not empty); that other
7854 * socket is going to be sk2.
7855 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007856 struct sock *sk2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007857
Daniel Borkmannbb333812013-06-28 19:49:40 +02007858 pr_debug("%s: found a possible match\n", __func__);
7859
Xin Long6ba84572018-11-12 18:27:17 +08007860 if ((pp->fastreuse && reuse &&
7861 sk->sk_state != SCTP_SS_LISTENING) ||
7862 (pp->fastreuseport && sk->sk_reuseport &&
7863 uid_eq(pp->fastuid, uid)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007864 goto success;
7865
7866 /* Run through the list of sockets bound to the port
7867 * (pp->port) [via the pointers bind_next and
7868 * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one,
7869 * we get the endpoint they describe and run through
7870 * the endpoint's list of IP (v4 or v6) addresses,
7871 * comparing each of the addresses with the address of
7872 * the socket sk. If we find a match, then that means
7873 * that this port/socket (sk) combination are already
7874 * in an endpoint.
7875 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08007876 sk_for_each_bound(sk2, &pp->owner) {
Xin Long6ba84572018-11-12 18:27:17 +08007877 struct sctp_sock *sp2 = sctp_sk(sk2);
7878 struct sctp_endpoint *ep2 = sp2->ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007879
Vlad Yasevich4e540642008-07-18 23:06:32 -07007880 if (sk == sk2 ||
Xin Long6ba84572018-11-12 18:27:17 +08007881 (reuse && (sk2->sk_reuse || sp2->reuse) &&
7882 sk2->sk_state != SCTP_SS_LISTENING) ||
7883 (sk->sk_reuseport && sk2->sk_reuseport &&
7884 uid_eq(uid, sock_i_uid(sk2))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007885 continue;
7886
Xin Long6ba84572018-11-12 18:27:17 +08007887 if (sctp_bind_addr_conflict(&ep2->base.bind_addr,
7888 addr, sp2, sp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007889 ret = (long)sk2;
7890 goto fail_unlock;
7891 }
7892 }
Daniel Borkmannbb333812013-06-28 19:49:40 +02007893
7894 pr_debug("%s: found a match\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007895 }
7896pp_not_found:
7897 /* If there was a hash table miss, create a new port. */
7898 ret = 1;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007899 if (!pp && !(pp = sctp_bucket_create(head, sock_net(sk), snum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007900 goto fail_unlock;
7901
7902 /* In either case (hit or miss), make sure fastreuse is 1 only
7903 * if sk->sk_reuse is too (that is, if the caller requested
7904 * SO_REUSEADDR on this socket -sk-).
7905 */
Vlad Yasevichce5325c2007-05-04 13:34:49 -07007906 if (hlist_empty(&pp->owner)) {
Xin Longb0e9a2f2018-06-28 15:31:00 +08007907 if (reuse && sk->sk_state != SCTP_SS_LISTENING)
Vlad Yasevichce5325c2007-05-04 13:34:49 -07007908 pp->fastreuse = 1;
7909 else
7910 pp->fastreuse = 0;
Xin Long6ba84572018-11-12 18:27:17 +08007911
7912 if (sk->sk_reuseport) {
7913 pp->fastreuseport = 1;
7914 pp->fastuid = uid;
7915 } else {
7916 pp->fastreuseport = 0;
7917 }
7918 } else {
7919 if (pp->fastreuse &&
7920 (!reuse || sk->sk_state == SCTP_SS_LISTENING))
7921 pp->fastreuse = 0;
7922
7923 if (pp->fastreuseport &&
7924 (!sk->sk_reuseport || !uid_eq(pp->fastuid, uid)))
7925 pp->fastreuseport = 0;
7926 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007927
7928 /* We are set, so fill up all the data in the hash table
7929 * entry, tie the socket list information with the rest of the
7930 * sockets FIXME: Blurry, NPI (ipg).
7931 */
7932success:
Xin Long6ba84572018-11-12 18:27:17 +08007933 if (!sp->bind_hash) {
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007934 inet_sk(sk)->inet_num = snum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007935 sk_add_bind_node(sk, &pp->owner);
Xin Long6ba84572018-11-12 18:27:17 +08007936 sp->bind_hash = pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007937 }
7938 ret = 0;
7939
7940fail_unlock:
wangweidong3c8e43b2014-01-21 15:44:08 +08007941 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007942
7943fail:
wangweidong79b91132014-01-21 15:44:07 +08007944 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007945 return ret;
7946}
7947
7948/* Assign a 'snum' port to the socket. If snum == 0, an ephemeral
7949 * port is requested.
7950 */
7951static int sctp_get_port(struct sock *sk, unsigned short snum)
7952{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007953 union sctp_addr addr;
7954 struct sctp_af *af = sctp_sk(sk)->pf->af;
7955
7956 /* Set up a dummy address struct from the sk. */
7957 af->from_sk(&addr, sk);
7958 addr.v4.sin_port = htons(snum);
7959
7960 /* Note: sk->sk_num gets filled in if ephemeral port request. */
Daniel Borkmann62208f12013-06-25 18:17:30 +02007961 return !!sctp_get_port_local(sk, &addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007962}
7963
7964/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007965 * Move a socket to LISTENING state.
7966 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02007967static int sctp_listen_start(struct sock *sk, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007968{
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007969 struct sctp_sock *sp = sctp_sk(sk);
7970 struct sctp_endpoint *ep = sp->ep;
Herbert Xu5821c762016-01-24 21:20:12 +08007971 struct crypto_shash *tfm = NULL;
Neil Horman3c681982012-10-24 09:20:03 +00007972 char alg[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007973
7974 /* Allocate HMAC for generating cookie. */
Neil Horman3c681982012-10-24 09:20:03 +00007975 if (!sp->hmac && sp->sctp_hmac_alg) {
7976 sprintf(alg, "hmac(%s)", sp->sctp_hmac_alg);
Herbert Xu5821c762016-01-24 21:20:12 +08007977 tfm = crypto_alloc_shash(alg, 0, 0);
Vlad Yasevich8dc49842007-05-09 13:50:20 -07007978 if (IS_ERR(tfm)) {
Joe Perchese87cc472012-05-13 21:56:26 +00007979 net_info_ratelimited("failed to load transform for %s: %ld\n",
Neil Horman3c681982012-10-24 09:20:03 +00007980 sp->sctp_hmac_alg, PTR_ERR(tfm));
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007981 return -ENOSYS;
7982 }
7983 sctp_sk(sk)->hmac = tfm;
7984 }
7985
7986 /*
7987 * If a bind() or sctp_bindx() is not called prior to a listen()
7988 * call that allows new associations to be accepted, the system
7989 * picks an ephemeral port and will choose an address set equivalent
7990 * to binding with a wildcard address.
7991 *
7992 * This is not currently spelled out in the SCTP sockets
7993 * extensions draft, but follows the practice as seen in TCP
7994 * sockets.
7995 *
7996 */
Yafang Shaocbabf462017-12-20 11:12:54 +08007997 inet_sk_set_state(sk, SCTP_SS_LISTENING);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007998 if (!ep->base.bind_addr.port) {
7999 if (sctp_autobind(sk))
8000 return -EAGAIN;
8001 } else {
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008002 if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
Yafang Shaocbabf462017-12-20 11:12:54 +08008003 inet_sk_set_state(sk, SCTP_SS_CLOSED);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00008004 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008005 }
8006 }
8007
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00008008 sk->sk_max_ack_backlog = backlog;
Xin Long76c6d982018-11-12 18:27:16 +08008009 return sctp_hash_endpoint(ep);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00008010}
8011
8012/*
8013 * 4.1.3 / 5.1.3 listen()
8014 *
8015 * By default, new associations are not accepted for UDP style sockets.
8016 * An application uses listen() to mark a socket as being able to
8017 * accept new associations.
8018 *
8019 * On TCP style sockets, applications use listen() to ready the SCTP
8020 * endpoint for accepting inbound associations.
8021 *
8022 * On both types of endpoints a backlog of '0' disables listening.
8023 *
8024 * Move a socket to LISTENING state.
8025 */
8026int sctp_inet_listen(struct socket *sock, int backlog)
8027{
8028 struct sock *sk = sock->sk;
8029 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
8030 int err = -EINVAL;
8031
8032 if (unlikely(backlog < 0))
8033 return err;
8034
wangweidong048ed4b2014-01-21 15:44:11 +08008035 lock_sock(sk);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00008036
8037 /* Peeled-off sockets are not allowed to listen(). */
8038 if (sctp_style(sk, UDP_HIGH_BANDWIDTH))
8039 goto out;
8040
8041 if (sock->state != SS_UNCONNECTED)
8042 goto out;
8043
Xin Long34b27892017-04-06 13:10:52 +08008044 if (!sctp_sstate(sk, LISTENING) && !sctp_sstate(sk, CLOSED))
8045 goto out;
8046
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00008047 /* If backlog is zero, disable listening. */
8048 if (!backlog) {
8049 if (sctp_sstate(sk, CLOSED))
8050 goto out;
8051
8052 err = 0;
8053 sctp_unhash_endpoint(ep);
8054 sk->sk_state = SCTP_SS_CLOSED;
Xin Longb0e9a2f2018-06-28 15:31:00 +08008055 if (sk->sk_reuse || sctp_sk(sk)->reuse)
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00008056 sctp_sk(sk)->bind_hash->fastreuse = 1;
8057 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07008058 }
8059
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00008060 /* If we are already listening, just update the backlog */
8061 if (sctp_sstate(sk, LISTENING))
8062 sk->sk_max_ack_backlog = backlog;
8063 else {
8064 err = sctp_listen_start(sk, backlog);
8065 if (err)
8066 goto out;
8067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008068
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00008069 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008070out:
wangweidong048ed4b2014-01-21 15:44:11 +08008071 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008072 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008073}
8074
8075/*
8076 * This function is done by modeling the current datagram_poll() and the
8077 * tcp_poll(). Note that, based on these implementations, we don't
8078 * lock the socket in this function, even though it seems that,
8079 * ideally, locking or some other mechanisms can be used to ensure
Neil Horman9bffc4a2005-12-19 14:24:40 -08008080 * the integrity of the counters (sndbuf and wmem_alloc) used
Linus Torvalds1da177e2005-04-16 15:20:36 -07008081 * in this place. We assume that we don't need locks either until proven
8082 * otherwise.
8083 *
8084 * Another thing to note is that we include the Async I/O support
8085 * here, again, by modeling the current TCP/UDP code. We don't have
8086 * a good way to test with it yet.
8087 */
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07008088__poll_t sctp_poll(struct file *file, struct socket *sock, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008089{
8090 struct sock *sk = sock->sk;
8091 struct sctp_sock *sp = sctp_sk(sk);
Al Viroade994f2017-07-03 00:01:49 -04008092 __poll_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008093
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07008094 poll_wait(file, sk_sleep(sk), wait);
8095
Marcelo Ricardo Leitner486bdee2016-04-12 18:11:31 -03008096 sock_rps_record_flow(sk);
8097
Linus Torvalds1da177e2005-04-16 15:20:36 -07008098 /* A TCP-style listening socket becomes readable when the accept queue
8099 * is not empty.
8100 */
8101 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
8102 return (!list_empty(&sp->ep->asocs)) ?
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008103 (EPOLLIN | EPOLLRDNORM) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008104
8105 mask = 0;
8106
8107 /* Is there any exceptional events? */
8108 if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008109 mask |= EPOLLERR |
8110 (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? EPOLLPRI : 0);
Davide Libenzif348d702006-03-25 03:07:39 -08008111 if (sk->sk_shutdown & RCV_SHUTDOWN)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008112 mask |= EPOLLRDHUP | EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008113 if (sk->sk_shutdown == SHUTDOWN_MASK)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008114 mask |= EPOLLHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008115
8116 /* Is it readable? Reconsider this code with TCP-style support. */
Eric Dumazetdb409802010-09-06 11:13:50 +00008117 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008118 mask |= EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008119
8120 /* The association is either gone or not ready. */
8121 if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED))
8122 return mask;
8123
8124 /* Is it writable? */
8125 if (sctp_writeable(sk)) {
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008126 mask |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008127 } else {
Eric Dumazet9cd3e072015-11-29 20:03:10 -08008128 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008129 /*
8130 * Since the socket is not locked, the buffer
8131 * might be made available after the writeable check and
8132 * before the bit is set. This could cause a lost I/O
8133 * signal. tcp_poll() has a race breaker for this race
8134 * condition. Based on their implementation, we put
8135 * in the following code to cover it as well.
8136 */
8137 if (sctp_writeable(sk))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008138 mask |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008139 }
8140 return mask;
8141}
8142
8143/********************************************************************
8144 * 2nd Level Abstractions
8145 ********************************************************************/
8146
8147static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008148 struct sctp_bind_hashbucket *head, struct net *net, unsigned short snum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008149{
8150 struct sctp_bind_bucket *pp;
8151
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08008152 pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008153 if (pp) {
Li Zefan935a7f62008-04-10 01:58:06 -07008154 SCTP_DBG_OBJCNT_INC(bind_bucket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008155 pp->port = snum;
8156 pp->fastreuse = 0;
8157 INIT_HLIST_HEAD(&pp->owner);
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008158 pp->net = net;
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05008159 hlist_add_head(&pp->node, &head->chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008160 }
8161 return pp;
8162}
8163
8164/* Caller must hold hashbucket lock for this tb with local BH disabled */
8165static void sctp_bucket_destroy(struct sctp_bind_bucket *pp)
8166{
Sridhar Samudrala37fa6872006-07-21 14:45:47 -07008167 if (pp && hlist_empty(&pp->owner)) {
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05008168 __hlist_del(&pp->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008169 kmem_cache_free(sctp_bucket_cachep, pp);
8170 SCTP_DBG_OBJCNT_DEC(bind_bucket);
8171 }
8172}
8173
8174/* Release this socket's reference to a local port. */
8175static inline void __sctp_put_port(struct sock *sk)
8176{
8177 struct sctp_bind_hashbucket *head =
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008178 &sctp_port_hashtable[sctp_phashfn(sock_net(sk),
8179 inet_sk(sk)->inet_num)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07008180 struct sctp_bind_bucket *pp;
8181
wangweidong3c8e43b2014-01-21 15:44:08 +08008182 spin_lock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008183 pp = sctp_sk(sk)->bind_hash;
8184 __sk_del_bind_node(sk);
8185 sctp_sk(sk)->bind_hash = NULL;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008186 inet_sk(sk)->inet_num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008187 sctp_bucket_destroy(pp);
wangweidong3c8e43b2014-01-21 15:44:08 +08008188 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008189}
8190
8191void sctp_put_port(struct sock *sk)
8192{
wangweidong79b91132014-01-21 15:44:07 +08008193 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008194 __sctp_put_port(sk);
wangweidong79b91132014-01-21 15:44:07 +08008195 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008196}
8197
8198/*
8199 * The system picks an ephemeral port and choose an address set equivalent
8200 * to binding with a wildcard address.
8201 * One of those addresses will be the primary address for the association.
8202 * This automatically enables the multihoming capability of SCTP.
8203 */
8204static int sctp_autobind(struct sock *sk)
8205{
8206 union sctp_addr autoaddr;
8207 struct sctp_af *af;
Al Viro6fbfa9f2006-11-20 17:24:53 -08008208 __be16 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008209
8210 /* Initialize a local sockaddr structure to INADDR_ANY. */
8211 af = sctp_sk(sk)->pf->af;
8212
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008213 port = htons(inet_sk(sk)->inet_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008214 af->inaddr_any(&autoaddr, port);
8215
8216 return sctp_do_bind(sk, &autoaddr, af->sockaddr_len);
8217}
8218
8219/* Parse out IPPROTO_SCTP CMSG headers. Perform only minimal validation.
8220 *
8221 * From RFC 2292
8222 * 4.2 The cmsghdr Structure *
8223 *
8224 * When ancillary data is sent or received, any number of ancillary data
8225 * objects can be specified by the msg_control and msg_controllen members of
8226 * the msghdr structure, because each object is preceded by
8227 * a cmsghdr structure defining the object's length (the cmsg_len member).
8228 * Historically Berkeley-derived implementations have passed only one object
8229 * at a time, but this API allows multiple objects to be
8230 * passed in a single call to sendmsg() or recvmsg(). The following example
8231 * shows two ancillary data objects in a control buffer.
8232 *
8233 * |<--------------------------- msg_controllen -------------------------->|
8234 * | |
8235 *
8236 * |<----- ancillary data object ----->|<----- ancillary data object ----->|
8237 *
8238 * |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->|
8239 * | | |
8240 *
8241 * |<---------- cmsg_len ---------->| |<--------- cmsg_len ----------->| |
8242 *
8243 * |<--------- CMSG_LEN() --------->| |<-------- CMSG_LEN() ---------->| |
8244 * | | | | |
8245 *
8246 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
8247 * |cmsg_|cmsg_|cmsg_|XX| |XX|cmsg_|cmsg_|cmsg_|XX| |XX|
8248 *
8249 * |len |level|type |XX|cmsg_data[]|XX|len |level|type |XX|cmsg_data[]|XX|
8250 *
8251 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
8252 * ^
8253 * |
8254 *
8255 * msg_control
8256 * points here
8257 */
Xin Longa05437a2017-08-11 10:23:48 +08008258static int sctp_msghdr_parse(const struct msghdr *msg, struct sctp_cmsgs *cmsgs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008259{
Vlad Yasevichab38fb02008-04-12 18:40:06 -07008260 struct msghdr *my_msg = (struct msghdr *)msg;
Xin Longa05437a2017-08-11 10:23:48 +08008261 struct cmsghdr *cmsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008262
Gu Zhengf95b4142014-12-11 11:22:04 +08008263 for_each_cmsghdr(cmsg, my_msg) {
Vlad Yasevichab38fb02008-04-12 18:40:06 -07008264 if (!CMSG_OK(my_msg, cmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008265 return -EINVAL;
8266
8267 /* Should we parse this header or ignore? */
8268 if (cmsg->cmsg_level != IPPROTO_SCTP)
8269 continue;
8270
8271 /* Strictly check lengths following example in SCM code. */
8272 switch (cmsg->cmsg_type) {
8273 case SCTP_INIT:
8274 /* SCTP Socket API Extension
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008275 * 5.3.1 SCTP Initiation Structure (SCTP_INIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008276 *
8277 * This cmsghdr structure provides information for
8278 * initializing new SCTP associations with sendmsg().
8279 * The SCTP_INITMSG socket option uses this same data
8280 * structure. This structure is not used for
8281 * recvmsg().
8282 *
8283 * cmsg_level cmsg_type cmsg_data[]
8284 * ------------ ------------ ----------------------
8285 * IPPROTO_SCTP SCTP_INIT struct sctp_initmsg
8286 */
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008287 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_initmsg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008288 return -EINVAL;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008289
8290 cmsgs->init = CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008291 break;
8292
8293 case SCTP_SNDRCV:
8294 /* SCTP Socket API Extension
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008295 * 5.3.2 SCTP Header Information Structure(SCTP_SNDRCV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008296 *
8297 * This cmsghdr structure specifies SCTP options for
8298 * sendmsg() and describes SCTP header information
8299 * about a received message through recvmsg().
8300 *
8301 * cmsg_level cmsg_type cmsg_data[]
8302 * ------------ ------------ ----------------------
8303 * IPPROTO_SCTP SCTP_SNDRCV struct sctp_sndrcvinfo
8304 */
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008305 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndrcvinfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008306 return -EINVAL;
8307
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008308 cmsgs->srinfo = CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008309
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008310 if (cmsgs->srinfo->sinfo_flags &
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07008311 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
Xin Long49102802018-03-05 20:44:20 +08008312 SCTP_SACK_IMMEDIATELY | SCTP_SENDALL |
8313 SCTP_PR_SCTP_MASK | SCTP_ABORT | SCTP_EOF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008314 return -EINVAL;
8315 break;
8316
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008317 case SCTP_SNDINFO:
8318 /* SCTP Socket API Extension
8319 * 5.3.4 SCTP Send Information Structure (SCTP_SNDINFO)
8320 *
8321 * This cmsghdr structure specifies SCTP options for
8322 * sendmsg(). This structure and SCTP_RCVINFO replaces
8323 * SCTP_SNDRCV which has been deprecated.
8324 *
8325 * cmsg_level cmsg_type cmsg_data[]
8326 * ------------ ------------ ---------------------
8327 * IPPROTO_SCTP SCTP_SNDINFO struct sctp_sndinfo
8328 */
8329 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndinfo)))
8330 return -EINVAL;
8331
8332 cmsgs->sinfo = CMSG_DATA(cmsg);
8333
8334 if (cmsgs->sinfo->snd_flags &
8335 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
Xin Long49102802018-03-05 20:44:20 +08008336 SCTP_SACK_IMMEDIATELY | SCTP_SENDALL |
8337 SCTP_PR_SCTP_MASK | SCTP_ABORT | SCTP_EOF))
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008338 return -EINVAL;
8339 break;
Xin Longed63afb2018-03-05 20:44:18 +08008340 case SCTP_PRINFO:
8341 /* SCTP Socket API Extension
8342 * 5.3.7 SCTP PR-SCTP Information Structure (SCTP_PRINFO)
8343 *
8344 * This cmsghdr structure specifies SCTP options for sendmsg().
8345 *
8346 * cmsg_level cmsg_type cmsg_data[]
8347 * ------------ ------------ ---------------------
8348 * IPPROTO_SCTP SCTP_PRINFO struct sctp_prinfo
8349 */
8350 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_prinfo)))
8351 return -EINVAL;
8352
8353 cmsgs->prinfo = CMSG_DATA(cmsg);
8354 if (cmsgs->prinfo->pr_policy & ~SCTP_PR_SCTP_MASK)
8355 return -EINVAL;
8356
8357 if (cmsgs->prinfo->pr_policy == SCTP_PR_SCTP_NONE)
8358 cmsgs->prinfo->pr_value = 0;
8359 break;
Xin Long3ff547c2018-03-14 19:05:31 +08008360 case SCTP_AUTHINFO:
8361 /* SCTP Socket API Extension
8362 * 5.3.8 SCTP AUTH Information Structure (SCTP_AUTHINFO)
8363 *
8364 * This cmsghdr structure specifies SCTP options for sendmsg().
8365 *
8366 * cmsg_level cmsg_type cmsg_data[]
8367 * ------------ ------------ ---------------------
8368 * IPPROTO_SCTP SCTP_AUTHINFO struct sctp_authinfo
8369 */
8370 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_authinfo)))
8371 return -EINVAL;
8372
8373 cmsgs->authinfo = CMSG_DATA(cmsg);
8374 break;
Xin Long2c0dbaa2018-03-05 20:44:19 +08008375 case SCTP_DSTADDRV4:
8376 case SCTP_DSTADDRV6:
8377 /* SCTP Socket API Extension
8378 * 5.3.9/10 SCTP Destination IPv4/6 Address Structure (SCTP_DSTADDRV4/6)
8379 *
8380 * This cmsghdr structure specifies SCTP options for sendmsg().
8381 *
8382 * cmsg_level cmsg_type cmsg_data[]
8383 * ------------ ------------ ---------------------
8384 * IPPROTO_SCTP SCTP_DSTADDRV4 struct in_addr
8385 * ------------ ------------ ---------------------
8386 * IPPROTO_SCTP SCTP_DSTADDRV6 struct in6_addr
8387 */
8388 cmsgs->addrs_msg = my_msg;
8389 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008390 default:
8391 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07008392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008393 }
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008394
Linus Torvalds1da177e2005-04-16 15:20:36 -07008395 return 0;
8396}
8397
8398/*
8399 * Wait for a packet..
8400 * Note: This function is the same function as in core/datagram.c
8401 * with a few modifications to make lksctp work.
8402 */
wangweidong26ac8e52013-12-23 12:16:51 +08008403static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008404{
8405 int error;
8406 DEFINE_WAIT(wait);
8407
Eric Dumazetaa395142010-04-20 13:03:51 +00008408 prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008409
8410 /* Socket errors? */
8411 error = sock_error(sk);
8412 if (error)
8413 goto out;
8414
8415 if (!skb_queue_empty(&sk->sk_receive_queue))
8416 goto ready;
8417
8418 /* Socket shut down? */
8419 if (sk->sk_shutdown & RCV_SHUTDOWN)
8420 goto out;
8421
8422 /* Sequenced packets can come disconnected. If so we report the
8423 * problem.
8424 */
8425 error = -ENOTCONN;
8426
8427 /* Is there a good reason to think that we may receive some data? */
8428 if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING))
8429 goto out;
8430
8431 /* Handle signals. */
8432 if (signal_pending(current))
8433 goto interrupted;
8434
8435 /* Let another process have a go. Since we are going to sleep
8436 * anyway. Note: This may cause odd behaviors if the message
8437 * does not fit in the user's buffer, but this seems to be the
8438 * only way to honor MSG_DONTWAIT realistically.
8439 */
wangweidong048ed4b2014-01-21 15:44:11 +08008440 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008441 *timeo_p = schedule_timeout(*timeo_p);
wangweidong048ed4b2014-01-21 15:44:11 +08008442 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008443
8444ready:
Eric Dumazetaa395142010-04-20 13:03:51 +00008445 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008446 return 0;
8447
8448interrupted:
8449 error = sock_intr_errno(*timeo_p);
8450
8451out:
Eric Dumazetaa395142010-04-20 13:03:51 +00008452 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008453 *err = error;
8454 return error;
8455}
8456
8457/* Receive a datagram.
8458 * Note: This is pretty much the same routine as in core/datagram.c
8459 * with a few changes to make lksctp work.
8460 */
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02008461struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags,
8462 int noblock, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008463{
8464 int error;
8465 struct sk_buff *skb;
8466 long timeo;
8467
Linus Torvalds1da177e2005-04-16 15:20:36 -07008468 timeo = sock_rcvtimeo(sk, noblock);
8469
Daniel Borkmannbb333812013-06-28 19:49:40 +02008470 pr_debug("%s: timeo:%ld, max:%ld\n", __func__, timeo,
8471 MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008472
8473 do {
8474 /* Again only user level code calls this function,
8475 * so nothing interrupt level
8476 * will suddenly eat the receive_queue.
8477 *
8478 * Look at current nfs client by the way...
David Shwatrz8917a3c2010-12-02 09:01:55 +00008479 * However, this function was correct in any case. 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008480 */
8481 if (flags & MSG_PEEK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008482 skb = skb_peek(&sk->sk_receive_queue);
8483 if (skb)
Reshetova, Elena63354792017-06-30 13:07:58 +03008484 refcount_inc(&skb->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008485 } else {
Marcelo Ricardo Leitner311b2172016-04-13 19:12:29 -03008486 skb = __skb_dequeue(&sk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008487 }
8488
8489 if (skb)
8490 return skb;
8491
Neil Horman6736dc32005-12-02 20:30:06 -08008492 /* Caller is allowed not to check sk->sk_err before calling. */
8493 error = sock_error(sk);
8494 if (error)
8495 goto no_packet;
8496
Linus Torvalds1da177e2005-04-16 15:20:36 -07008497 if (sk->sk_shutdown & RCV_SHUTDOWN)
8498 break;
8499
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07008500 if (sk_can_busy_loop(sk)) {
8501 sk_busy_loop(sk, noblock);
8502
8503 if (!skb_queue_empty(&sk->sk_receive_queue))
8504 continue;
8505 }
Neil Horman8465a5f2014-04-17 15:26:51 -04008506
Linus Torvalds1da177e2005-04-16 15:20:36 -07008507 /* User doesn't want to wait. */
8508 error = -EAGAIN;
8509 if (!timeo)
8510 goto no_packet;
8511 } while (sctp_wait_for_packet(sk, err, &timeo) == 0);
8512
8513 return NULL;
8514
8515no_packet:
8516 *err = error;
8517 return NULL;
8518}
8519
8520/* If sndbuf has changed, wake up per association sndbuf waiters. */
8521static void __sctp_write_space(struct sctp_association *asoc)
8522{
8523 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008524
Eric Dumazetceb5d582015-11-29 20:03:11 -08008525 if (sctp_wspace(asoc) <= 0)
8526 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008527
Eric Dumazetceb5d582015-11-29 20:03:11 -08008528 if (waitqueue_active(&asoc->wait))
8529 wake_up_interruptible(&asoc->wait);
Eric Dumazeteaefd112011-02-18 03:26:36 +00008530
Eric Dumazetceb5d582015-11-29 20:03:11 -08008531 if (sctp_writeable(sk)) {
8532 struct socket_wq *wq;
8533
8534 rcu_read_lock();
8535 wq = rcu_dereference(sk->sk_wq);
8536 if (wq) {
8537 if (waitqueue_active(&wq->wait))
8538 wake_up_interruptible(&wq->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008539
8540 /* Note that we try to include the Async I/O support
8541 * here by modeling from the current TCP/UDP code.
8542 * We have not tested with it yet.
8543 */
Eric Dumazeteaefd112011-02-18 03:26:36 +00008544 if (!(sk->sk_shutdown & SEND_SHUTDOWN))
Eric Dumazetceb5d582015-11-29 20:03:11 -08008545 sock_wake_async(wq, SOCK_WAKE_SPACE, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008546 }
Eric Dumazetceb5d582015-11-29 20:03:11 -08008547 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008548 }
8549}
8550
Daniel Borkmann52c35be2014-04-08 17:26:13 +02008551static void sctp_wake_up_waiters(struct sock *sk,
8552 struct sctp_association *asoc)
8553{
8554 struct sctp_association *tmp = asoc;
8555
8556 /* We do accounting for the sndbuf space per association,
8557 * so we only need to wake our own association.
8558 */
8559 if (asoc->ep->sndbuf_policy)
8560 return __sctp_write_space(asoc);
8561
Daniel Borkmann1e1cdf82014-04-09 16:10:20 +02008562 /* If association goes down and is just flushing its
8563 * outq, then just normally notify others.
8564 */
8565 if (asoc->base.dead)
8566 return sctp_write_space(sk);
8567
Daniel Borkmann52c35be2014-04-08 17:26:13 +02008568 /* Accounting for the sndbuf space is per socket, so we
8569 * need to wake up others, try to be fair and in case of
8570 * other associations, let them have a go first instead
8571 * of just doing a sctp_write_space() call.
8572 *
8573 * Note that we reach sctp_wake_up_waiters() only when
8574 * associations free up queued chunks, thus we are under
8575 * lock and the list of associations on a socket is
8576 * guaranteed not to change.
8577 */
8578 for (tmp = list_next_entry(tmp, asocs); 1;
8579 tmp = list_next_entry(tmp, asocs)) {
8580 /* Manually skip the head element. */
8581 if (&tmp->asocs == &((sctp_sk(sk))->ep->asocs))
8582 continue;
8583 /* Wake up association. */
8584 __sctp_write_space(tmp);
8585 /* We've reached the end. */
8586 if (tmp == asoc)
8587 break;
8588 }
8589}
8590
Linus Torvalds1da177e2005-04-16 15:20:36 -07008591/* Do accounting for the sndbuf space.
8592 * Decrement the used sndbuf space of the corresponding association by the
8593 * data size which was just transmitted(freed).
8594 */
8595static void sctp_wfree(struct sk_buff *skb)
8596{
Daniel Borkmannf869c912014-11-20 01:54:48 +01008597 struct sctp_chunk *chunk = skb_shinfo(skb)->destructor_arg;
8598 struct sctp_association *asoc = chunk->asoc;
8599 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008600
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008601 sk_mem_uncharge(sk, skb->truesize);
Xin Long605c0ac2018-10-17 03:07:50 +08008602 sk->sk_wmem_queued -= skb->truesize + sizeof(struct sctp_chunk);
8603 asoc->sndbuf_used -= skb->truesize + sizeof(struct sctp_chunk);
8604 WARN_ON(refcount_sub_and_test(sizeof(struct sctp_chunk),
8605 &sk->sk_wmem_alloc));
Neil Horman4d93df02007-08-15 16:07:44 -07008606
Xin Longec2e5062018-03-14 19:05:33 +08008607 if (chunk->shkey) {
8608 struct sctp_shared_key *shkey = chunk->shkey;
8609
8610 /* refcnt == 2 and !list_empty mean after this release, it's
8611 * not being used anywhere, and it's time to notify userland
8612 * that this shkey can be freed if it's been deactivated.
8613 */
8614 if (shkey->deactivated && !list_empty(&shkey->key_list) &&
8615 refcount_read(&shkey->refcnt) == 2) {
8616 struct sctp_ulpevent *ev;
8617
8618 ev = sctp_ulpevent_make_authkey(asoc, shkey->key_id,
8619 SCTP_AUTH_FREE_KEY,
8620 GFP_KERNEL);
8621 if (ev)
8622 asoc->stream.si->enqueue_event(&asoc->ulpq, ev);
8623 }
Xin Long1b1e0bc2018-03-14 19:05:30 +08008624 sctp_auth_shkey_release(chunk->shkey);
Xin Longec2e5062018-03-14 19:05:33 +08008625 }
Xin Long1b1e0bc2018-03-14 19:05:30 +08008626
Neil Horman4eb701d2005-04-28 12:02:04 -07008627 sock_wfree(skb);
Daniel Borkmann52c35be2014-04-08 17:26:13 +02008628 sctp_wake_up_waiters(sk, asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008629
8630 sctp_association_put(asoc);
8631}
8632
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07008633/* Do accounting for the receive space on the socket.
8634 * Accounting for the association is done in ulpevent.c
8635 * We set this as a destructor for the cloned data skbs so that
8636 * accounting is done at the correct time.
8637 */
8638void sctp_sock_rfree(struct sk_buff *skb)
8639{
8640 struct sock *sk = skb->sk;
8641 struct sctp_ulpevent *event = sctp_skb2event(skb);
8642
8643 atomic_sub(event->rmem_len, &sk->sk_rmem_alloc);
Neil Horman4d93df02007-08-15 16:07:44 -07008644
8645 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008646 * Mimic the behavior of sock_rfree
Neil Horman4d93df02007-08-15 16:07:44 -07008647 */
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008648 sk_mem_uncharge(sk, event->rmem_len);
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07008649}
8650
8651
Linus Torvalds1da177e2005-04-16 15:20:36 -07008652/* Helper function to wait for space in the sndbuf. */
8653static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
Xin Longa0ff6602018-01-15 17:01:36 +08008654 size_t msg_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008655{
8656 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008657 long current_timeo = *timeo_p;
8658 DEFINE_WAIT(wait);
Xin Longa0ff6602018-01-15 17:01:36 +08008659 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008660
Daniel Borkmannbb333812013-06-28 19:49:40 +02008661 pr_debug("%s: asoc:%p, timeo:%ld, msg_len:%zu\n", __func__, asoc,
8662 *timeo_p, msg_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008663
8664 /* Increment the association's refcnt. */
8665 sctp_association_hold(asoc);
8666
8667 /* Wait on the association specific sndbuf space. */
8668 for (;;) {
8669 prepare_to_wait_exclusive(&asoc->wait, &wait,
8670 TASK_INTERRUPTIBLE);
Xin Longca3af4d2017-11-15 16:55:54 +08008671 if (asoc->base.dead)
8672 goto do_dead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008673 if (!*timeo_p)
8674 goto do_nonblock;
Xin Longca3af4d2017-11-15 16:55:54 +08008675 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008676 goto do_error;
8677 if (signal_pending(current))
8678 goto do_interrupted;
Xin Longcd305c72018-10-17 03:07:51 +08008679 if ((int)msg_len <= sctp_wspace(asoc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008680 break;
8681
8682 /* Let another process have a go. Since we are going
8683 * to sleep anyway.
8684 */
wangweidong048ed4b2014-01-21 15:44:11 +08008685 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008686 current_timeo = schedule_timeout(current_timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08008687 lock_sock(sk);
Xin Longa0ff6602018-01-15 17:01:36 +08008688 if (sk != asoc->base.sk)
8689 goto do_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008690
8691 *timeo_p = current_timeo;
8692 }
8693
8694out:
8695 finish_wait(&asoc->wait, &wait);
8696
8697 /* Release the association's refcnt. */
8698 sctp_association_put(asoc);
8699
8700 return err;
8701
Xin Longca3af4d2017-11-15 16:55:54 +08008702do_dead:
8703 err = -ESRCH;
8704 goto out;
8705
Linus Torvalds1da177e2005-04-16 15:20:36 -07008706do_error:
8707 err = -EPIPE;
8708 goto out;
8709
8710do_interrupted:
8711 err = sock_intr_errno(*timeo_p);
8712 goto out;
8713
8714do_nonblock:
8715 err = -EAGAIN;
8716 goto out;
8717}
8718
David S. Miller676d2362014-04-11 16:15:36 -04008719void sctp_data_ready(struct sock *sk)
Wei Yongjun561b1732010-04-28 08:47:18 +00008720{
David S. Miller7ef52732010-05-02 21:43:40 -07008721 struct socket_wq *wq;
8722
8723 rcu_read_lock();
8724 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08008725 if (skwq_has_sleeper(wq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008726 wake_up_interruptible_sync_poll(&wq->wait, EPOLLIN |
8727 EPOLLRDNORM | EPOLLRDBAND);
Wei Yongjun561b1732010-04-28 08:47:18 +00008728 sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
David S. Miller7ef52732010-05-02 21:43:40 -07008729 rcu_read_unlock();
Wei Yongjun561b1732010-04-28 08:47:18 +00008730}
8731
Linus Torvalds1da177e2005-04-16 15:20:36 -07008732/* If socket sndbuf has changed, wake up all per association waiters. */
8733void sctp_write_space(struct sock *sk)
8734{
8735 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008736
8737 /* Wake up the tasks in each wait queue. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07008738 list_for_each_entry(asoc, &((sctp_sk(sk))->ep->asocs), asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008739 __sctp_write_space(asoc);
8740 }
8741}
8742
8743/* Is there any sndbuf space available on the socket?
8744 *
Neil Horman9bffc4a2005-12-19 14:24:40 -08008745 * Note that sk_wmem_alloc is the sum of the send buffers on all of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07008746 * associations on the same socket. For a UDP-style socket with
8747 * multiple associations, it is possible for it to be "unwriteable"
8748 * prematurely. I assume that this is acceptable because
8749 * a premature "unwriteable" is better than an accidental "writeable" which
8750 * would cause an unwanted block under certain circumstances. For the 1-1
8751 * UDP-style sockets or TCP-style sockets, this code should work.
8752 * - Daisy
8753 */
Xin Longcd305c72018-10-17 03:07:51 +08008754static bool sctp_writeable(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008755{
Xin Longcd305c72018-10-17 03:07:51 +08008756 return sk->sk_sndbuf > sk->sk_wmem_queued;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008757}
8758
8759/* Wait for an association to go into ESTABLISHED state. If timeout is 0,
8760 * returns immediately with EINPROGRESS.
8761 */
8762static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p)
8763{
8764 struct sock *sk = asoc->base.sk;
8765 int err = 0;
8766 long current_timeo = *timeo_p;
8767 DEFINE_WAIT(wait);
8768
Daniel Borkmannbb333812013-06-28 19:49:40 +02008769 pr_debug("%s: asoc:%p, timeo:%ld\n", __func__, asoc, *timeo_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008770
8771 /* Increment the association's refcnt. */
8772 sctp_association_hold(asoc);
8773
8774 for (;;) {
8775 prepare_to_wait_exclusive(&asoc->wait, &wait,
8776 TASK_INTERRUPTIBLE);
8777 if (!*timeo_p)
8778 goto do_nonblock;
8779 if (sk->sk_shutdown & RCV_SHUTDOWN)
8780 break;
8781 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
8782 asoc->base.dead)
8783 goto do_error;
8784 if (signal_pending(current))
8785 goto do_interrupted;
8786
8787 if (sctp_state(asoc, ESTABLISHED))
8788 break;
8789
8790 /* Let another process have a go. Since we are going
8791 * to sleep anyway.
8792 */
wangweidong048ed4b2014-01-21 15:44:11 +08008793 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008794 current_timeo = schedule_timeout(current_timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08008795 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008796
8797 *timeo_p = current_timeo;
8798 }
8799
8800out:
8801 finish_wait(&asoc->wait, &wait);
8802
8803 /* Release the association's refcnt. */
8804 sctp_association_put(asoc);
8805
8806 return err;
8807
8808do_error:
Vlad Yasevich81845c22006-01-30 15:59:54 -08008809 if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008810 err = -ETIMEDOUT;
8811 else
8812 err = -ECONNREFUSED;
8813 goto out;
8814
8815do_interrupted:
8816 err = sock_intr_errno(*timeo_p);
8817 goto out;
8818
8819do_nonblock:
8820 err = -EINPROGRESS;
8821 goto out;
8822}
8823
8824static int sctp_wait_for_accept(struct sock *sk, long timeo)
8825{
8826 struct sctp_endpoint *ep;
8827 int err = 0;
8828 DEFINE_WAIT(wait);
8829
8830 ep = sctp_sk(sk)->ep;
8831
8832
8833 for (;;) {
Eric Dumazetaa395142010-04-20 13:03:51 +00008834 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008835 TASK_INTERRUPTIBLE);
8836
8837 if (list_empty(&ep->asocs)) {
wangweidong048ed4b2014-01-21 15:44:11 +08008838 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008839 timeo = schedule_timeout(timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08008840 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008841 }
8842
8843 err = -EINVAL;
8844 if (!sctp_sstate(sk, LISTENING))
8845 break;
8846
8847 err = 0;
8848 if (!list_empty(&ep->asocs))
8849 break;
8850
8851 err = sock_intr_errno(timeo);
8852 if (signal_pending(current))
8853 break;
8854
8855 err = -EAGAIN;
8856 if (!timeo)
8857 break;
8858 }
8859
Eric Dumazetaa395142010-04-20 13:03:51 +00008860 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008861
8862 return err;
8863}
8864
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +02008865static void sctp_wait_for_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008866{
8867 DEFINE_WAIT(wait);
8868
8869 do {
Eric Dumazetaa395142010-04-20 13:03:51 +00008870 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008871 if (list_empty(&sctp_sk(sk)->ep->asocs))
8872 break;
wangweidong048ed4b2014-01-21 15:44:11 +08008873 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008874 timeout = schedule_timeout(timeout);
wangweidong048ed4b2014-01-21 15:44:11 +08008875 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008876 } while (!signal_pending(current) && timeout);
8877
Eric Dumazetaa395142010-04-20 13:03:51 +00008878 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008879}
8880
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008881static void sctp_skb_set_owner_r_frag(struct sk_buff *skb, struct sock *sk)
8882{
8883 struct sk_buff *frag;
8884
8885 if (!skb->data_len)
8886 goto done;
8887
8888 /* Don't forget the fragments. */
David S. Miller1b003be2009-06-09 00:22:35 -07008889 skb_walk_frags(skb, frag)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008890 sctp_skb_set_owner_r_frag(frag, sk);
8891
8892done:
8893 sctp_skb_set_owner_r(skb, sk);
8894}
8895
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008896void sctp_copy_sock(struct sock *newsk, struct sock *sk,
8897 struct sctp_association *asoc)
8898{
8899 struct inet_sock *inet = inet_sk(sk);
Julia Lawall09cb47a2010-01-21 02:43:20 -08008900 struct inet_sock *newinet;
Richard Haines2277c7c2018-02-13 20:56:24 +00008901 struct sctp_sock *sp = sctp_sk(sk);
8902 struct sctp_endpoint *ep = sp->ep;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008903
8904 newsk->sk_type = sk->sk_type;
8905 newsk->sk_bound_dev_if = sk->sk_bound_dev_if;
8906 newsk->sk_flags = sk->sk_flags;
Marcelo Ricardo Leitner50a5ffb2015-12-04 15:14:05 -02008907 newsk->sk_tsflags = sk->sk_tsflags;
Tom Herbert28448b82014-05-23 08:47:19 -07008908 newsk->sk_no_check_tx = sk->sk_no_check_tx;
8909 newsk->sk_no_check_rx = sk->sk_no_check_rx;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008910 newsk->sk_reuse = sk->sk_reuse;
Xin Longb0e9a2f2018-06-28 15:31:00 +08008911 sctp_sk(newsk)->reuse = sp->reuse;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008912
8913 newsk->sk_shutdown = sk->sk_shutdown;
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02008914 newsk->sk_destruct = sctp_destruct_sock;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008915 newsk->sk_family = sk->sk_family;
8916 newsk->sk_protocol = IPPROTO_SCTP;
8917 newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
8918 newsk->sk_sndbuf = sk->sk_sndbuf;
8919 newsk->sk_rcvbuf = sk->sk_rcvbuf;
8920 newsk->sk_lingertime = sk->sk_lingertime;
8921 newsk->sk_rcvtimeo = sk->sk_rcvtimeo;
8922 newsk->sk_sndtimeo = sk->sk_sndtimeo;
Marcelo Ricardo Leitner486bdee2016-04-12 18:11:31 -03008923 newsk->sk_rxhash = sk->sk_rxhash;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008924
8925 newinet = inet_sk(newsk);
8926
8927 /* Initialize sk's sport, dport, rcv_saddr and daddr for
8928 * getsockname() and getpeername()
8929 */
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008930 newinet->inet_sport = inet->inet_sport;
8931 newinet->inet_saddr = inet->inet_saddr;
8932 newinet->inet_rcv_saddr = inet->inet_rcv_saddr;
8933 newinet->inet_dport = htons(asoc->peer.port);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008934 newinet->pmtudisc = inet->pmtudisc;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008935 newinet->inet_id = asoc->next_tsn ^ jiffies;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008936
8937 newinet->uc_ttl = inet->uc_ttl;
8938 newinet->mc_loop = 1;
8939 newinet->mc_ttl = 1;
8940 newinet->mc_index = 0;
8941 newinet->mc_list = NULL;
Marcelo Ricardo Leitner01ce63c2015-12-04 15:14:04 -02008942
8943 if (newsk->sk_flags & SK_FLAGS_TIMESTAMP)
8944 net_enable_timestamp();
Marcelo Ricardo Leitner3538a5c2015-12-23 16:44:09 -02008945
Richard Haines2277c7c2018-02-13 20:56:24 +00008946 /* Set newsk security attributes from orginal sk and connection
8947 * security attribute from ep.
8948 */
8949 security_sctp_sk_clone(ep, sk, newsk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008950}
8951
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03008952static inline void sctp_copy_descendant(struct sock *sk_to,
8953 const struct sock *sk_from)
8954{
8955 int ancestor_size = sizeof(struct inet_sock) +
8956 sizeof(struct sctp_sock) -
8957 offsetof(struct sctp_sock, auto_asconf_list);
8958
8959 if (sk_from->sk_family == PF_INET6)
8960 ancestor_size += sizeof(struct ipv6_pinfo);
8961
8962 __inet_sk_copy_descendant(sk_to, sk_from, ancestor_size);
8963}
8964
Linus Torvalds1da177e2005-04-16 15:20:36 -07008965/* Populate the fields of the newsk from the oldsk and migrate the assoc
8966 * and its messages to the newsk.
8967 */
8968static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
8969 struct sctp_association *assoc,
Xin Longb7ef2612017-08-11 10:23:50 +08008970 enum sctp_socket_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008971{
8972 struct sctp_sock *oldsp = sctp_sk(oldsk);
8973 struct sctp_sock *newsp = sctp_sk(newsk);
8974 struct sctp_bind_bucket *pp; /* hash list port iterator */
8975 struct sctp_endpoint *newep = newsp->ep;
8976 struct sk_buff *skb, *tmp;
8977 struct sctp_ulpevent *event;
Vlad Yasevichf26f7c42007-12-06 22:50:27 -08008978 struct sctp_bind_hashbucket *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008979
8980 /* Migrate socket buffer sizes and all the socket level options to the
8981 * new socket.
8982 */
8983 newsk->sk_sndbuf = oldsk->sk_sndbuf;
8984 newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
8985 /* Brute force copy old sctp opt. */
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03008986 sctp_copy_descendant(newsk, oldsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008987
8988 /* Restore the ep value that was overwritten with the above structure
8989 * copy.
8990 */
8991 newsp->ep = newep;
8992 newsp->hmac = NULL;
8993
8994 /* Hook this new socket in to the bind_hash list. */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008995 head = &sctp_port_hashtable[sctp_phashfn(sock_net(oldsk),
8996 inet_sk(oldsk)->inet_num)];
Nicholas Mc Guire489ce5f2016-03-13 11:48:24 +01008997 spin_lock_bh(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008998 pp = sctp_sk(oldsk)->bind_hash;
8999 sk_add_bind_node(newsk, &pp->owner);
9000 sctp_sk(newsk)->bind_hash = pp;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00009001 inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num;
Nicholas Mc Guire489ce5f2016-03-13 11:48:24 +01009002 spin_unlock_bh(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009003
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07009004 /* Copy the bind_addr list from the original endpoint to the new
9005 * endpoint so that we can handle restarts properly
9006 */
Vlad Yasevich8e71a112007-12-06 22:50:54 -08009007 sctp_bind_addr_dup(&newsp->ep->base.bind_addr,
9008 &oldsp->ep->base.bind_addr, GFP_KERNEL);
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07009009
Linus Torvalds1da177e2005-04-16 15:20:36 -07009010 /* Move any messages in the old socket's receive queue that are for the
9011 * peeled off association to the new socket's receive queue.
9012 */
9013 sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) {
9014 event = sctp_skb2event(skb);
9015 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07009016 __skb_unlink(skb, &oldsk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009017 __skb_queue_tail(&newsk->sk_receive_queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07009018 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009019 }
9020 }
9021
9022 /* Clean up any messages pending delivery due to partial
9023 * delivery. Three cases:
9024 * 1) No partial deliver; no work.
9025 * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby.
9026 * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue.
9027 */
9028 skb_queue_head_init(&newsp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07009029 atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009030
Vlad Yasevichb6e13312007-04-20 12:23:15 -07009031 if (atomic_read(&sctp_sk(oldsk)->pd_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009032 struct sk_buff_head *queue;
9033
9034 /* Decide which queue to move pd_lobby skbs to. */
9035 if (assoc->ulpq.pd_mode) {
9036 queue = &newsp->pd_lobby;
9037 } else
9038 queue = &newsk->sk_receive_queue;
9039
9040 /* Walk through the pd_lobby, looking for skbs that
9041 * need moved to the new socket.
9042 */
9043 sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) {
9044 event = sctp_skb2event(skb);
9045 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07009046 __skb_unlink(skb, &oldsp->pd_lobby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009047 __skb_queue_tail(queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07009048 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009049 }
9050 }
9051
9052 /* Clear up any skbs waiting for the partial
9053 * delivery to finish.
9054 */
9055 if (assoc->ulpq.pd_mode)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07009056 sctp_clear_pd(oldsk, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009057
9058 }
9059
Xin Long13228232017-12-08 21:04:09 +08009060 sctp_for_each_rx_skb(assoc, newsk, sctp_skb_set_owner_r_frag);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07009061
Linus Torvalds1da177e2005-04-16 15:20:36 -07009062 /* Set the type of socket to indicate that it is peeled off from the
9063 * original UDP-style socket or created with the accept() call on a
9064 * TCP-style socket..
9065 */
9066 newsp->type = type;
9067
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07009068 /* Mark the new socket "in-use" by the user so that any packets
9069 * that may arrive on the association after we've moved it are
9070 * queued to the backlog. This prevents a potential race between
9071 * backlog processing on the old socket and new-packet processing
9072 * on the new socket.
Zach Brown5131a182007-06-22 15:14:46 -07009073 *
9074 * The caller has just allocated newsk so we can guarantee that other
9075 * paths won't try to lock it and then oldsk.
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07009076 */
Zach Brown5131a182007-06-22 15:14:46 -07009077 lock_sock_nested(newsk, SINGLE_DEPTH_NESTING);
Xin Longd04adf12017-10-28 02:13:29 +08009078 sctp_for_each_tx_datachunk(assoc, sctp_clear_owner_w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009079 sctp_assoc_migrate(assoc, newsk);
Xin Longd04adf12017-10-28 02:13:29 +08009080 sctp_for_each_tx_datachunk(assoc, sctp_set_owner_w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009081
9082 /* If the association on the newsk is already closed before accept()
9083 * is called, set RCV_SHUTDOWN flag.
9084 */
Xin Longd46e4162016-06-09 22:48:18 +08009085 if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP)) {
Yafang Shaocbabf462017-12-20 11:12:54 +08009086 inet_sk_set_state(newsk, SCTP_SS_CLOSED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009087 newsk->sk_shutdown |= RCV_SHUTDOWN;
Xin Longd46e4162016-06-09 22:48:18 +08009088 } else {
Yafang Shaocbabf462017-12-20 11:12:54 +08009089 inet_sk_set_state(newsk, SCTP_SS_ESTABLISHED);
Xin Longd46e4162016-06-09 22:48:18 +08009090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009091
wangweidong048ed4b2014-01-21 15:44:11 +08009092 release_sock(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009093}
9094
Neil Horman4d93df02007-08-15 16:07:44 -07009095
Linus Torvalds1da177e2005-04-16 15:20:36 -07009096/* This proto struct describes the ULP interface for SCTP. */
9097struct proto sctp_prot = {
9098 .name = "SCTP",
9099 .owner = THIS_MODULE,
9100 .close = sctp_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009101 .disconnect = sctp_disconnect,
9102 .accept = sctp_accept,
9103 .ioctl = sctp_ioctl,
9104 .init = sctp_init_sock,
9105 .destroy = sctp_destroy_sock,
9106 .shutdown = sctp_shutdown,
9107 .setsockopt = sctp_setsockopt,
9108 .getsockopt = sctp_getsockopt,
9109 .sendmsg = sctp_sendmsg,
9110 .recvmsg = sctp_recvmsg,
9111 .bind = sctp_bind,
9112 .backlog_rcv = sctp_backlog_rcv,
9113 .hash = sctp_hash,
9114 .unhash = sctp_unhash,
9115 .get_port = sctp_get_port,
9116 .obj_size = sizeof(struct sctp_sock),
David Windsorab9ee8e2017-08-24 16:57:57 -07009117 .useroffset = offsetof(struct sctp_sock, subscribe),
9118 .usersize = offsetof(struct sctp_sock, initmsg) -
9119 offsetof(struct sctp_sock, subscribe) +
9120 sizeof_field(struct sctp_sock, initmsg),
Neil Horman4d93df02007-08-15 16:07:44 -07009121 .sysctl_mem = sysctl_sctp_mem,
9122 .sysctl_rmem = sysctl_sctp_rmem,
9123 .sysctl_wmem = sysctl_sctp_wmem,
9124 .memory_pressure = &sctp_memory_pressure,
9125 .enter_memory_pressure = sctp_enter_memory_pressure,
9126 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08009127 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009128};
9129
Eric Dumazetdfd56b82011-12-10 09:48:31 +00009130#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazet8295b6d2007-11-05 23:40:28 -08009131
Eric Dumazet602dd622015-12-01 07:20:07 -08009132#include <net/transp_v6.h>
9133static void sctp_v6_destroy_sock(struct sock *sk)
9134{
9135 sctp_destroy_sock(sk);
9136 inet6_destroy_sock(sk);
9137}
9138
Linus Torvalds1da177e2005-04-16 15:20:36 -07009139struct proto sctpv6_prot = {
9140 .name = "SCTPv6",
9141 .owner = THIS_MODULE,
9142 .close = sctp_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009143 .disconnect = sctp_disconnect,
9144 .accept = sctp_accept,
9145 .ioctl = sctp_ioctl,
9146 .init = sctp_init_sock,
Eric Dumazet602dd622015-12-01 07:20:07 -08009147 .destroy = sctp_v6_destroy_sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009148 .shutdown = sctp_shutdown,
9149 .setsockopt = sctp_setsockopt,
9150 .getsockopt = sctp_getsockopt,
9151 .sendmsg = sctp_sendmsg,
9152 .recvmsg = sctp_recvmsg,
9153 .bind = sctp_bind,
9154 .backlog_rcv = sctp_backlog_rcv,
9155 .hash = sctp_hash,
9156 .unhash = sctp_unhash,
9157 .get_port = sctp_get_port,
9158 .obj_size = sizeof(struct sctp6_sock),
David Windsorab9ee8e2017-08-24 16:57:57 -07009159 .useroffset = offsetof(struct sctp6_sock, sctp.subscribe),
9160 .usersize = offsetof(struct sctp6_sock, sctp.initmsg) -
9161 offsetof(struct sctp6_sock, sctp.subscribe) +
9162 sizeof_field(struct sctp6_sock, sctp.initmsg),
Neil Horman4d93df02007-08-15 16:07:44 -07009163 .sysctl_mem = sysctl_sctp_mem,
9164 .sysctl_rmem = sysctl_sctp_rmem,
9165 .sysctl_wmem = sysctl_sctp_wmem,
9166 .memory_pressure = &sctp_memory_pressure,
9167 .enter_memory_pressure = sctp_enter_memory_pressure,
9168 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08009169 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009170};
Eric Dumazetdfd56b82011-12-10 09:48:31 +00009171#endif /* IS_ENABLED(CONFIG_IPV6) */