blob: 39ea0a37af09223275231ac82840ec1596dbf018 [file] [log] [blame]
Thomas Gleixner47505b82019-05-23 11:14:41 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Vlad Yasevich60c778b2008-01-11 09:57:09 -05002/* SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * (C) Copyright IBM Corp. 2001, 2004
4 * Copyright (c) 1999-2000 Cisco, Inc.
5 * Copyright (c) 1999-2001 Motorola, Inc.
6 * Copyright (c) 2001-2003 Intel Corp.
7 * Copyright (c) 2001-2002 Nokia, Inc.
8 * Copyright (c) 2001 La Monte H.P. Yarroll
9 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050010 * This file is part of the SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * These functions interface with the sockets layer to implement the
13 * SCTP Extensions for the Sockets API.
14 *
15 * Note that the descriptions from the specification are USER level
16 * functions--this file is the functions which populate the struct proto
17 * for SCTP which is the BOTTOM of the sockets interface.
18 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * Please send any bug reports or fixes you make to the
20 * email address(es):
Daniel Borkmann91705c62013-07-23 14:51:47 +020021 * lksctp developers <linux-sctp@vger.kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * Written or modified by:
24 * La Monte H.P. Yarroll <piggy@acm.org>
25 * Narasimha Budihal <narsi@refcode.org>
26 * Karl Knutson <karl@athena.chicago.il.us>
27 * Jon Grimm <jgrimm@us.ibm.com>
28 * Xingang Guo <xingang.guo@intel.com>
29 * Daisy Chang <daisyc@us.ibm.com>
30 * Sridhar Samudrala <samudrala@us.ibm.com>
31 * Inaky Perez-Gonzalez <inaky.gonzalez@intel.com>
32 * Ardelle Fan <ardelle.fan@intel.com>
33 * Ryan Layer <rmlayer@us.ibm.com>
34 * Anup Pemmaiah <pemmaiah@cc.usu.edu>
35 * Kevin Gao <kevin.gao@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 */
37
Joe Perches145ce502010-08-24 13:21:08 +000038#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
39
Herbert Xu5821c762016-01-24 21:20:12 +080040#include <crypto/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/types.h>
42#include <linux/kernel.h>
43#include <linux/wait.h>
44#include <linux/time.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010045#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/ip.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080047#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/fcntl.h>
49#include <linux/poll.h>
50#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090051#include <linux/slab.h>
Al Viro56b31d12012-08-18 00:25:51 -040052#include <linux/file.h>
Daniel Borkmannffd59392014-02-17 12:11:11 +010053#include <linux/compat.h>
NeilBrown0eb71a92018-06-18 12:52:50 +100054#include <linux/rhashtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#include <net/ip.h>
57#include <net/icmp.h>
58#include <net/route.h>
59#include <net/ipv6.h>
60#include <net/inet_common.h>
Neil Horman8465a5f2014-04-17 15:26:51 -040061#include <net/busy_poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#include <linux/socket.h> /* for sa_family_t */
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040064#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <net/sock.h>
66#include <net/sctp/sctp.h>
67#include <net/sctp/sm.h>
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -030068#include <net/sctp/stream_sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/* Forward declarations for internal helper functions. */
Xin Longcd305c72018-10-17 03:07:51 +080071static bool sctp_writeable(struct sock *sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static void sctp_wfree(struct sk_buff *skb);
Xin Longcea0cc82017-11-15 16:57:26 +080073static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
Xin Longa0ff6602018-01-15 17:01:36 +080074 size_t msg_len);
wangweidong26ac8e52013-12-23 12:16:51 +080075static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
77static int sctp_wait_for_accept(struct sock *sk, long timeo);
78static void sctp_wait_for_close(struct sock *sk, long timeo);
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +020079static void sctp_destruct_sock(struct sock *sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
81 union sctp_addr *addr, int len);
82static int sctp_bindx_add(struct sock *, struct sockaddr *, int);
83static int sctp_bindx_rem(struct sock *, struct sockaddr *, int);
84static int sctp_send_asconf_add_ip(struct sock *, struct sockaddr *, int);
85static int sctp_send_asconf_del_ip(struct sock *, struct sockaddr *, int);
86static int sctp_send_asconf(struct sctp_association *asoc,
87 struct sctp_chunk *chunk);
88static int sctp_do_bind(struct sock *, union sctp_addr *, int);
89static int sctp_autobind(struct sock *sk);
Xin Long89664c622019-03-03 17:54:53 +080090static int sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
91 struct sctp_association *assoc,
92 enum sctp_socket_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Eric Dumazet06044752017-06-07 13:29:12 -070094static unsigned long sctp_memory_pressure;
Eric Dumazet8d987e52010-11-09 23:24:26 +000095static atomic_long_t sctp_memory_allocated;
Eric Dumazet17483762008-11-25 21:16:35 -080096struct percpu_counter sctp_sockets_allocated;
Neil Horman4d93df02007-08-15 16:07:44 -070097
Pavel Emelyanov5c52ba12008-07-16 20:28:10 -070098static void sctp_enter_memory_pressure(struct sock *sk)
Neil Horman4d93df02007-08-15 16:07:44 -070099{
100 sctp_memory_pressure = 1;
101}
102
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/* Get the sndbuf space available at the time on the association. */
105static inline int sctp_wspace(struct sctp_association *asoc)
106{
Xin Longcd305c72018-10-17 03:07:51 +0800107 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Xin Longcd305c72018-10-17 03:07:51 +0800109 return asoc->ep->sndbuf_policy ? sk->sk_sndbuf - asoc->sndbuf_used
110 : sk_stream_wspace(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113/* Increment the used sndbuf space count of the corresponding association by
114 * the size of the outgoing data chunk.
115 * Also, set the skb destructor for sndbuf accounting later.
116 *
117 * Since it is always 1-1 between chunk and skb, and also a new skb is always
118 * allocated for chunk bundling in sctp_packet_transmit(), we can use the
119 * destructor in the data chunk skb for the purpose of the sndbuf space
120 * tracking.
121 */
122static inline void sctp_set_owner_w(struct sctp_chunk *chunk)
123{
124 struct sctp_association *asoc = chunk->asoc;
125 struct sock *sk = asoc->base.sk;
126
127 /* The sndbuf space is tracked per association. */
128 sctp_association_hold(asoc);
129
Xin Long1b1e0bc2018-03-14 19:05:30 +0800130 if (chunk->shkey)
131 sctp_auth_shkey_hold(chunk->shkey);
132
Neil Horman4eb701d2005-04-28 12:02:04 -0700133 skb_set_owner_w(chunk->skb, sk);
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 chunk->skb->destructor = sctp_wfree;
136 /* Save the chunk pointer in skb for sctp_wfree to use later. */
Daniel Borkmannf869c912014-11-20 01:54:48 +0100137 skb_shinfo(chunk->skb)->destructor_arg = chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Reshetova, Elena14afee42017-06-30 13:08:00 +0300139 refcount_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
Xin Long605c0ac2018-10-17 03:07:50 +0800140 asoc->sndbuf_used += chunk->skb->truesize + sizeof(struct sctp_chunk);
141 sk->sk_wmem_queued += chunk->skb->truesize + sizeof(struct sctp_chunk);
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800142 sk_mem_charge(sk, chunk->skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
Xin Longd04adf12017-10-28 02:13:29 +0800145static void sctp_clear_owner_w(struct sctp_chunk *chunk)
146{
147 skb_orphan(chunk->skb);
148}
149
150static void sctp_for_each_tx_datachunk(struct sctp_association *asoc,
151 void (*cb)(struct sctp_chunk *))
152
153{
154 struct sctp_outq *q = &asoc->outqueue;
155 struct sctp_transport *t;
156 struct sctp_chunk *chunk;
157
158 list_for_each_entry(t, &asoc->peer.transport_addr_list, transports)
159 list_for_each_entry(chunk, &t->transmitted, transmitted_list)
160 cb(chunk);
161
Xin Longa8dd3972017-11-26 20:56:07 +0800162 list_for_each_entry(chunk, &q->retransmit, transmitted_list)
Xin Longd04adf12017-10-28 02:13:29 +0800163 cb(chunk);
164
Xin Longa8dd3972017-11-26 20:56:07 +0800165 list_for_each_entry(chunk, &q->sacked, transmitted_list)
Xin Longd04adf12017-10-28 02:13:29 +0800166 cb(chunk);
167
Xin Longa8dd3972017-11-26 20:56:07 +0800168 list_for_each_entry(chunk, &q->abandoned, transmitted_list)
Xin Longd04adf12017-10-28 02:13:29 +0800169 cb(chunk);
170
171 list_for_each_entry(chunk, &q->out_chunk_list, list)
172 cb(chunk);
173}
174
Xin Long13228232017-12-08 21:04:09 +0800175static void sctp_for_each_rx_skb(struct sctp_association *asoc, struct sock *sk,
176 void (*cb)(struct sk_buff *, struct sock *))
177
178{
179 struct sk_buff *skb, *tmp;
180
181 sctp_skb_for_each(skb, &asoc->ulpq.lobby, tmp)
182 cb(skb, sk);
183
184 sctp_skb_for_each(skb, &asoc->ulpq.reasm, tmp)
185 cb(skb, sk);
186
187 sctp_skb_for_each(skb, &asoc->ulpq.reasm_uo, tmp)
188 cb(skb, sk);
189}
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191/* Verify that this is a valid address. */
192static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr,
193 int len)
194{
195 struct sctp_af *af;
196
197 /* Verify basic sockaddr. */
198 af = sctp_sockaddr_af(sctp_sk(sk), addr, len);
199 if (!af)
200 return -EINVAL;
201
202 /* Is this a valid SCTP address? */
Vlad Yasevich5636bef2006-06-17 22:55:35 -0700203 if (!af->addr_valid(addr, sctp_sk(sk), NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return -EINVAL;
205
206 if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr)))
207 return -EINVAL;
208
209 return 0;
210}
211
212/* Look up the association by its id. If this is not a UDP-style
213 * socket, the ID field is always ignored.
214 */
215struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
216{
217 struct sctp_association *asoc = NULL;
218
219 /* If this is not a UDP-style socket, assoc id should be ignored. */
220 if (!sctp_style(sk, UDP)) {
221 /* Return NULL if the socket state is not ESTABLISHED. It
222 * could be a TCP-style listening socket or a socket which
223 * hasn't yet called connect() to establish an association.
224 */
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -0300225 if (!sctp_sstate(sk, ESTABLISHED) && !sctp_sstate(sk, CLOSING))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return NULL;
227
228 /* Get the first and the only association from the list. */
229 if (!list_empty(&sctp_sk(sk)->ep->asocs))
230 asoc = list_entry(sctp_sk(sk)->ep->asocs.next,
231 struct sctp_association, asocs);
232 return asoc;
233 }
234
235 /* Otherwise this is a UDP-style socket. */
Xin Long80df2702019-01-28 15:08:23 +0800236 if (id <= SCTP_ALL_ASSOC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return NULL;
238
239 spin_lock_bh(&sctp_assocs_id_lock);
240 asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id);
Marcelo Ricardo Leitnerb336dec2018-10-16 15:18:17 -0300241 if (asoc && (asoc->base.sk != sk || asoc->base.dead))
242 asoc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 spin_unlock_bh(&sctp_assocs_id_lock);
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return asoc;
246}
247
248/* Look up the transport from an address and an assoc id. If both address and
249 * id are specified, the associations matching the address and the id should be
250 * the same.
251 */
252static struct sctp_transport *sctp_addr_id2transport(struct sock *sk,
253 struct sockaddr_storage *addr,
254 sctp_assoc_t id)
255{
256 struct sctp_association *addr_asoc = NULL, *id_asoc = NULL;
Xin Long6f29a132017-01-24 14:01:53 +0800257 struct sctp_af *af = sctp_get_af_specific(addr->ss_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 union sctp_addr *laddr = (union sctp_addr *)addr;
Xin Long6f29a132017-01-24 14:01:53 +0800259 struct sctp_transport *transport;
260
Xin Long912964e2017-02-07 20:56:08 +0800261 if (!af || sctp_verify_addr(sk, laddr, af->sockaddr_len))
Xin Long6f29a132017-01-24 14:01:53 +0800262 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
Al Virocd4ff032006-11-20 17:11:33 -0800265 laddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 &transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 if (!addr_asoc)
269 return NULL;
270
271 id_asoc = sctp_id2assoc(sk, id);
272 if (id_asoc && (id_asoc != addr_asoc))
273 return NULL;
274
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600275 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 (union sctp_addr *)addr);
277
278 return transport;
279}
280
281/* API 3.1.2 bind() - UDP Style Syntax
282 * The syntax of bind() is,
283 *
284 * ret = bind(int sd, struct sockaddr *addr, int addrlen);
285 *
286 * sd - the socket descriptor returned by socket().
287 * addr - the address structure (struct sockaddr_in or struct
288 * sockaddr_in6 [RFC 2553]),
289 * addr_len - the size of the address structure.
290 */
Daniel Borkmanndda91922013-06-17 11:40:05 +0200291static int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
293 int retval = 0;
294
wangweidong048ed4b2014-01-21 15:44:11 +0800295 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Daniel Borkmannbb333812013-06-28 19:49:40 +0200297 pr_debug("%s: sk:%p, addr:%p, addr_len:%d\n", __func__, sk,
298 addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 /* Disallow binding twice. */
301 if (!sctp_sk(sk)->ep->base.bind_addr.port)
Frank Filz3f7a87d2005-06-20 13:14:57 -0700302 retval = sctp_do_bind(sk, (union sctp_addr *)addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 addr_len);
304 else
305 retval = -EINVAL;
306
wangweidong048ed4b2014-01-21 15:44:11 +0800307 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 return retval;
310}
311
312static long sctp_get_port_local(struct sock *, union sctp_addr *);
313
314/* Verify this is a valid sockaddr. */
315static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
316 union sctp_addr *addr, int len)
317{
318 struct sctp_af *af;
319
320 /* Check minimum size. */
321 if (len < sizeof (struct sockaddr))
322 return NULL;
323
Xin Longc5006b82018-01-15 17:02:00 +0800324 if (!opt->pf->af_supported(addr->sa.sa_family, opt))
325 return NULL;
326
Eric Dumazet81e98372018-04-08 07:52:08 -0700327 if (addr->sa.sa_family == AF_INET6) {
328 if (len < SIN6_LEN_RFC2133)
329 return NULL;
330 /* V4 mapped address are really of AF_INET family */
331 if (ipv6_addr_v4mapped(&addr->v6.sin6_addr) &&
332 !opt->pf->af_supported(AF_INET, opt))
333 return NULL;
334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 /* If we get this far, af is valid. */
337 af = sctp_get_af_specific(addr->sa.sa_family);
338
339 if (len < af->sockaddr_len)
340 return NULL;
341
342 return af;
343}
344
345/* Bind a local address either to an endpoint or to an association. */
Daniel Borkmanndda91922013-06-17 11:40:05 +0200346static int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
Eric W. Biederman35946982012-11-16 03:03:12 +0000348 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 struct sctp_sock *sp = sctp_sk(sk);
350 struct sctp_endpoint *ep = sp->ep;
351 struct sctp_bind_addr *bp = &ep->base.bind_addr;
352 struct sctp_af *af;
353 unsigned short snum;
354 int ret = 0;
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 /* Common sockaddr verification. */
357 af = sctp_sockaddr_af(sp, addr, len);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700358 if (!af) {
Daniel Borkmannbb333812013-06-28 19:49:40 +0200359 pr_debug("%s: sk:%p, newaddr:%p, len:%d EINVAL\n",
360 __func__, sk, addr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return -EINVAL;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700362 }
363
364 snum = ntohs(addr->v4.sin_port);
365
Daniel Borkmannbb333812013-06-28 19:49:40 +0200366 pr_debug("%s: sk:%p, new addr:%pISc, port:%d, new port:%d, len:%d\n",
367 __func__, sk, &addr->sa, bp->port, snum, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 /* PF specific bind() address verification. */
370 if (!sp->pf->bind_verify(sp, addr))
371 return -EADDRNOTAVAIL;
372
Vlad Yasevich8b358052007-05-15 17:14:58 -0400373 /* We must either be unbound, or bind to the same port.
374 * It's OK to allow 0 ports if we are already bound.
375 * We'll just inhert an already bound port in this case
376 */
377 if (bp->port) {
378 if (!snum)
379 snum = bp->port;
380 else if (snum != bp->port) {
Daniel Borkmannbb333812013-06-28 19:49:40 +0200381 pr_debug("%s: new port %d doesn't match existing port "
382 "%d\n", __func__, snum, bp->port);
Vlad Yasevich8b358052007-05-15 17:14:58 -0400383 return -EINVAL;
384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
386
Krister Johansen4548b682017-01-20 17:49:11 -0800387 if (snum && snum < inet_prot_sock(net) &&
Eric W. Biederman35946982012-11-16 03:03:12 +0000388 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return -EACCES;
390
Vlad Yasevich4e540642008-07-18 23:06:32 -0700391 /* See if the address matches any of the addresses we may have
392 * already bound before checking against other endpoints.
393 */
394 if (sctp_bind_addr_match(bp, addr, sp))
395 return -EINVAL;
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 /* Make sure we are allowed to bind here.
398 * The function sctp_get_port_local() does duplicate address
399 * detection.
400 */
Vlad Yasevich2772b492007-08-21 14:24:30 +0900401 addr->v4.sin_port = htons(snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if ((ret = sctp_get_port_local(sk, addr))) {
Vlad Yasevich4e540642008-07-18 23:06:32 -0700403 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405
406 /* Refresh ephemeral port. */
407 if (!bp->port)
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000408 bp->port = inet_sk(sk)->inet_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Vlad Yasevich559cf712007-09-16 16:03:28 -0700410 /* Add the address to the bind address list.
411 * Use GFP_ATOMIC since BHs will be disabled.
412 */
Marcelo Ricardo Leitner133800d2016-03-08 10:34:28 -0300413 ret = sctp_add_bind_addr(bp, addr, af->sockaddr_len,
414 SCTP_ADDR_SRC, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 /* Copy back into socket for getsockname() use. */
417 if (!ret) {
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000418 inet_sk(sk)->inet_sport = htons(inet_sk(sk)->inet_num);
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600419 sp->pf->to_sk_saddr(addr, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421
422 return ret;
423}
424
425 /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
426 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900427 * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 * at any one time. If a sender, after sending an ASCONF chunk, decides
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900429 * it needs to transfer another ASCONF Chunk, it MUST wait until the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900431 * subsequent ASCONF. Note this restriction binds each side, so at any
432 * time two ASCONF may be in-transit on any given association (one sent
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 * from each endpoint).
434 */
435static int sctp_send_asconf(struct sctp_association *asoc,
436 struct sctp_chunk *chunk)
437{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +0000438 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 int retval = 0;
440
441 /* If there is an outstanding ASCONF chunk, queue it for later
442 * transmission.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900443 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (asoc->addip_last_asconf) {
David S. Miller79af02c2005-07-08 21:47:49 -0700445 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900446 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448
449 /* Hold the chunk until an ASCONF_ACK is received. */
450 sctp_chunk_hold(chunk);
Eric W. Biederman55e26eb2012-08-07 07:25:24 +0000451 retval = sctp_primitive_ASCONF(net, asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (retval)
453 sctp_chunk_free(chunk);
454 else
455 asoc->addip_last_asconf = chunk;
456
457out:
458 return retval;
459}
460
461/* Add a list of addresses as bind addresses to local endpoint or
462 * association.
463 *
464 * Basically run through each address specified in the addrs/addrcnt
465 * array/length pair, determine if it is IPv6 or IPv4 and call
466 * sctp_do_bind() on it.
467 *
468 * If any of them fails, then the operation will be reversed and the
469 * ones that were added will be removed.
470 *
471 * Only sctp_setsockopt_bindx() is supposed to call this function.
472 */
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +0200473static int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 int cnt;
476 int retval = 0;
477 void *addr_buf;
478 struct sockaddr *sa_addr;
479 struct sctp_af *af;
480
Daniel Borkmannbb333812013-06-28 19:49:40 +0200481 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n", __func__, sk,
482 addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 addr_buf = addrs;
485 for (cnt = 0; cnt < addrcnt; cnt++) {
486 /* The list may contain either IPv4 or IPv6 address;
487 * determine the address length for walking thru the list.
488 */
Joe Perchesea110732011-06-13 16:21:26 +0000489 sa_addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 af = sctp_get_af_specific(sa_addr->sa_family);
491 if (!af) {
492 retval = -EINVAL;
493 goto err_bindx_add;
494 }
495
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900496 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 af->sockaddr_len);
498
499 addr_buf += af->sockaddr_len;
500
501err_bindx_add:
502 if (retval < 0) {
503 /* Failed. Cleanup the ones that have been added */
504 if (cnt > 0)
505 sctp_bindx_rem(sk, addrs, cnt);
506 return retval;
507 }
508 }
509
510 return retval;
511}
512
513/* Send an ASCONF chunk with Add IP address parameters to all the peers of the
514 * associations that are part of the endpoint indicating that a list of local
515 * addresses are added to the endpoint.
516 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900517 * If any of the addresses is already in the bind address list of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 * association, we do not send the chunk for that association. But it will not
519 * affect other associations.
520 *
521 * Only sctp_setsockopt_bindx() is supposed to call this function.
522 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900523static int sctp_send_asconf_add_ip(struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 struct sockaddr *addrs,
525 int addrcnt)
526{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000527 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 struct sctp_sock *sp;
529 struct sctp_endpoint *ep;
530 struct sctp_association *asoc;
531 struct sctp_bind_addr *bp;
532 struct sctp_chunk *chunk;
533 struct sctp_sockaddr_entry *laddr;
534 union sctp_addr *addr;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700535 union sctp_addr saveaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 void *addr_buf;
537 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 struct list_head *p;
539 int i;
540 int retval = 0;
541
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000542 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return retval;
544
545 sp = sctp_sk(sk);
546 ep = sp->ep;
547
Daniel Borkmannbb333812013-06-28 19:49:40 +0200548 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
549 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700551 list_for_each_entry(asoc, &ep->asocs, asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (!asoc->peer.asconf_capable)
553 continue;
554
555 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_ADD_IP)
556 continue;
557
558 if (!sctp_state(asoc, ESTABLISHED))
559 continue;
560
561 /* Check if any address in the packed array of addresses is
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900562 * in the bind address list of the association. If so,
563 * do not send the asconf chunk to its peer, but continue with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 * other associations.
565 */
566 addr_buf = addrs;
567 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000568 addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 af = sctp_get_af_specific(addr->v4.sin_family);
570 if (!af) {
571 retval = -EINVAL;
572 goto out;
573 }
574
575 if (sctp_assoc_lookup_laddr(asoc, addr))
576 break;
577
578 addr_buf += af->sockaddr_len;
579 }
580 if (i < addrcnt)
581 continue;
582
Vlad Yasevich559cf712007-09-16 16:03:28 -0700583 /* Use the first valid address in bind addr list of
584 * association as Address Parameter of ASCONF CHUNK.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 bp = &asoc->base.bind_addr;
587 p = bp->address_list.next;
588 laddr = list_entry(p, struct sctp_sockaddr_entry, list);
Al Viro5ae955c2006-11-20 17:22:08 -0800589 chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 addrcnt, SCTP_PARAM_ADD_IP);
591 if (!chunk) {
592 retval = -ENOMEM;
593 goto out;
594 }
595
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700596 /* Add the new addresses to the bind address list with
597 * use_as_src set to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700599 addr_buf = addrs;
600 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000601 addr = addr_buf;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700602 af = sctp_get_af_specific(addr->v4.sin_family);
603 memcpy(&saveaddr, addr, af->sockaddr_len);
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800604 retval = sctp_add_bind_addr(bp, &saveaddr,
Marcelo Ricardo Leitner133800d2016-03-08 10:34:28 -0300605 sizeof(saveaddr),
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800606 SCTP_ADDR_NEW, GFP_ATOMIC);
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700607 addr_buf += af->sockaddr_len;
608 }
Michio Honda8a07eb02011-04-26 20:19:36 +0900609 if (asoc->src_out_of_asoc_ok) {
610 struct sctp_transport *trans;
611
612 list_for_each_entry(trans,
613 &asoc->peer.transport_addr_list, transports) {
Michio Honda8a07eb02011-04-26 20:19:36 +0900614 trans->cwnd = min(4*asoc->pathmtu, max_t(__u32,
615 2*asoc->pathmtu, 4380));
616 trans->ssthresh = asoc->peer.i.a_rwnd;
617 trans->rto = asoc->rto_initial;
Michele Baldessari196d6752012-12-01 04:49:42 +0000618 sctp_max_rto(asoc, trans);
Michio Honda8a07eb02011-04-26 20:19:36 +0900619 trans->rtt = trans->srtt = trans->rttvar = 0;
Marcelo Ricardo Leitner6e91b572018-04-26 16:58:59 -0300620 /* Clear the source and route cache */
Michio Honda8a07eb02011-04-26 20:19:36 +0900621 sctp_transport_route(trans, NULL,
Marcelo Ricardo Leitner6e91b572018-04-26 16:58:59 -0300622 sctp_sk(asoc->base.sk));
Michio Honda8a07eb02011-04-26 20:19:36 +0900623 }
624 }
625 retval = sctp_send_asconf(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
627
628out:
629 return retval;
630}
631
632/* Remove a list of addresses from bind addresses list. Do not remove the
633 * last address.
634 *
635 * Basically run through each address specified in the addrs/addrcnt
636 * array/length pair, determine if it is IPv6 or IPv4 and call
637 * sctp_del_bind() on it.
638 *
639 * If any of them fails, then the operation will be reversed and the
640 * ones that were removed will be added back.
641 *
642 * At least one address has to be left; if only one address is
643 * available, the operation will return -EBUSY.
644 *
645 * Only sctp_setsockopt_bindx() is supposed to call this function.
646 */
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +0200647static int sctp_bindx_rem(struct sock *sk, struct sockaddr *addrs, int addrcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 struct sctp_sock *sp = sctp_sk(sk);
650 struct sctp_endpoint *ep = sp->ep;
651 int cnt;
652 struct sctp_bind_addr *bp = &ep->base.bind_addr;
653 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 void *addr_buf;
Al Viroc9a08502006-11-20 17:07:48 -0800655 union sctp_addr *sa_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 struct sctp_af *af;
657
Daniel Borkmannbb333812013-06-28 19:49:40 +0200658 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
659 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661 addr_buf = addrs;
662 for (cnt = 0; cnt < addrcnt; cnt++) {
663 /* If the bind address list is empty or if there is only one
664 * bind address, there is nothing more to be removed (we need
665 * at least one address here).
666 */
667 if (list_empty(&bp->address_list) ||
668 (sctp_list_single_entry(&bp->address_list))) {
669 retval = -EBUSY;
670 goto err_bindx_rem;
671 }
672
Joe Perchesea110732011-06-13 16:21:26 +0000673 sa_addr = addr_buf;
Al Viroc9a08502006-11-20 17:07:48 -0800674 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (!af) {
676 retval = -EINVAL;
677 goto err_bindx_rem;
678 }
Paolo Galtieri0304ff8a2007-04-17 12:52:36 -0700679
680 if (!af->addr_valid(sa_addr, sp, NULL)) {
681 retval = -EADDRNOTAVAIL;
682 goto err_bindx_rem;
683 }
684
Vlad Yasevichee9cbac2011-04-18 19:14:47 +0000685 if (sa_addr->v4.sin_port &&
686 sa_addr->v4.sin_port != htons(bp->port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 retval = -EINVAL;
688 goto err_bindx_rem;
689 }
690
Vlad Yasevichee9cbac2011-04-18 19:14:47 +0000691 if (!sa_addr->v4.sin_port)
692 sa_addr->v4.sin_port = htons(bp->port);
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 /* FIXME - There is probably a need to check if sk->sk_saddr and
695 * sk->sk_rcv_addr are currently set to one of the addresses to
696 * be removed. This is something which needs to be looked into
697 * when we are fixing the outstanding issues with multi-homing
698 * socket routing and failover schemes. Refer to comments in
699 * sctp_do_bind(). -daisy
700 */
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -0400701 retval = sctp_del_bind_addr(bp, sa_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 addr_buf += af->sockaddr_len;
704err_bindx_rem:
705 if (retval < 0) {
706 /* Failed. Add the ones that has been removed back */
707 if (cnt > 0)
708 sctp_bindx_add(sk, addrs, cnt);
709 return retval;
710 }
711 }
712
713 return retval;
714}
715
716/* Send an ASCONF chunk with Delete IP address parameters to all the peers of
717 * the associations that are part of the endpoint indicating that a list of
718 * local addresses are removed from the endpoint.
719 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900720 * If any of the addresses is already in the bind address list of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 * association, we do not send the chunk for that association. But it will not
722 * affect other associations.
723 *
724 * Only sctp_setsockopt_bindx() is supposed to call this function.
725 */
726static int sctp_send_asconf_del_ip(struct sock *sk,
727 struct sockaddr *addrs,
728 int addrcnt)
729{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000730 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 struct sctp_sock *sp;
732 struct sctp_endpoint *ep;
733 struct sctp_association *asoc;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700734 struct sctp_transport *transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 struct sctp_bind_addr *bp;
736 struct sctp_chunk *chunk;
737 union sctp_addr *laddr;
738 void *addr_buf;
739 struct sctp_af *af;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700740 struct sctp_sockaddr_entry *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 int i;
742 int retval = 0;
Michio Honda8a07eb02011-04-26 20:19:36 +0900743 int stored = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Michio Honda8a07eb02011-04-26 20:19:36 +0900745 chunk = NULL;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000746 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 return retval;
748
749 sp = sctp_sk(sk);
750 ep = sp->ep;
751
Daniel Borkmannbb333812013-06-28 19:49:40 +0200752 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
753 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700755 list_for_each_entry(asoc, &ep->asocs, asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 if (!asoc->peer.asconf_capable)
758 continue;
759
760 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_DEL_IP)
761 continue;
762
763 if (!sctp_state(asoc, ESTABLISHED))
764 continue;
765
766 /* Check if any address in the packed array of addresses is
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900767 * not present in the bind address list of the association.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 * If so, do not send the asconf chunk to its peer, but
769 * continue with other associations.
770 */
771 addr_buf = addrs;
772 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000773 laddr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 af = sctp_get_af_specific(laddr->v4.sin_family);
775 if (!af) {
776 retval = -EINVAL;
777 goto out;
778 }
779
780 if (!sctp_assoc_lookup_laddr(asoc, laddr))
781 break;
782
783 addr_buf += af->sockaddr_len;
784 }
785 if (i < addrcnt)
786 continue;
787
788 /* Find one address in the association's bind address list
789 * that is not in the packed array of addresses. This is to
790 * make sure that we do not delete all the addresses in the
791 * association.
792 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 bp = &asoc->base.bind_addr;
794 laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs,
795 addrcnt, sp);
Michio Honda8a07eb02011-04-26 20:19:36 +0900796 if ((laddr == NULL) && (addrcnt == 1)) {
797 if (asoc->asconf_addr_del_pending)
798 continue;
799 asoc->asconf_addr_del_pending =
800 kzalloc(sizeof(union sctp_addr), GFP_ATOMIC);
Michio Honda6d65e5e2011-06-10 16:42:14 +0900801 if (asoc->asconf_addr_del_pending == NULL) {
802 retval = -ENOMEM;
803 goto out;
804 }
Michio Honda8a07eb02011-04-26 20:19:36 +0900805 asoc->asconf_addr_del_pending->sa.sa_family =
806 addrs->sa_family;
807 asoc->asconf_addr_del_pending->v4.sin_port =
808 htons(bp->port);
809 if (addrs->sa_family == AF_INET) {
810 struct sockaddr_in *sin;
811
812 sin = (struct sockaddr_in *)addrs;
813 asoc->asconf_addr_del_pending->v4.sin_addr.s_addr = sin->sin_addr.s_addr;
814 } else if (addrs->sa_family == AF_INET6) {
815 struct sockaddr_in6 *sin6;
816
817 sin6 = (struct sockaddr_in6 *)addrs;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000818 asoc->asconf_addr_del_pending->v6.sin6_addr = sin6->sin6_addr;
Michio Honda8a07eb02011-04-26 20:19:36 +0900819 }
Daniel Borkmannbb333812013-06-28 19:49:40 +0200820
821 pr_debug("%s: keep the last address asoc:%p %pISc at %p\n",
822 __func__, asoc, &asoc->asconf_addr_del_pending->sa,
823 asoc->asconf_addr_del_pending);
824
Michio Honda8a07eb02011-04-26 20:19:36 +0900825 asoc->src_out_of_asoc_ok = 1;
826 stored = 1;
827 goto skip_mkasconf;
828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Daniel Borkmann88362ad2013-09-07 20:51:21 +0200830 if (laddr == NULL)
831 return -EINVAL;
832
Vlad Yasevich559cf712007-09-16 16:03:28 -0700833 /* We do not need RCU protection throughout this loop
834 * because this is done under a socket lock from the
835 * setsockopt call.
836 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 chunk = sctp_make_asconf_update_ip(asoc, laddr, addrs, addrcnt,
838 SCTP_PARAM_DEL_IP);
839 if (!chunk) {
840 retval = -ENOMEM;
841 goto out;
842 }
843
Michio Honda8a07eb02011-04-26 20:19:36 +0900844skip_mkasconf:
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700845 /* Reset use_as_src flag for the addresses in the bind address
846 * list that are to be deleted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700848 addr_buf = addrs;
849 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000850 laddr = addr_buf;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700851 af = sctp_get_af_specific(laddr->v4.sin_family);
Vlad Yasevich559cf712007-09-16 16:03:28 -0700852 list_for_each_entry(saddr, &bp->address_list, list) {
Al Viro5f242a132006-11-20 17:05:23 -0800853 if (sctp_cmp_addr_exact(&saddr->a, laddr))
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800854 saddr->state = SCTP_ADDR_DEL;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700855 }
856 addr_buf += af->sockaddr_len;
857 }
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700858
859 /* Update the route and saddr entries for all the transports
860 * as some of the addresses in the bind address list are
861 * about to be deleted and cannot be used as source addresses.
862 */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700863 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
864 transports) {
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700865 sctp_transport_route(transport, NULL,
866 sctp_sk(asoc->base.sk));
867 }
868
Michio Honda8a07eb02011-04-26 20:19:36 +0900869 if (stored)
870 /* We don't need to transmit ASCONF */
871 continue;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700872 retval = sctp_send_asconf(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 }
874out:
875 return retval;
876}
877
Michio Honda9f7d6532011-04-26 19:32:51 +0900878/* set addr events to assocs in the endpoint. ep and addr_wq must be locked */
879int sctp_asconf_mgmt(struct sctp_sock *sp, struct sctp_sockaddr_entry *addrw)
880{
881 struct sock *sk = sctp_opt2sk(sp);
882 union sctp_addr *addr;
883 struct sctp_af *af;
884
885 /* It is safe to write port space in caller. */
886 addr = &addrw->a;
887 addr->v4.sin_port = htons(sp->ep->base.bind_addr.port);
888 af = sctp_get_af_specific(addr->sa.sa_family);
889 if (!af)
890 return -EINVAL;
891 if (sctp_verify_addr(sk, addr, af->sockaddr_len))
892 return -EINVAL;
893
894 if (addrw->state == SCTP_ADDR_NEW)
895 return sctp_send_asconf_add_ip(sk, (struct sockaddr *)addr, 1);
896 else
897 return sctp_send_asconf_del_ip(sk, (struct sockaddr *)addr, 1);
898}
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900/* Helper for tunneling sctp_bindx() requests through sctp_setsockopt()
901 *
902 * API 8.1
903 * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt,
904 * int flags);
905 *
906 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
907 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
908 * or IPv6 addresses.
909 *
910 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
911 * Section 3.1.2 for this usage.
912 *
913 * addrs is a pointer to an array of one or more socket addresses. Each
914 * address is contained in its appropriate structure (i.e. struct
915 * sockaddr_in or struct sockaddr_in6) the family of the address type
Ville Nuorvala23c435f2006-10-16 22:08:28 -0700916 * must be used to distinguish the address length (note that this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 * representation is termed a "packed array" of addresses). The caller
918 * specifies the number of addresses in the array with addrcnt.
919 *
920 * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns
921 * -1, and sets errno to the appropriate error code.
922 *
923 * For SCTP, the port given in each socket address must be the same, or
924 * sctp_bindx() will fail, setting errno to EINVAL.
925 *
926 * The flags parameter is formed from the bitwise OR of zero or more of
927 * the following currently defined flags:
928 *
929 * SCTP_BINDX_ADD_ADDR
930 *
931 * SCTP_BINDX_REM_ADDR
932 *
933 * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the
934 * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given
935 * addresses from the association. The two flags are mutually exclusive;
936 * if both are given, sctp_bindx() will fail with EINVAL. A caller may
937 * not remove all addresses from an association; sctp_bindx() will
938 * reject such an attempt with EINVAL.
939 *
940 * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate
941 * additional addresses with an endpoint after calling bind(). Or use
942 * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening
943 * socket is associated with so that no new association accepted will be
944 * associated with those addresses. If the endpoint supports dynamic
945 * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a
946 * endpoint to send the appropriate message to the peer to change the
947 * peers address lists.
948 *
949 * Adding and removing addresses from a connected association is
950 * optional functionality. Implementations that do not support this
951 * functionality should return EOPNOTSUPP.
952 *
953 * Basically do nothing but copying the addresses from user to kernel
954 * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk.
Frank Filz3f7a87d2005-06-20 13:14:57 -0700955 * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
956 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
959 * it.
960 *
961 * sk The sk of the socket
962 * addrs The pointer to the addresses in user land
963 * addrssize Size of the addrs buffer
964 * op Operation to perform (add or remove, see the flags of
965 * sctp_bindx)
966 *
967 * Returns 0 if ok, <0 errno code on error.
968 */
wangweidong26ac8e52013-12-23 12:16:51 +0800969static int sctp_setsockopt_bindx(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +0200970 struct sockaddr __user *addrs,
971 int addrs_size, int op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
973 struct sockaddr *kaddrs;
974 int err;
975 int addrcnt = 0;
976 int walk_size = 0;
977 struct sockaddr *sa_addr;
978 void *addr_buf;
979 struct sctp_af *af;
980
Daniel Borkmannbb333812013-06-28 19:49:40 +0200981 pr_debug("%s: sk:%p addrs:%p addrs_size:%d opt:%d\n",
982 __func__, sk, addrs, addrs_size, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 if (unlikely(addrs_size <= 0))
985 return -EINVAL;
986
Xin Longef82bcf2019-03-20 14:49:38 +0800987 kaddrs = memdup_user(addrs, addrs_size);
Al Viroc981f252018-01-07 13:19:09 -0500988 if (unlikely(IS_ERR(kaddrs)))
989 return PTR_ERR(kaddrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900991 /* Walk through the addrs buffer and count the number of addresses. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 addr_buf = kaddrs;
993 while (walk_size < addrs_size) {
Dan Rosenbergd7e0d192010-10-01 11:16:58 +0000994 if (walk_size + sizeof(sa_family_t) > addrs_size) {
Xin Longef82bcf2019-03-20 14:49:38 +0800995 kfree(kaddrs);
Dan Rosenbergd7e0d192010-10-01 11:16:58 +0000996 return -EINVAL;
997 }
998
Joe Perchesea110732011-06-13 16:21:26 +0000999 sa_addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 af = sctp_get_af_specific(sa_addr->sa_family);
1001
1002 /* If the address family is not supported or if this address
1003 * causes the address buffer to overflow return EINVAL.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
Xin Longef82bcf2019-03-20 14:49:38 +08001006 kfree(kaddrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 return -EINVAL;
1008 }
1009 addrcnt++;
1010 addr_buf += af->sockaddr_len;
1011 walk_size += af->sockaddr_len;
1012 }
1013
1014 /* Do the work. */
1015 switch (op) {
1016 case SCTP_BINDX_ADD_ADDR:
Richard Haines2277c7c2018-02-13 20:56:24 +00001017 /* Allow security module to validate bindx addresses. */
1018 err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_BINDX_ADD,
1019 (struct sockaddr *)kaddrs,
1020 addrs_size);
1021 if (err)
1022 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 err = sctp_bindx_add(sk, kaddrs, addrcnt);
1024 if (err)
1025 goto out;
1026 err = sctp_send_asconf_add_ip(sk, kaddrs, addrcnt);
1027 break;
1028
1029 case SCTP_BINDX_REM_ADDR:
1030 err = sctp_bindx_rem(sk, kaddrs, addrcnt);
1031 if (err)
1032 goto out;
1033 err = sctp_send_asconf_del_ip(sk, kaddrs, addrcnt);
1034 break;
1035
1036 default:
1037 err = -EINVAL;
1038 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041out:
Xin Longef82bcf2019-03-20 14:49:38 +08001042 kfree(kaddrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
1044 return err;
1045}
1046
Frank Filz3f7a87d2005-06-20 13:14:57 -07001047/* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size)
1048 *
1049 * Common routine for handling connect() and sctp_connectx().
1050 * Connect will come in with just a single address.
1051 */
wangweidong26ac8e52013-12-23 12:16:51 +08001052static int __sctp_connect(struct sock *sk,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001053 struct sockaddr *kaddrs,
Xin Long644fbde2018-05-20 16:39:10 +08001054 int addrs_size, int flags,
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001055 sctp_assoc_t *assoc_id)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001056{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001057 struct net *net = sock_net(sk);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001058 struct sctp_sock *sp;
1059 struct sctp_endpoint *ep;
1060 struct sctp_association *asoc = NULL;
1061 struct sctp_association *asoc2;
1062 struct sctp_transport *transport;
1063 union sctp_addr to;
Xin Long1c662012017-08-05 19:59:54 +08001064 enum sctp_scope scope;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001065 long timeo;
1066 int err = 0;
1067 int addrcnt = 0;
1068 int walk_size = 0;
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001069 union sctp_addr *sa_addr = NULL;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001070 void *addr_buf;
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001071 unsigned short port;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001072
1073 sp = sctp_sk(sk);
1074 ep = sp->ep;
1075
1076 /* connect() cannot be done on a socket that is already in ESTABLISHED
1077 * state - UDP-style peeled off socket or a TCP-style socket that
1078 * is already connected.
1079 * It cannot be done even on a TCP-style listening socket.
1080 */
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -03001081 if (sctp_sstate(sk, ESTABLISHED) || sctp_sstate(sk, CLOSING) ||
Frank Filz3f7a87d2005-06-20 13:14:57 -07001082 (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))) {
1083 err = -EISCONN;
1084 goto out_free;
1085 }
1086
1087 /* Walk through the addrs buffer and count the number of addresses. */
1088 addr_buf = kaddrs;
1089 while (walk_size < addrs_size) {
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001090 struct sctp_af *af;
1091
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001092 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1093 err = -EINVAL;
1094 goto out_free;
1095 }
1096
Joe Perchesea110732011-06-13 16:21:26 +00001097 sa_addr = addr_buf;
Al Viro4bdf4b52006-11-20 17:10:20 -08001098 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001099
1100 /* If the address family is not supported or if this address
1101 * causes the address buffer to overflow return EINVAL.
1102 */
1103 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1104 err = -EINVAL;
1105 goto out_free;
1106 }
1107
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001108 port = ntohs(sa_addr->v4.sin_port);
1109
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001110 /* Save current address so we can work with it */
1111 memcpy(&to, sa_addr, af->sockaddr_len);
1112
1113 err = sctp_verify_addr(sk, &to, af->sockaddr_len);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001114 if (err)
1115 goto out_free;
1116
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001117 /* Make sure the destination port is correctly set
1118 * in all addresses.
1119 */
Wei Yongjun524fba62013-04-03 03:02:28 +00001120 if (asoc && asoc->peer.port && asoc->peer.port != port) {
1121 err = -EINVAL;
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001122 goto out_free;
Wei Yongjun524fba62013-04-03 03:02:28 +00001123 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001124
1125 /* Check if there already is a matching association on the
1126 * endpoint (other than the one created here).
1127 */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001128 asoc2 = sctp_endpoint_lookup_assoc(ep, &to, &transport);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001129 if (asoc2 && asoc2 != asoc) {
1130 if (asoc2->state >= SCTP_STATE_ESTABLISHED)
1131 err = -EISCONN;
1132 else
1133 err = -EALREADY;
1134 goto out_free;
1135 }
1136
1137 /* If we could not find a matching association on the endpoint,
1138 * make sure that there is no peeled-off association matching
1139 * the peer address even on another socket.
1140 */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001141 if (sctp_endpoint_is_peeled_off(ep, &to)) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07001142 err = -EADDRNOTAVAIL;
1143 goto out_free;
1144 }
1145
1146 if (!asoc) {
1147 /* If a bind() or sctp_bindx() is not called prior to
1148 * an sctp_connectx() call, the system picks an
1149 * ephemeral port and will choose an address set
1150 * equivalent to binding with a wildcard address.
1151 */
1152 if (!ep->base.bind_addr.port) {
1153 if (sctp_autobind(sk)) {
1154 err = -EAGAIN;
1155 goto out_free;
1156 }
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001157 } else {
1158 /*
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001159 * If an unprivileged user inherits a 1-many
1160 * style socket with open associations on a
1161 * privileged port, it MAY be permitted to
1162 * accept new associations, but it SHOULD NOT
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001163 * be permitted to open new associations.
1164 */
Krister Johansen4548b682017-01-20 17:49:11 -08001165 if (ep->base.bind_addr.port <
1166 inet_prot_sock(net) &&
1167 !ns_capable(net->user_ns,
1168 CAP_NET_BIND_SERVICE)) {
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001169 err = -EACCES;
1170 goto out_free;
1171 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001172 }
1173
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001174 scope = sctp_scope(&to);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001175 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1176 if (!asoc) {
1177 err = -ENOMEM;
1178 goto out_free;
1179 }
Vlad Yasevich409b95a2009-11-10 08:57:34 +00001180
1181 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope,
1182 GFP_KERNEL);
1183 if (err < 0) {
1184 goto out_free;
1185 }
1186
Frank Filz3f7a87d2005-06-20 13:14:57 -07001187 }
1188
1189 /* Prime the peer's transport structures. */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001190 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001191 SCTP_UNKNOWN);
1192 if (!transport) {
1193 err = -ENOMEM;
1194 goto out_free;
1195 }
1196
1197 addrcnt++;
1198 addr_buf += af->sockaddr_len;
1199 walk_size += af->sockaddr_len;
1200 }
1201
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001202 /* In case the user of sctp_connectx() wants an association
1203 * id back, assign one now.
1204 */
1205 if (assoc_id) {
1206 err = sctp_assoc_set_id(asoc, GFP_KERNEL);
1207 if (err < 0)
1208 goto out_free;
1209 }
1210
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001211 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001212 if (err < 0) {
1213 goto out_free;
1214 }
1215
1216 /* Initialize sk's dport and daddr for getpeername() */
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001217 inet_sk(sk)->inet_dport = htons(asoc->peer.port);
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001218 sp->pf->to_sk_daddr(sa_addr, sk);
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07001219 sk->sk_err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001220
Xin Long644fbde2018-05-20 16:39:10 +08001221 timeo = sock_sndtimeo(sk, flags & O_NONBLOCK);
Vlad Yasevichf50f95c2007-07-03 12:47:40 -04001222
Marcelo Ricardo Leitner7233bc82016-11-03 17:03:41 -02001223 if (assoc_id)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001224 *assoc_id = asoc->assoc_id;
Richard Haines2277c7c2018-02-13 20:56:24 +00001225
Marcelo Ricardo Leitner7233bc82016-11-03 17:03:41 -02001226 err = sctp_wait_for_connect(asoc, &timeo);
1227 /* Note: the asoc may be freed after the return of
1228 * sctp_wait_for_connect.
1229 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07001230
1231 /* Don't free association on exit. */
1232 asoc = NULL;
1233
1234out_free:
Daniel Borkmannbb333812013-06-28 19:49:40 +02001235 pr_debug("%s: took out_free path with asoc:%p kaddrs:%p err:%d\n",
1236 __func__, asoc, kaddrs, err);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001237
Neil Horman2eebc1e2012-07-16 09:13:51 +00001238 if (asoc) {
1239 /* sctp_primitive_ASSOCIATE may have added this association
1240 * To the hash table, try to unhash it, just in case, its a noop
1241 * if it wasn't hashed so we're safe
1242 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07001243 sctp_association_free(asoc);
Neil Horman2eebc1e2012-07-16 09:13:51 +00001244 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001245 return err;
1246}
1247
1248/* Helper for tunneling sctp_connectx() requests through sctp_setsockopt()
1249 *
1250 * API 8.9
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001251 * int sctp_connectx(int sd, struct sockaddr *addrs, int addrcnt,
1252 * sctp_assoc_t *asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001253 *
1254 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
1255 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
1256 * or IPv6 addresses.
1257 *
1258 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
1259 * Section 3.1.2 for this usage.
1260 *
1261 * addrs is a pointer to an array of one or more socket addresses. Each
1262 * address is contained in its appropriate structure (i.e. struct
1263 * sockaddr_in or struct sockaddr_in6) the family of the address type
1264 * must be used to distengish the address length (note that this
1265 * representation is termed a "packed array" of addresses). The caller
1266 * specifies the number of addresses in the array with addrcnt.
1267 *
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001268 * On success, sctp_connectx() returns 0. It also sets the assoc_id to
1269 * the association id of the new association. On failure, sctp_connectx()
1270 * returns -1, and sets errno to the appropriate error code. The assoc_id
1271 * is not touched by the kernel.
Frank Filz3f7a87d2005-06-20 13:14:57 -07001272 *
1273 * For SCTP, the port given in each socket address must be the same, or
1274 * sctp_connectx() will fail, setting errno to EINVAL.
1275 *
1276 * An application can use sctp_connectx to initiate an association with
1277 * an endpoint that is multi-homed. Much like sctp_bindx() this call
1278 * allows a caller to specify multiple addresses at which a peer can be
1279 * reached. The way the SCTP stack uses the list of addresses to set up
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001280 * the association is implementation dependent. This function only
Frank Filz3f7a87d2005-06-20 13:14:57 -07001281 * specifies that the stack will try to make use of all the addresses in
1282 * the list when needed.
1283 *
1284 * Note that the list of addresses passed in is only used for setting up
1285 * the association. It does not necessarily equal the set of addresses
1286 * the peer uses for the resulting association. If the caller wants to
1287 * find out the set of peer addresses, it must use sctp_getpaddrs() to
1288 * retrieve them after the association has been set up.
1289 *
1290 * Basically do nothing but copying the addresses from user to kernel
1291 * land and invoking either sctp_connectx(). This is used for tunneling
1292 * the sctp_connectx() request through sctp_setsockopt() from userspace.
1293 *
Frank Filz3f7a87d2005-06-20 13:14:57 -07001294 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
1295 * it.
1296 *
1297 * sk The sk of the socket
1298 * addrs The pointer to the addresses in user land
1299 * addrssize Size of the addrs buffer
1300 *
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001301 * Returns >=0 if ok, <0 errno code on error.
Frank Filz3f7a87d2005-06-20 13:14:57 -07001302 */
wangweidong26ac8e52013-12-23 12:16:51 +08001303static int __sctp_setsockopt_connectx(struct sock *sk,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001304 struct sockaddr __user *addrs,
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001305 int addrs_size,
1306 sctp_assoc_t *assoc_id)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001307{
Frank Filz3f7a87d2005-06-20 13:14:57 -07001308 struct sockaddr *kaddrs;
Xin Long644fbde2018-05-20 16:39:10 +08001309 int err = 0, flags = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001310
Daniel Borkmannbb333812013-06-28 19:49:40 +02001311 pr_debug("%s: sk:%p addrs:%p addrs_size:%d\n",
1312 __func__, sk, addrs, addrs_size);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001313
1314 if (unlikely(addrs_size <= 0))
1315 return -EINVAL;
1316
Xin Longef82bcf2019-03-20 14:49:38 +08001317 kaddrs = memdup_user(addrs, addrs_size);
Al Viroc981f252018-01-07 13:19:09 -05001318 if (unlikely(IS_ERR(kaddrs)))
1319 return PTR_ERR(kaddrs);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001320
Richard Haines2277c7c2018-02-13 20:56:24 +00001321 /* Allow security module to validate connectx addresses. */
1322 err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_CONNECTX,
1323 (struct sockaddr *)kaddrs,
1324 addrs_size);
1325 if (err)
1326 goto out_free;
1327
Xin Long644fbde2018-05-20 16:39:10 +08001328 /* in-kernel sockets don't generally have a file allocated to them
1329 * if all they do is call sock_create_kern().
1330 */
1331 if (sk->sk_socket->file)
1332 flags = sk->sk_socket->file->f_flags;
1333
1334 err = __sctp_connect(sk, kaddrs, addrs_size, flags, assoc_id);
Richard Haines2277c7c2018-02-13 20:56:24 +00001335
1336out_free:
Xin Longef82bcf2019-03-20 14:49:38 +08001337 kfree(kaddrs);
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001338
Frank Filz3f7a87d2005-06-20 13:14:57 -07001339 return err;
1340}
1341
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001342/*
1343 * This is an older interface. It's kept for backward compatibility
1344 * to the option that doesn't provide association id.
1345 */
wangweidong26ac8e52013-12-23 12:16:51 +08001346static int sctp_setsockopt_connectx_old(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001347 struct sockaddr __user *addrs,
1348 int addrs_size)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001349{
1350 return __sctp_setsockopt_connectx(sk, addrs, addrs_size, NULL);
1351}
1352
1353/*
1354 * New interface for the API. The since the API is done with a socket
1355 * option, to make it simple we feed back the association id is as a return
1356 * indication to the call. Error is always negative and association id is
1357 * always positive.
1358 */
wangweidong26ac8e52013-12-23 12:16:51 +08001359static int sctp_setsockopt_connectx(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001360 struct sockaddr __user *addrs,
1361 int addrs_size)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001362{
1363 sctp_assoc_t assoc_id = 0;
1364 int err = 0;
1365
1366 err = __sctp_setsockopt_connectx(sk, addrs, addrs_size, &assoc_id);
1367
1368 if (err)
1369 return err;
1370 else
1371 return assoc_id;
1372}
1373
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001374/*
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001375 * New (hopefully final) interface for the API.
1376 * We use the sctp_getaddrs_old structure so that use-space library
Daniel Borkmannffd59392014-02-17 12:11:11 +01001377 * can avoid any unnecessary allocations. The only different part
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001378 * is that we store the actual length of the address buffer into the
Daniel Borkmannffd59392014-02-17 12:11:11 +01001379 * addrs_num structure member. That way we can re-use the existing
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001380 * code.
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001381 */
Daniel Borkmannffd59392014-02-17 12:11:11 +01001382#ifdef CONFIG_COMPAT
1383struct compat_sctp_getaddrs_old {
1384 sctp_assoc_t assoc_id;
1385 s32 addr_num;
1386 compat_uptr_t addrs; /* struct sockaddr * */
1387};
1388#endif
1389
wangweidong26ac8e52013-12-23 12:16:51 +08001390static int sctp_getsockopt_connectx3(struct sock *sk, int len,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001391 char __user *optval,
1392 int __user *optlen)
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001393{
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001394 struct sctp_getaddrs_old param;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001395 sctp_assoc_t assoc_id = 0;
1396 int err = 0;
1397
Daniel Borkmannffd59392014-02-17 12:11:11 +01001398#ifdef CONFIG_COMPAT
Andy Lutomirski96c0e0a2016-03-22 14:25:07 -07001399 if (in_compat_syscall()) {
Daniel Borkmannffd59392014-02-17 12:11:11 +01001400 struct compat_sctp_getaddrs_old param32;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001401
Daniel Borkmannffd59392014-02-17 12:11:11 +01001402 if (len < sizeof(param32))
1403 return -EINVAL;
1404 if (copy_from_user(&param32, optval, sizeof(param32)))
1405 return -EFAULT;
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001406
Daniel Borkmannffd59392014-02-17 12:11:11 +01001407 param.assoc_id = param32.assoc_id;
1408 param.addr_num = param32.addr_num;
1409 param.addrs = compat_ptr(param32.addrs);
1410 } else
1411#endif
1412 {
1413 if (len < sizeof(param))
1414 return -EINVAL;
1415 if (copy_from_user(&param, optval, sizeof(param)))
1416 return -EFAULT;
1417 }
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001418
Daniel Borkmannffd59392014-02-17 12:11:11 +01001419 err = __sctp_setsockopt_connectx(sk, (struct sockaddr __user *)
1420 param.addrs, param.addr_num,
1421 &assoc_id);
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001422 if (err == 0 || err == -EINPROGRESS) {
1423 if (copy_to_user(optval, &assoc_id, sizeof(assoc_id)))
1424 return -EFAULT;
1425 if (put_user(sizeof(assoc_id), optlen))
1426 return -EFAULT;
1427 }
1428
1429 return err;
1430}
1431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432/* API 3.1.4 close() - UDP Style Syntax
1433 * Applications use close() to perform graceful shutdown (as described in
1434 * Section 10.1 of [SCTP]) on ALL the associations currently represented
1435 * by a UDP-style socket.
1436 *
1437 * The syntax is
1438 *
1439 * ret = close(int sd);
1440 *
1441 * sd - the socket descriptor of the associations to be closed.
1442 *
1443 * To gracefully shutdown a specific association represented by the
1444 * UDP-style socket, an application should use the sendmsg() call,
1445 * passing no user data, but including the appropriate flag in the
1446 * ancillary data (see Section xxxx).
1447 *
1448 * If sd in the close() call is a branched-off socket representing only
1449 * one association, the shutdown is performed on that association only.
1450 *
1451 * 4.1.6 close() - TCP Style Syntax
1452 *
1453 * Applications use close() to gracefully close down an association.
1454 *
1455 * The syntax is:
1456 *
1457 * int close(int sd);
1458 *
1459 * sd - the socket descriptor of the association to be closed.
1460 *
1461 * After an application calls close() on a socket descriptor, no further
1462 * socket operations will succeed on that descriptor.
1463 *
1464 * API 7.1.4 SO_LINGER
1465 *
1466 * An application using the TCP-style socket can use this option to
1467 * perform the SCTP ABORT primitive. The linger option structure is:
1468 *
1469 * struct linger {
1470 * int l_onoff; // option on/off
1471 * int l_linger; // linger time
1472 * };
1473 *
1474 * To enable the option, set l_onoff to 1. If the l_linger value is set
1475 * to 0, calling close() is the same as the ABORT primitive. If the
1476 * value is set to a negative value, the setsockopt() call will return
1477 * an error. If the value is set to a positive value linger_time, the
1478 * close() can be blocked for at most linger_time ms. If the graceful
1479 * shutdown phase does not finish during this period, close() will
1480 * return but the graceful shutdown phase continues in the system.
1481 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02001482static void sctp_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001484 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 struct sctp_endpoint *ep;
1486 struct sctp_association *asoc;
1487 struct list_head *pos, *temp;
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001488 unsigned int data_was_unread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Daniel Borkmannbb333812013-06-28 19:49:40 +02001490 pr_debug("%s: sk:%p, timeout:%ld\n", __func__, sk, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Xin Long6dfe4b92017-06-10 14:56:56 +08001492 lock_sock_nested(sk, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 sk->sk_shutdown = SHUTDOWN_MASK;
Yafang Shaocbabf462017-12-20 11:12:54 +08001494 inet_sk_set_state(sk, SCTP_SS_CLOSING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496 ep = sctp_sk(sk)->ep;
1497
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001498 /* Clean up any skbs sitting on the receive queue. */
1499 data_was_unread = sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1500 data_was_unread += sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1501
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07001502 /* Walk all associations on an endpoint. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 list_for_each_safe(pos, temp, &ep->asocs) {
1504 asoc = list_entry(pos, struct sctp_association, asocs);
1505
1506 if (sctp_style(sk, TCP)) {
1507 /* A closed association can still be in the list if
1508 * it belongs to a TCP-style listening socket that is
1509 * not yet accepted. If so, free it. If not, send an
1510 * ABORT or SHUTDOWN based on the linger options.
1511 */
1512 if (sctp_state(asoc, CLOSED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 sctp_association_free(asoc);
Vladislav Yasevichb89498a2006-05-19 14:32:06 -07001514 continue;
1515 }
1516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001518 if (data_was_unread || !skb_queue_empty(&asoc->ulpq.lobby) ||
1519 !skb_queue_empty(&asoc->ulpq.reasm) ||
Xin Long13228232017-12-08 21:04:09 +08001520 !skb_queue_empty(&asoc->ulpq.reasm_uo) ||
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001521 (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) {
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001522 struct sctp_chunk *chunk;
1523
1524 chunk = sctp_make_abort_user(asoc, NULL, 0);
Xin Long068d8bd2015-12-29 17:49:25 +08001525 sctp_primitive_ABORT(net, asoc, chunk);
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001526 } else
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001527 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 }
1529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 /* On a TCP-style socket, block for at most linger_time if set. */
1531 if (sctp_style(sk, TCP) && timeout)
1532 sctp_wait_for_close(sk, timeout);
1533
1534 /* This will run the backlog queue. */
wangweidong048ed4b2014-01-21 15:44:11 +08001535 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
1537 /* Supposedly, no process has access to the socket, but
1538 * the net layers still may.
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001539 * Also, sctp_destroy_sock() needs to be called with addr_wq_lock
1540 * held and that should be grabbed before socket lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 */
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001542 spin_lock_bh(&net->sctp.addr_wq_lock);
Xin Long6dfe4b92017-06-10 14:56:56 +08001543 bh_lock_sock_nested(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545 /* Hold the sock, since sk_common_release() will put sock_put()
1546 * and we have just a little more cleanup.
1547 */
1548 sock_hold(sk);
1549 sk_common_release(sk);
1550
wangweidong5bc1d1b2014-01-21 15:44:12 +08001551 bh_unlock_sock(sk);
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001552 spin_unlock_bh(&net->sctp.addr_wq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
1554 sock_put(sk);
1555
1556 SCTP_DBG_OBJCNT_DEC(sock);
1557}
1558
1559/* Handle EPIPE error. */
1560static int sctp_error(struct sock *sk, int flags, int err)
1561{
1562 if (err == -EPIPE)
1563 err = sock_error(sk) ? : -EPIPE;
1564 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1565 send_sig(SIGPIPE, current, 0);
1566 return err;
1567}
1568
1569/* API 3.1.3 sendmsg() - UDP Style Syntax
1570 *
1571 * An application uses sendmsg() and recvmsg() calls to transmit data to
1572 * and receive data from its peer.
1573 *
1574 * ssize_t sendmsg(int socket, const struct msghdr *message,
1575 * int flags);
1576 *
1577 * socket - the socket descriptor of the endpoint.
1578 * message - pointer to the msghdr structure which contains a single
1579 * user message and possibly some ancillary data.
1580 *
1581 * See Section 5 for complete description of the data
1582 * structures.
1583 *
1584 * flags - flags sent or received with the user message, see Section
1585 * 5 for complete description of the flags.
1586 *
1587 * Note: This function could use a rewrite especially when explicit
1588 * connect support comes in.
1589 */
1590/* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */
1591
Xin Longa05437a2017-08-11 10:23:48 +08001592static int sctp_msghdr_parse(const struct msghdr *msg,
1593 struct sctp_cmsgs *cmsgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Xin Long204f8172018-03-01 23:05:14 +08001595static int sctp_sendmsg_parse(struct sock *sk, struct sctp_cmsgs *cmsgs,
1596 struct sctp_sndrcvinfo *srinfo,
1597 const struct msghdr *msg, size_t msg_len)
1598{
1599 __u16 sflags;
1600 int err;
1601
1602 if (sctp_sstate(sk, LISTENING) && sctp_style(sk, TCP))
1603 return -EPIPE;
1604
1605 if (msg_len > sk->sk_sndbuf)
1606 return -EMSGSIZE;
1607
1608 memset(cmsgs, 0, sizeof(*cmsgs));
1609 err = sctp_msghdr_parse(msg, cmsgs);
1610 if (err) {
1611 pr_debug("%s: msghdr parse err:%x\n", __func__, err);
1612 return err;
1613 }
1614
1615 memset(srinfo, 0, sizeof(*srinfo));
1616 if (cmsgs->srinfo) {
1617 srinfo->sinfo_stream = cmsgs->srinfo->sinfo_stream;
1618 srinfo->sinfo_flags = cmsgs->srinfo->sinfo_flags;
1619 srinfo->sinfo_ppid = cmsgs->srinfo->sinfo_ppid;
1620 srinfo->sinfo_context = cmsgs->srinfo->sinfo_context;
1621 srinfo->sinfo_assoc_id = cmsgs->srinfo->sinfo_assoc_id;
1622 srinfo->sinfo_timetolive = cmsgs->srinfo->sinfo_timetolive;
1623 }
1624
1625 if (cmsgs->sinfo) {
1626 srinfo->sinfo_stream = cmsgs->sinfo->snd_sid;
1627 srinfo->sinfo_flags = cmsgs->sinfo->snd_flags;
1628 srinfo->sinfo_ppid = cmsgs->sinfo->snd_ppid;
1629 srinfo->sinfo_context = cmsgs->sinfo->snd_context;
1630 srinfo->sinfo_assoc_id = cmsgs->sinfo->snd_assoc_id;
1631 }
1632
Xin Longed63afb2018-03-05 20:44:18 +08001633 if (cmsgs->prinfo) {
1634 srinfo->sinfo_timetolive = cmsgs->prinfo->pr_value;
1635 SCTP_PR_SET_POLICY(srinfo->sinfo_flags,
1636 cmsgs->prinfo->pr_policy);
1637 }
1638
Xin Long204f8172018-03-01 23:05:14 +08001639 sflags = srinfo->sinfo_flags;
1640 if (!sflags && msg_len)
1641 return 0;
1642
1643 if (sctp_style(sk, TCP) && (sflags & (SCTP_EOF | SCTP_ABORT)))
1644 return -EINVAL;
1645
1646 if (((sflags & SCTP_EOF) && msg_len > 0) ||
1647 (!(sflags & (SCTP_EOF | SCTP_ABORT)) && msg_len == 0))
1648 return -EINVAL;
1649
1650 if ((sflags & SCTP_ADDR_OVER) && !msg->msg_name)
1651 return -EINVAL;
1652
1653 return 0;
1654}
1655
Xin Long2bfd80f2018-03-01 23:05:11 +08001656static int sctp_sendmsg_new_asoc(struct sock *sk, __u16 sflags,
1657 struct sctp_cmsgs *cmsgs,
1658 union sctp_addr *daddr,
1659 struct sctp_transport **tp)
1660{
1661 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
1662 struct net *net = sock_net(sk);
1663 struct sctp_association *asoc;
1664 enum sctp_scope scope;
Xin Long2c0dbaa2018-03-05 20:44:19 +08001665 struct cmsghdr *cmsg;
Xin Long4be41392018-07-02 18:21:14 +08001666 __be32 flowinfo = 0;
Linus Torvalds9eda2d22018-04-06 15:39:26 -07001667 struct sctp_af *af;
Wei Yongjund98985d2018-03-13 03:03:30 +00001668 int err;
Xin Long2bfd80f2018-03-01 23:05:11 +08001669
1670 *tp = NULL;
1671
1672 if (sflags & (SCTP_EOF | SCTP_ABORT))
1673 return -EINVAL;
1674
1675 if (sctp_style(sk, TCP) && (sctp_sstate(sk, ESTABLISHED) ||
1676 sctp_sstate(sk, CLOSING)))
1677 return -EADDRNOTAVAIL;
1678
1679 if (sctp_endpoint_is_peeled_off(ep, daddr))
1680 return -EADDRNOTAVAIL;
1681
1682 if (!ep->base.bind_addr.port) {
1683 if (sctp_autobind(sk))
1684 return -EAGAIN;
1685 } else {
1686 if (ep->base.bind_addr.port < inet_prot_sock(net) &&
1687 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
1688 return -EACCES;
1689 }
1690
1691 scope = sctp_scope(daddr);
1692
Linus Torvalds9eda2d22018-04-06 15:39:26 -07001693 /* Label connection socket for first association 1-to-many
1694 * style for client sequence socket()->sendmsg(). This
1695 * needs to be done before sctp_assoc_add_peer() as that will
1696 * set up the initial packet that needs to account for any
1697 * security ip options (CIPSO/CALIPSO) added to the packet.
1698 */
1699 af = sctp_get_af_specific(daddr->sa.sa_family);
1700 if (!af)
1701 return -EINVAL;
1702 err = security_sctp_bind_connect(sk, SCTP_SENDMSG_CONNECT,
1703 (struct sockaddr *)daddr,
1704 af->sockaddr_len);
1705 if (err < 0)
1706 return err;
1707
Xin Long2bfd80f2018-03-01 23:05:11 +08001708 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1709 if (!asoc)
1710 return -ENOMEM;
1711
1712 if (sctp_assoc_set_bind_addr_from_ep(asoc, scope, GFP_KERNEL) < 0) {
1713 err = -ENOMEM;
1714 goto free;
1715 }
1716
1717 if (cmsgs->init) {
1718 struct sctp_initmsg *init = cmsgs->init;
1719
1720 if (init->sinit_num_ostreams) {
1721 __u16 outcnt = init->sinit_num_ostreams;
1722
1723 asoc->c.sinit_num_ostreams = outcnt;
1724 /* outcnt has been changed, need to re-init stream */
1725 err = sctp_stream_init(&asoc->stream, outcnt, 0,
1726 GFP_KERNEL);
1727 if (err)
1728 goto free;
1729 }
1730
1731 if (init->sinit_max_instreams)
1732 asoc->c.sinit_max_instreams = init->sinit_max_instreams;
1733
1734 if (init->sinit_max_attempts)
1735 asoc->max_init_attempts = init->sinit_max_attempts;
1736
1737 if (init->sinit_max_init_timeo)
1738 asoc->max_init_timeo =
1739 msecs_to_jiffies(init->sinit_max_init_timeo);
1740 }
1741
1742 *tp = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL, SCTP_UNKNOWN);
1743 if (!*tp) {
1744 err = -ENOMEM;
1745 goto free;
1746 }
1747
Xin Long2c0dbaa2018-03-05 20:44:19 +08001748 if (!cmsgs->addrs_msg)
1749 return 0;
1750
Xin Long4be41392018-07-02 18:21:14 +08001751 if (daddr->sa.sa_family == AF_INET6)
1752 flowinfo = daddr->v6.sin6_flowinfo;
1753
Xin Long2c0dbaa2018-03-05 20:44:19 +08001754 /* sendv addr list parse */
1755 for_each_cmsghdr(cmsg, cmsgs->addrs_msg) {
1756 struct sctp_transport *transport;
1757 struct sctp_association *old;
1758 union sctp_addr _daddr;
1759 int dlen;
1760
1761 if (cmsg->cmsg_level != IPPROTO_SCTP ||
1762 (cmsg->cmsg_type != SCTP_DSTADDRV4 &&
1763 cmsg->cmsg_type != SCTP_DSTADDRV6))
1764 continue;
1765
1766 daddr = &_daddr;
1767 memset(daddr, 0, sizeof(*daddr));
1768 dlen = cmsg->cmsg_len - sizeof(struct cmsghdr);
1769 if (cmsg->cmsg_type == SCTP_DSTADDRV4) {
Wei Yongjund98985d2018-03-13 03:03:30 +00001770 if (dlen < sizeof(struct in_addr)) {
1771 err = -EINVAL;
Xin Long2c0dbaa2018-03-05 20:44:19 +08001772 goto free;
Wei Yongjund98985d2018-03-13 03:03:30 +00001773 }
Xin Long2c0dbaa2018-03-05 20:44:19 +08001774
1775 dlen = sizeof(struct in_addr);
1776 daddr->v4.sin_family = AF_INET;
1777 daddr->v4.sin_port = htons(asoc->peer.port);
1778 memcpy(&daddr->v4.sin_addr, CMSG_DATA(cmsg), dlen);
1779 } else {
Wei Yongjund98985d2018-03-13 03:03:30 +00001780 if (dlen < sizeof(struct in6_addr)) {
1781 err = -EINVAL;
Xin Long2c0dbaa2018-03-05 20:44:19 +08001782 goto free;
Wei Yongjund98985d2018-03-13 03:03:30 +00001783 }
Xin Long2c0dbaa2018-03-05 20:44:19 +08001784
1785 dlen = sizeof(struct in6_addr);
Xin Long4be41392018-07-02 18:21:14 +08001786 daddr->v6.sin6_flowinfo = flowinfo;
Xin Long2c0dbaa2018-03-05 20:44:19 +08001787 daddr->v6.sin6_family = AF_INET6;
1788 daddr->v6.sin6_port = htons(asoc->peer.port);
1789 memcpy(&daddr->v6.sin6_addr, CMSG_DATA(cmsg), dlen);
1790 }
1791 err = sctp_verify_addr(sk, daddr, sizeof(*daddr));
1792 if (err)
1793 goto free;
1794
1795 old = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
1796 if (old && old != asoc) {
1797 if (old->state >= SCTP_STATE_ESTABLISHED)
1798 err = -EISCONN;
1799 else
1800 err = -EALREADY;
1801 goto free;
1802 }
1803
1804 if (sctp_endpoint_is_peeled_off(ep, daddr)) {
1805 err = -EADDRNOTAVAIL;
1806 goto free;
1807 }
1808
1809 transport = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL,
1810 SCTP_UNKNOWN);
1811 if (!transport) {
1812 err = -ENOMEM;
1813 goto free;
1814 }
1815 }
1816
Xin Long2bfd80f2018-03-01 23:05:11 +08001817 return 0;
1818
1819free:
1820 sctp_association_free(asoc);
1821 return err;
1822}
1823
Xin Longc2666de2018-03-01 23:05:12 +08001824static int sctp_sendmsg_check_sflags(struct sctp_association *asoc,
1825 __u16 sflags, struct msghdr *msg,
1826 size_t msg_len)
1827{
1828 struct sock *sk = asoc->base.sk;
1829 struct net *net = sock_net(sk);
1830
1831 if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP))
1832 return -EPIPE;
1833
Xin Long49102802018-03-05 20:44:20 +08001834 if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP) &&
1835 !sctp_state(asoc, ESTABLISHED))
1836 return 0;
1837
Xin Longc2666de2018-03-01 23:05:12 +08001838 if (sflags & SCTP_EOF) {
1839 pr_debug("%s: shutting down association:%p\n", __func__, asoc);
1840 sctp_primitive_SHUTDOWN(net, asoc, NULL);
1841
1842 return 0;
1843 }
1844
1845 if (sflags & SCTP_ABORT) {
1846 struct sctp_chunk *chunk;
1847
1848 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1849 if (!chunk)
1850 return -ENOMEM;
1851
1852 pr_debug("%s: aborting association:%p\n", __func__, asoc);
1853 sctp_primitive_ABORT(net, asoc, chunk);
Xin Long901efe12019-03-03 16:50:26 +08001854 iov_iter_revert(&msg->msg_iter, msg_len);
Xin Longc2666de2018-03-01 23:05:12 +08001855
1856 return 0;
1857 }
1858
1859 return 1;
1860}
1861
Xin Longf84af332018-03-01 23:05:10 +08001862static int sctp_sendmsg_to_asoc(struct sctp_association *asoc,
1863 struct msghdr *msg, size_t msg_len,
1864 struct sctp_transport *transport,
1865 struct sctp_sndrcvinfo *sinfo)
1866{
1867 struct sock *sk = asoc->base.sk;
Marcelo Ricardo Leitner63d01332018-04-26 16:59:00 -03001868 struct sctp_sock *sp = sctp_sk(sk);
Xin Longf84af332018-03-01 23:05:10 +08001869 struct net *net = sock_net(sk);
1870 struct sctp_datamsg *datamsg;
1871 bool wait_connect = false;
1872 struct sctp_chunk *chunk;
1873 long timeo;
1874 int err;
1875
1876 if (sinfo->sinfo_stream >= asoc->stream.outcnt) {
1877 err = -EINVAL;
1878 goto err;
1879 }
1880
Konstantin Khorenko05364ca2018-08-10 20:11:42 +03001881 if (unlikely(!SCTP_SO(&asoc->stream, sinfo->sinfo_stream)->ext)) {
Xin Longf84af332018-03-01 23:05:10 +08001882 err = sctp_stream_init_ext(&asoc->stream, sinfo->sinfo_stream);
1883 if (err)
1884 goto err;
1885 }
1886
Marcelo Ricardo Leitner63d01332018-04-26 16:59:00 -03001887 if (sp->disable_fragments && msg_len > asoc->frag_point) {
Xin Longf84af332018-03-01 23:05:10 +08001888 err = -EMSGSIZE;
1889 goto err;
1890 }
1891
Marcelo Ricardo Leitner25216802018-04-26 16:58:56 -03001892 if (asoc->pmtu_pending) {
Marcelo Ricardo Leitner63d01332018-04-26 16:59:00 -03001893 if (sp->param_flags & SPP_PMTUD_ENABLE)
1894 sctp_assoc_sync_pmtu(asoc);
Marcelo Ricardo Leitner25216802018-04-26 16:58:56 -03001895 asoc->pmtu_pending = 0;
1896 }
Neil Horman0aee4c22018-03-12 14:15:25 -04001897
Xin Longcd305c72018-10-17 03:07:51 +08001898 if (sctp_wspace(asoc) < (int)msg_len)
Neil Horman0aee4c22018-03-12 14:15:25 -04001899 sctp_prsctp_prune(asoc, sinfo, msg_len - sctp_wspace(asoc));
1900
Xin Long10339902019-04-15 17:15:06 +08001901 if (sk_under_memory_pressure(sk))
1902 sk_mem_reclaim(sk);
1903
1904 if (sctp_wspace(asoc) <= 0 || !sk_wmem_schedule(sk, msg_len)) {
Neil Horman0aee4c22018-03-12 14:15:25 -04001905 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1906 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1907 if (err)
1908 goto err;
1909 }
1910
Xin Longf84af332018-03-01 23:05:10 +08001911 if (sctp_state(asoc, CLOSED)) {
1912 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
1913 if (err)
1914 goto err;
1915
Marcelo Ricardo Leitner63d01332018-04-26 16:59:00 -03001916 if (sp->strm_interleave) {
Xin Longf84af332018-03-01 23:05:10 +08001917 timeo = sock_sndtimeo(sk, 0);
1918 err = sctp_wait_for_connect(asoc, &timeo);
Xin Longc8638502018-10-17 03:06:12 +08001919 if (err) {
1920 err = -ESRCH;
Xin Longf84af332018-03-01 23:05:10 +08001921 goto err;
Xin Longc8638502018-10-17 03:06:12 +08001922 }
Xin Longf84af332018-03-01 23:05:10 +08001923 } else {
1924 wait_connect = true;
1925 }
1926
1927 pr_debug("%s: we associated primitively\n", __func__);
1928 }
1929
Xin Longf84af332018-03-01 23:05:10 +08001930 datamsg = sctp_datamsg_from_user(asoc, sinfo, &msg->msg_iter);
1931 if (IS_ERR(datamsg)) {
1932 err = PTR_ERR(datamsg);
1933 goto err;
1934 }
1935
1936 asoc->force_delay = !!(msg->msg_flags & MSG_MORE);
1937
1938 list_for_each_entry(chunk, &datamsg->chunks, frag_list) {
1939 sctp_chunk_hold(chunk);
1940 sctp_set_owner_w(chunk);
1941 chunk->transport = transport;
1942 }
1943
1944 err = sctp_primitive_SEND(net, asoc, datamsg);
1945 if (err) {
1946 sctp_datamsg_free(datamsg);
1947 goto err;
1948 }
1949
1950 pr_debug("%s: we sent primitively\n", __func__);
1951
1952 sctp_datamsg_put(datamsg);
1953
1954 if (unlikely(wait_connect)) {
1955 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1956 sctp_wait_for_connect(asoc, &timeo);
1957 }
1958
1959 err = msg_len;
1960
1961err:
1962 return err;
1963}
1964
Xin Longbecef9b2018-03-01 23:05:13 +08001965static union sctp_addr *sctp_sendmsg_get_daddr(struct sock *sk,
1966 const struct msghdr *msg,
1967 struct sctp_cmsgs *cmsgs)
1968{
1969 union sctp_addr *daddr = NULL;
1970 int err;
1971
1972 if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
1973 int len = msg->msg_namelen;
1974
1975 if (len > sizeof(*daddr))
1976 len = sizeof(*daddr);
1977
1978 daddr = (union sctp_addr *)msg->msg_name;
1979
1980 err = sctp_verify_addr(sk, daddr, len);
1981 if (err)
1982 return ERR_PTR(err);
1983 }
1984
1985 return daddr;
1986}
1987
Xin Longd42cb062018-03-01 23:05:15 +08001988static void sctp_sendmsg_update_sinfo(struct sctp_association *asoc,
1989 struct sctp_sndrcvinfo *sinfo,
1990 struct sctp_cmsgs *cmsgs)
1991{
1992 if (!cmsgs->srinfo && !cmsgs->sinfo) {
1993 sinfo->sinfo_stream = asoc->default_stream;
1994 sinfo->sinfo_ppid = asoc->default_ppid;
1995 sinfo->sinfo_context = asoc->default_context;
1996 sinfo->sinfo_assoc_id = sctp_assoc2id(asoc);
Xin Longed63afb2018-03-05 20:44:18 +08001997
1998 if (!cmsgs->prinfo)
1999 sinfo->sinfo_flags = asoc->default_flags;
Xin Longd42cb062018-03-01 23:05:15 +08002000 }
2001
Xin Longed63afb2018-03-05 20:44:18 +08002002 if (!cmsgs->srinfo && !cmsgs->prinfo)
Xin Longd42cb062018-03-01 23:05:15 +08002003 sinfo->sinfo_timetolive = asoc->default_timetolive;
Xin Long3ff547c2018-03-14 19:05:31 +08002004
2005 if (cmsgs->authinfo) {
2006 /* Reuse sinfo_tsn to indicate that authinfo was set and
2007 * sinfo_ssn to save the keyid on tx path.
2008 */
2009 sinfo->sinfo_tsn = 1;
2010 sinfo->sinfo_ssn = cmsgs->authinfo->auth_keynumber;
2011 }
Xin Longd42cb062018-03-01 23:05:15 +08002012}
2013
Ying Xue1b784142015-03-02 15:37:48 +08002014static int sctp_sendmsg(struct sock *sk, struct msghdr *msg, size_t msg_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015{
Xin Long204f8172018-03-01 23:05:14 +08002016 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Xin Long8e87c6e2018-03-01 23:05:16 +08002017 struct sctp_transport *transport = NULL;
Xin Long204f8172018-03-01 23:05:14 +08002018 struct sctp_sndrcvinfo _sinfo, *sinfo;
Greg Kroah-Hartmanba59fb02019-02-01 15:15:22 +01002019 struct sctp_association *asoc, *tmp;
Xin Long007b7e12018-03-01 23:05:17 +08002020 struct sctp_cmsgs cmsgs;
Xin Longbecef9b2018-03-01 23:05:13 +08002021 union sctp_addr *daddr;
Xin Long007b7e12018-03-01 23:05:17 +08002022 bool new = false;
2023 __u16 sflags;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02002024 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
Xin Long204f8172018-03-01 23:05:14 +08002026 /* Parse and get snd_info */
2027 err = sctp_sendmsg_parse(sk, &cmsgs, &_sinfo, msg, msg_len);
2028 if (err)
Xin Long007b7e12018-03-01 23:05:17 +08002029 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
Xin Long204f8172018-03-01 23:05:14 +08002031 sinfo = &_sinfo;
Xin Long007b7e12018-03-01 23:05:17 +08002032 sflags = sinfo->sinfo_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Xin Longbecef9b2018-03-01 23:05:13 +08002034 /* Get daddr from msg */
2035 daddr = sctp_sendmsg_get_daddr(sk, msg, &cmsgs);
2036 if (IS_ERR(daddr)) {
2037 err = PTR_ERR(daddr);
Xin Long007b7e12018-03-01 23:05:17 +08002038 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 }
2040
wangweidong048ed4b2014-01-21 15:44:11 +08002041 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
Xin Long49102802018-03-05 20:44:20 +08002043 /* SCTP_SENDALL process */
2044 if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP)) {
Greg Kroah-Hartmanba59fb02019-02-01 15:15:22 +01002045 list_for_each_entry_safe(asoc, tmp, &ep->asocs, asocs) {
Xin Long49102802018-03-05 20:44:20 +08002046 err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
2047 msg_len);
2048 if (err == 0)
2049 continue;
2050 if (err < 0)
2051 goto out_unlock;
2052
2053 sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
2054
2055 err = sctp_sendmsg_to_asoc(asoc, msg, msg_len,
2056 NULL, sinfo);
2057 if (err < 0)
2058 goto out_unlock;
2059
2060 iov_iter_revert(&msg->msg_iter, err);
2061 }
2062
2063 goto out_unlock;
2064 }
2065
Xin Long0a3920d2018-03-01 23:05:18 +08002066 /* Get and check or create asoc */
Xin Longbecef9b2018-03-01 23:05:13 +08002067 if (daddr) {
Xin Longbecef9b2018-03-01 23:05:13 +08002068 asoc = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
Xin Long0a3920d2018-03-01 23:05:18 +08002069 if (asoc) {
2070 err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
2071 msg_len);
2072 if (err <= 0)
2073 goto out_unlock;
2074 } else {
2075 err = sctp_sendmsg_new_asoc(sk, sflags, &cmsgs, daddr,
2076 &transport);
2077 if (err)
2078 goto out_unlock;
2079
2080 asoc = transport->asoc;
2081 new = true;
2082 }
2083
2084 if (!sctp_style(sk, TCP) && !(sflags & SCTP_ADDR_OVER))
2085 transport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 } else {
Xin Long007b7e12018-03-01 23:05:17 +08002087 asoc = sctp_id2assoc(sk, sinfo->sinfo_assoc_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 if (!asoc) {
2089 err = -EPIPE;
2090 goto out_unlock;
2091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
Xin Long007b7e12018-03-01 23:05:17 +08002093 err = sctp_sendmsg_check_sflags(asoc, sflags, msg, msg_len);
Xin Longc2666de2018-03-01 23:05:12 +08002094 if (err <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 }
2097
Xin Longd42cb062018-03-01 23:05:15 +08002098 /* Update snd_info with the asoc */
2099 sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
Xin Longf84af332018-03-01 23:05:10 +08002101 /* Send msg to the asoc */
Xin Long8e87c6e2018-03-01 23:05:16 +08002102 err = sctp_sendmsg_to_asoc(asoc, msg, msg_len, transport, sinfo);
Xin Long007b7e12018-03-01 23:05:17 +08002103 if (err < 0 && err != -ESRCH && new)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 sctp_association_free(asoc);
Xin Long8e87c6e2018-03-01 23:05:16 +08002105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106out_unlock:
wangweidong048ed4b2014-01-21 15:44:11 +08002107 release_sock(sk);
Xin Long007b7e12018-03-01 23:05:17 +08002108out:
Xin Longf84af332018-03-01 23:05:10 +08002109 return sctp_error(sk, msg->msg_flags, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110}
2111
2112/* This is an extended version of skb_pull() that removes the data from the
2113 * start of a skb even when data is spread across the list of skb's in the
2114 * frag_list. len specifies the total amount of data that needs to be removed.
2115 * when 'len' bytes could be removed from the skb, it returns 0.
2116 * If 'len' exceeds the total skb length, it returns the no. of bytes that
2117 * could not be removed.
2118 */
2119static int sctp_skb_pull(struct sk_buff *skb, int len)
2120{
2121 struct sk_buff *list;
2122 int skb_len = skb_headlen(skb);
2123 int rlen;
2124
2125 if (len <= skb_len) {
2126 __skb_pull(skb, len);
2127 return 0;
2128 }
2129 len -= skb_len;
2130 __skb_pull(skb, skb_len);
2131
David S. Miller1b003be2009-06-09 00:22:35 -07002132 skb_walk_frags(skb, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 rlen = sctp_skb_pull(list, len);
2134 skb->len -= (len-rlen);
2135 skb->data_len -= (len-rlen);
2136
2137 if (!rlen)
2138 return 0;
2139
2140 len = rlen;
2141 }
2142
2143 return len;
2144}
2145
2146/* API 3.1.3 recvmsg() - UDP Style Syntax
2147 *
2148 * ssize_t recvmsg(int socket, struct msghdr *message,
2149 * int flags);
2150 *
2151 * socket - the socket descriptor of the endpoint.
2152 * message - pointer to the msghdr structure which contains a single
2153 * user message and possibly some ancillary data.
2154 *
2155 * See Section 5 for complete description of the data
2156 * structures.
2157 *
2158 * flags - flags sent or received with the user message, see Section
2159 * 5 for complete description of the flags.
2160 */
Ying Xue1b784142015-03-02 15:37:48 +08002161static int sctp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
2162 int noblock, int flags, int *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163{
2164 struct sctp_ulpevent *event = NULL;
2165 struct sctp_sock *sp = sctp_sk(sk);
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002166 struct sk_buff *skb, *head_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 int copied;
2168 int err = 0;
2169 int skb_len;
2170
Daniel Borkmannbb333812013-06-28 19:49:40 +02002171 pr_debug("%s: sk:%p, msghdr:%p, len:%zd, noblock:%d, flags:0x%x, "
2172 "addr_len:%p)\n", __func__, sk, msg, len, noblock, flags,
2173 addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
wangweidong048ed4b2014-01-21 15:44:11 +08002175 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -03002177 if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED) &&
Xin Longe0878692016-07-30 14:14:41 +08002178 !sctp_sstate(sk, CLOSING) && !sctp_sstate(sk, CLOSED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 err = -ENOTCONN;
2180 goto out;
2181 }
2182
2183 skb = sctp_skb_recv_datagram(sk, flags, noblock, &err);
2184 if (!skb)
2185 goto out;
2186
2187 /* Get the total length of the skb including any skb's in the
2188 * frag_list.
2189 */
2190 skb_len = skb->len;
2191
2192 copied = skb_len;
2193 if (copied > len)
2194 copied = len;
2195
David S. Miller51f3d022014-11-05 16:46:40 -05002196 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
2198 event = sctp_skb2event(skb);
2199
2200 if (err)
2201 goto out_free;
2202
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002203 if (event->chunk && event->chunk->head_skb)
2204 head_skb = event->chunk->head_skb;
2205 else
2206 head_skb = skb;
2207 sock_recv_ts_and_drops(msg, sk, head_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 if (sctp_ulpevent_is_notification(event)) {
2209 msg->msg_flags |= MSG_NOTIFICATION;
2210 sp->pf->event_msgname(event, msg->msg_name, addr_len);
2211 } else {
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002212 sp->pf->skb_msgname(head_skb, msg->msg_name, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 }
2214
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02002215 /* Check if we allow SCTP_NXTINFO. */
2216 if (sp->recvnxtinfo)
2217 sctp_ulpevent_read_nxtinfo(event, msg, sk);
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02002218 /* Check if we allow SCTP_RCVINFO. */
2219 if (sp->recvrcvinfo)
2220 sctp_ulpevent_read_rcvinfo(event, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 /* Check if we allow SCTP_SNDRCVINFO. */
Xin Long2cc0eeb2018-11-18 16:08:51 +08002222 if (sctp_ulpevent_type_enabled(sp->subscribe, SCTP_DATA_IO_EVENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 sctp_ulpevent_read_sndrcvinfo(event, msg);
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02002224
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 err = copied;
2226
2227 /* If skb's length exceeds the user's buffer, update the skb and
2228 * push it back to the receive_queue so that the next call to
2229 * recvmsg() will return the remaining data. Don't set MSG_EOR.
2230 */
2231 if (skb_len > copied) {
2232 msg->msg_flags &= ~MSG_EOR;
2233 if (flags & MSG_PEEK)
2234 goto out_free;
2235 sctp_skb_pull(skb, copied);
2236 skb_queue_head(&sk->sk_receive_queue, skb);
2237
Daniel Borkmann362d5202014-04-14 21:45:17 +02002238 /* When only partial message is copied to the user, increase
2239 * rwnd by that amount. If all the data in the skb is read,
2240 * rwnd is updated when the event is freed.
2241 */
2242 if (!sctp_ulpevent_is_notification(event))
2243 sctp_assoc_rwnd_increase(event->asoc, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 goto out;
2245 } else if ((event->msg_flags & MSG_NOTIFICATION) ||
2246 (event->msg_flags & MSG_EOR))
2247 msg->msg_flags |= MSG_EOR;
2248 else
2249 msg->msg_flags &= ~MSG_EOR;
2250
2251out_free:
2252 if (flags & MSG_PEEK) {
2253 /* Release the skb reference acquired after peeking the skb in
2254 * sctp_skb_recv_datagram().
2255 */
2256 kfree_skb(skb);
2257 } else {
2258 /* Free the event which includes releasing the reference to
2259 * the owner of the skb, freeing the skb and updating the
2260 * rwnd.
2261 */
2262 sctp_ulpevent_free(event);
2263 }
2264out:
wangweidong048ed4b2014-01-21 15:44:11 +08002265 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 return err;
2267}
2268
2269/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
2270 *
2271 * This option is a on/off flag. If enabled no SCTP message
2272 * fragmentation will be performed. Instead if a message being sent
2273 * exceeds the current PMTU size, the message will NOT be sent and
2274 * instead a error will be indicated to the user.
2275 */
2276static int sctp_setsockopt_disable_fragments(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002277 char __user *optval,
2278 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279{
2280 int val;
2281
2282 if (optlen < sizeof(int))
2283 return -EINVAL;
2284
2285 if (get_user(val, (int __user *)optval))
2286 return -EFAULT;
2287
2288 sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1;
2289
2290 return 0;
2291}
2292
2293static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002294 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295{
Xin Long2cc0eeb2018-11-18 16:08:51 +08002296 struct sctp_event_subscribe subscribe;
2297 __u8 *sn_type = (__u8 *)&subscribe;
2298 struct sctp_sock *sp = sctp_sk(sk);
Xin Longa1e3a052018-11-18 16:08:52 +08002299 struct sctp_association *asoc;
Xin Long2cc0eeb2018-11-18 16:08:51 +08002300 int i;
Wei Yongjun94912302011-07-02 09:28:04 +00002301
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05002302 if (optlen > sizeof(struct sctp_event_subscribe))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 return -EINVAL;
Xin Long2cc0eeb2018-11-18 16:08:51 +08002304
2305 if (copy_from_user(&subscribe, optval, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 return -EFAULT;
Wei Yongjun94912302011-07-02 09:28:04 +00002307
Xin Long2cc0eeb2018-11-18 16:08:51 +08002308 for (i = 0; i < optlen; i++)
2309 sctp_ulpevent_type_set(&sp->subscribe, SCTP_SN_TYPE_BASE + i,
2310 sn_type[i]);
2311
Xin Longa1e3a052018-11-18 16:08:52 +08002312 list_for_each_entry(asoc, &sp->ep->asocs, asocs)
2313 asoc->subscribe = sctp_sk(sk)->subscribe;
2314
Daniel Borkmannbbbea412014-07-12 20:30:40 +02002315 /* At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT,
Wei Yongjun94912302011-07-02 09:28:04 +00002316 * if there is no data to be sent or retransmit, the stack will
2317 * immediately send up this notification.
2318 */
Xin Long2cc0eeb2018-11-18 16:08:51 +08002319 if (sctp_ulpevent_type_enabled(sp->subscribe, SCTP_SENDER_DRY_EVENT)) {
Xin Long2cc0eeb2018-11-18 16:08:51 +08002320 struct sctp_ulpevent *event;
Wei Yongjun94912302011-07-02 09:28:04 +00002321
Xin Longa1e3a052018-11-18 16:08:52 +08002322 asoc = sctp_id2assoc(sk, 0);
Wei Yongjun94912302011-07-02 09:28:04 +00002323 if (asoc && sctp_outq_is_empty(&asoc->outqueue)) {
2324 event = sctp_ulpevent_make_sender_dry_event(asoc,
Marcelo Ricardo Leitner2e83acb2018-01-08 19:02:27 -02002325 GFP_USER | __GFP_NOWARN);
Wei Yongjun94912302011-07-02 09:28:04 +00002326 if (!event)
2327 return -ENOMEM;
2328
Xin Long9162e0e2017-12-08 21:04:05 +08002329 asoc->stream.si->enqueue_event(&asoc->ulpq, event);
Wei Yongjun94912302011-07-02 09:28:04 +00002330 }
2331 }
2332
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 return 0;
2334}
2335
2336/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
2337 *
2338 * This socket option is applicable to the UDP-style socket only. When
2339 * set it will cause associations that are idle for more than the
2340 * specified number of seconds to automatically close. An association
2341 * being idle is defined an association that has NOT sent or received
2342 * user data. The special value of '0' indicates that no automatic
2343 * close of any associations should be performed. The option expects an
2344 * integer defining the number of seconds of idle time before an
2345 * association is closed.
2346 */
2347static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002348 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349{
2350 struct sctp_sock *sp = sctp_sk(sk);
Neil Horman9f70f462013-12-10 06:48:15 -05002351 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
2353 /* Applicable to UDP-style socket only */
2354 if (sctp_style(sk, TCP))
2355 return -EOPNOTSUPP;
2356 if (optlen != sizeof(int))
2357 return -EINVAL;
2358 if (copy_from_user(&sp->autoclose, optval, optlen))
2359 return -EFAULT;
2360
Neil Horman9f70f462013-12-10 06:48:15 -05002361 if (sp->autoclose > net->sctp.max_autoclose)
2362 sp->autoclose = net->sctp.max_autoclose;
2363
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 return 0;
2365}
2366
2367/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
2368 *
2369 * Applications can enable or disable heartbeats for any peer address of
2370 * an association, modify an address's heartbeat interval, force a
2371 * heartbeat to be sent immediately, and adjust the address's maximum
2372 * number of retransmissions sent before an address is considered
2373 * unreachable. The following structure is used to access and modify an
2374 * address's parameters:
2375 *
2376 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002377 * sctp_assoc_t spp_assoc_id;
2378 * struct sockaddr_storage spp_address;
2379 * uint32_t spp_hbinterval;
2380 * uint16_t spp_pathmaxrxt;
2381 * uint32_t spp_pathmtu;
2382 * uint32_t spp_sackdelay;
2383 * uint32_t spp_flags;
Xin Long0b0dce72018-07-02 18:21:13 +08002384 * uint32_t spp_ipv6_flowlabel;
2385 * uint8_t spp_dscp;
Frank Filz52ccb8e2005-12-22 11:36:46 -08002386 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002388 * spp_assoc_id - (one-to-many style socket) This is filled in the
2389 * application, and identifies the association for
2390 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 * spp_address - This specifies which address is of interest.
2392 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08002393 * in milliseconds. If a value of zero
2394 * is present in this field then no changes are to
2395 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 * spp_pathmaxrxt - This contains the maximum number of
2397 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08002398 * considered unreachable. If a value of zero
2399 * is present in this field then no changes are to
2400 * be made to this parameter.
2401 * spp_pathmtu - When Path MTU discovery is disabled the value
2402 * specified here will be the "fixed" path mtu.
2403 * Note that if the spp_address field is empty
2404 * then all associations on this address will
2405 * have this fixed path mtu set upon them.
2406 *
2407 * spp_sackdelay - When delayed sack is enabled, this value specifies
2408 * the number of milliseconds that sacks will be delayed
2409 * for. This value will apply to all addresses of an
2410 * association if the spp_address field is empty. Note
2411 * also, that if delayed sack is enabled and this
2412 * value is set to 0, no change is made to the last
2413 * recorded delayed sack timer value.
2414 *
2415 * spp_flags - These flags are used to control various features
2416 * on an association. The flag field may contain
2417 * zero or more of the following options.
2418 *
2419 * SPP_HB_ENABLE - Enable heartbeats on the
2420 * specified address. Note that if the address
2421 * field is empty all addresses for the association
2422 * have heartbeats enabled upon them.
2423 *
2424 * SPP_HB_DISABLE - Disable heartbeats on the
2425 * speicifed address. Note that if the address
2426 * field is empty all addresses for the association
2427 * will have their heartbeats disabled. Note also
2428 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
2429 * mutually exclusive, only one of these two should
2430 * be specified. Enabling both fields will have
2431 * undetermined results.
2432 *
2433 * SPP_HB_DEMAND - Request a user initiated heartbeat
2434 * to be made immediately.
2435 *
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002436 * SPP_HB_TIME_IS_ZERO - Specify's that the time for
2437 * heartbeat delayis to be set to the value of 0
2438 * milliseconds.
2439 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002440 * SPP_PMTUD_ENABLE - This field will enable PMTU
2441 * discovery upon the specified address. Note that
2442 * if the address feild is empty then all addresses
2443 * on the association are effected.
2444 *
2445 * SPP_PMTUD_DISABLE - This field will disable PMTU
2446 * discovery upon the specified address. Note that
2447 * if the address feild is empty then all addresses
2448 * on the association are effected. Not also that
2449 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2450 * exclusive. Enabling both will have undetermined
2451 * results.
2452 *
2453 * SPP_SACKDELAY_ENABLE - Setting this flag turns
2454 * on delayed sack. The time specified in spp_sackdelay
2455 * is used to specify the sack delay for this address. Note
2456 * that if spp_address is empty then all addresses will
2457 * enable delayed sack and take on the sack delay
2458 * value specified in spp_sackdelay.
2459 * SPP_SACKDELAY_DISABLE - Setting this flag turns
2460 * off delayed sack. If the spp_address field is blank then
2461 * delayed sack is disabled for the entire association. Note
2462 * also that this field is mutually exclusive to
2463 * SPP_SACKDELAY_ENABLE, setting both will have undefined
2464 * results.
Xin Long0b0dce72018-07-02 18:21:13 +08002465 *
2466 * SPP_IPV6_FLOWLABEL: Setting this flag enables the
2467 * setting of the IPV6 flow label value. The value is
2468 * contained in the spp_ipv6_flowlabel field.
2469 * Upon retrieval, this flag will be set to indicate that
2470 * the spp_ipv6_flowlabel field has a valid value returned.
2471 * If a specific destination address is set (in the
2472 * spp_address field), then the value returned is that of
2473 * the address. If just an association is specified (and
2474 * no address), then the association's default flow label
2475 * is returned. If neither an association nor a destination
2476 * is specified, then the socket's default flow label is
2477 * returned. For non-IPv6 sockets, this flag will be left
2478 * cleared.
2479 *
2480 * SPP_DSCP: Setting this flag enables the setting of the
2481 * Differentiated Services Code Point (DSCP) value
2482 * associated with either the association or a specific
2483 * address. The value is obtained in the spp_dscp field.
2484 * Upon retrieval, this flag will be set to indicate that
2485 * the spp_dscp field has a valid value returned. If a
2486 * specific destination address is set when called (in the
2487 * spp_address field), then that specific destination
2488 * address's DSCP value is returned. If just an association
2489 * is specified, then the association's default DSCP is
2490 * returned. If neither an association nor a destination is
2491 * specified, then the socket's default DSCP is returned.
2492 *
2493 * spp_ipv6_flowlabel
2494 * - This field is used in conjunction with the
2495 * SPP_IPV6_FLOWLABEL flag and contains the IPv6 flow label.
2496 * The 20 least significant bits are used for the flow
2497 * label. This setting has precedence over any IPv6-layer
2498 * setting.
2499 *
2500 * spp_dscp - This field is used in conjunction with the SPP_DSCP flag
2501 * and contains the DSCP. The 6 most significant bits are
2502 * used for the DSCP. This setting has precedence over any
2503 * IPv4- or IPv6- layer setting.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 */
Adrian Bunk16164362006-09-18 00:40:38 -07002505static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2506 struct sctp_transport *trans,
2507 struct sctp_association *asoc,
2508 struct sctp_sock *sp,
2509 int hb_change,
2510 int pmtud_change,
2511 int sackdelay_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 int error;
2514
Frank Filz52ccb8e2005-12-22 11:36:46 -08002515 if (params->spp_flags & SPP_HB_DEMAND && trans) {
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00002516 struct net *net = sock_net(trans->asoc->base.sk);
2517
2518 error = sctp_primitive_REQUESTHEARTBEAT(net, trans->asoc, trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 if (error)
2520 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 }
2522
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002523 /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2524 * this field is ignored. Note also that a value of zero indicates
2525 * the current setting should be left unchanged.
2526 */
2527 if (params->spp_flags & SPP_HB_ENABLE) {
2528
2529 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2530 * set. This lets us use 0 value when this flag
2531 * is set.
2532 */
2533 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2534 params->spp_hbinterval = 0;
2535
2536 if (params->spp_hbinterval ||
2537 (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2538 if (trans) {
2539 trans->hbinterval =
2540 msecs_to_jiffies(params->spp_hbinterval);
2541 } else if (asoc) {
2542 asoc->hbinterval =
2543 msecs_to_jiffies(params->spp_hbinterval);
2544 } else {
2545 sp->hbinterval = params->spp_hbinterval;
2546 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08002547 }
2548 }
2549
2550 if (hb_change) {
2551 if (trans) {
2552 trans->param_flags =
2553 (trans->param_flags & ~SPP_HB) | hb_change;
2554 } else if (asoc) {
2555 asoc->param_flags =
2556 (asoc->param_flags & ~SPP_HB) | hb_change;
2557 } else {
2558 sp->param_flags =
2559 (sp->param_flags & ~SPP_HB) | hb_change;
2560 }
2561 }
2562
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002563 /* When Path MTU discovery is disabled the value specified here will
2564 * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2565 * include the flag SPP_PMTUD_DISABLE for this field to have any
2566 * effect).
2567 */
2568 if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002569 if (trans) {
2570 trans->pathmtu = params->spp_pathmtu;
Xin Long3ebfdf02017-04-04 13:39:55 +08002571 sctp_assoc_sync_pmtu(asoc);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002572 } else if (asoc) {
Marcelo Ricardo Leitnerc4b28932018-04-26 16:58:53 -03002573 sctp_assoc_set_pmtu(asoc, params->spp_pathmtu);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002574 } else {
2575 sp->pathmtu = params->spp_pathmtu;
2576 }
2577 }
2578
2579 if (pmtud_change) {
2580 if (trans) {
2581 int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2582 (params->spp_flags & SPP_PMTUD_ENABLE);
2583 trans->param_flags =
2584 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2585 if (update) {
Vlad Yasevich9914ae32011-04-26 21:51:31 +00002586 sctp_transport_pmtu(trans, sctp_opt2sk(sp));
Xin Long3ebfdf02017-04-04 13:39:55 +08002587 sctp_assoc_sync_pmtu(asoc);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002588 }
2589 } else if (asoc) {
2590 asoc->param_flags =
2591 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2592 } else {
2593 sp->param_flags =
2594 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2595 }
2596 }
2597
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002598 /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2599 * value of this field is ignored. Note also that a value of zero
2600 * indicates the current setting should be left unchanged.
2601 */
2602 if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002603 if (trans) {
2604 trans->sackdelay =
2605 msecs_to_jiffies(params->spp_sackdelay);
2606 } else if (asoc) {
2607 asoc->sackdelay =
2608 msecs_to_jiffies(params->spp_sackdelay);
2609 } else {
2610 sp->sackdelay = params->spp_sackdelay;
2611 }
2612 }
2613
2614 if (sackdelay_change) {
2615 if (trans) {
2616 trans->param_flags =
2617 (trans->param_flags & ~SPP_SACKDELAY) |
2618 sackdelay_change;
2619 } else if (asoc) {
2620 asoc->param_flags =
2621 (asoc->param_flags & ~SPP_SACKDELAY) |
2622 sackdelay_change;
2623 } else {
2624 sp->param_flags =
2625 (sp->param_flags & ~SPP_SACKDELAY) |
2626 sackdelay_change;
2627 }
2628 }
2629
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002630 /* Note that a value of zero indicates the current setting should be
2631 left unchanged.
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002632 */
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002633 if (params->spp_pathmaxrxt) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002634 if (trans) {
2635 trans->pathmaxrxt = params->spp_pathmaxrxt;
2636 } else if (asoc) {
2637 asoc->pathmaxrxt = params->spp_pathmaxrxt;
2638 } else {
2639 sp->pathmaxrxt = params->spp_pathmaxrxt;
2640 }
2641 }
2642
Xin Long0b0dce72018-07-02 18:21:13 +08002643 if (params->spp_flags & SPP_IPV6_FLOWLABEL) {
Xin Long741880e2018-09-03 15:47:11 +08002644 if (trans) {
2645 if (trans->ipaddr.sa.sa_family == AF_INET6) {
2646 trans->flowlabel = params->spp_ipv6_flowlabel &
2647 SCTP_FLOWLABEL_VAL_MASK;
2648 trans->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2649 }
Xin Long0b0dce72018-07-02 18:21:13 +08002650 } else if (asoc) {
Xin Longaf8a2b82018-09-03 15:47:10 +08002651 struct sctp_transport *t;
2652
2653 list_for_each_entry(t, &asoc->peer.transport_addr_list,
Xin Long0b0dce72018-07-02 18:21:13 +08002654 transports) {
Xin Longaf8a2b82018-09-03 15:47:10 +08002655 if (t->ipaddr.sa.sa_family != AF_INET6)
Xin Long0b0dce72018-07-02 18:21:13 +08002656 continue;
Xin Longaf8a2b82018-09-03 15:47:10 +08002657 t->flowlabel = params->spp_ipv6_flowlabel &
2658 SCTP_FLOWLABEL_VAL_MASK;
2659 t->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
Xin Long0b0dce72018-07-02 18:21:13 +08002660 }
2661 asoc->flowlabel = params->spp_ipv6_flowlabel &
2662 SCTP_FLOWLABEL_VAL_MASK;
2663 asoc->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2664 } else if (sctp_opt2sk(sp)->sk_family == AF_INET6) {
2665 sp->flowlabel = params->spp_ipv6_flowlabel &
2666 SCTP_FLOWLABEL_VAL_MASK;
2667 sp->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2668 }
2669 }
2670
2671 if (params->spp_flags & SPP_DSCP) {
2672 if (trans) {
2673 trans->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2674 trans->dscp |= SCTP_DSCP_SET_MASK;
2675 } else if (asoc) {
Xin Longaf8a2b82018-09-03 15:47:10 +08002676 struct sctp_transport *t;
2677
2678 list_for_each_entry(t, &asoc->peer.transport_addr_list,
Xin Long0b0dce72018-07-02 18:21:13 +08002679 transports) {
Xin Longaf8a2b82018-09-03 15:47:10 +08002680 t->dscp = params->spp_dscp &
2681 SCTP_DSCP_VAL_MASK;
2682 t->dscp |= SCTP_DSCP_SET_MASK;
Xin Long0b0dce72018-07-02 18:21:13 +08002683 }
2684 asoc->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2685 asoc->dscp |= SCTP_DSCP_SET_MASK;
2686 } else {
2687 sp->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2688 sp->dscp |= SCTP_DSCP_SET_MASK;
2689 }
2690 }
2691
Frank Filz52ccb8e2005-12-22 11:36:46 -08002692 return 0;
2693}
2694
2695static int sctp_setsockopt_peer_addr_params(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002696 char __user *optval,
2697 unsigned int optlen)
Frank Filz52ccb8e2005-12-22 11:36:46 -08002698{
2699 struct sctp_paddrparams params;
2700 struct sctp_transport *trans = NULL;
2701 struct sctp_association *asoc = NULL;
2702 struct sctp_sock *sp = sctp_sk(sk);
2703 int error;
2704 int hb_change, pmtud_change, sackdelay_change;
2705
Xin Long0b0dce72018-07-02 18:21:13 +08002706 if (optlen == sizeof(params)) {
2707 if (copy_from_user(&params, optval, optlen))
2708 return -EFAULT;
2709 } else if (optlen == ALIGN(offsetof(struct sctp_paddrparams,
2710 spp_ipv6_flowlabel), 4)) {
2711 if (copy_from_user(&params, optval, optlen))
2712 return -EFAULT;
2713 if (params.spp_flags & (SPP_DSCP | SPP_IPV6_FLOWLABEL))
2714 return -EINVAL;
2715 } else {
wangweidongcb3f8372013-12-23 12:16:50 +08002716 return -EINVAL;
Xin Long0b0dce72018-07-02 18:21:13 +08002717 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08002718
2719 /* Validate flags and value parameters. */
2720 hb_change = params.spp_flags & SPP_HB;
2721 pmtud_change = params.spp_flags & SPP_PMTUD;
2722 sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2723
2724 if (hb_change == SPP_HB ||
2725 pmtud_change == SPP_PMTUD ||
2726 sackdelay_change == SPP_SACKDELAY ||
2727 params.spp_sackdelay > 500 ||
Joe Perchesf64f9e72009-11-29 16:55:45 -08002728 (params.spp_pathmtu &&
2729 params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
Frank Filz52ccb8e2005-12-22 11:36:46 -08002730 return -EINVAL;
2731
2732 /* If an address other than INADDR_ANY is specified, and
2733 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 */
wangweidongcb3f8372013-12-23 12:16:50 +08002735 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002736 trans = sctp_addr_id2transport(sk, &params.spp_address,
2737 params.spp_assoc_id);
2738 if (!trans)
2739 return -EINVAL;
2740 }
2741
Xin Longb99e5e02019-01-28 15:08:24 +08002742 /* Get association, if assoc_id != SCTP_FUTURE_ASSOC and the
2743 * socket is a one to many style socket, and an association
2744 * was not found, then the id was invalid.
Frank Filz52ccb8e2005-12-22 11:36:46 -08002745 */
2746 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
Xin Longb99e5e02019-01-28 15:08:24 +08002747 if (!asoc && params.spp_assoc_id != SCTP_FUTURE_ASSOC &&
2748 sctp_style(sk, UDP))
Frank Filz52ccb8e2005-12-22 11:36:46 -08002749 return -EINVAL;
2750
2751 /* Heartbeat demand can only be sent on a transport or
2752 * association, but not a socket.
2753 */
2754 if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2755 return -EINVAL;
2756
2757 /* Process parameters. */
2758 error = sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2759 hb_change, pmtud_change,
2760 sackdelay_change);
2761
2762 if (error)
2763 return error;
2764
2765 /* If changes are for association, also apply parameters to each
2766 * transport.
2767 */
2768 if (!trans && asoc) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002769 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2770 transports) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002771 sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2772 hb_change, pmtud_change,
2773 sackdelay_change);
2774 }
2775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776
2777 return 0;
2778}
2779
wangweidong0ea5e4d2014-01-15 17:24:01 +08002780static inline __u32 sctp_spp_sackdelay_enable(__u32 param_flags)
2781{
2782 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_ENABLE;
2783}
2784
2785static inline __u32 sctp_spp_sackdelay_disable(__u32 param_flags)
2786{
2787 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_DISABLE;
2788}
2789
Xin Long9c5829e2019-01-28 15:08:34 +08002790static void sctp_apply_asoc_delayed_ack(struct sctp_sack_info *params,
2791 struct sctp_association *asoc)
2792{
2793 struct sctp_transport *trans;
2794
2795 if (params->sack_delay) {
2796 asoc->sackdelay = msecs_to_jiffies(params->sack_delay);
2797 asoc->param_flags =
2798 sctp_spp_sackdelay_enable(asoc->param_flags);
2799 }
2800 if (params->sack_freq == 1) {
2801 asoc->param_flags =
2802 sctp_spp_sackdelay_disable(asoc->param_flags);
2803 } else if (params->sack_freq > 1) {
2804 asoc->sackfreq = params->sack_freq;
2805 asoc->param_flags =
2806 sctp_spp_sackdelay_enable(asoc->param_flags);
2807 }
2808
2809 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2810 transports) {
2811 if (params->sack_delay) {
2812 trans->sackdelay = msecs_to_jiffies(params->sack_delay);
2813 trans->param_flags =
2814 sctp_spp_sackdelay_enable(trans->param_flags);
2815 }
2816 if (params->sack_freq == 1) {
2817 trans->param_flags =
2818 sctp_spp_sackdelay_disable(trans->param_flags);
2819 } else if (params->sack_freq > 1) {
2820 trans->sackfreq = params->sack_freq;
2821 trans->param_flags =
2822 sctp_spp_sackdelay_enable(trans->param_flags);
2823 }
2824 }
2825}
2826
Wei Yongjund364d922008-05-09 15:13:26 -07002827/*
2828 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08002829 *
Wei Yongjund364d922008-05-09 15:13:26 -07002830 * This option will effect the way delayed acks are performed. This
2831 * option allows you to get or set the delayed ack time, in
2832 * milliseconds. It also allows changing the delayed ack frequency.
2833 * Changing the frequency to 1 disables the delayed sack algorithm. If
2834 * the assoc_id is 0, then this sets or gets the endpoints default
2835 * values. If the assoc_id field is non-zero, then the set or get
2836 * effects the specified association for the one to many model (the
2837 * assoc_id field is ignored by the one to one model). Note that if
2838 * sack_delay or sack_freq are 0 when setting this option, then the
2839 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08002840 *
Wei Yongjund364d922008-05-09 15:13:26 -07002841 * struct sctp_sack_info {
2842 * sctp_assoc_t sack_assoc_id;
2843 * uint32_t sack_delay;
2844 * uint32_t sack_freq;
2845 * };
Frank Filz77086102005-12-22 11:37:30 -08002846 *
Wei Yongjund364d922008-05-09 15:13:26 -07002847 * sack_assoc_id - This parameter, indicates which association the user
2848 * is performing an action upon. Note that if this field's value is
2849 * zero then the endpoints default value is changed (effecting future
2850 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08002851 *
Wei Yongjund364d922008-05-09 15:13:26 -07002852 * sack_delay - This parameter contains the number of milliseconds that
2853 * the user is requesting the delayed ACK timer be set to. Note that
2854 * this value is defined in the standard to be between 200 and 500
2855 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08002856 *
Wei Yongjund364d922008-05-09 15:13:26 -07002857 * sack_freq - This parameter contains the number of packets that must
2858 * be received before a sack is sent without waiting for the delay
2859 * timer to expire. The default value for this is 2, setting this
2860 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08002861 */
2862
Wei Yongjund364d922008-05-09 15:13:26 -07002863static int sctp_setsockopt_delayed_ack(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002864 char __user *optval, unsigned int optlen)
Frank Filz77086102005-12-22 11:37:30 -08002865{
Xin Long9c5829e2019-01-28 15:08:34 +08002866 struct sctp_sock *sp = sctp_sk(sk);
2867 struct sctp_association *asoc;
2868 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08002869
Wei Yongjund364d922008-05-09 15:13:26 -07002870 if (optlen == sizeof(struct sctp_sack_info)) {
2871 if (copy_from_user(&params, optval, optlen))
2872 return -EFAULT;
2873
2874 if (params.sack_delay == 0 && params.sack_freq == 0)
2875 return 0;
2876 } else if (optlen == sizeof(struct sctp_assoc_value)) {
Neil Horman94f65192013-12-23 08:29:43 -05002877 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05002878 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05002879 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05002880 "Use struct sctp_sack_info instead\n",
2881 current->comm, task_pid_nr(current));
Wei Yongjund364d922008-05-09 15:13:26 -07002882 if (copy_from_user(&params, optval, optlen))
2883 return -EFAULT;
2884
2885 if (params.sack_delay == 0)
2886 params.sack_freq = 1;
2887 else
2888 params.sack_freq = 0;
2889 } else
wangweidongcb3f8372013-12-23 12:16:50 +08002890 return -EINVAL;
Frank Filz77086102005-12-22 11:37:30 -08002891
Frank Filz77086102005-12-22 11:37:30 -08002892 /* Validate value parameter. */
Wei Yongjund364d922008-05-09 15:13:26 -07002893 if (params.sack_delay > 500)
Frank Filz77086102005-12-22 11:37:30 -08002894 return -EINVAL;
2895
Xin Long9c5829e2019-01-28 15:08:34 +08002896 /* Get association, if sack_assoc_id != SCTP_FUTURE_ASSOC and the
2897 * socket is a one to many style socket, and an association
2898 * was not found, then the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002899 */
Wei Yongjund364d922008-05-09 15:13:26 -07002900 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
Xin Long9c5829e2019-01-28 15:08:34 +08002901 if (!asoc && params.sack_assoc_id > SCTP_ALL_ASSOC &&
2902 sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08002903 return -EINVAL;
2904
Xin Long9c5829e2019-01-28 15:08:34 +08002905 if (asoc) {
2906 sctp_apply_asoc_delayed_ack(&params, asoc);
2907
2908 return 0;
2909 }
2910
Xin Long8e2614f2019-03-18 20:06:00 +08002911 if (sctp_style(sk, TCP))
2912 params.sack_assoc_id = SCTP_FUTURE_ASSOC;
2913
Xin Long9c5829e2019-01-28 15:08:34 +08002914 if (params.sack_assoc_id == SCTP_FUTURE_ASSOC ||
2915 params.sack_assoc_id == SCTP_ALL_ASSOC) {
2916 if (params.sack_delay) {
Wei Yongjund364d922008-05-09 15:13:26 -07002917 sp->sackdelay = params.sack_delay;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002918 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002919 sctp_spp_sackdelay_enable(sp->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002920 }
Xin Long9c5829e2019-01-28 15:08:34 +08002921 if (params.sack_freq == 1) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002922 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002923 sctp_spp_sackdelay_disable(sp->param_flags);
Xin Long9c5829e2019-01-28 15:08:34 +08002924 } else if (params.sack_freq > 1) {
Wei Yongjund364d922008-05-09 15:13:26 -07002925 sp->sackfreq = params.sack_freq;
2926 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002927 sctp_spp_sackdelay_enable(sp->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002928 }
Frank Filz77086102005-12-22 11:37:30 -08002929 }
2930
Xin Long9c5829e2019-01-28 15:08:34 +08002931 if (params.sack_assoc_id == SCTP_CURRENT_ASSOC ||
2932 params.sack_assoc_id == SCTP_ALL_ASSOC)
2933 list_for_each_entry(asoc, &sp->ep->asocs, asocs)
2934 sctp_apply_asoc_delayed_ack(&params, asoc);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002935
Frank Filz77086102005-12-22 11:37:30 -08002936 return 0;
2937}
2938
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2940 *
2941 * Applications can specify protocol parameters for the default association
2942 * initialization. The option name argument to setsockopt() and getsockopt()
2943 * is SCTP_INITMSG.
2944 *
2945 * Setting initialization parameters is effective only on an unconnected
2946 * socket (for UDP-style sockets only future associations are effected
2947 * by the change). With TCP-style sockets, this option is inherited by
2948 * sockets derived from a listener socket.
2949 */
David S. Millerb7058842009-09-30 16:12:20 -07002950static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951{
2952 struct sctp_initmsg sinit;
2953 struct sctp_sock *sp = sctp_sk(sk);
2954
2955 if (optlen != sizeof(struct sctp_initmsg))
2956 return -EINVAL;
2957 if (copy_from_user(&sinit, optval, optlen))
2958 return -EFAULT;
2959
2960 if (sinit.sinit_num_ostreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002961 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 if (sinit.sinit_max_instreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002963 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 if (sinit.sinit_max_attempts)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002965 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 if (sinit.sinit_max_init_timeo)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002967 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
2969 return 0;
2970}
2971
2972/*
2973 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2974 *
2975 * Applications that wish to use the sendto() system call may wish to
2976 * specify a default set of parameters that would normally be supplied
2977 * through the inclusion of ancillary data. This socket option allows
2978 * such an application to set the default sctp_sndrcvinfo structure.
2979 * The application that wishes to use this socket option simply passes
2980 * in to this call the sctp_sndrcvinfo structure defined in Section
2981 * 5.2.2) The input parameters accepted by this call include
2982 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2983 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
2984 * to this call if the caller is using the UDP model.
2985 */
2986static int sctp_setsockopt_default_send_param(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002987 char __user *optval,
2988 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 struct sctp_sock *sp = sctp_sk(sk);
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002991 struct sctp_association *asoc;
2992 struct sctp_sndrcvinfo info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002994 if (optlen != sizeof(info))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 return -EINVAL;
2996 if (copy_from_user(&info, optval, optlen))
2997 return -EFAULT;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002998 if (info.sinfo_flags &
2999 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
3000 SCTP_ABORT | SCTP_EOF))
3001 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002
3003 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
Xin Long707e45b2019-01-28 15:08:35 +08003004 if (!asoc && info.sinfo_assoc_id > SCTP_ALL_ASSOC &&
3005 sctp_style(sk, UDP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 return -EINVAL;
Xin Long707e45b2019-01-28 15:08:35 +08003007
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 if (asoc) {
3009 asoc->default_stream = info.sinfo_stream;
3010 asoc->default_flags = info.sinfo_flags;
3011 asoc->default_ppid = info.sinfo_ppid;
3012 asoc->default_context = info.sinfo_context;
3013 asoc->default_timetolive = info.sinfo_timetolive;
Xin Long707e45b2019-01-28 15:08:35 +08003014
3015 return 0;
3016 }
3017
Marcelo Ricardo Leitner1354e722019-03-18 20:05:59 +08003018 if (sctp_style(sk, TCP))
3019 info.sinfo_assoc_id = SCTP_FUTURE_ASSOC;
3020
Xin Long707e45b2019-01-28 15:08:35 +08003021 if (info.sinfo_assoc_id == SCTP_FUTURE_ASSOC ||
3022 info.sinfo_assoc_id == SCTP_ALL_ASSOC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 sp->default_stream = info.sinfo_stream;
3024 sp->default_flags = info.sinfo_flags;
3025 sp->default_ppid = info.sinfo_ppid;
3026 sp->default_context = info.sinfo_context;
3027 sp->default_timetolive = info.sinfo_timetolive;
3028 }
3029
Xin Long707e45b2019-01-28 15:08:35 +08003030 if (info.sinfo_assoc_id == SCTP_CURRENT_ASSOC ||
3031 info.sinfo_assoc_id == SCTP_ALL_ASSOC) {
3032 list_for_each_entry(asoc, &sp->ep->asocs, asocs) {
3033 asoc->default_stream = info.sinfo_stream;
3034 asoc->default_flags = info.sinfo_flags;
3035 asoc->default_ppid = info.sinfo_ppid;
3036 asoc->default_context = info.sinfo_context;
3037 asoc->default_timetolive = info.sinfo_timetolive;
3038 }
3039 }
3040
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 return 0;
3042}
3043
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02003044/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
3045 * (SCTP_DEFAULT_SNDINFO)
3046 */
3047static int sctp_setsockopt_default_sndinfo(struct sock *sk,
3048 char __user *optval,
3049 unsigned int optlen)
3050{
3051 struct sctp_sock *sp = sctp_sk(sk);
3052 struct sctp_association *asoc;
3053 struct sctp_sndinfo info;
3054
3055 if (optlen != sizeof(info))
3056 return -EINVAL;
3057 if (copy_from_user(&info, optval, optlen))
3058 return -EFAULT;
3059 if (info.snd_flags &
3060 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
3061 SCTP_ABORT | SCTP_EOF))
3062 return -EINVAL;
3063
3064 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
Xin Long92fc3bd2019-01-28 15:08:36 +08003065 if (!asoc && info.snd_assoc_id > SCTP_ALL_ASSOC &&
3066 sctp_style(sk, UDP))
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02003067 return -EINVAL;
Xin Long92fc3bd2019-01-28 15:08:36 +08003068
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02003069 if (asoc) {
3070 asoc->default_stream = info.snd_sid;
3071 asoc->default_flags = info.snd_flags;
3072 asoc->default_ppid = info.snd_ppid;
3073 asoc->default_context = info.snd_context;
Xin Long92fc3bd2019-01-28 15:08:36 +08003074
3075 return 0;
3076 }
3077
Xin Longa842e652019-03-18 20:06:01 +08003078 if (sctp_style(sk, TCP))
3079 info.snd_assoc_id = SCTP_FUTURE_ASSOC;
3080
Xin Long92fc3bd2019-01-28 15:08:36 +08003081 if (info.snd_assoc_id == SCTP_FUTURE_ASSOC ||
3082 info.snd_assoc_id == SCTP_ALL_ASSOC) {
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02003083 sp->default_stream = info.snd_sid;
3084 sp->default_flags = info.snd_flags;
3085 sp->default_ppid = info.snd_ppid;
3086 sp->default_context = info.snd_context;
3087 }
3088
Xin Long92fc3bd2019-01-28 15:08:36 +08003089 if (info.snd_assoc_id == SCTP_CURRENT_ASSOC ||
3090 info.snd_assoc_id == SCTP_ALL_ASSOC) {
3091 list_for_each_entry(asoc, &sp->ep->asocs, asocs) {
3092 asoc->default_stream = info.snd_sid;
3093 asoc->default_flags = info.snd_flags;
3094 asoc->default_ppid = info.snd_ppid;
3095 asoc->default_context = info.snd_context;
3096 }
3097 }
3098
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02003099 return 0;
3100}
3101
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
3103 *
3104 * Requests that the local SCTP stack use the enclosed peer address as
3105 * the association primary. The enclosed address must be one of the
3106 * association peer's addresses.
3107 */
3108static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003109 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110{
3111 struct sctp_prim prim;
3112 struct sctp_transport *trans;
Richard Haines2277c7c2018-02-13 20:56:24 +00003113 struct sctp_af *af;
3114 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115
3116 if (optlen != sizeof(struct sctp_prim))
3117 return -EINVAL;
3118
3119 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
3120 return -EFAULT;
3121
Richard Haines2277c7c2018-02-13 20:56:24 +00003122 /* Allow security module to validate address but need address len. */
3123 af = sctp_get_af_specific(prim.ssp_addr.ss_family);
3124 if (!af)
3125 return -EINVAL;
3126
3127 err = security_sctp_bind_connect(sk, SCTP_PRIMARY_ADDR,
3128 (struct sockaddr *)&prim.ssp_addr,
3129 af->sockaddr_len);
3130 if (err)
3131 return err;
3132
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
3134 if (!trans)
3135 return -EINVAL;
3136
3137 sctp_assoc_set_primary(trans->asoc, trans);
3138
3139 return 0;
3140}
3141
3142/*
3143 * 7.1.5 SCTP_NODELAY
3144 *
3145 * Turn on/off any Nagle-like algorithm. This means that packets are
3146 * generally sent as soon as possible and no unnecessary delays are
3147 * introduced, at the cost of more packets in the network. Expects an
3148 * integer boolean flag.
3149 */
3150static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003151 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152{
3153 int val;
3154
3155 if (optlen < sizeof(int))
3156 return -EINVAL;
3157 if (get_user(val, (int __user *)optval))
3158 return -EFAULT;
3159
3160 sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
3161 return 0;
3162}
3163
3164/*
3165 *
3166 * 7.1.1 SCTP_RTOINFO
3167 *
3168 * The protocol parameters used to initialize and bound retransmission
3169 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
3170 * and modify these parameters.
3171 * All parameters are time values, in milliseconds. A value of 0, when
3172 * modifying the parameters, indicates that the current value should not
3173 * be changed.
3174 *
3175 */
David S. Millerb7058842009-09-30 16:12:20 -07003176static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, unsigned int optlen)
3177{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 struct sctp_rtoinfo rtoinfo;
3179 struct sctp_association *asoc;
wangweidong85f935d2013-12-11 09:50:38 +08003180 unsigned long rto_min, rto_max;
3181 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182
3183 if (optlen != sizeof (struct sctp_rtoinfo))
3184 return -EINVAL;
3185
3186 if (copy_from_user(&rtoinfo, optval, optlen))
3187 return -EFAULT;
3188
3189 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
3190
3191 /* Set the values to the specific association */
Xin Long7adb5ed2019-01-28 15:08:25 +08003192 if (!asoc && rtoinfo.srto_assoc_id != SCTP_FUTURE_ASSOC &&
3193 sctp_style(sk, UDP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 return -EINVAL;
3195
wangweidong85f935d2013-12-11 09:50:38 +08003196 rto_max = rtoinfo.srto_max;
3197 rto_min = rtoinfo.srto_min;
3198
3199 if (rto_max)
3200 rto_max = asoc ? msecs_to_jiffies(rto_max) : rto_max;
3201 else
3202 rto_max = asoc ? asoc->rto_max : sp->rtoinfo.srto_max;
3203
3204 if (rto_min)
3205 rto_min = asoc ? msecs_to_jiffies(rto_min) : rto_min;
3206 else
3207 rto_min = asoc ? asoc->rto_min : sp->rtoinfo.srto_min;
3208
3209 if (rto_min > rto_max)
3210 return -EINVAL;
3211
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 if (asoc) {
3213 if (rtoinfo.srto_initial != 0)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003214 asoc->rto_initial =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 msecs_to_jiffies(rtoinfo.srto_initial);
wangweidong85f935d2013-12-11 09:50:38 +08003216 asoc->rto_max = rto_max;
3217 asoc->rto_min = rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 } else {
3219 /* If there is no association or the association-id = 0
3220 * set the values to the endpoint.
3221 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 if (rtoinfo.srto_initial != 0)
3223 sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
wangweidong85f935d2013-12-11 09:50:38 +08003224 sp->rtoinfo.srto_max = rto_max;
3225 sp->rtoinfo.srto_min = rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 }
3227
3228 return 0;
3229}
3230
3231/*
3232 *
3233 * 7.1.2 SCTP_ASSOCINFO
3234 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02003235 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 * of the association.
3237 * Returns an error if the new association retransmission value is
3238 * greater than the sum of the retransmission value of the peer.
3239 * See [SCTP] for more information.
3240 *
3241 */
David S. Millerb7058842009-09-30 16:12:20 -07003242static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243{
3244
3245 struct sctp_assocparams assocparams;
3246 struct sctp_association *asoc;
3247
3248 if (optlen != sizeof(struct sctp_assocparams))
3249 return -EINVAL;
3250 if (copy_from_user(&assocparams, optval, optlen))
3251 return -EFAULT;
3252
3253 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
3254
Xin Long88893942019-01-28 15:08:26 +08003255 if (!asoc && assocparams.sasoc_assoc_id != SCTP_FUTURE_ASSOC &&
3256 sctp_style(sk, UDP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 return -EINVAL;
3258
3259 /* Set the values to the specific association */
3260 if (asoc) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003261 if (assocparams.sasoc_asocmaxrxt != 0) {
3262 __u32 path_sum = 0;
3263 int paths = 0;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003264 struct sctp_transport *peer_addr;
3265
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07003266 list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
3267 transports) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003268 path_sum += peer_addr->pathmaxrxt;
3269 paths++;
3270 }
3271
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003272 /* Only validate asocmaxrxt if we have more than
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003273 * one path/transport. We do this because path
3274 * retransmissions are only counted when we have more
3275 * then one path.
3276 */
3277 if (paths > 1 &&
3278 assocparams.sasoc_asocmaxrxt > path_sum)
3279 return -EINVAL;
3280
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003282 }
3283
Daniel Borkmann52db8822013-06-25 18:17:27 +02003284 if (assocparams.sasoc_cookie_life != 0)
3285 asoc->cookie_life = ms_to_ktime(assocparams.sasoc_cookie_life);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 } else {
3287 /* Set the values to the endpoint */
3288 struct sctp_sock *sp = sctp_sk(sk);
3289
3290 if (assocparams.sasoc_asocmaxrxt != 0)
3291 sp->assocparams.sasoc_asocmaxrxt =
3292 assocparams.sasoc_asocmaxrxt;
3293 if (assocparams.sasoc_cookie_life != 0)
3294 sp->assocparams.sasoc_cookie_life =
3295 assocparams.sasoc_cookie_life;
3296 }
3297 return 0;
3298}
3299
3300/*
3301 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
3302 *
3303 * This socket option is a boolean flag which turns on or off mapped V4
3304 * addresses. If this option is turned on and the socket is type
3305 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
3306 * If this option is turned off, then no mapping will be done of V4
3307 * addresses and a user will receive both PF_INET6 and PF_INET type
3308 * addresses on the socket.
3309 */
David S. Millerb7058842009-09-30 16:12:20 -07003310static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311{
3312 int val;
3313 struct sctp_sock *sp = sctp_sk(sk);
3314
3315 if (optlen < sizeof(int))
3316 return -EINVAL;
3317 if (get_user(val, (int __user *)optval))
3318 return -EFAULT;
3319 if (val)
3320 sp->v4mapped = 1;
3321 else
3322 sp->v4mapped = 0;
3323
3324 return 0;
3325}
3326
3327/*
Wei Yongjune89c2092008-12-25 16:54:58 -08003328 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
3329 * This option will get or set the maximum size to put in any outgoing
3330 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 * fragmented by SCTP into the specified size. Note that the underlying
3332 * SCTP implementation may fragment into smaller sized chunks when the
3333 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08003334 * the user. The default value for this option is '0' which indicates
3335 * the user is NOT limiting fragmentation and only the PMTU will effect
3336 * SCTP's choice of DATA chunk size. Note also that values set larger
3337 * than the maximum size of an IP datagram will effectively let SCTP
3338 * control fragmentation (i.e. the same as setting this option to 0).
3339 *
3340 * The following structure is used to access and modify this parameter:
3341 *
3342 * struct sctp_assoc_value {
3343 * sctp_assoc_t assoc_id;
3344 * uint32_t assoc_value;
3345 * };
3346 *
3347 * assoc_id: This parameter is ignored for one-to-one style sockets.
3348 * For one-to-many style sockets this parameter indicates which
3349 * association the user is performing an action upon. Note that if
3350 * this field's value is zero then the endpoints default value is
3351 * changed (effecting future associations only).
3352 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 */
David S. Millerb7058842009-09-30 16:12:20 -07003354static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355{
Xin Longecca8f82017-11-17 14:11:11 +08003356 struct sctp_sock *sp = sctp_sk(sk);
Wei Yongjune89c2092008-12-25 16:54:58 -08003357 struct sctp_assoc_value params;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 int val;
3360
Wei Yongjune89c2092008-12-25 16:54:58 -08003361 if (optlen == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05003362 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05003363 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05003364 "Use of int in maxseg socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05003365 "Use struct sctp_assoc_value instead\n",
3366 current->comm, task_pid_nr(current));
Wei Yongjune89c2092008-12-25 16:54:58 -08003367 if (copy_from_user(&val, optval, optlen))
3368 return -EFAULT;
Xin Long6fd769b2019-01-28 15:08:27 +08003369 params.assoc_id = SCTP_FUTURE_ASSOC;
Wei Yongjune89c2092008-12-25 16:54:58 -08003370 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3371 if (copy_from_user(&params, optval, optlen))
3372 return -EFAULT;
3373 val = params.assoc_value;
Xin Longecca8f82017-11-17 14:11:11 +08003374 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 return -EINVAL;
Xin Longecca8f82017-11-17 14:11:11 +08003376 }
Wei Yongjune89c2092008-12-25 16:54:58 -08003377
Marcelo Ricardo Leitner439ef032018-04-26 16:59:01 -03003378 asoc = sctp_id2assoc(sk, params.assoc_id);
Xin Long6fd769b2019-01-28 15:08:27 +08003379 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
3380 sctp_style(sk, UDP))
3381 return -EINVAL;
Marcelo Ricardo Leitner439ef032018-04-26 16:59:01 -03003382
Xin Longecca8f82017-11-17 14:11:11 +08003383 if (val) {
3384 int min_len, max_len;
Marcelo Ricardo Leitner439ef032018-04-26 16:59:01 -03003385 __u16 datasize = asoc ? sctp_datachk_len(&asoc->stream) :
3386 sizeof(struct sctp_data_chunk);
Xin Longecca8f82017-11-17 14:11:11 +08003387
Jakub Audykowiczafd0a802018-12-04 20:27:41 +01003388 min_len = sctp_min_frag_point(sp, datasize);
Marcelo Ricardo Leitner439ef032018-04-26 16:59:01 -03003389 max_len = SCTP_MAX_CHUNK_LEN - datasize;
Xin Longecca8f82017-11-17 14:11:11 +08003390
3391 if (val < min_len || val > max_len)
3392 return -EINVAL;
3393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394
Wei Yongjune89c2092008-12-25 16:54:58 -08003395 if (asoc) {
Vlad Yasevichf68b2e02009-09-04 18:21:00 -04003396 asoc->user_frag = val;
Marcelo Ricardo Leitner2f5e3c92018-04-26 16:58:55 -03003397 sctp_assoc_update_frag_point(asoc);
Wei Yongjune89c2092008-12-25 16:54:58 -08003398 } else {
3399 sp->user_frag = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 }
3401
3402 return 0;
3403}
3404
3405
3406/*
3407 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3408 *
3409 * Requests that the peer mark the enclosed address as the association
3410 * primary. The enclosed address must be one of the association's
3411 * locally bound addresses. The following structure is used to make a
3412 * set primary request:
3413 */
3414static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003415 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003417 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 struct sctp_association *asoc = NULL;
3420 struct sctp_setpeerprim prim;
3421 struct sctp_chunk *chunk;
Wei Yongjun40a01032010-12-07 17:11:09 +00003422 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 int err;
3424
3425 sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003427 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 return -EPERM;
3429
3430 if (optlen != sizeof(struct sctp_setpeerprim))
3431 return -EINVAL;
3432
3433 if (copy_from_user(&prim, optval, optlen))
3434 return -EFAULT;
3435
3436 asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003437 if (!asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 return -EINVAL;
3439
3440 if (!asoc->peer.asconf_capable)
3441 return -EPERM;
3442
3443 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
3444 return -EPERM;
3445
3446 if (!sctp_state(asoc, ESTABLISHED))
3447 return -ENOTCONN;
3448
Wei Yongjun40a01032010-12-07 17:11:09 +00003449 af = sctp_get_af_specific(prim.sspp_addr.ss_family);
3450 if (!af)
3451 return -EINVAL;
3452
3453 if (!af->addr_valid((union sctp_addr *)&prim.sspp_addr, sp, NULL))
3454 return -EADDRNOTAVAIL;
3455
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
3457 return -EADDRNOTAVAIL;
3458
Richard Haines2277c7c2018-02-13 20:56:24 +00003459 /* Allow security module to validate address. */
3460 err = security_sctp_bind_connect(sk, SCTP_SET_PEER_PRIMARY_ADDR,
3461 (struct sockaddr *)&prim.sspp_addr,
3462 af->sockaddr_len);
3463 if (err)
3464 return err;
3465
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 /* Create an ASCONF chunk with SET_PRIMARY parameter */
3467 chunk = sctp_make_asconf_set_prim(asoc,
3468 (union sctp_addr *)&prim.sspp_addr);
3469 if (!chunk)
3470 return -ENOMEM;
3471
3472 err = sctp_send_asconf(asoc, chunk);
3473
Daniel Borkmannbb333812013-06-28 19:49:40 +02003474 pr_debug("%s: we set peer primary addr primitively\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475
3476 return err;
3477}
3478
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003479static int sctp_setsockopt_adaptation_layer(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003480 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003482 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003484 if (optlen != sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485 return -EINVAL;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003486 if (copy_from_user(&adaptation, optval, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 return -EFAULT;
3488
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003489 sctp_sk(sk)->adaptation_ind = adaptation.ssb_adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490
3491 return 0;
3492}
3493
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003494/*
3495 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
3496 *
3497 * The context field in the sctp_sndrcvinfo structure is normally only
3498 * used when a failed message is retrieved holding the value that was
3499 * sent down on the actual send call. This option allows the setting of
3500 * a default context on an association basis that will be received on
3501 * reading messages from the peer. This is especially helpful in the
3502 * one-2-many model for an application to keep some reference to an
3503 * internal state machine that is processing messages on the
3504 * association. Note that the setting of this value only effects
3505 * received messages from the peer and does not effect the value that is
3506 * saved with outbound messages.
3507 */
3508static int sctp_setsockopt_context(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003509 unsigned int optlen)
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003510{
Xin Long49b037a2019-01-28 15:08:37 +08003511 struct sctp_sock *sp = sctp_sk(sk);
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003512 struct sctp_assoc_value params;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003513 struct sctp_association *asoc;
3514
3515 if (optlen != sizeof(struct sctp_assoc_value))
3516 return -EINVAL;
3517 if (copy_from_user(&params, optval, optlen))
3518 return -EFAULT;
3519
Xin Long49b037a2019-01-28 15:08:37 +08003520 asoc = sctp_id2assoc(sk, params.assoc_id);
3521 if (!asoc && params.assoc_id > SCTP_ALL_ASSOC &&
3522 sctp_style(sk, UDP))
3523 return -EINVAL;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003524
Xin Long49b037a2019-01-28 15:08:37 +08003525 if (asoc) {
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003526 asoc->default_rcv_context = params.assoc_value;
Xin Long49b037a2019-01-28 15:08:37 +08003527
3528 return 0;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003529 }
3530
Xin Longcface2c2019-03-18 20:06:02 +08003531 if (sctp_style(sk, TCP))
3532 params.assoc_id = SCTP_FUTURE_ASSOC;
3533
Xin Long49b037a2019-01-28 15:08:37 +08003534 if (params.assoc_id == SCTP_FUTURE_ASSOC ||
3535 params.assoc_id == SCTP_ALL_ASSOC)
3536 sp->default_rcv_context = params.assoc_value;
3537
3538 if (params.assoc_id == SCTP_CURRENT_ASSOC ||
3539 params.assoc_id == SCTP_ALL_ASSOC)
3540 list_for_each_entry(asoc, &sp->ep->asocs, asocs)
3541 asoc->default_rcv_context = params.assoc_value;
3542
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003543 return 0;
3544}
3545
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003546/*
3547 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
3548 *
3549 * This options will at a minimum specify if the implementation is doing
3550 * fragmented interleave. Fragmented interleave, for a one to many
3551 * socket, is when subsequent calls to receive a message may return
3552 * parts of messages from different associations. Some implementations
3553 * may allow you to turn this value on or off. If so, when turned off,
3554 * no fragment interleave will occur (which will cause a head of line
3555 * blocking amongst multiple associations sharing the same one to many
3556 * socket). When this option is turned on, then each receive call may
3557 * come from a different association (thus the user must receive data
3558 * with the extended calls (e.g. sctp_recvmsg) to keep track of which
3559 * association each receive belongs to.
3560 *
3561 * This option takes a boolean value. A non-zero value indicates that
3562 * fragmented interleave is on. A value of zero indicates that
3563 * fragmented interleave is off.
3564 *
3565 * Note that it is important that an implementation that allows this
3566 * option to be turned on, have it off by default. Otherwise an unaware
3567 * application using the one to many model may become confused and act
3568 * incorrectly.
3569 */
3570static int sctp_setsockopt_fragment_interleave(struct sock *sk,
3571 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003572 unsigned int optlen)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003573{
3574 int val;
3575
3576 if (optlen != sizeof(int))
3577 return -EINVAL;
3578 if (get_user(val, (int __user *)optval))
3579 return -EFAULT;
3580
Xin Long772a5862017-12-08 21:03:58 +08003581 sctp_sk(sk)->frag_interleave = !!val;
3582
3583 if (!sctp_sk(sk)->frag_interleave)
3584 sctp_sk(sk)->strm_interleave = 0;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003585
3586 return 0;
3587}
3588
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003589/*
Wei Yongjun8510b932008-12-25 16:59:03 -08003590 * 8.1.21. Set or Get the SCTP Partial Delivery Point
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003591 * (SCTP_PARTIAL_DELIVERY_POINT)
Wei Yongjun8510b932008-12-25 16:59:03 -08003592 *
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003593 * This option will set or get the SCTP partial delivery point. This
3594 * point is the size of a message where the partial delivery API will be
3595 * invoked to help free up rwnd space for the peer. Setting this to a
Wei Yongjun8510b932008-12-25 16:59:03 -08003596 * lower value will cause partial deliveries to happen more often. The
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003597 * calls argument is an integer that sets or gets the partial delivery
Wei Yongjun8510b932008-12-25 16:59:03 -08003598 * point. Note also that the call will fail if the user attempts to set
3599 * this value larger than the socket receive buffer size.
3600 *
3601 * Note that any single message having a length smaller than or equal to
3602 * the SCTP partial delivery point will be delivered in one single read
3603 * call as long as the user provided buffer is large enough to hold the
3604 * message.
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003605 */
3606static int sctp_setsockopt_partial_delivery_point(struct sock *sk,
3607 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003608 unsigned int optlen)
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003609{
3610 u32 val;
3611
3612 if (optlen != sizeof(u32))
3613 return -EINVAL;
3614 if (get_user(val, (int __user *)optval))
3615 return -EFAULT;
3616
Wei Yongjun8510b932008-12-25 16:59:03 -08003617 /* Note: We double the receive buffer from what the user sets
3618 * it to be, also initial rwnd is based on rcvbuf/2.
3619 */
3620 if (val > (sk->sk_rcvbuf >> 1))
3621 return -EINVAL;
3622
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003623 sctp_sk(sk)->pd_point = val;
3624
3625 return 0; /* is this the right error code? */
3626}
3627
Vlad Yasevich70331572007-03-23 11:34:36 -07003628/*
3629 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
3630 *
3631 * This option will allow a user to change the maximum burst of packets
3632 * that can be emitted by this association. Note that the default value
3633 * is 4, and some implementations may restrict this setting so that it
3634 * can only be lowered.
3635 *
3636 * NOTE: This text doesn't seem right. Do this on a socket basis with
3637 * future associations inheriting the socket value.
3638 */
3639static int sctp_setsockopt_maxburst(struct sock *sk,
3640 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003641 unsigned int optlen)
Vlad Yasevich70331572007-03-23 11:34:36 -07003642{
Xin Longe0651a02019-01-28 15:08:38 +08003643 struct sctp_sock *sp = sctp_sk(sk);
Neil Horman219b99a2008-03-05 13:44:46 -08003644 struct sctp_assoc_value params;
Neil Horman219b99a2008-03-05 13:44:46 -08003645 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07003646
Neil Horman219b99a2008-03-05 13:44:46 -08003647 if (optlen == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05003648 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05003649 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05003650 "Use of int in max_burst socket option deprecated.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05003651 "Use struct sctp_assoc_value instead\n",
3652 current->comm, task_pid_nr(current));
Xin Longe0651a02019-01-28 15:08:38 +08003653 if (copy_from_user(&params.assoc_value, optval, optlen))
Neil Horman219b99a2008-03-05 13:44:46 -08003654 return -EFAULT;
Xin Longe0651a02019-01-28 15:08:38 +08003655 params.assoc_id = SCTP_FUTURE_ASSOC;
Neil Horman219b99a2008-03-05 13:44:46 -08003656 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3657 if (copy_from_user(&params, optval, optlen))
3658 return -EFAULT;
Neil Horman219b99a2008-03-05 13:44:46 -08003659 } else
3660 return -EINVAL;
3661
Xin Longe0651a02019-01-28 15:08:38 +08003662 asoc = sctp_id2assoc(sk, params.assoc_id);
3663 if (!asoc && params.assoc_id > SCTP_ALL_ASSOC &&
3664 sctp_style(sk, UDP))
3665 return -EINVAL;
Neil Horman219b99a2008-03-05 13:44:46 -08003666
Xin Longe0651a02019-01-28 15:08:38 +08003667 if (asoc) {
3668 asoc->max_burst = params.assoc_value;
3669
3670 return 0;
3671 }
3672
Xin Long746bc212019-03-18 20:06:03 +08003673 if (sctp_style(sk, TCP))
3674 params.assoc_id = SCTP_FUTURE_ASSOC;
3675
Xin Longe0651a02019-01-28 15:08:38 +08003676 if (params.assoc_id == SCTP_FUTURE_ASSOC ||
3677 params.assoc_id == SCTP_ALL_ASSOC)
3678 sp->max_burst = params.assoc_value;
3679
3680 if (params.assoc_id == SCTP_CURRENT_ASSOC ||
3681 params.assoc_id == SCTP_ALL_ASSOC)
3682 list_for_each_entry(asoc, &sp->ep->asocs, asocs)
3683 asoc->max_burst = params.assoc_value;
Vlad Yasevich70331572007-03-23 11:34:36 -07003684
3685 return 0;
3686}
3687
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003688/*
3689 * 7.1.18. Add a chunk that must be authenticated (SCTP_AUTH_CHUNK)
3690 *
3691 * This set option adds a chunk type that the user is requesting to be
3692 * received only in an authenticated way. Changes to the list of chunks
3693 * will only effect future associations on the socket.
3694 */
3695static int sctp_setsockopt_auth_chunk(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003696 char __user *optval,
3697 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003698{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003699 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003700 struct sctp_authchunk val;
3701
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003702 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003703 return -EACCES;
3704
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003705 if (optlen != sizeof(struct sctp_authchunk))
3706 return -EINVAL;
3707 if (copy_from_user(&val, optval, optlen))
3708 return -EFAULT;
3709
3710 switch (val.sauth_chunk) {
Joe Perches7fd71b12011-07-01 09:43:11 +00003711 case SCTP_CID_INIT:
3712 case SCTP_CID_INIT_ACK:
3713 case SCTP_CID_SHUTDOWN_COMPLETE:
3714 case SCTP_CID_AUTH:
3715 return -EINVAL;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003716 }
3717
3718 /* add this chunk id to the endpoint */
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003719 return sctp_auth_ep_add_chunkid(ep, val.sauth_chunk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003720}
3721
3722/*
3723 * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
3724 *
3725 * This option gets or sets the list of HMAC algorithms that the local
3726 * endpoint requires the peer to use.
3727 */
3728static int sctp_setsockopt_hmac_ident(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003729 char __user *optval,
3730 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003731{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003732 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003733 struct sctp_hmacalgo *hmacs;
Vlad Yasevichd9724052008-08-27 16:09:49 -07003734 u32 idents;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003735 int err;
3736
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003737 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003738 return -EACCES;
3739
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003740 if (optlen < sizeof(struct sctp_hmacalgo))
3741 return -EINVAL;
Marcelo Ricardo Leitner5960cef2018-01-08 19:02:28 -02003742 optlen = min_t(unsigned int, optlen, sizeof(struct sctp_hmacalgo) +
3743 SCTP_AUTH_NUM_HMACS * sizeof(u16));
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003744
wangweidongcb3f8372013-12-23 12:16:50 +08003745 hmacs = memdup_user(optval, optlen);
Shan Wei934253a2011-04-18 19:13:18 +00003746 if (IS_ERR(hmacs))
3747 return PTR_ERR(hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003748
Vlad Yasevichd9724052008-08-27 16:09:49 -07003749 idents = hmacs->shmac_num_idents;
3750 if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS ||
3751 (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo))) {
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003752 err = -EINVAL;
3753 goto out;
3754 }
3755
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003756 err = sctp_auth_ep_set_hmacs(ep, hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003757out:
3758 kfree(hmacs);
3759 return err;
3760}
3761
3762/*
3763 * 7.1.20. Set a shared key (SCTP_AUTH_KEY)
3764 *
3765 * This option will set a shared secret key which is used to build an
3766 * association shared key.
3767 */
3768static int sctp_setsockopt_auth_key(struct sock *sk,
3769 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003770 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003771{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003772 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003773 struct sctp_authkey *authkey;
3774 struct sctp_association *asoc;
Xin Long7fb3be12019-01-28 15:08:39 +08003775 int ret = -EINVAL;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003776
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003777 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003778 return -EACCES;
3779
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003780 if (optlen <= sizeof(struct sctp_authkey))
3781 return -EINVAL;
Marcelo Ricardo Leitner5960cef2018-01-08 19:02:28 -02003782 /* authkey->sca_keylength is u16, so optlen can't be bigger than
3783 * this.
3784 */
Xin Long7fb3be12019-01-28 15:08:39 +08003785 optlen = min_t(unsigned int, optlen, USHRT_MAX + sizeof(*authkey));
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003786
wangweidongcb3f8372013-12-23 12:16:50 +08003787 authkey = memdup_user(optval, optlen);
Shan Wei934253a2011-04-18 19:13:18 +00003788 if (IS_ERR(authkey))
3789 return PTR_ERR(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003790
Xin Long7fb3be12019-01-28 15:08:39 +08003791 if (authkey->sca_keylength > optlen - sizeof(*authkey))
Vlad Yasevich30c22352008-08-25 15:16:19 -07003792 goto out;
Vlad Yasevich30c22352008-08-25 15:16:19 -07003793
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003794 asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
Xin Long7fb3be12019-01-28 15:08:39 +08003795 if (!asoc && authkey->sca_assoc_id > SCTP_ALL_ASSOC &&
3796 sctp_style(sk, UDP))
3797 goto out;
3798
3799 if (asoc) {
3800 ret = sctp_auth_set_key(ep, asoc, authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003801 goto out;
3802 }
3803
Xin Long0685d6b2019-03-18 20:06:04 +08003804 if (sctp_style(sk, TCP))
3805 authkey->sca_assoc_id = SCTP_FUTURE_ASSOC;
3806
Xin Long7fb3be12019-01-28 15:08:39 +08003807 if (authkey->sca_assoc_id == SCTP_FUTURE_ASSOC ||
3808 authkey->sca_assoc_id == SCTP_ALL_ASSOC) {
3809 ret = sctp_auth_set_key(ep, asoc, authkey);
3810 if (ret)
3811 goto out;
3812 }
3813
3814 ret = 0;
3815
3816 if (authkey->sca_assoc_id == SCTP_CURRENT_ASSOC ||
3817 authkey->sca_assoc_id == SCTP_ALL_ASSOC) {
3818 list_for_each_entry(asoc, &ep->asocs, asocs) {
3819 int res = sctp_auth_set_key(ep, asoc, authkey);
3820
3821 if (res && !ret)
3822 ret = res;
3823 }
3824 }
3825
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003826out:
Daniel Borkmann6ba542a2013-02-08 03:04:34 +00003827 kzfree(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003828 return ret;
3829}
3830
3831/*
3832 * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
3833 *
3834 * This option will get or set the active shared key to be used to build
3835 * the association shared key.
3836 */
3837static int sctp_setsockopt_active_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003838 char __user *optval,
3839 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003840{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003841 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003842 struct sctp_association *asoc;
Xin Longbf9fb6a2019-01-28 15:08:40 +08003843 struct sctp_authkeyid val;
3844 int ret = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003845
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003846 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003847 return -EACCES;
3848
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003849 if (optlen != sizeof(struct sctp_authkeyid))
3850 return -EINVAL;
3851 if (copy_from_user(&val, optval, optlen))
3852 return -EFAULT;
3853
3854 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
Xin Longbf9fb6a2019-01-28 15:08:40 +08003855 if (!asoc && val.scact_assoc_id > SCTP_ALL_ASSOC &&
3856 sctp_style(sk, UDP))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003857 return -EINVAL;
3858
Xin Longbf9fb6a2019-01-28 15:08:40 +08003859 if (asoc)
3860 return sctp_auth_set_active_key(ep, asoc, val.scact_keynumber);
3861
Xin Long06b39e82019-03-18 20:06:05 +08003862 if (sctp_style(sk, TCP))
3863 val.scact_assoc_id = SCTP_FUTURE_ASSOC;
3864
Xin Longbf9fb6a2019-01-28 15:08:40 +08003865 if (val.scact_assoc_id == SCTP_FUTURE_ASSOC ||
3866 val.scact_assoc_id == SCTP_ALL_ASSOC) {
3867 ret = sctp_auth_set_active_key(ep, asoc, val.scact_keynumber);
3868 if (ret)
3869 return ret;
3870 }
3871
3872 if (val.scact_assoc_id == SCTP_CURRENT_ASSOC ||
3873 val.scact_assoc_id == SCTP_ALL_ASSOC) {
3874 list_for_each_entry(asoc, &ep->asocs, asocs) {
3875 int res = sctp_auth_set_active_key(ep, asoc,
3876 val.scact_keynumber);
3877
3878 if (res && !ret)
3879 ret = res;
3880 }
3881 }
3882
3883 return ret;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003884}
3885
3886/*
3887 * 7.1.22. Delete a shared key (SCTP_AUTH_DELETE_KEY)
3888 *
3889 * This set option will delete a shared secret key from use.
3890 */
3891static int sctp_setsockopt_del_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003892 char __user *optval,
3893 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003894{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003895 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003896 struct sctp_association *asoc;
Xin Long3adcc302019-01-28 15:08:41 +08003897 struct sctp_authkeyid val;
3898 int ret = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003899
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003900 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003901 return -EACCES;
3902
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003903 if (optlen != sizeof(struct sctp_authkeyid))
3904 return -EINVAL;
3905 if (copy_from_user(&val, optval, optlen))
3906 return -EFAULT;
3907
3908 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
Xin Long3adcc302019-01-28 15:08:41 +08003909 if (!asoc && val.scact_assoc_id > SCTP_ALL_ASSOC &&
3910 sctp_style(sk, UDP))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003911 return -EINVAL;
3912
Xin Long3adcc302019-01-28 15:08:41 +08003913 if (asoc)
3914 return sctp_auth_del_key_id(ep, asoc, val.scact_keynumber);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003915
Xin Long220675e2019-03-18 20:06:06 +08003916 if (sctp_style(sk, TCP))
3917 val.scact_assoc_id = SCTP_FUTURE_ASSOC;
3918
Xin Long3adcc302019-01-28 15:08:41 +08003919 if (val.scact_assoc_id == SCTP_FUTURE_ASSOC ||
3920 val.scact_assoc_id == SCTP_ALL_ASSOC) {
3921 ret = sctp_auth_del_key_id(ep, asoc, val.scact_keynumber);
3922 if (ret)
3923 return ret;
3924 }
3925
3926 if (val.scact_assoc_id == SCTP_CURRENT_ASSOC ||
3927 val.scact_assoc_id == SCTP_ALL_ASSOC) {
3928 list_for_each_entry(asoc, &ep->asocs, asocs) {
3929 int res = sctp_auth_del_key_id(ep, asoc,
3930 val.scact_keynumber);
3931
3932 if (res && !ret)
3933 ret = res;
3934 }
3935 }
3936
3937 return ret;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003938}
3939
Michio Honda7dc04d72011-04-26 20:16:31 +09003940/*
Xin Long601590e2018-03-14 19:05:32 +08003941 * 8.3.4 Deactivate a Shared Key (SCTP_AUTH_DEACTIVATE_KEY)
3942 *
3943 * This set option will deactivate a shared secret key.
3944 */
3945static int sctp_setsockopt_deactivate_key(struct sock *sk, char __user *optval,
3946 unsigned int optlen)
3947{
3948 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Xin Long601590e2018-03-14 19:05:32 +08003949 struct sctp_association *asoc;
Xin Long2af66ff2019-01-28 15:08:42 +08003950 struct sctp_authkeyid val;
3951 int ret = 0;
Xin Long601590e2018-03-14 19:05:32 +08003952
3953 if (!ep->auth_enable)
3954 return -EACCES;
3955
3956 if (optlen != sizeof(struct sctp_authkeyid))
3957 return -EINVAL;
3958 if (copy_from_user(&val, optval, optlen))
3959 return -EFAULT;
3960
3961 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
Xin Long2af66ff2019-01-28 15:08:42 +08003962 if (!asoc && val.scact_assoc_id > SCTP_ALL_ASSOC &&
3963 sctp_style(sk, UDP))
Xin Long601590e2018-03-14 19:05:32 +08003964 return -EINVAL;
3965
Xin Long2af66ff2019-01-28 15:08:42 +08003966 if (asoc)
3967 return sctp_auth_deact_key_id(ep, asoc, val.scact_keynumber);
3968
Xin Long200f3a3b2019-03-18 20:06:07 +08003969 if (sctp_style(sk, TCP))
3970 val.scact_assoc_id = SCTP_FUTURE_ASSOC;
3971
Xin Long2af66ff2019-01-28 15:08:42 +08003972 if (val.scact_assoc_id == SCTP_FUTURE_ASSOC ||
3973 val.scact_assoc_id == SCTP_ALL_ASSOC) {
3974 ret = sctp_auth_deact_key_id(ep, asoc, val.scact_keynumber);
3975 if (ret)
3976 return ret;
3977 }
3978
3979 if (val.scact_assoc_id == SCTP_CURRENT_ASSOC ||
3980 val.scact_assoc_id == SCTP_ALL_ASSOC) {
3981 list_for_each_entry(asoc, &ep->asocs, asocs) {
3982 int res = sctp_auth_deact_key_id(ep, asoc,
3983 val.scact_keynumber);
3984
3985 if (res && !ret)
3986 ret = res;
3987 }
3988 }
3989
3990 return ret;
Xin Long601590e2018-03-14 19:05:32 +08003991}
3992
3993/*
Michio Honda7dc04d72011-04-26 20:16:31 +09003994 * 8.1.23 SCTP_AUTO_ASCONF
3995 *
3996 * This option will enable or disable the use of the automatic generation of
3997 * ASCONF chunks to add and delete addresses to an existing association. Note
3998 * that this option has two caveats namely: a) it only affects sockets that
3999 * are bound to all addresses available to the SCTP stack, and b) the system
4000 * administrator may have an overriding control that turns the ASCONF feature
4001 * off no matter what setting the socket option may have.
4002 * This option expects an integer boolean flag, where a non-zero value turns on
4003 * the option, and a zero value turns off the option.
4004 * Note. In this implementation, socket operation overrides default parameter
4005 * being set by sysctl as well as FreeBSD implementation
4006 */
4007static int sctp_setsockopt_auto_asconf(struct sock *sk, char __user *optval,
4008 unsigned int optlen)
4009{
4010 int val;
4011 struct sctp_sock *sp = sctp_sk(sk);
4012
4013 if (optlen < sizeof(int))
4014 return -EINVAL;
4015 if (get_user(val, (int __user *)optval))
4016 return -EFAULT;
4017 if (!sctp_is_ep_boundall(sk) && val)
4018 return -EINVAL;
4019 if ((val && sp->do_auto_asconf) || (!val && !sp->do_auto_asconf))
4020 return 0;
4021
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004022 spin_lock_bh(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda7dc04d72011-04-26 20:16:31 +09004023 if (val == 0 && sp->do_auto_asconf) {
4024 list_del(&sp->auto_asconf_list);
4025 sp->do_auto_asconf = 0;
4026 } else if (val && !sp->do_auto_asconf) {
4027 list_add_tail(&sp->auto_asconf_list,
Eric W. Biederman4db67e82012-08-06 08:42:04 +00004028 &sock_net(sk)->sctp.auto_asconf_splist);
Michio Honda7dc04d72011-04-26 20:16:31 +09004029 sp->do_auto_asconf = 1;
4030 }
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004031 spin_unlock_bh(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda7dc04d72011-04-26 20:16:31 +09004032 return 0;
4033}
4034
Neil Horman5aa93bc2012-07-21 07:56:07 +00004035/*
4036 * SCTP_PEER_ADDR_THLDS
4037 *
4038 * This option allows us to alter the partially failed threshold for one or all
4039 * transports in an association. See Section 6.1 of:
4040 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
4041 */
4042static int sctp_setsockopt_paddr_thresholds(struct sock *sk,
4043 char __user *optval,
4044 unsigned int optlen)
4045{
4046 struct sctp_paddrthlds val;
4047 struct sctp_transport *trans;
4048 struct sctp_association *asoc;
4049
4050 if (optlen < sizeof(struct sctp_paddrthlds))
4051 return -EINVAL;
4052 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval,
4053 sizeof(struct sctp_paddrthlds)))
4054 return -EFAULT;
4055
Xin Long8add5432019-01-28 15:08:29 +08004056 if (!sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
4057 trans = sctp_addr_id2transport(sk, &val.spt_address,
4058 val.spt_assoc_id);
4059 if (!trans)
Neil Horman5aa93bc2012-07-21 07:56:07 +00004060 return -ENOENT;
Xin Long8add5432019-01-28 15:08:29 +08004061
4062 if (val.spt_pathmaxrxt)
4063 trans->pathmaxrxt = val.spt_pathmaxrxt;
4064 trans->pf_retrans = val.spt_pathpfthld;
4065
4066 return 0;
4067 }
4068
4069 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
4070 if (!asoc && val.spt_assoc_id != SCTP_FUTURE_ASSOC &&
4071 sctp_style(sk, UDP))
4072 return -EINVAL;
4073
4074 if (asoc) {
Neil Horman5aa93bc2012-07-21 07:56:07 +00004075 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
4076 transports) {
4077 if (val.spt_pathmaxrxt)
4078 trans->pathmaxrxt = val.spt_pathmaxrxt;
4079 trans->pf_retrans = val.spt_pathpfthld;
4080 }
4081
4082 if (val.spt_pathmaxrxt)
4083 asoc->pathmaxrxt = val.spt_pathmaxrxt;
4084 asoc->pf_retrans = val.spt_pathpfthld;
4085 } else {
Xin Long8add5432019-01-28 15:08:29 +08004086 struct sctp_sock *sp = sctp_sk(sk);
Neil Horman5aa93bc2012-07-21 07:56:07 +00004087
4088 if (val.spt_pathmaxrxt)
Xin Long8add5432019-01-28 15:08:29 +08004089 sp->pathmaxrxt = val.spt_pathmaxrxt;
4090 sp->pf_retrans = val.spt_pathpfthld;
Neil Horman5aa93bc2012-07-21 07:56:07 +00004091 }
4092
4093 return 0;
4094}
4095
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004096static int sctp_setsockopt_recvrcvinfo(struct sock *sk,
4097 char __user *optval,
4098 unsigned int optlen)
4099{
4100 int val;
4101
4102 if (optlen < sizeof(int))
4103 return -EINVAL;
4104 if (get_user(val, (int __user *) optval))
4105 return -EFAULT;
4106
4107 sctp_sk(sk)->recvrcvinfo = (val == 0) ? 0 : 1;
4108
4109 return 0;
4110}
4111
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02004112static int sctp_setsockopt_recvnxtinfo(struct sock *sk,
4113 char __user *optval,
4114 unsigned int optlen)
4115{
4116 int val;
4117
4118 if (optlen < sizeof(int))
4119 return -EINVAL;
4120 if (get_user(val, (int __user *) optval))
4121 return -EFAULT;
4122
4123 sctp_sk(sk)->recvnxtinfo = (val == 0) ? 0 : 1;
4124
4125 return 0;
4126}
4127
Xin Long28aa4c22016-07-09 19:47:40 +08004128static int sctp_setsockopt_pr_supported(struct sock *sk,
4129 char __user *optval,
4130 unsigned int optlen)
4131{
4132 struct sctp_assoc_value params;
Xin Longfb195602019-01-28 15:08:30 +08004133 struct sctp_association *asoc;
Xin Long28aa4c22016-07-09 19:47:40 +08004134
4135 if (optlen != sizeof(params))
Xin Longcc3ccf22018-11-18 15:21:53 +08004136 return -EINVAL;
Xin Long28aa4c22016-07-09 19:47:40 +08004137
Xin Longcc3ccf22018-11-18 15:21:53 +08004138 if (copy_from_user(&params, optval, optlen))
4139 return -EFAULT;
Xin Long28aa4c22016-07-09 19:47:40 +08004140
Xin Longfb195602019-01-28 15:08:30 +08004141 asoc = sctp_id2assoc(sk, params.assoc_id);
4142 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
4143 sctp_style(sk, UDP))
4144 return -EINVAL;
4145
Xin Longcc3ccf22018-11-18 15:21:53 +08004146 sctp_sk(sk)->ep->prsctp_enable = !!params.assoc_value;
Xin Long28aa4c22016-07-09 19:47:40 +08004147
Xin Longcc3ccf22018-11-18 15:21:53 +08004148 return 0;
Xin Long28aa4c22016-07-09 19:47:40 +08004149}
4150
Xin Longf959fb42016-07-09 19:47:41 +08004151static int sctp_setsockopt_default_prinfo(struct sock *sk,
4152 char __user *optval,
4153 unsigned int optlen)
4154{
Xin Long3a583052019-01-28 15:08:43 +08004155 struct sctp_sock *sp = sctp_sk(sk);
Xin Longf959fb42016-07-09 19:47:41 +08004156 struct sctp_default_prinfo info;
4157 struct sctp_association *asoc;
4158 int retval = -EINVAL;
4159
4160 if (optlen != sizeof(info))
4161 goto out;
4162
4163 if (copy_from_user(&info, optval, sizeof(info))) {
4164 retval = -EFAULT;
4165 goto out;
4166 }
4167
4168 if (info.pr_policy & ~SCTP_PR_SCTP_MASK)
4169 goto out;
4170
4171 if (info.pr_policy == SCTP_PR_SCTP_NONE)
4172 info.pr_value = 0;
4173
4174 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
Xin Long3a583052019-01-28 15:08:43 +08004175 if (!asoc && info.pr_assoc_id > SCTP_ALL_ASSOC &&
4176 sctp_style(sk, UDP))
4177 goto out;
4178
4179 retval = 0;
4180
Xin Longf959fb42016-07-09 19:47:41 +08004181 if (asoc) {
4182 SCTP_PR_SET_POLICY(asoc->default_flags, info.pr_policy);
4183 asoc->default_timetolive = info.pr_value;
Xin Longf959fb42016-07-09 19:47:41 +08004184 goto out;
4185 }
4186
Xin Longcbb45c62019-03-18 20:06:08 +08004187 if (sctp_style(sk, TCP))
4188 info.pr_assoc_id = SCTP_FUTURE_ASSOC;
4189
Xin Long3a583052019-01-28 15:08:43 +08004190 if (info.pr_assoc_id == SCTP_FUTURE_ASSOC ||
4191 info.pr_assoc_id == SCTP_ALL_ASSOC) {
4192 SCTP_PR_SET_POLICY(sp->default_flags, info.pr_policy);
4193 sp->default_timetolive = info.pr_value;
4194 }
4195
4196 if (info.pr_assoc_id == SCTP_CURRENT_ASSOC ||
4197 info.pr_assoc_id == SCTP_ALL_ASSOC) {
4198 list_for_each_entry(asoc, &sp->ep->asocs, asocs) {
4199 SCTP_PR_SET_POLICY(asoc->default_flags, info.pr_policy);
4200 asoc->default_timetolive = info.pr_value;
4201 }
4202 }
Xin Longf959fb42016-07-09 19:47:41 +08004203
4204out:
4205 return retval;
4206}
4207
Xin Longc0d8bab2017-03-10 12:11:12 +08004208static int sctp_setsockopt_reconfig_supported(struct sock *sk,
4209 char __user *optval,
4210 unsigned int optlen)
4211{
4212 struct sctp_assoc_value params;
4213 struct sctp_association *asoc;
4214 int retval = -EINVAL;
4215
4216 if (optlen != sizeof(params))
4217 goto out;
4218
4219 if (copy_from_user(&params, optval, optlen)) {
4220 retval = -EFAULT;
4221 goto out;
4222 }
4223
4224 asoc = sctp_id2assoc(sk, params.assoc_id);
Xin Longacce7f32019-01-28 15:08:31 +08004225 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
4226 sctp_style(sk, UDP))
Xin Longc0d8bab2017-03-10 12:11:12 +08004227 goto out;
Xin Longacce7f32019-01-28 15:08:31 +08004228
4229 if (asoc)
4230 asoc->reconf_enable = !!params.assoc_value;
4231 else
4232 sctp_sk(sk)->ep->reconf_enable = !!params.assoc_value;
Xin Longc0d8bab2017-03-10 12:11:12 +08004233
4234 retval = 0;
4235
4236out:
4237 return retval;
4238}
4239
Xin Long9fb657a2017-01-18 00:44:46 +08004240static int sctp_setsockopt_enable_strreset(struct sock *sk,
4241 char __user *optval,
4242 unsigned int optlen)
4243{
Xin Long99a62132019-01-28 15:08:44 +08004244 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Xin Long9fb657a2017-01-18 00:44:46 +08004245 struct sctp_assoc_value params;
4246 struct sctp_association *asoc;
4247 int retval = -EINVAL;
4248
4249 if (optlen != sizeof(params))
4250 goto out;
4251
4252 if (copy_from_user(&params, optval, optlen)) {
4253 retval = -EFAULT;
4254 goto out;
4255 }
4256
4257 if (params.assoc_value & (~SCTP_ENABLE_STRRESET_MASK))
4258 goto out;
4259
4260 asoc = sctp_id2assoc(sk, params.assoc_id);
Xin Long99a62132019-01-28 15:08:44 +08004261 if (!asoc && params.assoc_id > SCTP_ALL_ASSOC &&
4262 sctp_style(sk, UDP))
4263 goto out;
4264
4265 retval = 0;
4266
Xin Long9fb657a2017-01-18 00:44:46 +08004267 if (asoc) {
4268 asoc->strreset_enable = params.assoc_value;
Xin Long9fb657a2017-01-18 00:44:46 +08004269 goto out;
4270 }
4271
Xin Long9430ff92019-03-18 20:06:09 +08004272 if (sctp_style(sk, TCP))
4273 params.assoc_id = SCTP_FUTURE_ASSOC;
4274
Xin Long99a62132019-01-28 15:08:44 +08004275 if (params.assoc_id == SCTP_FUTURE_ASSOC ||
4276 params.assoc_id == SCTP_ALL_ASSOC)
4277 ep->strreset_enable = params.assoc_value;
4278
4279 if (params.assoc_id == SCTP_CURRENT_ASSOC ||
4280 params.assoc_id == SCTP_ALL_ASSOC)
4281 list_for_each_entry(asoc, &ep->asocs, asocs)
4282 asoc->strreset_enable = params.assoc_value;
Xin Long9fb657a2017-01-18 00:44:46 +08004283
4284out:
4285 return retval;
4286}
4287
Xin Long7f9d68a2017-01-18 00:44:47 +08004288static int sctp_setsockopt_reset_streams(struct sock *sk,
4289 char __user *optval,
4290 unsigned int optlen)
4291{
4292 struct sctp_reset_streams *params;
4293 struct sctp_association *asoc;
4294 int retval = -EINVAL;
4295
Xin Long2342b8d2017-12-10 15:40:51 +08004296 if (optlen < sizeof(*params))
Xin Long7f9d68a2017-01-18 00:44:47 +08004297 return -EINVAL;
Marcelo Ricardo Leitner5960cef2018-01-08 19:02:28 -02004298 /* srs_number_streams is u16, so optlen can't be bigger than this. */
4299 optlen = min_t(unsigned int, optlen, USHRT_MAX +
4300 sizeof(__u16) * sizeof(*params));
Xin Long7f9d68a2017-01-18 00:44:47 +08004301
4302 params = memdup_user(optval, optlen);
4303 if (IS_ERR(params))
4304 return PTR_ERR(params);
4305
Xin Long2342b8d2017-12-10 15:40:51 +08004306 if (params->srs_number_streams * sizeof(__u16) >
4307 optlen - sizeof(*params))
4308 goto out;
4309
Xin Long7f9d68a2017-01-18 00:44:47 +08004310 asoc = sctp_id2assoc(sk, params->srs_assoc_id);
4311 if (!asoc)
4312 goto out;
4313
4314 retval = sctp_send_reset_streams(asoc, params);
4315
4316out:
4317 kfree(params);
4318 return retval;
4319}
4320
Xin Longa92ce1a2017-02-09 01:18:18 +08004321static int sctp_setsockopt_reset_assoc(struct sock *sk,
4322 char __user *optval,
4323 unsigned int optlen)
4324{
4325 struct sctp_association *asoc;
4326 sctp_assoc_t associd;
4327 int retval = -EINVAL;
4328
4329 if (optlen != sizeof(associd))
4330 goto out;
4331
4332 if (copy_from_user(&associd, optval, optlen)) {
4333 retval = -EFAULT;
4334 goto out;
4335 }
4336
4337 asoc = sctp_id2assoc(sk, associd);
4338 if (!asoc)
4339 goto out;
4340
4341 retval = sctp_send_reset_assoc(asoc);
4342
4343out:
4344 return retval;
4345}
4346
Xin Long242bd2d2017-02-09 01:18:20 +08004347static int sctp_setsockopt_add_streams(struct sock *sk,
4348 char __user *optval,
4349 unsigned int optlen)
4350{
4351 struct sctp_association *asoc;
4352 struct sctp_add_streams params;
4353 int retval = -EINVAL;
4354
4355 if (optlen != sizeof(params))
4356 goto out;
4357
4358 if (copy_from_user(&params, optval, optlen)) {
4359 retval = -EFAULT;
4360 goto out;
4361 }
4362
4363 asoc = sctp_id2assoc(sk, params.sas_assoc_id);
4364 if (!asoc)
4365 goto out;
4366
4367 retval = sctp_send_add_streams(asoc, &params);
4368
4369out:
4370 return retval;
4371}
4372
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004373static int sctp_setsockopt_scheduler(struct sock *sk,
4374 char __user *optval,
4375 unsigned int optlen)
4376{
Xin Long7efba102019-01-28 15:08:46 +08004377 struct sctp_sock *sp = sctp_sk(sk);
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004378 struct sctp_association *asoc;
4379 struct sctp_assoc_value params;
Xin Long7efba102019-01-28 15:08:46 +08004380 int retval = 0;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004381
4382 if (optlen < sizeof(params))
Xin Long7efba102019-01-28 15:08:46 +08004383 return -EINVAL;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004384
4385 optlen = sizeof(params);
Xin Long7efba102019-01-28 15:08:46 +08004386 if (copy_from_user(&params, optval, optlen))
4387 return -EFAULT;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004388
4389 if (params.assoc_value > SCTP_SS_MAX)
Xin Long7efba102019-01-28 15:08:46 +08004390 return -EINVAL;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004391
4392 asoc = sctp_id2assoc(sk, params.assoc_id);
Xin Long7efba102019-01-28 15:08:46 +08004393 if (!asoc && params.assoc_id > SCTP_ALL_ASSOC &&
4394 sctp_style(sk, UDP))
4395 return -EINVAL;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004396
Xin Long7efba102019-01-28 15:08:46 +08004397 if (asoc)
4398 return sctp_sched_set_sched(asoc, params.assoc_value);
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004399
Xin Longb59c19d2019-03-18 20:06:11 +08004400 if (sctp_style(sk, TCP))
4401 params.assoc_id = SCTP_FUTURE_ASSOC;
4402
Xin Long7efba102019-01-28 15:08:46 +08004403 if (params.assoc_id == SCTP_FUTURE_ASSOC ||
4404 params.assoc_id == SCTP_ALL_ASSOC)
4405 sp->default_ss = params.assoc_value;
4406
4407 if (params.assoc_id == SCTP_CURRENT_ASSOC ||
4408 params.assoc_id == SCTP_ALL_ASSOC) {
4409 list_for_each_entry(asoc, &sp->ep->asocs, asocs) {
4410 int ret = sctp_sched_set_sched(asoc,
4411 params.assoc_value);
4412
4413 if (ret && !retval)
4414 retval = ret;
4415 }
4416 }
4417
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004418 return retval;
4419}
4420
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004421static int sctp_setsockopt_scheduler_value(struct sock *sk,
4422 char __user *optval,
4423 unsigned int optlen)
4424{
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004425 struct sctp_stream_value params;
Xin Longe7f28242019-01-28 15:08:33 +08004426 struct sctp_association *asoc;
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004427 int retval = -EINVAL;
4428
4429 if (optlen < sizeof(params))
4430 goto out;
4431
4432 optlen = sizeof(params);
4433 if (copy_from_user(&params, optval, optlen)) {
4434 retval = -EFAULT;
4435 goto out;
4436 }
4437
4438 asoc = sctp_id2assoc(sk, params.assoc_id);
Xin Longe7f28242019-01-28 15:08:33 +08004439 if (!asoc && params.assoc_id != SCTP_CURRENT_ASSOC &&
4440 sctp_style(sk, UDP))
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004441 goto out;
4442
Xin Longe7f28242019-01-28 15:08:33 +08004443 if (asoc) {
4444 retval = sctp_sched_set_value(asoc, params.stream_id,
4445 params.stream_value, GFP_KERNEL);
4446 goto out;
4447 }
4448
4449 retval = 0;
4450
4451 list_for_each_entry(asoc, &sctp_sk(sk)->ep->asocs, asocs) {
4452 int ret = sctp_sched_set_value(asoc, params.stream_id,
4453 params.stream_value, GFP_KERNEL);
4454 if (ret && !retval) /* try to return the 1st error. */
4455 retval = ret;
4456 }
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004457
4458out:
4459 return retval;
4460}
4461
Xin Long772a5862017-12-08 21:03:58 +08004462static int sctp_setsockopt_interleaving_supported(struct sock *sk,
4463 char __user *optval,
4464 unsigned int optlen)
4465{
4466 struct sctp_sock *sp = sctp_sk(sk);
Xin Long772a5862017-12-08 21:03:58 +08004467 struct sctp_assoc_value params;
Xin Long2e7709d2019-01-28 15:08:32 +08004468 struct sctp_association *asoc;
Xin Long772a5862017-12-08 21:03:58 +08004469 int retval = -EINVAL;
4470
4471 if (optlen < sizeof(params))
4472 goto out;
4473
4474 optlen = sizeof(params);
4475 if (copy_from_user(&params, optval, optlen)) {
4476 retval = -EFAULT;
4477 goto out;
4478 }
4479
Xin Long2e7709d2019-01-28 15:08:32 +08004480 asoc = sctp_id2assoc(sk, params.assoc_id);
4481 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
4482 sctp_style(sk, UDP))
Xin Long772a5862017-12-08 21:03:58 +08004483 goto out;
4484
Xin Long2e7709d2019-01-28 15:08:32 +08004485 if (!sock_net(sk)->sctp.intl_enable || !sp->frag_interleave) {
Xin Long772a5862017-12-08 21:03:58 +08004486 retval = -EPERM;
4487 goto out;
4488 }
4489
4490 sp->strm_interleave = !!params.assoc_value;
4491
4492 retval = 0;
4493
4494out:
4495 return retval;
4496}
4497
Xin Longb0e9a2f2018-06-28 15:31:00 +08004498static int sctp_setsockopt_reuse_port(struct sock *sk, char __user *optval,
4499 unsigned int optlen)
4500{
4501 int val;
4502
4503 if (!sctp_style(sk, TCP))
4504 return -EOPNOTSUPP;
4505
4506 if (sctp_sk(sk)->ep->base.bind_addr.port)
4507 return -EFAULT;
4508
4509 if (optlen < sizeof(int))
4510 return -EINVAL;
4511
4512 if (get_user(val, (int __user *)optval))
4513 return -EFAULT;
4514
4515 sctp_sk(sk)->reuse = !!val;
4516
4517 return 0;
4518}
4519
Xin Longd251f052019-01-28 15:08:45 +08004520static int sctp_assoc_ulpevent_type_set(struct sctp_event *param,
4521 struct sctp_association *asoc)
Xin Long480ba9c2018-11-18 16:08:54 +08004522{
Xin Long480ba9c2018-11-18 16:08:54 +08004523 struct sctp_ulpevent *event;
Xin Long480ba9c2018-11-18 16:08:54 +08004524
Xin Longd251f052019-01-28 15:08:45 +08004525 sctp_ulpevent_type_set(&asoc->subscribe, param->se_type, param->se_on);
Xin Long480ba9c2018-11-18 16:08:54 +08004526
Xin Longd251f052019-01-28 15:08:45 +08004527 if (param->se_type == SCTP_SENDER_DRY_EVENT && param->se_on) {
Xin Long480ba9c2018-11-18 16:08:54 +08004528 if (sctp_outq_is_empty(&asoc->outqueue)) {
4529 event = sctp_ulpevent_make_sender_dry_event(asoc,
4530 GFP_USER | __GFP_NOWARN);
Xin Longd251f052019-01-28 15:08:45 +08004531 if (!event)
4532 return -ENOMEM;
Xin Long480ba9c2018-11-18 16:08:54 +08004533
4534 asoc->stream.si->enqueue_event(&asoc->ulpq, event);
4535 }
4536 }
4537
Xin Longd251f052019-01-28 15:08:45 +08004538 return 0;
4539}
4540
4541static int sctp_setsockopt_event(struct sock *sk, char __user *optval,
4542 unsigned int optlen)
4543{
4544 struct sctp_sock *sp = sctp_sk(sk);
4545 struct sctp_association *asoc;
4546 struct sctp_event param;
4547 int retval = 0;
4548
4549 if (optlen < sizeof(param))
4550 return -EINVAL;
4551
4552 optlen = sizeof(param);
4553 if (copy_from_user(&param, optval, optlen))
4554 return -EFAULT;
4555
4556 if (param.se_type < SCTP_SN_TYPE_BASE ||
4557 param.se_type > SCTP_SN_TYPE_MAX)
4558 return -EINVAL;
4559
4560 asoc = sctp_id2assoc(sk, param.se_assoc_id);
4561 if (!asoc && param.se_assoc_id > SCTP_ALL_ASSOC &&
4562 sctp_style(sk, UDP))
4563 return -EINVAL;
4564
4565 if (asoc)
4566 return sctp_assoc_ulpevent_type_set(&param, asoc);
4567
Xin Long99518612019-03-18 20:06:10 +08004568 if (sctp_style(sk, TCP))
4569 param.se_assoc_id = SCTP_FUTURE_ASSOC;
4570
Xin Longd251f052019-01-28 15:08:45 +08004571 if (param.se_assoc_id == SCTP_FUTURE_ASSOC ||
4572 param.se_assoc_id == SCTP_ALL_ASSOC)
4573 sctp_ulpevent_type_set(&sp->subscribe,
4574 param.se_type, param.se_on);
4575
4576 if (param.se_assoc_id == SCTP_CURRENT_ASSOC ||
4577 param.se_assoc_id == SCTP_ALL_ASSOC) {
4578 list_for_each_entry(asoc, &sp->ep->asocs, asocs) {
4579 int ret = sctp_assoc_ulpevent_type_set(&param, asoc);
4580
4581 if (ret && !retval)
4582 retval = ret;
4583 }
4584 }
4585
Xin Long480ba9c2018-11-18 16:08:54 +08004586 return retval;
4587}
4588
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589/* API 6.2 setsockopt(), getsockopt()
4590 *
4591 * Applications use setsockopt() and getsockopt() to set or retrieve
4592 * socket options. Socket options are used to change the default
4593 * behavior of sockets calls. They are described in Section 7.
4594 *
4595 * The syntax is:
4596 *
4597 * ret = getsockopt(int sd, int level, int optname, void __user *optval,
4598 * int __user *optlen);
4599 * ret = setsockopt(int sd, int level, int optname, const void __user *optval,
4600 * int optlen);
4601 *
4602 * sd - the socket descript.
4603 * level - set to IPPROTO_SCTP for all SCTP options.
4604 * optname - the option name.
4605 * optval - the buffer to store the value of the option.
4606 * optlen - the size of the buffer.
4607 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004608static int sctp_setsockopt(struct sock *sk, int level, int optname,
4609 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610{
4611 int retval = 0;
4612
Daniel Borkmannbb333812013-06-28 19:49:40 +02004613 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614
4615 /* I can hardly begin to describe how wrong this is. This is
4616 * so broken as to be worse than useless. The API draft
4617 * REALLY is NOT helpful here... I am not convinced that the
4618 * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
4619 * are at all well-founded.
4620 */
4621 if (level != SOL_SCTP) {
4622 struct sctp_af *af = sctp_sk(sk)->pf->af;
4623 retval = af->setsockopt(sk, level, optname, optval, optlen);
4624 goto out_nounlock;
4625 }
4626
wangweidong048ed4b2014-01-21 15:44:11 +08004627 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628
4629 switch (optname) {
4630 case SCTP_SOCKOPT_BINDX_ADD:
4631 /* 'optlen' is the size of the addresses buffer. */
4632 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
4633 optlen, SCTP_BINDX_ADD_ADDR);
4634 break;
4635
4636 case SCTP_SOCKOPT_BINDX_REM:
4637 /* 'optlen' is the size of the addresses buffer. */
4638 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
4639 optlen, SCTP_BINDX_REM_ADDR);
4640 break;
4641
Vlad Yasevich88a0a942008-05-09 15:14:11 -07004642 case SCTP_SOCKOPT_CONNECTX_OLD:
4643 /* 'optlen' is the size of the addresses buffer. */
4644 retval = sctp_setsockopt_connectx_old(sk,
4645 (struct sockaddr __user *)optval,
4646 optlen);
4647 break;
4648
Frank Filz3f7a87d2005-06-20 13:14:57 -07004649 case SCTP_SOCKOPT_CONNECTX:
4650 /* 'optlen' is the size of the addresses buffer. */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07004651 retval = sctp_setsockopt_connectx(sk,
4652 (struct sockaddr __user *)optval,
4653 optlen);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004654 break;
4655
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656 case SCTP_DISABLE_FRAGMENTS:
4657 retval = sctp_setsockopt_disable_fragments(sk, optval, optlen);
4658 break;
4659
4660 case SCTP_EVENTS:
4661 retval = sctp_setsockopt_events(sk, optval, optlen);
4662 break;
4663
4664 case SCTP_AUTOCLOSE:
4665 retval = sctp_setsockopt_autoclose(sk, optval, optlen);
4666 break;
4667
4668 case SCTP_PEER_ADDR_PARAMS:
4669 retval = sctp_setsockopt_peer_addr_params(sk, optval, optlen);
4670 break;
4671
Shan Wei4580ccc2011-01-18 22:39:00 +00004672 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07004673 retval = sctp_setsockopt_delayed_ack(sk, optval, optlen);
Frank Filz77086102005-12-22 11:37:30 -08004674 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07004675 case SCTP_PARTIAL_DELIVERY_POINT:
4676 retval = sctp_setsockopt_partial_delivery_point(sk, optval, optlen);
4677 break;
Frank Filz77086102005-12-22 11:37:30 -08004678
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679 case SCTP_INITMSG:
4680 retval = sctp_setsockopt_initmsg(sk, optval, optlen);
4681 break;
4682 case SCTP_DEFAULT_SEND_PARAM:
4683 retval = sctp_setsockopt_default_send_param(sk, optval,
4684 optlen);
4685 break;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02004686 case SCTP_DEFAULT_SNDINFO:
4687 retval = sctp_setsockopt_default_sndinfo(sk, optval, optlen);
4688 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689 case SCTP_PRIMARY_ADDR:
4690 retval = sctp_setsockopt_primary_addr(sk, optval, optlen);
4691 break;
4692 case SCTP_SET_PEER_PRIMARY_ADDR:
4693 retval = sctp_setsockopt_peer_primary_addr(sk, optval, optlen);
4694 break;
4695 case SCTP_NODELAY:
4696 retval = sctp_setsockopt_nodelay(sk, optval, optlen);
4697 break;
4698 case SCTP_RTOINFO:
4699 retval = sctp_setsockopt_rtoinfo(sk, optval, optlen);
4700 break;
4701 case SCTP_ASSOCINFO:
4702 retval = sctp_setsockopt_associnfo(sk, optval, optlen);
4703 break;
4704 case SCTP_I_WANT_MAPPED_V4_ADDR:
4705 retval = sctp_setsockopt_mappedv4(sk, optval, optlen);
4706 break;
4707 case SCTP_MAXSEG:
4708 retval = sctp_setsockopt_maxseg(sk, optval, optlen);
4709 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004710 case SCTP_ADAPTATION_LAYER:
4711 retval = sctp_setsockopt_adaptation_layer(sk, optval, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004713 case SCTP_CONTEXT:
4714 retval = sctp_setsockopt_context(sk, optval, optlen);
4715 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004716 case SCTP_FRAGMENT_INTERLEAVE:
4717 retval = sctp_setsockopt_fragment_interleave(sk, optval, optlen);
4718 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07004719 case SCTP_MAX_BURST:
4720 retval = sctp_setsockopt_maxburst(sk, optval, optlen);
4721 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07004722 case SCTP_AUTH_CHUNK:
4723 retval = sctp_setsockopt_auth_chunk(sk, optval, optlen);
4724 break;
4725 case SCTP_HMAC_IDENT:
4726 retval = sctp_setsockopt_hmac_ident(sk, optval, optlen);
4727 break;
4728 case SCTP_AUTH_KEY:
4729 retval = sctp_setsockopt_auth_key(sk, optval, optlen);
4730 break;
4731 case SCTP_AUTH_ACTIVE_KEY:
4732 retval = sctp_setsockopt_active_key(sk, optval, optlen);
4733 break;
4734 case SCTP_AUTH_DELETE_KEY:
4735 retval = sctp_setsockopt_del_key(sk, optval, optlen);
4736 break;
Xin Long601590e2018-03-14 19:05:32 +08004737 case SCTP_AUTH_DEACTIVATE_KEY:
4738 retval = sctp_setsockopt_deactivate_key(sk, optval, optlen);
4739 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09004740 case SCTP_AUTO_ASCONF:
4741 retval = sctp_setsockopt_auto_asconf(sk, optval, optlen);
4742 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00004743 case SCTP_PEER_ADDR_THLDS:
4744 retval = sctp_setsockopt_paddr_thresholds(sk, optval, optlen);
4745 break;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004746 case SCTP_RECVRCVINFO:
4747 retval = sctp_setsockopt_recvrcvinfo(sk, optval, optlen);
4748 break;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02004749 case SCTP_RECVNXTINFO:
4750 retval = sctp_setsockopt_recvnxtinfo(sk, optval, optlen);
4751 break;
Xin Long28aa4c22016-07-09 19:47:40 +08004752 case SCTP_PR_SUPPORTED:
4753 retval = sctp_setsockopt_pr_supported(sk, optval, optlen);
4754 break;
Xin Longf959fb42016-07-09 19:47:41 +08004755 case SCTP_DEFAULT_PRINFO:
4756 retval = sctp_setsockopt_default_prinfo(sk, optval, optlen);
4757 break;
Xin Longc0d8bab2017-03-10 12:11:12 +08004758 case SCTP_RECONFIG_SUPPORTED:
4759 retval = sctp_setsockopt_reconfig_supported(sk, optval, optlen);
4760 break;
Xin Long9fb657a2017-01-18 00:44:46 +08004761 case SCTP_ENABLE_STREAM_RESET:
4762 retval = sctp_setsockopt_enable_strreset(sk, optval, optlen);
4763 break;
Xin Long7f9d68a2017-01-18 00:44:47 +08004764 case SCTP_RESET_STREAMS:
4765 retval = sctp_setsockopt_reset_streams(sk, optval, optlen);
4766 break;
Xin Longa92ce1a2017-02-09 01:18:18 +08004767 case SCTP_RESET_ASSOC:
4768 retval = sctp_setsockopt_reset_assoc(sk, optval, optlen);
4769 break;
Xin Long242bd2d2017-02-09 01:18:20 +08004770 case SCTP_ADD_STREAMS:
4771 retval = sctp_setsockopt_add_streams(sk, optval, optlen);
4772 break;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004773 case SCTP_STREAM_SCHEDULER:
4774 retval = sctp_setsockopt_scheduler(sk, optval, optlen);
4775 break;
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004776 case SCTP_STREAM_SCHEDULER_VALUE:
4777 retval = sctp_setsockopt_scheduler_value(sk, optval, optlen);
4778 break;
Xin Long772a5862017-12-08 21:03:58 +08004779 case SCTP_INTERLEAVING_SUPPORTED:
4780 retval = sctp_setsockopt_interleaving_supported(sk, optval,
4781 optlen);
4782 break;
Xin Longb0e9a2f2018-06-28 15:31:00 +08004783 case SCTP_REUSE_PORT:
4784 retval = sctp_setsockopt_reuse_port(sk, optval, optlen);
4785 break;
Xin Long480ba9c2018-11-18 16:08:54 +08004786 case SCTP_EVENT:
4787 retval = sctp_setsockopt_event(sk, optval, optlen);
4788 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789 default:
4790 retval = -ENOPROTOOPT;
4791 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07004792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793
wangweidong048ed4b2014-01-21 15:44:11 +08004794 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795
4796out_nounlock:
4797 return retval;
4798}
4799
4800/* API 3.1.6 connect() - UDP Style Syntax
4801 *
4802 * An application may use the connect() call in the UDP model to initiate an
4803 * association without sending data.
4804 *
4805 * The syntax is:
4806 *
4807 * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
4808 *
4809 * sd: the socket descriptor to have a new association added to.
4810 *
4811 * nam: the address structure (either struct sockaddr_in or struct
4812 * sockaddr_in6 defined in RFC2553 [7]).
4813 *
4814 * len: the size of the address.
4815 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004816static int sctp_connect(struct sock *sk, struct sockaddr *addr,
Xin Long644fbde2018-05-20 16:39:10 +08004817 int addr_len, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818{
Xin Long644fbde2018-05-20 16:39:10 +08004819 struct inet_sock *inet = inet_sk(sk);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004820 struct sctp_af *af;
Xin Long644fbde2018-05-20 16:39:10 +08004821 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822
wangweidong048ed4b2014-01-21 15:44:11 +08004823 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824
Daniel Borkmannbb333812013-06-28 19:49:40 +02004825 pr_debug("%s: sk:%p, sockaddr:%p, addr_len:%d\n", __func__, sk,
4826 addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827
Xin Long644fbde2018-05-20 16:39:10 +08004828 /* We may need to bind the socket. */
4829 if (!inet->inet_num) {
4830 if (sk->sk_prot->get_port(sk, 0)) {
4831 release_sock(sk);
4832 return -EAGAIN;
4833 }
4834 inet->inet_sport = htons(inet->inet_num);
4835 }
4836
Frank Filz3f7a87d2005-06-20 13:14:57 -07004837 /* Validate addr_len before calling common connect/connectx routine. */
Tetsuo Handa175f7c12019-04-12 19:53:10 +09004838 af = addr_len < offsetofend(struct sockaddr, sa_family) ? NULL :
4839 sctp_get_af_specific(addr->sa_family);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004840 if (!af || addr_len < af->sockaddr_len) {
4841 err = -EINVAL;
4842 } else {
4843 /* Pass correct addr len to common routine (so it knows there
4844 * is only one address being passed.
4845 */
Xin Long644fbde2018-05-20 16:39:10 +08004846 err = __sctp_connect(sk, addr, af->sockaddr_len, flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847 }
4848
wangweidong048ed4b2014-01-21 15:44:11 +08004849 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850 return err;
4851}
4852
Xin Long644fbde2018-05-20 16:39:10 +08004853int sctp_inet_connect(struct socket *sock, struct sockaddr *uaddr,
4854 int addr_len, int flags)
4855{
4856 if (addr_len < sizeof(uaddr->sa_family))
4857 return -EINVAL;
4858
4859 if (uaddr->sa_family == AF_UNSPEC)
4860 return -EOPNOTSUPP;
4861
4862 return sctp_connect(sock->sk, uaddr, addr_len, flags);
4863}
4864
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865/* FIXME: Write comments. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004866static int sctp_disconnect(struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867{
4868 return -EOPNOTSUPP; /* STUB */
4869}
4870
4871/* 4.1.4 accept() - TCP Style Syntax
4872 *
4873 * Applications use accept() call to remove an established SCTP
4874 * association from the accept queue of the endpoint. A new socket
4875 * descriptor will be returned from accept() to represent the newly
4876 * formed association.
4877 */
David Howellscdfbabf2017-03-09 08:09:05 +00004878static struct sock *sctp_accept(struct sock *sk, int flags, int *err, bool kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879{
4880 struct sctp_sock *sp;
4881 struct sctp_endpoint *ep;
4882 struct sock *newsk = NULL;
4883 struct sctp_association *asoc;
4884 long timeo;
4885 int error = 0;
4886
wangweidong048ed4b2014-01-21 15:44:11 +08004887 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888
4889 sp = sctp_sk(sk);
4890 ep = sp->ep;
4891
4892 if (!sctp_style(sk, TCP)) {
4893 error = -EOPNOTSUPP;
4894 goto out;
4895 }
4896
4897 if (!sctp_sstate(sk, LISTENING)) {
4898 error = -EINVAL;
4899 goto out;
4900 }
4901
Sridhar Samudrala8abfedd2006-08-22 00:24:09 -07004902 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903
4904 error = sctp_wait_for_accept(sk, timeo);
4905 if (error)
4906 goto out;
4907
4908 /* We treat the list of associations on the endpoint as the accept
4909 * queue and pick the first association on the list.
4910 */
4911 asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
4912
David Howellscdfbabf2017-03-09 08:09:05 +00004913 newsk = sp->pf->create_accept_sk(sk, asoc, kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914 if (!newsk) {
4915 error = -ENOMEM;
4916 goto out;
4917 }
4918
4919 /* Populate the fields of the newsk from the oldsk and migrate the
4920 * asoc to the newsk.
4921 */
Xin Long89664c622019-03-03 17:54:53 +08004922 error = sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
4923 if (error) {
4924 sk_common_release(newsk);
4925 newsk = NULL;
4926 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927
4928out:
wangweidong048ed4b2014-01-21 15:44:11 +08004929 release_sock(sk);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004930 *err = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 return newsk;
4932}
4933
4934/* The SCTP ioctl handler. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004935static int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936{
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004937 int rc = -ENOTCONN;
4938
wangweidong048ed4b2014-01-21 15:44:11 +08004939 lock_sock(sk);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004940
4941 /*
4942 * SEQPACKET-style sockets in LISTENING state are valid, for
4943 * SCTP, so only discard TCP-style sockets in LISTENING state.
4944 */
4945 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
4946 goto out;
4947
4948 switch (cmd) {
4949 case SIOCINQ: {
4950 struct sk_buff *skb;
4951 unsigned int amount = 0;
4952
4953 skb = skb_peek(&sk->sk_receive_queue);
4954 if (skb != NULL) {
4955 /*
4956 * We will only return the amount of this packet since
4957 * that is all that will be read.
4958 */
4959 amount = skb->len;
4960 }
4961 rc = put_user(amount, (int __user *)arg);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004962 break;
David S. Miller9a7241c2010-10-03 22:14:37 -07004963 }
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004964 default:
4965 rc = -ENOIOCTLCMD;
4966 break;
4967 }
4968out:
wangweidong048ed4b2014-01-21 15:44:11 +08004969 release_sock(sk);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004970 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971}
4972
4973/* This is the function which gets called during socket creation to
4974 * initialized the SCTP-specific portion of the sock.
4975 * The sock structure should already be zero-filled memory.
4976 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004977static int sctp_init_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004979 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980 struct sctp_sock *sp;
4981
Daniel Borkmannbb333812013-06-28 19:49:40 +02004982 pr_debug("%s: sk:%p\n", __func__, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983
4984 sp = sctp_sk(sk);
4985
4986 /* Initialize the SCTP per socket area. */
4987 switch (sk->sk_type) {
4988 case SOCK_SEQPACKET:
4989 sp->type = SCTP_SOCKET_UDP;
4990 break;
4991 case SOCK_STREAM:
4992 sp->type = SCTP_SOCKET_TCP;
4993 break;
4994 default:
4995 return -ESOCKTNOSUPPORT;
4996 }
4997
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -03004998 sk->sk_gso_type = SKB_GSO_SCTP;
4999
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000 /* Initialize default send parameters. These parameters can be
5001 * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
5002 */
5003 sp->default_stream = 0;
5004 sp->default_ppid = 0;
5005 sp->default_flags = 0;
5006 sp->default_context = 0;
5007 sp->default_timetolive = 0;
5008
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005009 sp->default_rcv_context = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005010 sp->max_burst = net->sctp.max_burst;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005011
Neil Horman3c681982012-10-24 09:20:03 +00005012 sp->sctp_hmac_alg = net->sctp.sctp_hmac_alg;
5013
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014 /* Initialize default setup parameters. These parameters
5015 * can be modified with the SCTP_INITMSG socket option or
5016 * overridden by the SCTP_INIT CMSG.
5017 */
5018 sp->initmsg.sinit_num_ostreams = sctp_max_outstreams;
5019 sp->initmsg.sinit_max_instreams = sctp_max_instreams;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005020 sp->initmsg.sinit_max_attempts = net->sctp.max_retrans_init;
5021 sp->initmsg.sinit_max_init_timeo = net->sctp.rto_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022
5023 /* Initialize default RTO related parameters. These parameters can
5024 * be modified for with the SCTP_RTOINFO socket option.
5025 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005026 sp->rtoinfo.srto_initial = net->sctp.rto_initial;
5027 sp->rtoinfo.srto_max = net->sctp.rto_max;
5028 sp->rtoinfo.srto_min = net->sctp.rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029
5030 /* Initialize default association related parameters. These parameters
5031 * can be modified with the SCTP_ASSOCINFO socket option.
5032 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005033 sp->assocparams.sasoc_asocmaxrxt = net->sctp.max_retrans_association;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034 sp->assocparams.sasoc_number_peer_destinations = 0;
5035 sp->assocparams.sasoc_peer_rwnd = 0;
5036 sp->assocparams.sasoc_local_rwnd = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005037 sp->assocparams.sasoc_cookie_life = net->sctp.valid_cookie_life;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038
5039 /* Initialize default event subscriptions. By default, all the
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005040 * options are off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041 */
Xin Long2cc0eeb2018-11-18 16:08:51 +08005042 sp->subscribe = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043
5044 /* Default Peer Address Parameters. These defaults can
5045 * be modified via SCTP_PEER_ADDR_PARAMS
5046 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005047 sp->hbinterval = net->sctp.hb_interval;
5048 sp->pathmaxrxt = net->sctp.max_retrans_path;
Xin Long8add5432019-01-28 15:08:29 +08005049 sp->pf_retrans = net->sctp.pf_retrans;
wangweidong4e2d52b2013-12-23 12:16:54 +08005050 sp->pathmtu = 0; /* allow default discovery */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005051 sp->sackdelay = net->sctp.sack_timeout;
Vlad Yasevich7bfe8bdb2008-06-09 15:45:05 -07005052 sp->sackfreq = 2;
Frank Filz52ccb8e2005-12-22 11:36:46 -08005053 sp->param_flags = SPP_HB_ENABLE |
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005054 SPP_PMTUD_ENABLE |
5055 SPP_SACKDELAY_ENABLE;
Xin Long7efba102019-01-28 15:08:46 +08005056 sp->default_ss = SCTP_SS_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057
5058 /* If enabled no SCTP message fragmentation will be performed.
5059 * Configure through SCTP_DISABLE_FRAGMENTS socket option.
5060 */
5061 sp->disable_fragments = 0;
5062
Sridhar Samudrala208edef2006-09-29 17:08:01 -07005063 /* Enable Nagle algorithm by default. */
5064 sp->nodelay = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02005066 sp->recvrcvinfo = 0;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02005067 sp->recvnxtinfo = 0;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02005068
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069 /* Enable by default. */
5070 sp->v4mapped = 1;
5071
5072 /* Auto-close idle associations after the configured
5073 * number of seconds. A value of 0 disables this
5074 * feature. Configure through the SCTP_AUTOCLOSE socket option,
5075 * for UDP-style sockets only.
5076 */
5077 sp->autoclose = 0;
5078
5079 /* User specified fragmentation limit. */
5080 sp->user_frag = 0;
5081
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005082 sp->adaptation_ind = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083
5084 sp->pf = sctp_get_pf_specific(sk->sk_family);
5085
5086 /* Control variables for partial data delivery. */
Vlad Yasevichb6e13312007-04-20 12:23:15 -07005087 atomic_set(&sp->pd_mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088 skb_queue_head_init(&sp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07005089 sp->frag_interleave = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090
5091 /* Create a per socket endpoint structure. Even if we
5092 * change the data structure relationships, this may still
5093 * be useful for storing pre-connect address information.
5094 */
Daniel Borkmannc164b832013-06-14 18:24:06 +02005095 sp->ep = sctp_endpoint_new(sk, GFP_KERNEL);
5096 if (!sp->ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097 return -ENOMEM;
5098
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099 sp->hmac = NULL;
5100
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02005101 sk->sk_destruct = sctp_destruct_sock;
5102
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103 SCTP_DBG_OBJCNT_INC(sock);
David S. Miller6f756a82008-11-23 17:34:03 -08005104
5105 local_bh_disable();
Tonghao Zhang8cb38a62017-12-22 10:15:20 -08005106 sk_sockets_allocated_inc(sk);
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005107 sock_prot_inuse_add(net, sk->sk_prot, 1);
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03005108
5109 /* Nothing can fail after this block, otherwise
5110 * sctp_destroy_sock() will be called without addr_wq_lock held
5111 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005112 if (net->sctp.default_auto_asconf) {
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03005113 spin_lock(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda9f7d6532011-04-26 19:32:51 +09005114 list_add_tail(&sp->auto_asconf_list,
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00005115 &net->sctp.auto_asconf_splist);
Michio Honda9f7d6532011-04-26 19:32:51 +09005116 sp->do_auto_asconf = 1;
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03005117 spin_unlock(&sock_net(sk)->sctp.addr_wq_lock);
5118 } else {
Michio Honda9f7d6532011-04-26 19:32:51 +09005119 sp->do_auto_asconf = 0;
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03005120 }
5121
David S. Miller6f756a82008-11-23 17:34:03 -08005122 local_bh_enable();
5123
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124 return 0;
5125}
5126
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03005127/* Cleanup any SCTP per socket resources. Must be called with
5128 * sock_net(sk)->sctp.addr_wq_lock held if sp->do_auto_asconf is true
5129 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02005130static void sctp_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131{
Michio Honda9f7d6532011-04-26 19:32:51 +09005132 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133
Daniel Borkmannbb333812013-06-28 19:49:40 +02005134 pr_debug("%s: sk:%p\n", __func__, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135
5136 /* Release our hold on the endpoint. */
Michio Honda9f7d6532011-04-26 19:32:51 +09005137 sp = sctp_sk(sk);
Daniel Borkmann1abd1652013-06-06 15:53:47 +02005138 /* This could happen during socket init, thus we bail out
5139 * early, since the rest of the below is not setup either.
5140 */
5141 if (sp->ep == NULL)
5142 return;
5143
Michio Honda9f7d6532011-04-26 19:32:51 +09005144 if (sp->do_auto_asconf) {
5145 sp->do_auto_asconf = 0;
5146 list_del(&sp->auto_asconf_list);
5147 }
5148 sctp_endpoint_free(sp->ep);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08005149 local_bh_disable();
Tonghao Zhang8cb38a62017-12-22 10:15:20 -08005150 sk_sockets_allocated_dec(sk);
Eric Dumazet9a57f7f2008-11-17 02:41:00 -08005151 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08005152 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153}
5154
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02005155/* Triggered when there are no references on the socket anymore */
5156static void sctp_destruct_sock(struct sock *sk)
5157{
5158 struct sctp_sock *sp = sctp_sk(sk);
5159
5160 /* Free up the HMAC transform. */
Herbert Xu5821c762016-01-24 21:20:12 +08005161 crypto_free_shash(sp->hmac);
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02005162
5163 inet_sock_destruct(sk);
5164}
5165
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166/* API 4.1.7 shutdown() - TCP Style Syntax
5167 * int shutdown(int socket, int how);
5168 *
5169 * sd - the socket descriptor of the association to be closed.
5170 * how - Specifies the type of shutdown. The values are
5171 * as follows:
5172 * SHUT_RD
5173 * Disables further receive operations. No SCTP
5174 * protocol action is taken.
5175 * SHUT_WR
5176 * Disables further send operations, and initiates
5177 * the SCTP shutdown sequence.
5178 * SHUT_RDWR
5179 * Disables further send and receive operations
5180 * and initiates the SCTP shutdown sequence.
5181 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02005182static void sctp_shutdown(struct sock *sk, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00005184 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185 struct sctp_endpoint *ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186
5187 if (!sctp_style(sk, TCP))
5188 return;
5189
Xin Long5bf35dd2016-11-13 21:44:37 +08005190 ep = sctp_sk(sk)->ep;
5191 if (how & SEND_SHUTDOWN && !list_empty(&ep->asocs)) {
5192 struct sctp_association *asoc;
5193
Yafang Shaocbabf462017-12-20 11:12:54 +08005194 inet_sk_set_state(sk, SCTP_SS_CLOSING);
Xin Long5bf35dd2016-11-13 21:44:37 +08005195 asoc = list_entry(ep->asocs.next,
5196 struct sctp_association, asocs);
5197 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198 }
5199}
5200
Xin Long52c52a62016-04-14 15:35:30 +08005201int sctp_get_sctp_info(struct sock *sk, struct sctp_association *asoc,
5202 struct sctp_info *info)
5203{
5204 struct sctp_transport *prim;
5205 struct list_head *pos;
5206 int mask;
5207
5208 memset(info, 0, sizeof(*info));
5209 if (!asoc) {
5210 struct sctp_sock *sp = sctp_sk(sk);
5211
5212 info->sctpi_s_autoclose = sp->autoclose;
5213 info->sctpi_s_adaptation_ind = sp->adaptation_ind;
5214 info->sctpi_s_pd_point = sp->pd_point;
5215 info->sctpi_s_nodelay = sp->nodelay;
5216 info->sctpi_s_disable_fragments = sp->disable_fragments;
5217 info->sctpi_s_v4mapped = sp->v4mapped;
5218 info->sctpi_s_frag_interleave = sp->frag_interleave;
Xin Long40eb90e92016-05-29 17:42:13 +08005219 info->sctpi_s_type = sp->type;
Xin Long52c52a62016-04-14 15:35:30 +08005220
5221 return 0;
5222 }
5223
5224 info->sctpi_tag = asoc->c.my_vtag;
5225 info->sctpi_state = asoc->state;
5226 info->sctpi_rwnd = asoc->a_rwnd;
5227 info->sctpi_unackdata = asoc->unack_data;
5228 info->sctpi_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
Xin Longcee360a2017-05-31 16:36:31 +08005229 info->sctpi_instrms = asoc->stream.incnt;
5230 info->sctpi_outstrms = asoc->stream.outcnt;
Xin Long52c52a62016-04-14 15:35:30 +08005231 list_for_each(pos, &asoc->base.inqueue.in_chunk_list)
5232 info->sctpi_inqueue++;
5233 list_for_each(pos, &asoc->outqueue.out_chunk_list)
5234 info->sctpi_outqueue++;
5235 info->sctpi_overall_error = asoc->overall_error_count;
5236 info->sctpi_max_burst = asoc->max_burst;
5237 info->sctpi_maxseg = asoc->frag_point;
5238 info->sctpi_peer_rwnd = asoc->peer.rwnd;
5239 info->sctpi_peer_tag = asoc->c.peer_vtag;
5240
5241 mask = asoc->peer.ecn_capable << 1;
5242 mask = (mask | asoc->peer.ipv4_address) << 1;
5243 mask = (mask | asoc->peer.ipv6_address) << 1;
5244 mask = (mask | asoc->peer.hostname_address) << 1;
5245 mask = (mask | asoc->peer.asconf_capable) << 1;
5246 mask = (mask | asoc->peer.prsctp_capable) << 1;
5247 mask = (mask | asoc->peer.auth_capable);
5248 info->sctpi_peer_capable = mask;
5249 mask = asoc->peer.sack_needed << 1;
5250 mask = (mask | asoc->peer.sack_generation) << 1;
5251 mask = (mask | asoc->peer.zero_window_announced);
5252 info->sctpi_peer_sack = mask;
5253
5254 info->sctpi_isacks = asoc->stats.isacks;
5255 info->sctpi_osacks = asoc->stats.osacks;
5256 info->sctpi_opackets = asoc->stats.opackets;
5257 info->sctpi_ipackets = asoc->stats.ipackets;
5258 info->sctpi_rtxchunks = asoc->stats.rtxchunks;
5259 info->sctpi_outofseqtsns = asoc->stats.outofseqtsns;
5260 info->sctpi_idupchunks = asoc->stats.idupchunks;
5261 info->sctpi_gapcnt = asoc->stats.gapcnt;
5262 info->sctpi_ouodchunks = asoc->stats.ouodchunks;
5263 info->sctpi_iuodchunks = asoc->stats.iuodchunks;
5264 info->sctpi_oodchunks = asoc->stats.oodchunks;
5265 info->sctpi_iodchunks = asoc->stats.iodchunks;
5266 info->sctpi_octrlchunks = asoc->stats.octrlchunks;
5267 info->sctpi_ictrlchunks = asoc->stats.ictrlchunks;
5268
5269 prim = asoc->peer.primary_path;
Stefano Brivioee6c88b2017-08-23 13:27:13 +02005270 memcpy(&info->sctpi_p_address, &prim->ipaddr, sizeof(prim->ipaddr));
Xin Long52c52a62016-04-14 15:35:30 +08005271 info->sctpi_p_state = prim->state;
5272 info->sctpi_p_cwnd = prim->cwnd;
5273 info->sctpi_p_srtt = prim->srtt;
5274 info->sctpi_p_rto = jiffies_to_msecs(prim->rto);
5275 info->sctpi_p_hbinterval = prim->hbinterval;
5276 info->sctpi_p_pathmaxrxt = prim->pathmaxrxt;
5277 info->sctpi_p_sackdelay = jiffies_to_msecs(prim->sackdelay);
5278 info->sctpi_p_ssthresh = prim->ssthresh;
5279 info->sctpi_p_partial_bytes_acked = prim->partial_bytes_acked;
5280 info->sctpi_p_flight_size = prim->flight_size;
5281 info->sctpi_p_error = prim->error_count;
5282
5283 return 0;
5284}
5285EXPORT_SYMBOL_GPL(sctp_get_sctp_info);
5286
Xin Long626d16f2016-04-14 15:35:31 +08005287/* use callback to avoid exporting the core structure */
Tom Herbert97a6ec42017-12-04 10:31:41 -08005288void sctp_transport_walk_start(struct rhashtable_iter *iter)
Xin Long626d16f2016-04-14 15:35:31 +08005289{
Xin Long7fda7022016-11-15 23:23:11 +08005290 rhltable_walk_enter(&sctp_transport_hashtable, iter);
Xin Long626d16f2016-04-14 15:35:31 +08005291
Tom Herbert97a6ec42017-12-04 10:31:41 -08005292 rhashtable_walk_start(iter);
Xin Long626d16f2016-04-14 15:35:31 +08005293}
5294
5295void sctp_transport_walk_stop(struct rhashtable_iter *iter)
5296{
5297 rhashtable_walk_stop(iter);
5298 rhashtable_walk_exit(iter);
5299}
5300
5301struct sctp_transport *sctp_transport_get_next(struct net *net,
5302 struct rhashtable_iter *iter)
5303{
5304 struct sctp_transport *t;
5305
5306 t = rhashtable_walk_next(iter);
5307 for (; t; t = rhashtable_walk_next(iter)) {
5308 if (IS_ERR(t)) {
5309 if (PTR_ERR(t) == -EAGAIN)
5310 continue;
5311 break;
5312 }
5313
Xin Longbab1be72018-08-27 18:38:31 +08005314 if (!sctp_transport_hold(t))
5315 continue;
5316
Xin Long626d16f2016-04-14 15:35:31 +08005317 if (net_eq(sock_net(t->asoc->base.sk), net) &&
5318 t->asoc->peer.primary_path == t)
5319 break;
Xin Longbab1be72018-08-27 18:38:31 +08005320
5321 sctp_transport_put(t);
Xin Long626d16f2016-04-14 15:35:31 +08005322 }
5323
5324 return t;
5325}
5326
5327struct sctp_transport *sctp_transport_get_idx(struct net *net,
5328 struct rhashtable_iter *iter,
5329 int pos)
5330{
Xin Longbab1be72018-08-27 18:38:31 +08005331 struct sctp_transport *t;
Xin Long626d16f2016-04-14 15:35:31 +08005332
Xin Longbab1be72018-08-27 18:38:31 +08005333 if (!pos)
5334 return SEQ_START_TOKEN;
Xin Long626d16f2016-04-14 15:35:31 +08005335
Xin Longbab1be72018-08-27 18:38:31 +08005336 while ((t = sctp_transport_get_next(net, iter)) && !IS_ERR(t)) {
5337 if (!--pos)
5338 break;
5339 sctp_transport_put(t);
5340 }
5341
5342 return t;
Xin Long626d16f2016-04-14 15:35:31 +08005343}
5344
5345int sctp_for_each_endpoint(int (*cb)(struct sctp_endpoint *, void *),
5346 void *p) {
5347 int err = 0;
5348 int hash = 0;
5349 struct sctp_ep_common *epb;
5350 struct sctp_hashbucket *head;
5351
5352 for (head = sctp_ep_hashtable; hash < sctp_ep_hashsize;
5353 hash++, head++) {
Xin Long581409d2017-06-10 14:48:14 +08005354 read_lock_bh(&head->lock);
Xin Long626d16f2016-04-14 15:35:31 +08005355 sctp_for_each_hentry(epb, &head->chain) {
5356 err = cb(sctp_ep(epb), p);
5357 if (err)
5358 break;
5359 }
Xin Long581409d2017-06-10 14:48:14 +08005360 read_unlock_bh(&head->lock);
Xin Long626d16f2016-04-14 15:35:31 +08005361 }
5362
5363 return err;
5364}
5365EXPORT_SYMBOL_GPL(sctp_for_each_endpoint);
5366
5367int sctp_transport_lookup_process(int (*cb)(struct sctp_transport *, void *),
5368 struct net *net,
5369 const union sctp_addr *laddr,
5370 const union sctp_addr *paddr, void *p)
5371{
5372 struct sctp_transport *transport;
Xin Long08abb792016-12-15 23:05:52 +08005373 int err;
Xin Long626d16f2016-04-14 15:35:31 +08005374
5375 rcu_read_lock();
5376 transport = sctp_addrs_lookup_transport(net, laddr, paddr);
Xin Long626d16f2016-04-14 15:35:31 +08005377 rcu_read_unlock();
Xin Long08abb792016-12-15 23:05:52 +08005378 if (!transport)
5379 return -ENOENT;
5380
Xin Long1cceda782016-09-29 02:55:44 +08005381 err = cb(transport, p);
Xin Longcd26da42016-10-31 20:32:31 +08005382 sctp_transport_put(transport);
Xin Long1cceda782016-09-29 02:55:44 +08005383
Xin Long626d16f2016-04-14 15:35:31 +08005384 return err;
5385}
5386EXPORT_SYMBOL_GPL(sctp_transport_lookup_process);
5387
5388int sctp_for_each_transport(int (*cb)(struct sctp_transport *, void *),
Xin Longd25adbe2017-09-15 11:02:21 +08005389 int (*cb_done)(struct sctp_transport *, void *),
5390 struct net *net, int *pos, void *p) {
Xin Long626d16f2016-04-14 15:35:31 +08005391 struct rhashtable_iter hti;
Xin Longd25adbe2017-09-15 11:02:21 +08005392 struct sctp_transport *tsp;
5393 int ret;
Xin Long626d16f2016-04-14 15:35:31 +08005394
Xin Longd25adbe2017-09-15 11:02:21 +08005395again:
Xin Longf53d77e2018-01-23 18:22:25 +08005396 ret = 0;
Tom Herbert97a6ec42017-12-04 10:31:41 -08005397 sctp_transport_walk_start(&hti);
Xin Long626d16f2016-04-14 15:35:31 +08005398
Xin Longd25adbe2017-09-15 11:02:21 +08005399 tsp = sctp_transport_get_idx(net, &hti, *pos + 1);
5400 for (; !IS_ERR_OR_NULL(tsp); tsp = sctp_transport_get_next(net, &hti)) {
Xin Longd25adbe2017-09-15 11:02:21 +08005401 ret = cb(tsp, p);
5402 if (ret)
Xin Long626d16f2016-04-14 15:35:31 +08005403 break;
Xin Longd25adbe2017-09-15 11:02:21 +08005404 (*pos)++;
5405 sctp_transport_put(tsp);
Xin Long626d16f2016-04-14 15:35:31 +08005406 }
Xin Long626d16f2016-04-14 15:35:31 +08005407 sctp_transport_walk_stop(&hti);
Xin Long53fa1032016-04-14 15:35:35 +08005408
Xin Longd25adbe2017-09-15 11:02:21 +08005409 if (ret) {
5410 if (cb_done && !cb_done(tsp, p)) {
5411 (*pos)++;
5412 sctp_transport_put(tsp);
5413 goto again;
5414 }
5415 sctp_transport_put(tsp);
5416 }
5417
5418 return ret;
Xin Long626d16f2016-04-14 15:35:31 +08005419}
5420EXPORT_SYMBOL_GPL(sctp_for_each_transport);
5421
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422/* 7.2.1 Association Status (SCTP_STATUS)
5423
5424 * Applications can retrieve current status information about an
5425 * association, including association state, peer receiver window size,
5426 * number of unacked data chunks, and number of data chunks pending
5427 * receipt. This information is read-only.
5428 */
5429static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
5430 char __user *optval,
5431 int __user *optlen)
5432{
5433 struct sctp_status status;
5434 struct sctp_association *asoc = NULL;
5435 struct sctp_transport *transport;
5436 sctp_assoc_t associd;
5437 int retval = 0;
5438
Neil Horman408f22e2007-06-16 14:03:45 -04005439 if (len < sizeof(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440 retval = -EINVAL;
5441 goto out;
5442 }
5443
Neil Horman408f22e2007-06-16 14:03:45 -04005444 len = sizeof(status);
5445 if (copy_from_user(&status, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005446 retval = -EFAULT;
5447 goto out;
5448 }
5449
5450 associd = status.sstat_assoc_id;
5451 asoc = sctp_id2assoc(sk, associd);
5452 if (!asoc) {
5453 retval = -EINVAL;
5454 goto out;
5455 }
5456
5457 transport = asoc->peer.primary_path;
5458
5459 status.sstat_assoc_id = sctp_assoc2id(asoc);
Daniel Borkmann38ab1fa2014-08-28 15:28:26 +02005460 status.sstat_state = sctp_assoc_to_state(asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005461 status.sstat_rwnd = asoc->peer.rwnd;
5462 status.sstat_unackdata = asoc->unack_data;
5463
5464 status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
Xin Longcee360a2017-05-31 16:36:31 +08005465 status.sstat_instrms = asoc->stream.incnt;
5466 status.sstat_outstrms = asoc->stream.outcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467 status.sstat_fragmentation_point = asoc->frag_point;
5468 status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Al Viro8cec6b82006-11-20 17:23:01 -08005469 memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
5470 transport->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471 /* Map ipv4 address into v4-mapped-on-v6 address. */
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005472 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473 (union sctp_addr *)&status.sstat_primary.spinfo_address);
Frank Filz3f7a87d2005-06-20 13:14:57 -07005474 status.sstat_primary.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475 status.sstat_primary.spinfo_cwnd = transport->cwnd;
5476 status.sstat_primary.spinfo_srtt = transport->srtt;
5477 status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005478 status.sstat_primary.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005479
Frank Filz3f7a87d2005-06-20 13:14:57 -07005480 if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
5481 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
5482
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483 if (put_user(len, optlen)) {
5484 retval = -EFAULT;
5485 goto out;
5486 }
5487
Daniel Borkmannbb333812013-06-28 19:49:40 +02005488 pr_debug("%s: len:%d, state:%d, rwnd:%d, assoc_id:%d\n",
5489 __func__, len, status.sstat_state, status.sstat_rwnd,
5490 status.sstat_assoc_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491
5492 if (copy_to_user(optval, &status, len)) {
5493 retval = -EFAULT;
5494 goto out;
5495 }
5496
5497out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00005498 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499}
5500
5501
5502/* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
5503 *
5504 * Applications can retrieve information about a specific peer address
5505 * of an association, including its reachability state, congestion
5506 * window, and retransmission timer values. This information is
5507 * read-only.
5508 */
5509static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
5510 char __user *optval,
5511 int __user *optlen)
5512{
5513 struct sctp_paddrinfo pinfo;
5514 struct sctp_transport *transport;
5515 int retval = 0;
5516
Neil Horman408f22e2007-06-16 14:03:45 -04005517 if (len < sizeof(pinfo)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005518 retval = -EINVAL;
5519 goto out;
5520 }
5521
Neil Horman408f22e2007-06-16 14:03:45 -04005522 len = sizeof(pinfo);
5523 if (copy_from_user(&pinfo, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005524 retval = -EFAULT;
5525 goto out;
5526 }
5527
5528 transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
5529 pinfo.spinfo_assoc_id);
5530 if (!transport)
5531 return -EINVAL;
5532
5533 pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07005534 pinfo.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535 pinfo.spinfo_cwnd = transport->cwnd;
5536 pinfo.spinfo_srtt = transport->srtt;
5537 pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005538 pinfo.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539
Frank Filz3f7a87d2005-06-20 13:14:57 -07005540 if (pinfo.spinfo_state == SCTP_UNKNOWN)
5541 pinfo.spinfo_state = SCTP_ACTIVE;
5542
Linus Torvalds1da177e2005-04-16 15:20:36 -07005543 if (put_user(len, optlen)) {
5544 retval = -EFAULT;
5545 goto out;
5546 }
5547
5548 if (copy_to_user(optval, &pinfo, len)) {
5549 retval = -EFAULT;
5550 goto out;
5551 }
5552
5553out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00005554 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005555}
5556
5557/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
5558 *
5559 * This option is a on/off flag. If enabled no SCTP message
5560 * fragmentation will be performed. Instead if a message being sent
5561 * exceeds the current PMTU size, the message will NOT be sent and
5562 * instead a error will be indicated to the user.
5563 */
5564static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
5565 char __user *optval, int __user *optlen)
5566{
5567 int val;
5568
5569 if (len < sizeof(int))
5570 return -EINVAL;
5571
5572 len = sizeof(int);
5573 val = (sctp_sk(sk)->disable_fragments == 1);
5574 if (put_user(len, optlen))
5575 return -EFAULT;
5576 if (copy_to_user(optval, &val, len))
5577 return -EFAULT;
5578 return 0;
5579}
5580
5581/* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
5582 *
5583 * This socket option is used to specify various notifications and
5584 * ancillary data the user wishes to receive.
5585 */
5586static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
5587 int __user *optlen)
5588{
Xin Long2cc0eeb2018-11-18 16:08:51 +08005589 struct sctp_event_subscribe subscribe;
5590 __u8 *sn_type = (__u8 *)&subscribe;
5591 int i;
5592
Jiri Slabya4b8e712016-10-21 14:13:24 +02005593 if (len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594 return -EINVAL;
Thomas Grafacdd5982012-04-03 22:17:53 +00005595 if (len > sizeof(struct sctp_event_subscribe))
5596 len = sizeof(struct sctp_event_subscribe);
Neil Horman408f22e2007-06-16 14:03:45 -04005597 if (put_user(len, optlen))
5598 return -EFAULT;
Xin Long2cc0eeb2018-11-18 16:08:51 +08005599
5600 for (i = 0; i < len; i++)
5601 sn_type[i] = sctp_ulpevent_type_enabled(sctp_sk(sk)->subscribe,
5602 SCTP_SN_TYPE_BASE + i);
5603
5604 if (copy_to_user(optval, &subscribe, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605 return -EFAULT;
Xin Long2cc0eeb2018-11-18 16:08:51 +08005606
Linus Torvalds1da177e2005-04-16 15:20:36 -07005607 return 0;
5608}
5609
5610/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
5611 *
5612 * This socket option is applicable to the UDP-style socket only. When
5613 * set it will cause associations that are idle for more than the
5614 * specified number of seconds to automatically close. An association
5615 * being idle is defined an association that has NOT sent or received
5616 * user data. The special value of '0' indicates that no automatic
5617 * close of any associations should be performed. The option expects an
5618 * integer defining the number of seconds of idle time before an
5619 * association is closed.
5620 */
5621static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
5622{
5623 /* Applicable to UDP-style socket only */
5624 if (sctp_style(sk, TCP))
5625 return -EOPNOTSUPP;
Neil Horman408f22e2007-06-16 14:03:45 -04005626 if (len < sizeof(int))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005628 len = sizeof(int);
5629 if (put_user(len, optlen))
5630 return -EFAULT;
David Windsorb2ce04c2017-06-10 22:50:43 -04005631 if (put_user(sctp_sk(sk)->autoclose, (int __user *)optval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005632 return -EFAULT;
5633 return 0;
5634}
5635
5636/* Helper routine to branch off an association to a new socket. */
Benjamin Poirier0343c552012-03-08 05:55:58 +00005637int sctp_do_peeloff(struct sock *sk, sctp_assoc_t id, struct socket **sockp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005638{
Benjamin Poirier0343c552012-03-08 05:55:58 +00005639 struct sctp_association *asoc = sctp_id2assoc(sk, id);
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005640 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005641 struct socket *sock;
5642 int err = 0;
5643
Xin Longdf80cd92017-10-17 23:26:10 +08005644 /* Do not peel off from one netns to another one. */
5645 if (!net_eq(current->nsproxy->net_ns, sock_net(sk)))
5646 return -EINVAL;
5647
Benjamin Poirier0343c552012-03-08 05:55:58 +00005648 if (!asoc)
5649 return -EINVAL;
5650
Linus Torvalds1da177e2005-04-16 15:20:36 -07005651 /* An association cannot be branched off from an already peeled-off
5652 * socket, nor is this supported for tcp style sockets.
5653 */
5654 if (!sctp_style(sk, UDP))
5655 return -EINVAL;
5656
5657 /* Create a new socket. */
5658 err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
5659 if (err < 0)
5660 return err;
5661
Vlad Yasevich914e1c82009-02-13 08:33:44 +00005662 sctp_copy_sock(sock->sk, sk, asoc);
Vlad Yasevich4f444302006-10-30 18:54:32 -08005663
5664 /* Make peeled-off sockets more like 1-1 accepted sockets.
Richard Hainesb7e10c22018-02-24 16:18:51 +00005665 * Set the daddr and initialize id to something more random and also
5666 * copy over any ip options.
Vlad Yasevich4f444302006-10-30 18:54:32 -08005667 */
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005668 sp->pf->to_sk_daddr(&asoc->peer.primary_addr, sk);
Richard Hainesb7e10c22018-02-24 16:18:51 +00005669 sp->pf->copy_ip_options(sk, sock->sk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00005670
5671 /* Populate the fields of the newsk from the oldsk and migrate the
5672 * asoc to the newsk.
5673 */
Xin Long89664c622019-03-03 17:54:53 +08005674 err = sctp_sock_migrate(sk, sock->sk, asoc,
5675 SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
5676 if (err) {
5677 sock_release(sock);
5678 sock = NULL;
5679 }
Vlad Yasevich4f444302006-10-30 18:54:32 -08005680
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681 *sockp = sock;
5682
5683 return err;
5684}
Benjamin Poirier0343c552012-03-08 05:55:58 +00005685EXPORT_SYMBOL(sctp_do_peeloff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005686
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005687static int sctp_getsockopt_peeloff_common(struct sock *sk, sctp_peeloff_arg_t *peeloff,
5688 struct file **newfile, unsigned flags)
5689{
5690 struct socket *newsock;
5691 int retval;
5692
5693 retval = sctp_do_peeloff(sk, peeloff->associd, &newsock);
5694 if (retval < 0)
5695 goto out;
5696
5697 /* Map the socket to an unused fd that can be returned to the user. */
5698 retval = get_unused_fd_flags(flags & SOCK_CLOEXEC);
5699 if (retval < 0) {
5700 sock_release(newsock);
5701 goto out;
5702 }
5703
5704 *newfile = sock_alloc_file(newsock, 0, NULL);
5705 if (IS_ERR(*newfile)) {
5706 put_unused_fd(retval);
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005707 retval = PTR_ERR(*newfile);
5708 *newfile = NULL;
5709 return retval;
5710 }
5711
5712 pr_debug("%s: sk:%p, newsk:%p, sd:%d\n", __func__, sk, newsock->sk,
5713 retval);
5714
5715 peeloff->sd = retval;
5716
5717 if (flags & SOCK_NONBLOCK)
5718 (*newfile)->f_flags |= O_NONBLOCK;
5719out:
5720 return retval;
5721}
5722
Linus Torvalds1da177e2005-04-16 15:20:36 -07005723static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
5724{
5725 sctp_peeloff_arg_t peeloff;
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005726 struct file *newfile = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005727 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005728
Neil Horman408f22e2007-06-16 14:03:45 -04005729 if (len < sizeof(sctp_peeloff_arg_t))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005731 len = sizeof(sctp_peeloff_arg_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732 if (copy_from_user(&peeloff, optval, len))
5733 return -EFAULT;
5734
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005735 retval = sctp_getsockopt_peeloff_common(sk, &peeloff, &newfile, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736 if (retval < 0)
5737 goto out;
5738
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739 /* Return the fd mapped to the new socket. */
Al Viro56b31d12012-08-18 00:25:51 -04005740 if (put_user(len, optlen)) {
5741 fput(newfile);
5742 put_unused_fd(retval);
Neil Horman408f22e2007-06-16 14:03:45 -04005743 return -EFAULT;
Al Viro56b31d12012-08-18 00:25:51 -04005744 }
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005745
5746 if (copy_to_user(optval, &peeloff, len)) {
5747 fput(newfile);
5748 put_unused_fd(retval);
5749 return -EFAULT;
5750 }
5751 fd_install(retval, newfile);
5752out:
5753 return retval;
5754}
5755
5756static int sctp_getsockopt_peeloff_flags(struct sock *sk, int len,
5757 char __user *optval, int __user *optlen)
5758{
5759 sctp_peeloff_flags_arg_t peeloff;
5760 struct file *newfile = NULL;
5761 int retval = 0;
5762
5763 if (len < sizeof(sctp_peeloff_flags_arg_t))
5764 return -EINVAL;
5765 len = sizeof(sctp_peeloff_flags_arg_t);
5766 if (copy_from_user(&peeloff, optval, len))
5767 return -EFAULT;
5768
5769 retval = sctp_getsockopt_peeloff_common(sk, &peeloff.p_arg,
5770 &newfile, peeloff.flags);
5771 if (retval < 0)
5772 goto out;
5773
5774 /* Return the fd mapped to the new socket. */
5775 if (put_user(len, optlen)) {
5776 fput(newfile);
5777 put_unused_fd(retval);
5778 return -EFAULT;
5779 }
5780
Al Viro56b31d12012-08-18 00:25:51 -04005781 if (copy_to_user(optval, &peeloff, len)) {
5782 fput(newfile);
5783 put_unused_fd(retval);
5784 return -EFAULT;
5785 }
5786 fd_install(retval, newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005787out:
5788 return retval;
5789}
5790
5791/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
5792 *
5793 * Applications can enable or disable heartbeats for any peer address of
5794 * an association, modify an address's heartbeat interval, force a
5795 * heartbeat to be sent immediately, and adjust the address's maximum
5796 * number of retransmissions sent before an address is considered
5797 * unreachable. The following structure is used to access and modify an
5798 * address's parameters:
5799 *
5800 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08005801 * sctp_assoc_t spp_assoc_id;
5802 * struct sockaddr_storage spp_address;
5803 * uint32_t spp_hbinterval;
5804 * uint16_t spp_pathmaxrxt;
5805 * uint32_t spp_pathmtu;
5806 * uint32_t spp_sackdelay;
5807 * uint32_t spp_flags;
5808 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07005809 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08005810 * spp_assoc_id - (one-to-many style socket) This is filled in the
5811 * application, and identifies the association for
5812 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813 * spp_address - This specifies which address is of interest.
5814 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08005815 * in milliseconds. If a value of zero
5816 * is present in this field then no changes are to
5817 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818 * spp_pathmaxrxt - This contains the maximum number of
5819 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08005820 * considered unreachable. If a value of zero
5821 * is present in this field then no changes are to
5822 * be made to this parameter.
5823 * spp_pathmtu - When Path MTU discovery is disabled the value
5824 * specified here will be the "fixed" path mtu.
5825 * Note that if the spp_address field is empty
5826 * then all associations on this address will
5827 * have this fixed path mtu set upon them.
5828 *
5829 * spp_sackdelay - When delayed sack is enabled, this value specifies
5830 * the number of milliseconds that sacks will be delayed
5831 * for. This value will apply to all addresses of an
5832 * association if the spp_address field is empty. Note
5833 * also, that if delayed sack is enabled and this
5834 * value is set to 0, no change is made to the last
5835 * recorded delayed sack timer value.
5836 *
5837 * spp_flags - These flags are used to control various features
5838 * on an association. The flag field may contain
5839 * zero or more of the following options.
5840 *
5841 * SPP_HB_ENABLE - Enable heartbeats on the
5842 * specified address. Note that if the address
5843 * field is empty all addresses for the association
5844 * have heartbeats enabled upon them.
5845 *
5846 * SPP_HB_DISABLE - Disable heartbeats on the
5847 * speicifed address. Note that if the address
5848 * field is empty all addresses for the association
5849 * will have their heartbeats disabled. Note also
5850 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
5851 * mutually exclusive, only one of these two should
5852 * be specified. Enabling both fields will have
5853 * undetermined results.
5854 *
5855 * SPP_HB_DEMAND - Request a user initiated heartbeat
5856 * to be made immediately.
5857 *
5858 * SPP_PMTUD_ENABLE - This field will enable PMTU
5859 * discovery upon the specified address. Note that
5860 * if the address feild is empty then all addresses
5861 * on the association are effected.
5862 *
5863 * SPP_PMTUD_DISABLE - This field will disable PMTU
5864 * discovery upon the specified address. Note that
5865 * if the address feild is empty then all addresses
5866 * on the association are effected. Not also that
5867 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
5868 * exclusive. Enabling both will have undetermined
5869 * results.
5870 *
5871 * SPP_SACKDELAY_ENABLE - Setting this flag turns
5872 * on delayed sack. The time specified in spp_sackdelay
5873 * is used to specify the sack delay for this address. Note
5874 * that if spp_address is empty then all addresses will
5875 * enable delayed sack and take on the sack delay
5876 * value specified in spp_sackdelay.
5877 * SPP_SACKDELAY_DISABLE - Setting this flag turns
5878 * off delayed sack. If the spp_address field is blank then
5879 * delayed sack is disabled for the entire association. Note
5880 * also that this field is mutually exclusive to
5881 * SPP_SACKDELAY_ENABLE, setting both will have undefined
5882 * results.
Xin Long0b0dce72018-07-02 18:21:13 +08005883 *
5884 * SPP_IPV6_FLOWLABEL: Setting this flag enables the
5885 * setting of the IPV6 flow label value. The value is
5886 * contained in the spp_ipv6_flowlabel field.
5887 * Upon retrieval, this flag will be set to indicate that
5888 * the spp_ipv6_flowlabel field has a valid value returned.
5889 * If a specific destination address is set (in the
5890 * spp_address field), then the value returned is that of
5891 * the address. If just an association is specified (and
5892 * no address), then the association's default flow label
5893 * is returned. If neither an association nor a destination
5894 * is specified, then the socket's default flow label is
5895 * returned. For non-IPv6 sockets, this flag will be left
5896 * cleared.
5897 *
5898 * SPP_DSCP: Setting this flag enables the setting of the
5899 * Differentiated Services Code Point (DSCP) value
5900 * associated with either the association or a specific
5901 * address. The value is obtained in the spp_dscp field.
5902 * Upon retrieval, this flag will be set to indicate that
5903 * the spp_dscp field has a valid value returned. If a
5904 * specific destination address is set when called (in the
5905 * spp_address field), then that specific destination
5906 * address's DSCP value is returned. If just an association
5907 * is specified, then the association's default DSCP is
5908 * returned. If neither an association nor a destination is
5909 * specified, then the socket's default DSCP is returned.
5910 *
5911 * spp_ipv6_flowlabel
5912 * - This field is used in conjunction with the
5913 * SPP_IPV6_FLOWLABEL flag and contains the IPv6 flow label.
5914 * The 20 least significant bits are used for the flow
5915 * label. This setting has precedence over any IPv6-layer
5916 * setting.
5917 *
5918 * spp_dscp - This field is used in conjunction with the SPP_DSCP flag
5919 * and contains the DSCP. The 6 most significant bits are
5920 * used for the DSCP. This setting has precedence over any
5921 * IPv4- or IPv6- layer setting.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005922 */
5923static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
Frank Filz52ccb8e2005-12-22 11:36:46 -08005924 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005925{
Frank Filz52ccb8e2005-12-22 11:36:46 -08005926 struct sctp_paddrparams params;
5927 struct sctp_transport *trans = NULL;
5928 struct sctp_association *asoc = NULL;
5929 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005930
Xin Long0b0dce72018-07-02 18:21:13 +08005931 if (len >= sizeof(params))
5932 len = sizeof(params);
5933 else if (len >= ALIGN(offsetof(struct sctp_paddrparams,
5934 spp_ipv6_flowlabel), 4))
5935 len = ALIGN(offsetof(struct sctp_paddrparams,
5936 spp_ipv6_flowlabel), 4);
5937 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938 return -EINVAL;
Xin Long0b0dce72018-07-02 18:21:13 +08005939
Linus Torvalds1da177e2005-04-16 15:20:36 -07005940 if (copy_from_user(&params, optval, len))
5941 return -EFAULT;
5942
Frank Filz52ccb8e2005-12-22 11:36:46 -08005943 /* If an address other than INADDR_ANY is specified, and
5944 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945 */
wangweidongcb3f8372013-12-23 12:16:50 +08005946 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08005947 trans = sctp_addr_id2transport(sk, &params.spp_address,
5948 params.spp_assoc_id);
5949 if (!trans) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02005950 pr_debug("%s: failed no transport\n", __func__);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005951 return -EINVAL;
5952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953 }
5954
Xin Longb99e5e02019-01-28 15:08:24 +08005955 /* Get association, if assoc_id != SCTP_FUTURE_ASSOC and the
5956 * socket is a one to many style socket, and an association
5957 * was not found, then the id was invalid.
Frank Filz52ccb8e2005-12-22 11:36:46 -08005958 */
5959 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
Xin Longb99e5e02019-01-28 15:08:24 +08005960 if (!asoc && params.spp_assoc_id != SCTP_FUTURE_ASSOC &&
5961 sctp_style(sk, UDP)) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02005962 pr_debug("%s: failed no association\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08005964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965
Frank Filz52ccb8e2005-12-22 11:36:46 -08005966 if (trans) {
5967 /* Fetch transport values. */
5968 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
5969 params.spp_pathmtu = trans->pathmtu;
5970 params.spp_pathmaxrxt = trans->pathmaxrxt;
5971 params.spp_sackdelay = jiffies_to_msecs(trans->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972
Frank Filz52ccb8e2005-12-22 11:36:46 -08005973 /*draft-11 doesn't say what to return in spp_flags*/
5974 params.spp_flags = trans->param_flags;
Xin Long0b0dce72018-07-02 18:21:13 +08005975 if (trans->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5976 params.spp_ipv6_flowlabel = trans->flowlabel &
5977 SCTP_FLOWLABEL_VAL_MASK;
5978 params.spp_flags |= SPP_IPV6_FLOWLABEL;
5979 }
5980 if (trans->dscp & SCTP_DSCP_SET_MASK) {
5981 params.spp_dscp = trans->dscp & SCTP_DSCP_VAL_MASK;
5982 params.spp_flags |= SPP_DSCP;
5983 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08005984 } else if (asoc) {
5985 /* Fetch association values. */
5986 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
5987 params.spp_pathmtu = asoc->pathmtu;
5988 params.spp_pathmaxrxt = asoc->pathmaxrxt;
5989 params.spp_sackdelay = jiffies_to_msecs(asoc->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990
Frank Filz52ccb8e2005-12-22 11:36:46 -08005991 /*draft-11 doesn't say what to return in spp_flags*/
5992 params.spp_flags = asoc->param_flags;
Xin Long0b0dce72018-07-02 18:21:13 +08005993 if (asoc->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5994 params.spp_ipv6_flowlabel = asoc->flowlabel &
5995 SCTP_FLOWLABEL_VAL_MASK;
5996 params.spp_flags |= SPP_IPV6_FLOWLABEL;
5997 }
5998 if (asoc->dscp & SCTP_DSCP_SET_MASK) {
5999 params.spp_dscp = asoc->dscp & SCTP_DSCP_VAL_MASK;
6000 params.spp_flags |= SPP_DSCP;
6001 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08006002 } else {
6003 /* Fetch socket values. */
6004 params.spp_hbinterval = sp->hbinterval;
6005 params.spp_pathmtu = sp->pathmtu;
6006 params.spp_sackdelay = sp->sackdelay;
6007 params.spp_pathmaxrxt = sp->pathmaxrxt;
6008
6009 /*draft-11 doesn't say what to return in spp_flags*/
6010 params.spp_flags = sp->param_flags;
Xin Long0b0dce72018-07-02 18:21:13 +08006011 if (sp->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
6012 params.spp_ipv6_flowlabel = sp->flowlabel &
6013 SCTP_FLOWLABEL_VAL_MASK;
6014 params.spp_flags |= SPP_IPV6_FLOWLABEL;
6015 }
6016 if (sp->dscp & SCTP_DSCP_SET_MASK) {
6017 params.spp_dscp = sp->dscp & SCTP_DSCP_VAL_MASK;
6018 params.spp_flags |= SPP_DSCP;
6019 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08006020 }
6021
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022 if (copy_to_user(optval, &params, len))
6023 return -EFAULT;
6024
6025 if (put_user(len, optlen))
6026 return -EFAULT;
6027
6028 return 0;
6029}
6030
Wei Yongjund364d922008-05-09 15:13:26 -07006031/*
6032 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08006033 *
Wei Yongjund364d922008-05-09 15:13:26 -07006034 * This option will effect the way delayed acks are performed. This
6035 * option allows you to get or set the delayed ack time, in
6036 * milliseconds. It also allows changing the delayed ack frequency.
6037 * Changing the frequency to 1 disables the delayed sack algorithm. If
6038 * the assoc_id is 0, then this sets or gets the endpoints default
6039 * values. If the assoc_id field is non-zero, then the set or get
6040 * effects the specified association for the one to many model (the
6041 * assoc_id field is ignored by the one to one model). Note that if
6042 * sack_delay or sack_freq are 0 when setting this option, then the
6043 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08006044 *
Wei Yongjund364d922008-05-09 15:13:26 -07006045 * struct sctp_sack_info {
6046 * sctp_assoc_t sack_assoc_id;
6047 * uint32_t sack_delay;
6048 * uint32_t sack_freq;
6049 * };
Frank Filz77086102005-12-22 11:37:30 -08006050 *
Wei Yongjund364d922008-05-09 15:13:26 -07006051 * sack_assoc_id - This parameter, indicates which association the user
6052 * is performing an action upon. Note that if this field's value is
6053 * zero then the endpoints default value is changed (effecting future
6054 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08006055 *
Wei Yongjund364d922008-05-09 15:13:26 -07006056 * sack_delay - This parameter contains the number of milliseconds that
6057 * the user is requesting the delayed ACK timer be set to. Note that
6058 * this value is defined in the standard to be between 200 and 500
6059 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08006060 *
Wei Yongjund364d922008-05-09 15:13:26 -07006061 * sack_freq - This parameter contains the number of packets that must
6062 * be received before a sack is sent without waiting for the delay
6063 * timer to expire. The default value for this is 2, setting this
6064 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08006065 */
Wei Yongjund364d922008-05-09 15:13:26 -07006066static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
Frank Filz77086102005-12-22 11:37:30 -08006067 char __user *optval,
6068 int __user *optlen)
6069{
Wei Yongjund364d922008-05-09 15:13:26 -07006070 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08006071 struct sctp_association *asoc = NULL;
6072 struct sctp_sock *sp = sctp_sk(sk);
6073
Wei Yongjund364d922008-05-09 15:13:26 -07006074 if (len >= sizeof(struct sctp_sack_info)) {
6075 len = sizeof(struct sctp_sack_info);
6076
6077 if (copy_from_user(&params, optval, len))
6078 return -EFAULT;
6079 } else if (len == sizeof(struct sctp_assoc_value)) {
Neil Horman94f65192013-12-23 08:29:43 -05006080 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05006081 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05006082 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05006083 "Use struct sctp_sack_info instead\n",
6084 current->comm, task_pid_nr(current));
Wei Yongjund364d922008-05-09 15:13:26 -07006085 if (copy_from_user(&params, optval, len))
6086 return -EFAULT;
6087 } else
wangweidongcb3f8372013-12-23 12:16:50 +08006088 return -EINVAL;
Frank Filz77086102005-12-22 11:37:30 -08006089
Xin Long9c5829e2019-01-28 15:08:34 +08006090 /* Get association, if sack_assoc_id != SCTP_FUTURE_ASSOC and the
6091 * socket is a one to many style socket, and an association
6092 * was not found, then the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09006093 */
Wei Yongjund364d922008-05-09 15:13:26 -07006094 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
Xin Long9c5829e2019-01-28 15:08:34 +08006095 if (!asoc && params.sack_assoc_id != SCTP_FUTURE_ASSOC &&
6096 sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08006097 return -EINVAL;
6098
6099 if (asoc) {
6100 /* Fetch association values. */
Wei Yongjund364d922008-05-09 15:13:26 -07006101 if (asoc->param_flags & SPP_SACKDELAY_ENABLE) {
Xin Long9c5829e2019-01-28 15:08:34 +08006102 params.sack_delay = jiffies_to_msecs(asoc->sackdelay);
Wei Yongjund364d922008-05-09 15:13:26 -07006103 params.sack_freq = asoc->sackfreq;
6104
6105 } else {
6106 params.sack_delay = 0;
6107 params.sack_freq = 1;
6108 }
Frank Filz77086102005-12-22 11:37:30 -08006109 } else {
6110 /* Fetch socket values. */
Wei Yongjund364d922008-05-09 15:13:26 -07006111 if (sp->param_flags & SPP_SACKDELAY_ENABLE) {
6112 params.sack_delay = sp->sackdelay;
6113 params.sack_freq = sp->sackfreq;
6114 } else {
6115 params.sack_delay = 0;
6116 params.sack_freq = 1;
6117 }
Frank Filz77086102005-12-22 11:37:30 -08006118 }
6119
6120 if (copy_to_user(optval, &params, len))
6121 return -EFAULT;
6122
6123 if (put_user(len, optlen))
6124 return -EFAULT;
6125
6126 return 0;
6127}
6128
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
6130 *
6131 * Applications can specify protocol parameters for the default association
6132 * initialization. The option name argument to setsockopt() and getsockopt()
6133 * is SCTP_INITMSG.
6134 *
6135 * Setting initialization parameters is effective only on an unconnected
6136 * socket (for UDP-style sockets only future associations are effected
6137 * by the change). With TCP-style sockets, this option is inherited by
6138 * sockets derived from a listener socket.
6139 */
6140static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
6141{
Neil Horman408f22e2007-06-16 14:03:45 -04006142 if (len < sizeof(struct sctp_initmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006143 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04006144 len = sizeof(struct sctp_initmsg);
6145 if (put_user(len, optlen))
6146 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006147 if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
6148 return -EFAULT;
6149 return 0;
6150}
6151
Linus Torvalds1da177e2005-04-16 15:20:36 -07006152
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006153static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
6154 char __user *optval, int __user *optlen)
6155{
6156 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006157 int cnt = 0;
6158 struct sctp_getaddrs getaddrs;
6159 struct sctp_transport *from;
6160 void __user *to;
6161 union sctp_addr temp;
6162 struct sctp_sock *sp = sctp_sk(sk);
6163 int addrlen;
6164 size_t space_left;
6165 int bytes_copied;
6166
6167 if (len < sizeof(struct sctp_getaddrs))
6168 return -EINVAL;
6169
6170 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
6171 return -EFAULT;
6172
6173 /* For UDP-style sockets, id specifies the association to query. */
6174 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
6175 if (!asoc)
6176 return -EINVAL;
6177
wangweidongcb3f8372013-12-23 12:16:50 +08006178 to = optval + offsetof(struct sctp_getaddrs, addrs);
6179 space_left = len - offsetof(struct sctp_getaddrs, addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006180
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07006181 list_for_each_entry(from, &asoc->peer.transport_addr_list,
6182 transports) {
Al Virob3f5b3b2006-11-20 17:22:43 -08006183 memcpy(&temp, &from->ipaddr, sizeof(temp));
Jason Gunthorpe299ee122014-07-30 12:40:53 -06006184 addrlen = sctp_get_pf_specific(sk->sk_family)
6185 ->addr_to_user(sp, &temp);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006186 if (space_left < addrlen)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006187 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006188 if (copy_to_user(to, &temp, addrlen))
6189 return -EFAULT;
6190 to += addrlen;
6191 cnt++;
6192 space_left -= addrlen;
6193 }
6194
6195 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
6196 return -EFAULT;
6197 bytes_copied = ((char __user *)to) - optval;
6198 if (put_user(bytes_copied, optlen))
6199 return -EFAULT;
6200
6201 return 0;
6202}
6203
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006204static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to,
6205 size_t space_left, int *bytes_copied)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006206{
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006207 struct sctp_sockaddr_entry *addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006208 union sctp_addr temp;
6209 int cnt = 0;
6210 int addrlen;
Eric W. Biederman4db67e82012-08-06 08:42:04 +00006211 struct net *net = sock_net(sk);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006212
Vlad Yasevich29303542007-09-16 16:02:12 -07006213 rcu_read_lock();
Eric W. Biederman4db67e82012-08-06 08:42:04 +00006214 list_for_each_entry_rcu(addr, &net->sctp.local_addr_list, list) {
Vlad Yasevich29303542007-09-16 16:02:12 -07006215 if (!addr->valid)
6216 continue;
6217
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09006218 if ((PF_INET == sk->sk_family) &&
Al Viro6244be42006-11-20 17:21:44 -08006219 (AF_INET6 == addr->a.sa.sa_family))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006220 continue;
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07006221 if ((PF_INET6 == sk->sk_family) &&
6222 inet_v6_ipv6only(sk) &&
6223 (AF_INET == addr->a.sa.sa_family))
6224 continue;
Al Viro6244be42006-11-20 17:21:44 -08006225 memcpy(&temp, &addr->a, sizeof(temp));
Vlad Yasevichb46ae362008-01-28 14:25:36 -05006226 if (!temp.v4.sin_port)
6227 temp.v4.sin_port = htons(port);
6228
Jason Gunthorpe299ee122014-07-30 12:40:53 -06006229 addrlen = sctp_get_pf_specific(sk->sk_family)
6230 ->addr_to_user(sctp_sk(sk), &temp);
6231
Vlad Yasevich29303542007-09-16 16:02:12 -07006232 if (space_left < addrlen) {
6233 cnt = -ENOMEM;
6234 break;
6235 }
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006236 memcpy(to, &temp, addrlen);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08006237
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006238 to += addrlen;
wangweidongcb3f8372013-12-23 12:16:50 +08006239 cnt++;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006240 space_left -= addrlen;
Vlad Yasevich3663c302007-07-03 12:43:12 -04006241 *bytes_copied += addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006242 }
Vlad Yasevich29303542007-09-16 16:02:12 -07006243 rcu_read_unlock();
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006244
6245 return cnt;
6246}
6247
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006249static int sctp_getsockopt_local_addrs(struct sock *sk, int len,
6250 char __user *optval, int __user *optlen)
6251{
6252 struct sctp_bind_addr *bp;
6253 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006254 int cnt = 0;
6255 struct sctp_getaddrs getaddrs;
6256 struct sctp_sockaddr_entry *addr;
6257 void __user *to;
6258 union sctp_addr temp;
6259 struct sctp_sock *sp = sctp_sk(sk);
6260 int addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006261 int err = 0;
6262 size_t space_left;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006263 int bytes_copied = 0;
6264 void *addrs;
Vlad Yasevich70b57b82007-05-09 13:51:31 -07006265 void *buf;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006266
Neil Horman408f22e2007-06-16 14:03:45 -04006267 if (len < sizeof(struct sctp_getaddrs))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006268 return -EINVAL;
6269
6270 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
6271 return -EFAULT;
6272
6273 /*
6274 * For UDP-style sockets, id specifies the association to query.
6275 * If the id field is set to the value '0' then the locally bound
6276 * addresses are returned without regard to any particular
6277 * association.
6278 */
6279 if (0 == getaddrs.assoc_id) {
6280 bp = &sctp_sk(sk)->ep->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006281 } else {
6282 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
6283 if (!asoc)
6284 return -EINVAL;
6285 bp = &asoc->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006286 }
6287
wangweidongcb3f8372013-12-23 12:16:50 +08006288 to = optval + offsetof(struct sctp_getaddrs, addrs);
6289 space_left = len - offsetof(struct sctp_getaddrs, addrs);
Neil Horman186e2342007-06-18 19:59:16 -04006290
Marcelo Ricardo Leitnercacc0622015-11-30 14:32:54 -02006291 addrs = kmalloc(space_left, GFP_USER | __GFP_NOWARN);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006292 if (!addrs)
6293 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006294
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006295 /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
6296 * addresses from the global local address list.
6297 */
6298 if (sctp_list_single_entry(&bp->address_list)) {
6299 addr = list_entry(bp->address_list.next,
6300 struct sctp_sockaddr_entry, list);
Vlad Yasevich52cae8f2008-08-18 10:34:34 -04006301 if (sctp_is_any(sk, &addr->a)) {
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006302 cnt = sctp_copy_laddrs(sk, bp->port, addrs,
6303 space_left, &bytes_copied);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006304 if (cnt < 0) {
6305 err = cnt;
Vlad Yasevich559cf712007-09-16 16:03:28 -07006306 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006307 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09006308 goto copy_getaddrs;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006309 }
6310 }
6311
Vlad Yasevich70b57b82007-05-09 13:51:31 -07006312 buf = addrs;
Vlad Yasevich559cf712007-09-16 16:03:28 -07006313 /* Protection on the bound address list is not needed since
6314 * in the socket option context we hold a socket lock and
6315 * thus the bound address list can't change.
6316 */
6317 list_for_each_entry(addr, &bp->address_list, list) {
Al Viro6244be42006-11-20 17:21:44 -08006318 memcpy(&temp, &addr->a, sizeof(temp));
Jason Gunthorpe299ee122014-07-30 12:40:53 -06006319 addrlen = sctp_get_pf_specific(sk->sk_family)
6320 ->addr_to_user(sp, &temp);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006321 if (space_left < addrlen) {
6322 err = -ENOMEM; /*fixme: right error?*/
Vlad Yasevich559cf712007-09-16 16:03:28 -07006323 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006324 }
Vlad Yasevich70b57b82007-05-09 13:51:31 -07006325 memcpy(buf, &temp, addrlen);
6326 buf += addrlen;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006327 bytes_copied += addrlen;
wangweidongcb3f8372013-12-23 12:16:50 +08006328 cnt++;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006329 space_left -= addrlen;
6330 }
6331
6332copy_getaddrs:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006333 if (copy_to_user(to, addrs, bytes_copied)) {
6334 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02006335 goto out;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006336 }
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04006337 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num)) {
6338 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02006339 goto out;
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04006340 }
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006341 /* XXX: We should have accounted for sizeof(struct sctp_getaddrs) too,
6342 * but we can't change it anymore.
6343 */
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006344 if (put_user(bytes_copied, optlen))
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04006345 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02006346out:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07006347 kfree(addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07006348 return err;
6349}
6350
Linus Torvalds1da177e2005-04-16 15:20:36 -07006351/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
6352 *
6353 * Requests that the local SCTP stack use the enclosed peer address as
6354 * the association primary. The enclosed address must be one of the
6355 * association peer's addresses.
6356 */
6357static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
6358 char __user *optval, int __user *optlen)
6359{
6360 struct sctp_prim prim;
6361 struct sctp_association *asoc;
6362 struct sctp_sock *sp = sctp_sk(sk);
6363
Neil Horman408f22e2007-06-16 14:03:45 -04006364 if (len < sizeof(struct sctp_prim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365 return -EINVAL;
6366
Neil Horman408f22e2007-06-16 14:03:45 -04006367 len = sizeof(struct sctp_prim);
6368
6369 if (copy_from_user(&prim, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006370 return -EFAULT;
6371
6372 asoc = sctp_id2assoc(sk, prim.ssp_assoc_id);
6373 if (!asoc)
6374 return -EINVAL;
6375
6376 if (!asoc->peer.primary_path)
6377 return -ENOTCONN;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09006378
Al Viro8cec6b82006-11-20 17:23:01 -08006379 memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr,
6380 asoc->peer.primary_path->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381
Jason Gunthorpe299ee122014-07-30 12:40:53 -06006382 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383 (union sctp_addr *)&prim.ssp_addr);
6384
Neil Horman408f22e2007-06-16 14:03:45 -04006385 if (put_user(len, optlen))
6386 return -EFAULT;
6387 if (copy_to_user(optval, &prim, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006388 return -EFAULT;
6389
6390 return 0;
6391}
6392
6393/*
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006394 * 7.1.11 Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006395 *
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006396 * Requests that the local endpoint set the specified Adaptation Layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07006397 * Indication parameter for all future INIT and INIT-ACK exchanges.
6398 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006399static int sctp_getsockopt_adaptation_layer(struct sock *sk, int len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400 char __user *optval, int __user *optlen)
6401{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006402 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006403
Neil Horman408f22e2007-06-16 14:03:45 -04006404 if (len < sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405 return -EINVAL;
6406
Neil Horman408f22e2007-06-16 14:03:45 -04006407 len = sizeof(struct sctp_setadaptation);
6408
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006409 adaptation.ssb_adaptation_ind = sctp_sk(sk)->adaptation_ind;
Neil Horman408f22e2007-06-16 14:03:45 -04006410
6411 if (put_user(len, optlen))
6412 return -EFAULT;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006413 if (copy_to_user(optval, &adaptation, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006414 return -EFAULT;
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07006415
Linus Torvalds1da177e2005-04-16 15:20:36 -07006416 return 0;
6417}
6418
6419/*
6420 *
6421 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
6422 *
6423 * Applications that wish to use the sendto() system call may wish to
6424 * specify a default set of parameters that would normally be supplied
6425 * through the inclusion of ancillary data. This socket option allows
6426 * such an application to set the default sctp_sndrcvinfo structure.
6427
6428
6429 * The application that wishes to use this socket option simply passes
6430 * in to this call the sctp_sndrcvinfo structure defined in Section
6431 * 5.2.2) The input parameters accepted by this call include
6432 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
6433 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
6434 * to this call if the caller is using the UDP model.
6435 *
6436 * For getsockopt, it get the default sctp_sndrcvinfo structure.
6437 */
6438static int sctp_getsockopt_default_send_param(struct sock *sk,
6439 int len, char __user *optval,
6440 int __user *optlen)
6441{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442 struct sctp_sock *sp = sctp_sk(sk);
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006443 struct sctp_association *asoc;
6444 struct sctp_sndrcvinfo info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006446 if (len < sizeof(info))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04006448
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006449 len = sizeof(info);
Neil Horman408f22e2007-06-16 14:03:45 -04006450
6451 if (copy_from_user(&info, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006452 return -EFAULT;
6453
6454 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
Xin Long707e45b2019-01-28 15:08:35 +08006455 if (!asoc && info.sinfo_assoc_id != SCTP_FUTURE_ASSOC &&
6456 sctp_style(sk, UDP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457 return -EINVAL;
Xin Long707e45b2019-01-28 15:08:35 +08006458
Linus Torvalds1da177e2005-04-16 15:20:36 -07006459 if (asoc) {
6460 info.sinfo_stream = asoc->default_stream;
6461 info.sinfo_flags = asoc->default_flags;
6462 info.sinfo_ppid = asoc->default_ppid;
6463 info.sinfo_context = asoc->default_context;
6464 info.sinfo_timetolive = asoc->default_timetolive;
6465 } else {
6466 info.sinfo_stream = sp->default_stream;
6467 info.sinfo_flags = sp->default_flags;
6468 info.sinfo_ppid = sp->default_ppid;
6469 info.sinfo_context = sp->default_context;
6470 info.sinfo_timetolive = sp->default_timetolive;
6471 }
6472
Neil Horman408f22e2007-06-16 14:03:45 -04006473 if (put_user(len, optlen))
6474 return -EFAULT;
6475 if (copy_to_user(optval, &info, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476 return -EFAULT;
6477
6478 return 0;
6479}
6480
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006481/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
6482 * (SCTP_DEFAULT_SNDINFO)
6483 */
6484static int sctp_getsockopt_default_sndinfo(struct sock *sk, int len,
6485 char __user *optval,
6486 int __user *optlen)
6487{
6488 struct sctp_sock *sp = sctp_sk(sk);
6489 struct sctp_association *asoc;
6490 struct sctp_sndinfo info;
6491
6492 if (len < sizeof(info))
6493 return -EINVAL;
6494
6495 len = sizeof(info);
6496
6497 if (copy_from_user(&info, optval, len))
6498 return -EFAULT;
6499
6500 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
Xin Long92fc3bd2019-01-28 15:08:36 +08006501 if (!asoc && info.snd_assoc_id != SCTP_FUTURE_ASSOC &&
6502 sctp_style(sk, UDP))
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006503 return -EINVAL;
Xin Long92fc3bd2019-01-28 15:08:36 +08006504
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006505 if (asoc) {
6506 info.snd_sid = asoc->default_stream;
6507 info.snd_flags = asoc->default_flags;
6508 info.snd_ppid = asoc->default_ppid;
6509 info.snd_context = asoc->default_context;
6510 } else {
6511 info.snd_sid = sp->default_stream;
6512 info.snd_flags = sp->default_flags;
6513 info.snd_ppid = sp->default_ppid;
6514 info.snd_context = sp->default_context;
6515 }
6516
6517 if (put_user(len, optlen))
6518 return -EFAULT;
6519 if (copy_to_user(optval, &info, len))
6520 return -EFAULT;
6521
6522 return 0;
6523}
6524
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525/*
6526 *
6527 * 7.1.5 SCTP_NODELAY
6528 *
6529 * Turn on/off any Nagle-like algorithm. This means that packets are
6530 * generally sent as soon as possible and no unnecessary delays are
6531 * introduced, at the cost of more packets in the network. Expects an
6532 * integer boolean flag.
6533 */
6534
6535static int sctp_getsockopt_nodelay(struct sock *sk, int len,
6536 char __user *optval, int __user *optlen)
6537{
6538 int val;
6539
6540 if (len < sizeof(int))
6541 return -EINVAL;
6542
6543 len = sizeof(int);
6544 val = (sctp_sk(sk)->nodelay == 1);
6545 if (put_user(len, optlen))
6546 return -EFAULT;
6547 if (copy_to_user(optval, &val, len))
6548 return -EFAULT;
6549 return 0;
6550}
6551
6552/*
6553 *
6554 * 7.1.1 SCTP_RTOINFO
6555 *
6556 * The protocol parameters used to initialize and bound retransmission
6557 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
6558 * and modify these parameters.
6559 * All parameters are time values, in milliseconds. A value of 0, when
6560 * modifying the parameters, indicates that the current value should not
6561 * be changed.
6562 *
6563 */
6564static int sctp_getsockopt_rtoinfo(struct sock *sk, int len,
6565 char __user *optval,
6566 int __user *optlen) {
6567 struct sctp_rtoinfo rtoinfo;
6568 struct sctp_association *asoc;
6569
Neil Horman408f22e2007-06-16 14:03:45 -04006570 if (len < sizeof (struct sctp_rtoinfo))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006571 return -EINVAL;
6572
Neil Horman408f22e2007-06-16 14:03:45 -04006573 len = sizeof(struct sctp_rtoinfo);
6574
6575 if (copy_from_user(&rtoinfo, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006576 return -EFAULT;
6577
6578 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
6579
Xin Long7adb5ed2019-01-28 15:08:25 +08006580 if (!asoc && rtoinfo.srto_assoc_id != SCTP_FUTURE_ASSOC &&
6581 sctp_style(sk, UDP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006582 return -EINVAL;
6583
6584 /* Values corresponding to the specific association. */
6585 if (asoc) {
6586 rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial);
6587 rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max);
6588 rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min);
6589 } else {
6590 /* Values corresponding to the endpoint. */
6591 struct sctp_sock *sp = sctp_sk(sk);
6592
6593 rtoinfo.srto_initial = sp->rtoinfo.srto_initial;
6594 rtoinfo.srto_max = sp->rtoinfo.srto_max;
6595 rtoinfo.srto_min = sp->rtoinfo.srto_min;
6596 }
6597
6598 if (put_user(len, optlen))
6599 return -EFAULT;
6600
6601 if (copy_to_user(optval, &rtoinfo, len))
6602 return -EFAULT;
6603
6604 return 0;
6605}
6606
6607/*
6608 *
6609 * 7.1.2 SCTP_ASSOCINFO
6610 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02006611 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07006612 * of the association.
6613 * Returns an error if the new association retransmission value is
6614 * greater than the sum of the retransmission value of the peer.
6615 * See [SCTP] for more information.
6616 *
6617 */
6618static int sctp_getsockopt_associnfo(struct sock *sk, int len,
6619 char __user *optval,
6620 int __user *optlen)
6621{
6622
6623 struct sctp_assocparams assocparams;
6624 struct sctp_association *asoc;
6625 struct list_head *pos;
6626 int cnt = 0;
6627
Neil Horman408f22e2007-06-16 14:03:45 -04006628 if (len < sizeof (struct sctp_assocparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006629 return -EINVAL;
6630
Neil Horman408f22e2007-06-16 14:03:45 -04006631 len = sizeof(struct sctp_assocparams);
6632
6633 if (copy_from_user(&assocparams, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634 return -EFAULT;
6635
6636 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
6637
Xin Long88893942019-01-28 15:08:26 +08006638 if (!asoc && assocparams.sasoc_assoc_id != SCTP_FUTURE_ASSOC &&
6639 sctp_style(sk, UDP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006640 return -EINVAL;
6641
6642 /* Values correspoinding to the specific association */
Vladislav Yasevich17337212005-04-28 11:57:54 -07006643 if (asoc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006644 assocparams.sasoc_asocmaxrxt = asoc->max_retrans;
6645 assocparams.sasoc_peer_rwnd = asoc->peer.rwnd;
6646 assocparams.sasoc_local_rwnd = asoc->a_rwnd;
Daniel Borkmann52db8822013-06-25 18:17:27 +02006647 assocparams.sasoc_cookie_life = ktime_to_ms(asoc->cookie_life);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006648
6649 list_for_each(pos, &asoc->peer.transport_addr_list) {
wangweidongcb3f8372013-12-23 12:16:50 +08006650 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006651 }
6652
6653 assocparams.sasoc_number_peer_destinations = cnt;
6654 } else {
6655 /* Values corresponding to the endpoint */
6656 struct sctp_sock *sp = sctp_sk(sk);
6657
6658 assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt;
6659 assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd;
6660 assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd;
6661 assocparams.sasoc_cookie_life =
6662 sp->assocparams.sasoc_cookie_life;
6663 assocparams.sasoc_number_peer_destinations =
6664 sp->assocparams.
6665 sasoc_number_peer_destinations;
6666 }
6667
6668 if (put_user(len, optlen))
6669 return -EFAULT;
6670
6671 if (copy_to_user(optval, &assocparams, len))
6672 return -EFAULT;
6673
6674 return 0;
6675}
6676
6677/*
6678 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
6679 *
6680 * This socket option is a boolean flag which turns on or off mapped V4
6681 * addresses. If this option is turned on and the socket is type
6682 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
6683 * If this option is turned off, then no mapping will be done of V4
6684 * addresses and a user will receive both PF_INET6 and PF_INET type
6685 * addresses on the socket.
6686 */
6687static int sctp_getsockopt_mappedv4(struct sock *sk, int len,
6688 char __user *optval, int __user *optlen)
6689{
6690 int val;
6691 struct sctp_sock *sp = sctp_sk(sk);
6692
6693 if (len < sizeof(int))
6694 return -EINVAL;
6695
6696 len = sizeof(int);
6697 val = sp->v4mapped;
6698 if (put_user(len, optlen))
6699 return -EFAULT;
6700 if (copy_to_user(optval, &val, len))
6701 return -EFAULT;
6702
6703 return 0;
6704}
6705
6706/*
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006707 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
6708 * (chapter and verse is quoted at sctp_setsockopt_context())
6709 */
6710static int sctp_getsockopt_context(struct sock *sk, int len,
6711 char __user *optval, int __user *optlen)
6712{
6713 struct sctp_assoc_value params;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006714 struct sctp_association *asoc;
6715
Neil Horman408f22e2007-06-16 14:03:45 -04006716 if (len < sizeof(struct sctp_assoc_value))
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006717 return -EINVAL;
6718
Neil Horman408f22e2007-06-16 14:03:45 -04006719 len = sizeof(struct sctp_assoc_value);
6720
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006721 if (copy_from_user(&params, optval, len))
6722 return -EFAULT;
6723
Xin Long49b037a2019-01-28 15:08:37 +08006724 asoc = sctp_id2assoc(sk, params.assoc_id);
6725 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
6726 sctp_style(sk, UDP))
6727 return -EINVAL;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006728
Xin Long49b037a2019-01-28 15:08:37 +08006729 params.assoc_value = asoc ? asoc->default_rcv_context
6730 : sctp_sk(sk)->default_rcv_context;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006731
6732 if (put_user(len, optlen))
6733 return -EFAULT;
6734 if (copy_to_user(optval, &params, len))
6735 return -EFAULT;
6736
6737 return 0;
6738}
6739
6740/*
Wei Yongjune89c2092008-12-25 16:54:58 -08006741 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
6742 * This option will get or set the maximum size to put in any outgoing
6743 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07006744 * fragmented by SCTP into the specified size. Note that the underlying
6745 * SCTP implementation may fragment into smaller sized chunks when the
6746 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08006747 * the user. The default value for this option is '0' which indicates
6748 * the user is NOT limiting fragmentation and only the PMTU will effect
6749 * SCTP's choice of DATA chunk size. Note also that values set larger
6750 * than the maximum size of an IP datagram will effectively let SCTP
6751 * control fragmentation (i.e. the same as setting this option to 0).
6752 *
6753 * The following structure is used to access and modify this parameter:
6754 *
6755 * struct sctp_assoc_value {
6756 * sctp_assoc_t assoc_id;
6757 * uint32_t assoc_value;
6758 * };
6759 *
6760 * assoc_id: This parameter is ignored for one-to-one style sockets.
6761 * For one-to-many style sockets this parameter indicates which
6762 * association the user is performing an action upon. Note that if
6763 * this field's value is zero then the endpoints default value is
6764 * changed (effecting future associations only).
6765 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006766 */
6767static int sctp_getsockopt_maxseg(struct sock *sk, int len,
6768 char __user *optval, int __user *optlen)
6769{
Wei Yongjune89c2092008-12-25 16:54:58 -08006770 struct sctp_assoc_value params;
6771 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006772
Wei Yongjune89c2092008-12-25 16:54:58 -08006773 if (len == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05006774 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05006775 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05006776 "Use of int in maxseg socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05006777 "Use struct sctp_assoc_value instead\n",
6778 current->comm, task_pid_nr(current));
Xin Long6fd769b2019-01-28 15:08:27 +08006779 params.assoc_id = SCTP_FUTURE_ASSOC;
Wei Yongjune89c2092008-12-25 16:54:58 -08006780 } else if (len >= sizeof(struct sctp_assoc_value)) {
6781 len = sizeof(struct sctp_assoc_value);
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006782 if (copy_from_user(&params, optval, len))
Wei Yongjune89c2092008-12-25 16:54:58 -08006783 return -EFAULT;
6784 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07006785 return -EINVAL;
6786
Wei Yongjune89c2092008-12-25 16:54:58 -08006787 asoc = sctp_id2assoc(sk, params.assoc_id);
Xin Long6fd769b2019-01-28 15:08:27 +08006788 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
6789 sctp_style(sk, UDP))
Wei Yongjune89c2092008-12-25 16:54:58 -08006790 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006791
Wei Yongjune89c2092008-12-25 16:54:58 -08006792 if (asoc)
6793 params.assoc_value = asoc->frag_point;
6794 else
6795 params.assoc_value = sctp_sk(sk)->user_frag;
6796
Linus Torvalds1da177e2005-04-16 15:20:36 -07006797 if (put_user(len, optlen))
6798 return -EFAULT;
Wei Yongjune89c2092008-12-25 16:54:58 -08006799 if (len == sizeof(int)) {
6800 if (copy_to_user(optval, &params.assoc_value, len))
6801 return -EFAULT;
6802 } else {
6803 if (copy_to_user(optval, &params, len))
6804 return -EFAULT;
6805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006806
6807 return 0;
6808}
6809
Vlad Yasevichb6e13312007-04-20 12:23:15 -07006810/*
6811 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
6812 * (chapter and verse is quoted at sctp_setsockopt_fragment_interleave())
6813 */
6814static int sctp_getsockopt_fragment_interleave(struct sock *sk, int len,
6815 char __user *optval, int __user *optlen)
6816{
6817 int val;
6818
6819 if (len < sizeof(int))
6820 return -EINVAL;
6821
6822 len = sizeof(int);
6823
6824 val = sctp_sk(sk)->frag_interleave;
6825 if (put_user(len, optlen))
6826 return -EFAULT;
6827 if (copy_to_user(optval, &val, len))
6828 return -EFAULT;
6829
6830 return 0;
6831}
6832
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006833/*
6834 * 7.1.25. Set or Get the sctp partial delivery point
6835 * (chapter and verse is quoted at sctp_setsockopt_partial_delivery_point())
6836 */
6837static int sctp_getsockopt_partial_delivery_point(struct sock *sk, int len,
6838 char __user *optval,
6839 int __user *optlen)
6840{
YOSHIFUJI Hideaki9cbcbf42007-07-19 10:44:50 +09006841 u32 val;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006842
6843 if (len < sizeof(u32))
6844 return -EINVAL;
6845
6846 len = sizeof(u32);
6847
6848 val = sctp_sk(sk)->pd_point;
6849 if (put_user(len, optlen))
6850 return -EFAULT;
6851 if (copy_to_user(optval, &val, len))
6852 return -EFAULT;
6853
Wei Yongjun7d743b72010-12-14 16:10:41 +00006854 return 0;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006855}
6856
Vlad Yasevich70331572007-03-23 11:34:36 -07006857/*
6858 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
6859 * (chapter and verse is quoted at sctp_setsockopt_maxburst())
6860 */
6861static int sctp_getsockopt_maxburst(struct sock *sk, int len,
6862 char __user *optval,
6863 int __user *optlen)
6864{
Neil Horman219b99a2008-03-05 13:44:46 -08006865 struct sctp_assoc_value params;
Neil Horman219b99a2008-03-05 13:44:46 -08006866 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07006867
Neil Horman219b99a2008-03-05 13:44:46 -08006868 if (len == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05006869 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05006870 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05006871 "Use of int in max_burst socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05006872 "Use struct sctp_assoc_value instead\n",
6873 current->comm, task_pid_nr(current));
Xin Longe0651a02019-01-28 15:08:38 +08006874 params.assoc_id = SCTP_FUTURE_ASSOC;
Wei Yongjunc6db93a2009-03-02 09:46:12 +00006875 } else if (len >= sizeof(struct sctp_assoc_value)) {
6876 len = sizeof(struct sctp_assoc_value);
Neil Horman219b99a2008-03-05 13:44:46 -08006877 if (copy_from_user(&params, optval, len))
6878 return -EFAULT;
6879 } else
6880 return -EINVAL;
Vlad Yasevich70331572007-03-23 11:34:36 -07006881
Xin Longe0651a02019-01-28 15:08:38 +08006882 asoc = sctp_id2assoc(sk, params.assoc_id);
6883 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
6884 sctp_style(sk, UDP))
6885 return -EINVAL;
Vlad Yasevich70331572007-03-23 11:34:36 -07006886
Xin Longe0651a02019-01-28 15:08:38 +08006887 params.assoc_value = asoc ? asoc->max_burst : sctp_sk(sk)->max_burst;
Neil Horman219b99a2008-03-05 13:44:46 -08006888
6889 if (len == sizeof(int)) {
6890 if (copy_to_user(optval, &params.assoc_value, len))
6891 return -EFAULT;
6892 } else {
6893 if (copy_to_user(optval, &params, len))
6894 return -EFAULT;
6895 }
6896
6897 return 0;
6898
Vlad Yasevich70331572007-03-23 11:34:36 -07006899}
6900
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006901static int sctp_getsockopt_hmac_ident(struct sock *sk, int len,
6902 char __user *optval, int __user *optlen)
6903{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006904 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006905 struct sctp_hmacalgo __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006906 struct sctp_hmac_algo_param *hmacs;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006907 __u16 data_len = 0;
6908 u32 num_idents;
Xin Long7a84bd42016-02-03 23:33:30 +08006909 int i;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006910
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006911 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006912 return -EACCES;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006913
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006914 hmacs = ep->auth_hmacs_list;
Xin Long3c918702017-06-30 11:52:16 +08006915 data_len = ntohs(hmacs->param_hdr.length) -
6916 sizeof(struct sctp_paramhdr);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006917
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006918 if (len < sizeof(struct sctp_hmacalgo) + data_len)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006919 return -EINVAL;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006920
6921 len = sizeof(struct sctp_hmacalgo) + data_len;
6922 num_idents = data_len / sizeof(u16);
6923
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006924 if (put_user(len, optlen))
6925 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006926 if (put_user(num_idents, &p->shmac_num_idents))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006927 return -EFAULT;
Xin Long7a84bd42016-02-03 23:33:30 +08006928 for (i = 0; i < num_idents; i++) {
6929 __u16 hmacid = ntohs(hmacs->hmac_ids[i]);
6930
6931 if (copy_to_user(&p->shmac_idents[i], &hmacid, sizeof(__u16)))
6932 return -EFAULT;
6933 }
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006934 return 0;
6935}
6936
6937static int sctp_getsockopt_active_key(struct sock *sk, int len,
6938 char __user *optval, int __user *optlen)
6939{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006940 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006941 struct sctp_authkeyid val;
6942 struct sctp_association *asoc;
6943
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006944 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006945 return -EACCES;
6946
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006947 if (len < sizeof(struct sctp_authkeyid))
6948 return -EINVAL;
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006949
6950 len = sizeof(struct sctp_authkeyid);
6951 if (copy_from_user(&val, optval, len))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006952 return -EFAULT;
6953
6954 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
6955 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
6956 return -EINVAL;
6957
6958 if (asoc)
6959 val.scact_keynumber = asoc->active_key_id;
6960 else
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006961 val.scact_keynumber = ep->active_key_id;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006962
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006963 if (put_user(len, optlen))
6964 return -EFAULT;
6965 if (copy_to_user(optval, &val, len))
6966 return -EFAULT;
6967
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006968 return 0;
6969}
6970
6971static int sctp_getsockopt_peer_auth_chunks(struct sock *sk, int len,
6972 char __user *optval, int __user *optlen)
6973{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006974 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Al Viro411223c2007-10-14 19:21:20 +01006975 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006976 struct sctp_authchunks val;
6977 struct sctp_association *asoc;
6978 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006979 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006980 char __user *to;
6981
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006982 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006983 return -EACCES;
6984
6985 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006986 return -EINVAL;
6987
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02006988 if (copy_from_user(&val, optval, sizeof(val)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006989 return -EFAULT;
6990
Al Viro411223c2007-10-14 19:21:20 +01006991 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006992 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6993 if (!asoc)
6994 return -EINVAL;
6995
6996 ch = asoc->peer.peer_chunks;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006997 if (!ch)
6998 goto num;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006999
7000 /* See if the user provided enough room for all the data */
Xin Long3c918702017-06-30 11:52:16 +08007001 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
Vlad Yasevichb40db682008-02-27 14:40:37 -05007002 if (len < num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007003 return -EINVAL;
7004
Vlad Yasevich5e739d12008-08-21 03:34:25 -07007005 if (copy_to_user(to, ch->chunks, num_chunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007006 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07007007num:
7008 len = sizeof(struct sctp_authchunks) + num_chunks;
wangweidong8d726512013-12-23 12:16:53 +08007009 if (put_user(len, optlen))
7010 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05007011 if (put_user(num_chunks, &p->gauth_number_of_chunks))
7012 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007013 return 0;
7014}
7015
7016static int sctp_getsockopt_local_auth_chunks(struct sock *sk, int len,
7017 char __user *optval, int __user *optlen)
7018{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02007019 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Al Viro411223c2007-10-14 19:21:20 +01007020 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007021 struct sctp_authchunks val;
7022 struct sctp_association *asoc;
7023 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07007024 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007025 char __user *to;
7026
Vlad Yasevichb14878c2014-04-17 17:26:50 +02007027 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07007028 return -EACCES;
7029
7030 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007031 return -EINVAL;
7032
Marcelo Ricardo Leitnerc76f97c2018-01-08 19:02:29 -02007033 if (copy_from_user(&val, optval, sizeof(val)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007034 return -EFAULT;
7035
Al Viro411223c2007-10-14 19:21:20 +01007036 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007037 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
Xin Long48c07212019-01-28 15:08:28 +08007038 if (!asoc && val.gauth_assoc_id != SCTP_FUTURE_ASSOC &&
7039 sctp_style(sk, UDP))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007040 return -EINVAL;
7041
Xin Long48c07212019-01-28 15:08:28 +08007042 ch = asoc ? (struct sctp_chunks_param *)asoc->c.auth_chunks
7043 : ep->auth_chunk_list;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07007044 if (!ch)
7045 goto num;
7046
Xin Long3c918702017-06-30 11:52:16 +08007047 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
Vlad Yasevich5e739d12008-08-21 03:34:25 -07007048 if (len < sizeof(struct sctp_authchunks) + num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007049 return -EINVAL;
7050
Vlad Yasevich5e739d12008-08-21 03:34:25 -07007051 if (copy_to_user(to, ch->chunks, num_chunks))
7052 return -EFAULT;
7053num:
7054 len = sizeof(struct sctp_authchunks) + num_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007055 if (put_user(len, optlen))
7056 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05007057 if (put_user(num_chunks, &p->gauth_number_of_chunks))
7058 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007059
7060 return 0;
7061}
7062
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08007063/*
7064 * 8.2.5. Get the Current Number of Associations (SCTP_GET_ASSOC_NUMBER)
7065 * This option gets the current number of associations that are attached
7066 * to a one-to-many style socket. The option value is an uint32_t.
7067 */
7068static int sctp_getsockopt_assoc_number(struct sock *sk, int len,
7069 char __user *optval, int __user *optlen)
7070{
7071 struct sctp_sock *sp = sctp_sk(sk);
7072 struct sctp_association *asoc;
7073 u32 val = 0;
7074
7075 if (sctp_style(sk, TCP))
7076 return -EOPNOTSUPP;
7077
7078 if (len < sizeof(u32))
7079 return -EINVAL;
7080
7081 len = sizeof(u32);
7082
7083 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
7084 val++;
7085 }
7086
7087 if (put_user(len, optlen))
7088 return -EFAULT;
7089 if (copy_to_user(optval, &val, len))
7090 return -EFAULT;
7091
7092 return 0;
7093}
7094
Wei Yongjun209ba422011-04-17 17:27:08 +00007095/*
Michio Honda7dc04d72011-04-26 20:16:31 +09007096 * 8.1.23 SCTP_AUTO_ASCONF
7097 * See the corresponding setsockopt entry as description
7098 */
7099static int sctp_getsockopt_auto_asconf(struct sock *sk, int len,
7100 char __user *optval, int __user *optlen)
7101{
7102 int val = 0;
7103
7104 if (len < sizeof(int))
7105 return -EINVAL;
7106
7107 len = sizeof(int);
7108 if (sctp_sk(sk)->do_auto_asconf && sctp_is_ep_boundall(sk))
7109 val = 1;
7110 if (put_user(len, optlen))
7111 return -EFAULT;
7112 if (copy_to_user(optval, &val, len))
7113 return -EFAULT;
7114 return 0;
7115}
7116
7117/*
Wei Yongjun209ba422011-04-17 17:27:08 +00007118 * 8.2.6. Get the Current Identifiers of Associations
7119 * (SCTP_GET_ASSOC_ID_LIST)
7120 *
7121 * This option gets the current list of SCTP association identifiers of
7122 * the SCTP associations handled by a one-to-many style socket.
7123 */
7124static int sctp_getsockopt_assoc_ids(struct sock *sk, int len,
7125 char __user *optval, int __user *optlen)
7126{
7127 struct sctp_sock *sp = sctp_sk(sk);
7128 struct sctp_association *asoc;
7129 struct sctp_assoc_ids *ids;
7130 u32 num = 0;
7131
7132 if (sctp_style(sk, TCP))
7133 return -EOPNOTSUPP;
7134
7135 if (len < sizeof(struct sctp_assoc_ids))
7136 return -EINVAL;
7137
7138 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
7139 num++;
7140 }
7141
7142 if (len < sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num)
7143 return -EINVAL;
7144
7145 len = sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num;
7146
Marcelo Ricardo Leitner9ba0b962015-12-23 16:28:40 -02007147 ids = kmalloc(len, GFP_USER | __GFP_NOWARN);
Wei Yongjun209ba422011-04-17 17:27:08 +00007148 if (unlikely(!ids))
7149 return -ENOMEM;
7150
7151 ids->gaids_number_of_ids = num;
7152 num = 0;
7153 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
7154 ids->gaids_assoc_id[num++] = asoc->assoc_id;
7155 }
7156
7157 if (put_user(len, optlen) || copy_to_user(optval, ids, len)) {
7158 kfree(ids);
7159 return -EFAULT;
7160 }
7161
7162 kfree(ids);
7163 return 0;
7164}
7165
Neil Horman5aa93bc2012-07-21 07:56:07 +00007166/*
7167 * SCTP_PEER_ADDR_THLDS
7168 *
7169 * This option allows us to fetch the partially failed threshold for one or all
7170 * transports in an association. See Section 6.1 of:
7171 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
7172 */
7173static int sctp_getsockopt_paddr_thresholds(struct sock *sk,
7174 char __user *optval,
7175 int len,
7176 int __user *optlen)
7177{
7178 struct sctp_paddrthlds val;
7179 struct sctp_transport *trans;
7180 struct sctp_association *asoc;
7181
7182 if (len < sizeof(struct sctp_paddrthlds))
7183 return -EINVAL;
7184 len = sizeof(struct sctp_paddrthlds);
7185 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval, len))
7186 return -EFAULT;
7187
Xin Long8add5432019-01-28 15:08:29 +08007188 if (!sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
Neil Horman5aa93bc2012-07-21 07:56:07 +00007189 trans = sctp_addr_id2transport(sk, &val.spt_address,
7190 val.spt_assoc_id);
7191 if (!trans)
7192 return -ENOENT;
7193
7194 val.spt_pathmaxrxt = trans->pathmaxrxt;
7195 val.spt_pathpfthld = trans->pf_retrans;
Xin Long8add5432019-01-28 15:08:29 +08007196
7197 return 0;
7198 }
7199
7200 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
7201 if (!asoc && val.spt_assoc_id != SCTP_FUTURE_ASSOC &&
7202 sctp_style(sk, UDP))
7203 return -EINVAL;
7204
7205 if (asoc) {
7206 val.spt_pathpfthld = asoc->pf_retrans;
7207 val.spt_pathmaxrxt = asoc->pathmaxrxt;
7208 } else {
7209 struct sctp_sock *sp = sctp_sk(sk);
7210
7211 val.spt_pathpfthld = sp->pf_retrans;
7212 val.spt_pathmaxrxt = sp->pathmaxrxt;
Neil Horman5aa93bc2012-07-21 07:56:07 +00007213 }
7214
7215 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
7216 return -EFAULT;
7217
7218 return 0;
7219}
7220
Michele Baldessari196d6752012-12-01 04:49:42 +00007221/*
7222 * SCTP_GET_ASSOC_STATS
7223 *
7224 * This option retrieves local per endpoint statistics. It is modeled
7225 * after OpenSolaris' implementation
7226 */
7227static int sctp_getsockopt_assoc_stats(struct sock *sk, int len,
7228 char __user *optval,
7229 int __user *optlen)
7230{
7231 struct sctp_assoc_stats sas;
7232 struct sctp_association *asoc = NULL;
7233
7234 /* User must provide at least the assoc id */
7235 if (len < sizeof(sctp_assoc_t))
7236 return -EINVAL;
7237
Guenter Roeck726bc6b2013-02-27 10:57:31 +00007238 /* Allow the struct to grow and fill in as much as possible */
7239 len = min_t(size_t, len, sizeof(sas));
7240
Michele Baldessari196d6752012-12-01 04:49:42 +00007241 if (copy_from_user(&sas, optval, len))
7242 return -EFAULT;
7243
7244 asoc = sctp_id2assoc(sk, sas.sas_assoc_id);
7245 if (!asoc)
7246 return -EINVAL;
7247
7248 sas.sas_rtxchunks = asoc->stats.rtxchunks;
7249 sas.sas_gapcnt = asoc->stats.gapcnt;
7250 sas.sas_outofseqtsns = asoc->stats.outofseqtsns;
7251 sas.sas_osacks = asoc->stats.osacks;
7252 sas.sas_isacks = asoc->stats.isacks;
7253 sas.sas_octrlchunks = asoc->stats.octrlchunks;
7254 sas.sas_ictrlchunks = asoc->stats.ictrlchunks;
7255 sas.sas_oodchunks = asoc->stats.oodchunks;
7256 sas.sas_iodchunks = asoc->stats.iodchunks;
7257 sas.sas_ouodchunks = asoc->stats.ouodchunks;
7258 sas.sas_iuodchunks = asoc->stats.iuodchunks;
7259 sas.sas_idupchunks = asoc->stats.idupchunks;
7260 sas.sas_opackets = asoc->stats.opackets;
7261 sas.sas_ipackets = asoc->stats.ipackets;
7262
7263 /* New high max rto observed, will return 0 if not a single
7264 * RTO update took place. obs_rto_ipaddr will be bogus
7265 * in such a case
7266 */
7267 sas.sas_maxrto = asoc->stats.max_obs_rto;
7268 memcpy(&sas.sas_obs_rto_ipaddr, &asoc->stats.obs_rto_ipaddr,
7269 sizeof(struct sockaddr_storage));
7270
7271 /* Mark beginning of a new observation period */
7272 asoc->stats.max_obs_rto = asoc->rto_min;
7273
Michele Baldessari196d6752012-12-01 04:49:42 +00007274 if (put_user(len, optlen))
7275 return -EFAULT;
7276
Daniel Borkmannbb333812013-06-28 19:49:40 +02007277 pr_debug("%s: len:%d, assoc_id:%d\n", __func__, len, sas.sas_assoc_id);
Michele Baldessari196d6752012-12-01 04:49:42 +00007278
7279 if (copy_to_user(optval, &sas, len))
7280 return -EFAULT;
7281
7282 return 0;
7283}
7284
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02007285static int sctp_getsockopt_recvrcvinfo(struct sock *sk, int len,
7286 char __user *optval,
7287 int __user *optlen)
7288{
7289 int val = 0;
7290
7291 if (len < sizeof(int))
7292 return -EINVAL;
7293
7294 len = sizeof(int);
7295 if (sctp_sk(sk)->recvrcvinfo)
7296 val = 1;
7297 if (put_user(len, optlen))
7298 return -EFAULT;
7299 if (copy_to_user(optval, &val, len))
7300 return -EFAULT;
7301
7302 return 0;
7303}
7304
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02007305static int sctp_getsockopt_recvnxtinfo(struct sock *sk, int len,
7306 char __user *optval,
7307 int __user *optlen)
7308{
7309 int val = 0;
7310
7311 if (len < sizeof(int))
7312 return -EINVAL;
7313
7314 len = sizeof(int);
7315 if (sctp_sk(sk)->recvnxtinfo)
7316 val = 1;
7317 if (put_user(len, optlen))
7318 return -EFAULT;
7319 if (copy_to_user(optval, &val, len))
7320 return -EFAULT;
7321
7322 return 0;
7323}
7324
Xin Long28aa4c22016-07-09 19:47:40 +08007325static int sctp_getsockopt_pr_supported(struct sock *sk, int len,
7326 char __user *optval,
7327 int __user *optlen)
7328{
7329 struct sctp_assoc_value params;
7330 struct sctp_association *asoc;
7331 int retval = -EFAULT;
7332
7333 if (len < sizeof(params)) {
7334 retval = -EINVAL;
7335 goto out;
7336 }
7337
7338 len = sizeof(params);
7339 if (copy_from_user(&params, optval, len))
7340 goto out;
7341
7342 asoc = sctp_id2assoc(sk, params.assoc_id);
Xin Longfb195602019-01-28 15:08:30 +08007343 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7344 sctp_style(sk, UDP)) {
Xin Long28aa4c22016-07-09 19:47:40 +08007345 retval = -EINVAL;
7346 goto out;
7347 }
7348
Xin Longfb195602019-01-28 15:08:30 +08007349 params.assoc_value = asoc ? asoc->prsctp_enable
7350 : sctp_sk(sk)->ep->prsctp_enable;
7351
Xin Long28aa4c22016-07-09 19:47:40 +08007352 if (put_user(len, optlen))
7353 goto out;
7354
7355 if (copy_to_user(optval, &params, len))
7356 goto out;
7357
7358 retval = 0;
7359
7360out:
7361 return retval;
7362}
7363
Xin Longf959fb42016-07-09 19:47:41 +08007364static int sctp_getsockopt_default_prinfo(struct sock *sk, int len,
7365 char __user *optval,
7366 int __user *optlen)
7367{
7368 struct sctp_default_prinfo info;
7369 struct sctp_association *asoc;
7370 int retval = -EFAULT;
7371
7372 if (len < sizeof(info)) {
7373 retval = -EINVAL;
7374 goto out;
7375 }
7376
7377 len = sizeof(info);
7378 if (copy_from_user(&info, optval, len))
7379 goto out;
7380
7381 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
Xin Long3a583052019-01-28 15:08:43 +08007382 if (!asoc && info.pr_assoc_id != SCTP_FUTURE_ASSOC &&
7383 sctp_style(sk, UDP)) {
7384 retval = -EINVAL;
7385 goto out;
7386 }
7387
Xin Longf959fb42016-07-09 19:47:41 +08007388 if (asoc) {
7389 info.pr_policy = SCTP_PR_POLICY(asoc->default_flags);
7390 info.pr_value = asoc->default_timetolive;
Xin Long3a583052019-01-28 15:08:43 +08007391 } else {
Xin Longf959fb42016-07-09 19:47:41 +08007392 struct sctp_sock *sp = sctp_sk(sk);
7393
7394 info.pr_policy = SCTP_PR_POLICY(sp->default_flags);
7395 info.pr_value = sp->default_timetolive;
Xin Longf959fb42016-07-09 19:47:41 +08007396 }
7397
7398 if (put_user(len, optlen))
7399 goto out;
7400
7401 if (copy_to_user(optval, &info, len))
7402 goto out;
7403
7404 retval = 0;
7405
7406out:
7407 return retval;
7408}
7409
Xin Long826d2532016-07-09 19:47:42 +08007410static int sctp_getsockopt_pr_assocstatus(struct sock *sk, int len,
7411 char __user *optval,
7412 int __user *optlen)
7413{
7414 struct sctp_prstatus params;
7415 struct sctp_association *asoc;
7416 int policy;
7417 int retval = -EINVAL;
7418
7419 if (len < sizeof(params))
7420 goto out;
7421
7422 len = sizeof(params);
7423 if (copy_from_user(&params, optval, len)) {
7424 retval = -EFAULT;
7425 goto out;
7426 }
7427
7428 policy = params.sprstat_policy;
Xin Long71335832018-10-29 23:13:11 +08007429 if (!policy || (policy & ~(SCTP_PR_SCTP_MASK | SCTP_PR_SCTP_ALL)) ||
7430 ((policy & SCTP_PR_SCTP_ALL) && (policy & SCTP_PR_SCTP_MASK)))
Xin Long826d2532016-07-09 19:47:42 +08007431 goto out;
7432
7433 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
7434 if (!asoc)
7435 goto out;
7436
Xin Long71335832018-10-29 23:13:11 +08007437 if (policy == SCTP_PR_SCTP_ALL) {
Xin Long826d2532016-07-09 19:47:42 +08007438 params.sprstat_abandoned_unsent = 0;
7439 params.sprstat_abandoned_sent = 0;
7440 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
7441 params.sprstat_abandoned_unsent +=
7442 asoc->abandoned_unsent[policy];
7443 params.sprstat_abandoned_sent +=
7444 asoc->abandoned_sent[policy];
7445 }
7446 } else {
7447 params.sprstat_abandoned_unsent =
7448 asoc->abandoned_unsent[__SCTP_PR_INDEX(policy)];
7449 params.sprstat_abandoned_sent =
7450 asoc->abandoned_sent[__SCTP_PR_INDEX(policy)];
7451 }
7452
7453 if (put_user(len, optlen)) {
7454 retval = -EFAULT;
7455 goto out;
7456 }
7457
7458 if (copy_to_user(optval, &params, len)) {
7459 retval = -EFAULT;
7460 goto out;
7461 }
7462
7463 retval = 0;
7464
7465out:
7466 return retval;
7467}
7468
Xin Longd229d482017-04-01 17:07:46 +08007469static int sctp_getsockopt_pr_streamstatus(struct sock *sk, int len,
7470 char __user *optval,
7471 int __user *optlen)
7472{
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007473 struct sctp_stream_out_ext *streamoute;
Xin Longd229d482017-04-01 17:07:46 +08007474 struct sctp_association *asoc;
7475 struct sctp_prstatus params;
7476 int retval = -EINVAL;
7477 int policy;
7478
7479 if (len < sizeof(params))
7480 goto out;
7481
7482 len = sizeof(params);
7483 if (copy_from_user(&params, optval, len)) {
7484 retval = -EFAULT;
7485 goto out;
7486 }
7487
7488 policy = params.sprstat_policy;
Xin Long71335832018-10-29 23:13:11 +08007489 if (!policy || (policy & ~(SCTP_PR_SCTP_MASK | SCTP_PR_SCTP_ALL)) ||
7490 ((policy & SCTP_PR_SCTP_ALL) && (policy & SCTP_PR_SCTP_MASK)))
Xin Longd229d482017-04-01 17:07:46 +08007491 goto out;
7492
7493 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
Xin Longcee360a2017-05-31 16:36:31 +08007494 if (!asoc || params.sprstat_sid >= asoc->stream.outcnt)
Xin Longd229d482017-04-01 17:07:46 +08007495 goto out;
7496
Konstantin Khorenko05364ca2018-08-10 20:11:42 +03007497 streamoute = SCTP_SO(&asoc->stream, params.sprstat_sid)->ext;
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007498 if (!streamoute) {
7499 /* Not allocated yet, means all stats are 0 */
7500 params.sprstat_abandoned_unsent = 0;
7501 params.sprstat_abandoned_sent = 0;
7502 retval = 0;
7503 goto out;
7504 }
7505
Xin Long0ac10772018-10-16 15:52:02 +08007506 if (policy == SCTP_PR_SCTP_ALL) {
Xin Longd229d482017-04-01 17:07:46 +08007507 params.sprstat_abandoned_unsent = 0;
7508 params.sprstat_abandoned_sent = 0;
7509 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
7510 params.sprstat_abandoned_unsent +=
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007511 streamoute->abandoned_unsent[policy];
Xin Longd229d482017-04-01 17:07:46 +08007512 params.sprstat_abandoned_sent +=
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007513 streamoute->abandoned_sent[policy];
Xin Longd229d482017-04-01 17:07:46 +08007514 }
7515 } else {
7516 params.sprstat_abandoned_unsent =
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007517 streamoute->abandoned_unsent[__SCTP_PR_INDEX(policy)];
Xin Longd229d482017-04-01 17:07:46 +08007518 params.sprstat_abandoned_sent =
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03007519 streamoute->abandoned_sent[__SCTP_PR_INDEX(policy)];
Xin Longd229d482017-04-01 17:07:46 +08007520 }
7521
7522 if (put_user(len, optlen) || copy_to_user(optval, &params, len)) {
7523 retval = -EFAULT;
7524 goto out;
7525 }
7526
7527 retval = 0;
7528
7529out:
7530 return retval;
7531}
7532
Xin Longc0d8bab2017-03-10 12:11:12 +08007533static int sctp_getsockopt_reconfig_supported(struct sock *sk, int len,
7534 char __user *optval,
7535 int __user *optlen)
7536{
7537 struct sctp_assoc_value params;
7538 struct sctp_association *asoc;
7539 int retval = -EFAULT;
7540
7541 if (len < sizeof(params)) {
7542 retval = -EINVAL;
7543 goto out;
7544 }
7545
7546 len = sizeof(params);
7547 if (copy_from_user(&params, optval, len))
7548 goto out;
7549
7550 asoc = sctp_id2assoc(sk, params.assoc_id);
Xin Longacce7f32019-01-28 15:08:31 +08007551 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7552 sctp_style(sk, UDP)) {
Xin Longc0d8bab2017-03-10 12:11:12 +08007553 retval = -EINVAL;
7554 goto out;
7555 }
7556
Xin Longacce7f32019-01-28 15:08:31 +08007557 params.assoc_value = asoc ? asoc->reconf_enable
7558 : sctp_sk(sk)->ep->reconf_enable;
7559
Xin Longc0d8bab2017-03-10 12:11:12 +08007560 if (put_user(len, optlen))
7561 goto out;
7562
7563 if (copy_to_user(optval, &params, len))
7564 goto out;
7565
7566 retval = 0;
7567
7568out:
7569 return retval;
7570}
7571
Xin Long9fb657a2017-01-18 00:44:46 +08007572static int sctp_getsockopt_enable_strreset(struct sock *sk, int len,
7573 char __user *optval,
7574 int __user *optlen)
7575{
7576 struct sctp_assoc_value params;
7577 struct sctp_association *asoc;
7578 int retval = -EFAULT;
7579
7580 if (len < sizeof(params)) {
7581 retval = -EINVAL;
7582 goto out;
7583 }
7584
7585 len = sizeof(params);
7586 if (copy_from_user(&params, optval, len))
7587 goto out;
7588
7589 asoc = sctp_id2assoc(sk, params.assoc_id);
Xin Long99a62132019-01-28 15:08:44 +08007590 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7591 sctp_style(sk, UDP)) {
Xin Long9fb657a2017-01-18 00:44:46 +08007592 retval = -EINVAL;
7593 goto out;
7594 }
7595
Xin Long99a62132019-01-28 15:08:44 +08007596 params.assoc_value = asoc ? asoc->strreset_enable
7597 : sctp_sk(sk)->ep->strreset_enable;
7598
Xin Long9fb657a2017-01-18 00:44:46 +08007599 if (put_user(len, optlen))
7600 goto out;
7601
7602 if (copy_to_user(optval, &params, len))
7603 goto out;
7604
7605 retval = 0;
7606
7607out:
7608 return retval;
7609}
7610
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03007611static int sctp_getsockopt_scheduler(struct sock *sk, int len,
7612 char __user *optval,
7613 int __user *optlen)
7614{
7615 struct sctp_assoc_value params;
7616 struct sctp_association *asoc;
7617 int retval = -EFAULT;
7618
7619 if (len < sizeof(params)) {
7620 retval = -EINVAL;
7621 goto out;
7622 }
7623
7624 len = sizeof(params);
7625 if (copy_from_user(&params, optval, len))
7626 goto out;
7627
7628 asoc = sctp_id2assoc(sk, params.assoc_id);
Xin Long7efba102019-01-28 15:08:46 +08007629 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7630 sctp_style(sk, UDP)) {
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03007631 retval = -EINVAL;
7632 goto out;
7633 }
7634
Xin Long7efba102019-01-28 15:08:46 +08007635 params.assoc_value = asoc ? sctp_sched_get_sched(asoc)
7636 : sctp_sk(sk)->default_ss;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03007637
7638 if (put_user(len, optlen))
7639 goto out;
7640
7641 if (copy_to_user(optval, &params, len))
7642 goto out;
7643
7644 retval = 0;
7645
7646out:
7647 return retval;
7648}
7649
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03007650static int sctp_getsockopt_scheduler_value(struct sock *sk, int len,
7651 char __user *optval,
7652 int __user *optlen)
7653{
7654 struct sctp_stream_value params;
7655 struct sctp_association *asoc;
7656 int retval = -EFAULT;
7657
7658 if (len < sizeof(params)) {
7659 retval = -EINVAL;
7660 goto out;
7661 }
7662
7663 len = sizeof(params);
7664 if (copy_from_user(&params, optval, len))
7665 goto out;
7666
7667 asoc = sctp_id2assoc(sk, params.assoc_id);
7668 if (!asoc) {
7669 retval = -EINVAL;
7670 goto out;
7671 }
7672
7673 retval = sctp_sched_get_value(asoc, params.stream_id,
7674 &params.stream_value);
7675 if (retval)
7676 goto out;
7677
7678 if (put_user(len, optlen)) {
7679 retval = -EFAULT;
7680 goto out;
7681 }
7682
7683 if (copy_to_user(optval, &params, len)) {
7684 retval = -EFAULT;
7685 goto out;
7686 }
7687
7688out:
7689 return retval;
7690}
7691
Xin Long772a5862017-12-08 21:03:58 +08007692static int sctp_getsockopt_interleaving_supported(struct sock *sk, int len,
7693 char __user *optval,
7694 int __user *optlen)
7695{
7696 struct sctp_assoc_value params;
7697 struct sctp_association *asoc;
7698 int retval = -EFAULT;
7699
7700 if (len < sizeof(params)) {
7701 retval = -EINVAL;
7702 goto out;
7703 }
7704
7705 len = sizeof(params);
7706 if (copy_from_user(&params, optval, len))
7707 goto out;
7708
7709 asoc = sctp_id2assoc(sk, params.assoc_id);
Xin Long2e7709d2019-01-28 15:08:32 +08007710 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7711 sctp_style(sk, UDP)) {
Xin Long772a5862017-12-08 21:03:58 +08007712 retval = -EINVAL;
7713 goto out;
7714 }
7715
Xin Long2e7709d2019-01-28 15:08:32 +08007716 params.assoc_value = asoc ? asoc->intl_enable
7717 : sctp_sk(sk)->strm_interleave;
7718
Xin Long772a5862017-12-08 21:03:58 +08007719 if (put_user(len, optlen))
7720 goto out;
7721
7722 if (copy_to_user(optval, &params, len))
7723 goto out;
7724
7725 retval = 0;
7726
7727out:
7728 return retval;
7729}
7730
Xin Longb0e9a2f2018-06-28 15:31:00 +08007731static int sctp_getsockopt_reuse_port(struct sock *sk, int len,
7732 char __user *optval,
7733 int __user *optlen)
7734{
7735 int val;
7736
7737 if (len < sizeof(int))
7738 return -EINVAL;
7739
7740 len = sizeof(int);
7741 val = sctp_sk(sk)->reuse;
7742 if (put_user(len, optlen))
7743 return -EFAULT;
7744
7745 if (copy_to_user(optval, &val, len))
7746 return -EFAULT;
7747
7748 return 0;
7749}
7750
Xin Long480ba9c2018-11-18 16:08:54 +08007751static int sctp_getsockopt_event(struct sock *sk, int len, char __user *optval,
7752 int __user *optlen)
7753{
7754 struct sctp_association *asoc;
7755 struct sctp_event param;
7756 __u16 subscribe;
7757
7758 if (len < sizeof(param))
7759 return -EINVAL;
7760
7761 len = sizeof(param);
7762 if (copy_from_user(&param, optval, len))
7763 return -EFAULT;
7764
7765 if (param.se_type < SCTP_SN_TYPE_BASE ||
7766 param.se_type > SCTP_SN_TYPE_MAX)
7767 return -EINVAL;
7768
7769 asoc = sctp_id2assoc(sk, param.se_assoc_id);
Xin Longd251f052019-01-28 15:08:45 +08007770 if (!asoc && param.se_assoc_id != SCTP_FUTURE_ASSOC &&
7771 sctp_style(sk, UDP))
7772 return -EINVAL;
7773
Xin Long480ba9c2018-11-18 16:08:54 +08007774 subscribe = asoc ? asoc->subscribe : sctp_sk(sk)->subscribe;
7775 param.se_on = sctp_ulpevent_type_enabled(subscribe, param.se_type);
7776
7777 if (put_user(len, optlen))
7778 return -EFAULT;
7779
7780 if (copy_to_user(optval, &param, len))
7781 return -EFAULT;
7782
7783 return 0;
7784}
7785
Daniel Borkmanndda91922013-06-17 11:40:05 +02007786static int sctp_getsockopt(struct sock *sk, int level, int optname,
7787 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007788{
7789 int retval = 0;
7790 int len;
7791
Daniel Borkmannbb333812013-06-28 19:49:40 +02007792 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007793
7794 /* I can hardly begin to describe how wrong this is. This is
7795 * so broken as to be worse than useless. The API draft
7796 * REALLY is NOT helpful here... I am not convinced that the
7797 * semantics of getsockopt() with a level OTHER THAN SOL_SCTP
7798 * are at all well-founded.
7799 */
7800 if (level != SOL_SCTP) {
7801 struct sctp_af *af = sctp_sk(sk)->pf->af;
7802
7803 retval = af->getsockopt(sk, level, optname, optval, optlen);
7804 return retval;
7805 }
7806
7807 if (get_user(len, optlen))
7808 return -EFAULT;
7809
Jiri Slabya4b8e712016-10-21 14:13:24 +02007810 if (len < 0)
7811 return -EINVAL;
7812
wangweidong048ed4b2014-01-21 15:44:11 +08007813 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007814
7815 switch (optname) {
7816 case SCTP_STATUS:
7817 retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen);
7818 break;
7819 case SCTP_DISABLE_FRAGMENTS:
7820 retval = sctp_getsockopt_disable_fragments(sk, len, optval,
7821 optlen);
7822 break;
7823 case SCTP_EVENTS:
7824 retval = sctp_getsockopt_events(sk, len, optval, optlen);
7825 break;
7826 case SCTP_AUTOCLOSE:
7827 retval = sctp_getsockopt_autoclose(sk, len, optval, optlen);
7828 break;
7829 case SCTP_SOCKOPT_PEELOFF:
7830 retval = sctp_getsockopt_peeloff(sk, len, optval, optlen);
7831 break;
Neil Horman2cb5c8e2017-06-30 13:32:57 -04007832 case SCTP_SOCKOPT_PEELOFF_FLAGS:
7833 retval = sctp_getsockopt_peeloff_flags(sk, len, optval, optlen);
7834 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007835 case SCTP_PEER_ADDR_PARAMS:
7836 retval = sctp_getsockopt_peer_addr_params(sk, len, optval,
7837 optlen);
7838 break;
Shan Wei4580ccc2011-01-18 22:39:00 +00007839 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07007840 retval = sctp_getsockopt_delayed_ack(sk, len, optval,
Frank Filz77086102005-12-22 11:37:30 -08007841 optlen);
7842 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007843 case SCTP_INITMSG:
7844 retval = sctp_getsockopt_initmsg(sk, len, optval, optlen);
7845 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007846 case SCTP_GET_PEER_ADDRS:
7847 retval = sctp_getsockopt_peer_addrs(sk, len, optval,
7848 optlen);
7849 break;
7850 case SCTP_GET_LOCAL_ADDRS:
7851 retval = sctp_getsockopt_local_addrs(sk, len, optval,
7852 optlen);
7853 break;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04007854 case SCTP_SOCKOPT_CONNECTX3:
7855 retval = sctp_getsockopt_connectx3(sk, len, optval, optlen);
7856 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007857 case SCTP_DEFAULT_SEND_PARAM:
7858 retval = sctp_getsockopt_default_send_param(sk, len,
7859 optval, optlen);
7860 break;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02007861 case SCTP_DEFAULT_SNDINFO:
7862 retval = sctp_getsockopt_default_sndinfo(sk, len,
7863 optval, optlen);
7864 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007865 case SCTP_PRIMARY_ADDR:
7866 retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen);
7867 break;
7868 case SCTP_NODELAY:
7869 retval = sctp_getsockopt_nodelay(sk, len, optval, optlen);
7870 break;
7871 case SCTP_RTOINFO:
7872 retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen);
7873 break;
7874 case SCTP_ASSOCINFO:
7875 retval = sctp_getsockopt_associnfo(sk, len, optval, optlen);
7876 break;
7877 case SCTP_I_WANT_MAPPED_V4_ADDR:
7878 retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen);
7879 break;
7880 case SCTP_MAXSEG:
7881 retval = sctp_getsockopt_maxseg(sk, len, optval, optlen);
7882 break;
7883 case SCTP_GET_PEER_ADDR_INFO:
7884 retval = sctp_getsockopt_peer_addr_info(sk, len, optval,
7885 optlen);
7886 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08007887 case SCTP_ADAPTATION_LAYER:
7888 retval = sctp_getsockopt_adaptation_layer(sk, len, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007889 optlen);
7890 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08007891 case SCTP_CONTEXT:
7892 retval = sctp_getsockopt_context(sk, len, optval, optlen);
7893 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07007894 case SCTP_FRAGMENT_INTERLEAVE:
7895 retval = sctp_getsockopt_fragment_interleave(sk, len, optval,
7896 optlen);
7897 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07007898 case SCTP_PARTIAL_DELIVERY_POINT:
7899 retval = sctp_getsockopt_partial_delivery_point(sk, len, optval,
7900 optlen);
7901 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07007902 case SCTP_MAX_BURST:
7903 retval = sctp_getsockopt_maxburst(sk, len, optval, optlen);
7904 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007905 case SCTP_AUTH_KEY:
7906 case SCTP_AUTH_CHUNK:
7907 case SCTP_AUTH_DELETE_KEY:
Xin Long601590e2018-03-14 19:05:32 +08007908 case SCTP_AUTH_DEACTIVATE_KEY:
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007909 retval = -EOPNOTSUPP;
7910 break;
7911 case SCTP_HMAC_IDENT:
7912 retval = sctp_getsockopt_hmac_ident(sk, len, optval, optlen);
7913 break;
7914 case SCTP_AUTH_ACTIVE_KEY:
7915 retval = sctp_getsockopt_active_key(sk, len, optval, optlen);
7916 break;
7917 case SCTP_PEER_AUTH_CHUNKS:
7918 retval = sctp_getsockopt_peer_auth_chunks(sk, len, optval,
7919 optlen);
7920 break;
7921 case SCTP_LOCAL_AUTH_CHUNKS:
7922 retval = sctp_getsockopt_local_auth_chunks(sk, len, optval,
7923 optlen);
7924 break;
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08007925 case SCTP_GET_ASSOC_NUMBER:
7926 retval = sctp_getsockopt_assoc_number(sk, len, optval, optlen);
7927 break;
Wei Yongjun209ba422011-04-17 17:27:08 +00007928 case SCTP_GET_ASSOC_ID_LIST:
7929 retval = sctp_getsockopt_assoc_ids(sk, len, optval, optlen);
7930 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09007931 case SCTP_AUTO_ASCONF:
7932 retval = sctp_getsockopt_auto_asconf(sk, len, optval, optlen);
7933 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00007934 case SCTP_PEER_ADDR_THLDS:
7935 retval = sctp_getsockopt_paddr_thresholds(sk, optval, len, optlen);
7936 break;
Michele Baldessari196d6752012-12-01 04:49:42 +00007937 case SCTP_GET_ASSOC_STATS:
7938 retval = sctp_getsockopt_assoc_stats(sk, len, optval, optlen);
7939 break;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02007940 case SCTP_RECVRCVINFO:
7941 retval = sctp_getsockopt_recvrcvinfo(sk, len, optval, optlen);
7942 break;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02007943 case SCTP_RECVNXTINFO:
7944 retval = sctp_getsockopt_recvnxtinfo(sk, len, optval, optlen);
7945 break;
Xin Long28aa4c22016-07-09 19:47:40 +08007946 case SCTP_PR_SUPPORTED:
7947 retval = sctp_getsockopt_pr_supported(sk, len, optval, optlen);
7948 break;
Xin Longf959fb42016-07-09 19:47:41 +08007949 case SCTP_DEFAULT_PRINFO:
7950 retval = sctp_getsockopt_default_prinfo(sk, len, optval,
7951 optlen);
7952 break;
Xin Long826d2532016-07-09 19:47:42 +08007953 case SCTP_PR_ASSOC_STATUS:
7954 retval = sctp_getsockopt_pr_assocstatus(sk, len, optval,
7955 optlen);
7956 break;
Xin Longd229d482017-04-01 17:07:46 +08007957 case SCTP_PR_STREAM_STATUS:
7958 retval = sctp_getsockopt_pr_streamstatus(sk, len, optval,
7959 optlen);
7960 break;
Xin Longc0d8bab2017-03-10 12:11:12 +08007961 case SCTP_RECONFIG_SUPPORTED:
7962 retval = sctp_getsockopt_reconfig_supported(sk, len, optval,
7963 optlen);
7964 break;
Xin Long9fb657a2017-01-18 00:44:46 +08007965 case SCTP_ENABLE_STREAM_RESET:
7966 retval = sctp_getsockopt_enable_strreset(sk, len, optval,
7967 optlen);
7968 break;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03007969 case SCTP_STREAM_SCHEDULER:
7970 retval = sctp_getsockopt_scheduler(sk, len, optval,
7971 optlen);
7972 break;
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03007973 case SCTP_STREAM_SCHEDULER_VALUE:
7974 retval = sctp_getsockopt_scheduler_value(sk, len, optval,
7975 optlen);
7976 break;
Xin Long772a5862017-12-08 21:03:58 +08007977 case SCTP_INTERLEAVING_SUPPORTED:
7978 retval = sctp_getsockopt_interleaving_supported(sk, len, optval,
7979 optlen);
7980 break;
Xin Longb0e9a2f2018-06-28 15:31:00 +08007981 case SCTP_REUSE_PORT:
7982 retval = sctp_getsockopt_reuse_port(sk, len, optval, optlen);
7983 break;
Xin Long480ba9c2018-11-18 16:08:54 +08007984 case SCTP_EVENT:
7985 retval = sctp_getsockopt_event(sk, len, optval, optlen);
7986 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007987 default:
7988 retval = -ENOPROTOOPT;
7989 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07007990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007991
wangweidong048ed4b2014-01-21 15:44:11 +08007992 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007993 return retval;
7994}
7995
Craig Gallek086c6532016-02-10 11:50:35 -05007996static int sctp_hash(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007997{
7998 /* STUB */
Craig Gallek086c6532016-02-10 11:50:35 -05007999 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008000}
8001
8002static void sctp_unhash(struct sock *sk)
8003{
8004 /* STUB */
8005}
8006
8007/* Check if port is acceptable. Possibly find first available port.
8008 *
8009 * The port hash table (contained in the 'global' SCTP protocol storage
8010 * returned by struct sctp_protocol *sctp_get_protocol()). The hash
8011 * table is an array of 4096 lists (sctp_bind_hashbucket). Each
8012 * list (the list number is the port number hashed out, so as you
8013 * would expect from a hash function, all the ports in a given list have
8014 * such a number that hashes out to the same list number; you were
8015 * expecting that, right?); so each list has a set of ports, with a
8016 * link to the socket (struct sock) that uses it, the port number and
8017 * a fastreuse flag (FIXME: NPI ipg).
8018 */
8019static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008020 struct sctp_bind_hashbucket *head, struct net *, unsigned short snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008021
8022static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
8023{
Xin Long6ba84572018-11-12 18:27:17 +08008024 struct sctp_sock *sp = sctp_sk(sk);
8025 bool reuse = (sk->sk_reuse || sp->reuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008026 struct sctp_bind_hashbucket *head; /* hash list */
Xin Long6ba84572018-11-12 18:27:17 +08008027 kuid_t uid = sock_i_uid(sk);
Sasha Levinb67bfe02013-02-27 17:06:00 -08008028 struct sctp_bind_bucket *pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008029 unsigned short snum;
8030 int ret;
8031
Al Viro04afd8b2006-11-20 17:02:01 -08008032 snum = ntohs(addr->v4.sin_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008033
Daniel Borkmannbb333812013-06-28 19:49:40 +02008034 pr_debug("%s: begins, snum:%d\n", __func__, snum);
8035
wangweidong79b91132014-01-21 15:44:07 +08008036 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008037
8038 if (snum == 0) {
Stephen Hemminger06393002007-10-10 17:30:18 -07008039 /* Search for an available port. */
Stephen Hemminger227b60f2007-10-10 17:30:46 -07008040 int low, high, remaining, index;
8041 unsigned int rover;
WANG Cong122ff242014-05-12 16:04:53 -07008042 struct net *net = sock_net(sk);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07008043
WANG Cong122ff242014-05-12 16:04:53 -07008044 inet_get_local_port_range(net, &low, &high);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07008045 remaining = (high - low) + 1;
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05008046 rover = prandom_u32() % remaining + low;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008047
Linus Torvalds1da177e2005-04-16 15:20:36 -07008048 do {
8049 rover++;
8050 if ((rover < low) || (rover > high))
8051 rover = low;
WANG Cong122ff242014-05-12 16:04:53 -07008052 if (inet_is_local_reserved_port(net, rover))
Amerigo Wange3826f12010-05-05 00:27:06 +00008053 continue;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008054 index = sctp_phashfn(sock_net(sk), rover);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008055 head = &sctp_port_hashtable[index];
wangweidong3c8e43b2014-01-21 15:44:08 +08008056 spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08008057 sctp_for_each_hentry(pp, &head->chain)
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008058 if ((pp->port == rover) &&
8059 net_eq(sock_net(sk), pp->net))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008060 goto next;
8061 break;
8062 next:
wangweidong3c8e43b2014-01-21 15:44:08 +08008063 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008064 } while (--remaining > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008065
8066 /* Exhausted local port range during search? */
8067 ret = 1;
8068 if (remaining <= 0)
8069 goto fail;
8070
8071 /* OK, here is the one we will use. HEAD (the port
8072 * hash table list entry) is non-NULL and we hold it's
8073 * mutex.
8074 */
8075 snum = rover;
8076 } else {
8077 /* We are given an specific port number; we verify
8078 * that it is not being used. If it is used, we will
8079 * exahust the search in the hash list corresponding
8080 * to the port number (snum) - we detect that with the
8081 * port iterator, pp being NULL.
8082 */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008083 head = &sctp_port_hashtable[sctp_phashfn(sock_net(sk), snum)];
wangweidong3c8e43b2014-01-21 15:44:08 +08008084 spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08008085 sctp_for_each_hentry(pp, &head->chain) {
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008086 if ((pp->port == snum) && net_eq(pp->net, sock_net(sk)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008087 goto pp_found;
8088 }
8089 }
8090 pp = NULL;
8091 goto pp_not_found;
8092pp_found:
8093 if (!hlist_empty(&pp->owner)) {
8094 /* We had a port hash table hit - there is an
8095 * available port (pp != NULL) and it is being
8096 * used by other socket (pp->owner not empty); that other
8097 * socket is going to be sk2.
8098 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008099 struct sock *sk2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008100
Daniel Borkmannbb333812013-06-28 19:49:40 +02008101 pr_debug("%s: found a possible match\n", __func__);
8102
Xin Long6ba84572018-11-12 18:27:17 +08008103 if ((pp->fastreuse && reuse &&
8104 sk->sk_state != SCTP_SS_LISTENING) ||
8105 (pp->fastreuseport && sk->sk_reuseport &&
8106 uid_eq(pp->fastuid, uid)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008107 goto success;
8108
8109 /* Run through the list of sockets bound to the port
8110 * (pp->port) [via the pointers bind_next and
8111 * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one,
8112 * we get the endpoint they describe and run through
8113 * the endpoint's list of IP (v4 or v6) addresses,
8114 * comparing each of the addresses with the address of
8115 * the socket sk. If we find a match, then that means
8116 * that this port/socket (sk) combination are already
8117 * in an endpoint.
8118 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08008119 sk_for_each_bound(sk2, &pp->owner) {
Xin Long6ba84572018-11-12 18:27:17 +08008120 struct sctp_sock *sp2 = sctp_sk(sk2);
8121 struct sctp_endpoint *ep2 = sp2->ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008122
Vlad Yasevich4e540642008-07-18 23:06:32 -07008123 if (sk == sk2 ||
Xin Long6ba84572018-11-12 18:27:17 +08008124 (reuse && (sk2->sk_reuse || sp2->reuse) &&
8125 sk2->sk_state != SCTP_SS_LISTENING) ||
8126 (sk->sk_reuseport && sk2->sk_reuseport &&
8127 uid_eq(uid, sock_i_uid(sk2))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008128 continue;
8129
Xin Long6ba84572018-11-12 18:27:17 +08008130 if (sctp_bind_addr_conflict(&ep2->base.bind_addr,
8131 addr, sp2, sp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008132 ret = (long)sk2;
8133 goto fail_unlock;
8134 }
8135 }
Daniel Borkmannbb333812013-06-28 19:49:40 +02008136
8137 pr_debug("%s: found a match\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008138 }
8139pp_not_found:
8140 /* If there was a hash table miss, create a new port. */
8141 ret = 1;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008142 if (!pp && !(pp = sctp_bucket_create(head, sock_net(sk), snum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008143 goto fail_unlock;
8144
8145 /* In either case (hit or miss), make sure fastreuse is 1 only
8146 * if sk->sk_reuse is too (that is, if the caller requested
8147 * SO_REUSEADDR on this socket -sk-).
8148 */
Vlad Yasevichce5325c2007-05-04 13:34:49 -07008149 if (hlist_empty(&pp->owner)) {
Xin Longb0e9a2f2018-06-28 15:31:00 +08008150 if (reuse && sk->sk_state != SCTP_SS_LISTENING)
Vlad Yasevichce5325c2007-05-04 13:34:49 -07008151 pp->fastreuse = 1;
8152 else
8153 pp->fastreuse = 0;
Xin Long6ba84572018-11-12 18:27:17 +08008154
8155 if (sk->sk_reuseport) {
8156 pp->fastreuseport = 1;
8157 pp->fastuid = uid;
8158 } else {
8159 pp->fastreuseport = 0;
8160 }
8161 } else {
8162 if (pp->fastreuse &&
8163 (!reuse || sk->sk_state == SCTP_SS_LISTENING))
8164 pp->fastreuse = 0;
8165
8166 if (pp->fastreuseport &&
8167 (!sk->sk_reuseport || !uid_eq(pp->fastuid, uid)))
8168 pp->fastreuseport = 0;
8169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008170
8171 /* We are set, so fill up all the data in the hash table
8172 * entry, tie the socket list information with the rest of the
8173 * sockets FIXME: Blurry, NPI (ipg).
8174 */
8175success:
Xin Long6ba84572018-11-12 18:27:17 +08008176 if (!sp->bind_hash) {
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008177 inet_sk(sk)->inet_num = snum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008178 sk_add_bind_node(sk, &pp->owner);
Xin Long6ba84572018-11-12 18:27:17 +08008179 sp->bind_hash = pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008180 }
8181 ret = 0;
8182
8183fail_unlock:
wangweidong3c8e43b2014-01-21 15:44:08 +08008184 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008185
8186fail:
wangweidong79b91132014-01-21 15:44:07 +08008187 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008188 return ret;
8189}
8190
8191/* Assign a 'snum' port to the socket. If snum == 0, an ephemeral
8192 * port is requested.
8193 */
8194static int sctp_get_port(struct sock *sk, unsigned short snum)
8195{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008196 union sctp_addr addr;
8197 struct sctp_af *af = sctp_sk(sk)->pf->af;
8198
8199 /* Set up a dummy address struct from the sk. */
8200 af->from_sk(&addr, sk);
8201 addr.v4.sin_port = htons(snum);
8202
8203 /* Note: sk->sk_num gets filled in if ephemeral port request. */
Daniel Borkmann62208f12013-06-25 18:17:30 +02008204 return !!sctp_get_port_local(sk, &addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008205}
8206
8207/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008208 * Move a socket to LISTENING state.
8209 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02008210static int sctp_listen_start(struct sock *sk, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008211{
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00008212 struct sctp_sock *sp = sctp_sk(sk);
8213 struct sctp_endpoint *ep = sp->ep;
Herbert Xu5821c762016-01-24 21:20:12 +08008214 struct crypto_shash *tfm = NULL;
Neil Horman3c681982012-10-24 09:20:03 +00008215 char alg[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07008216
8217 /* Allocate HMAC for generating cookie. */
Neil Horman3c681982012-10-24 09:20:03 +00008218 if (!sp->hmac && sp->sctp_hmac_alg) {
8219 sprintf(alg, "hmac(%s)", sp->sctp_hmac_alg);
Herbert Xu5821c762016-01-24 21:20:12 +08008220 tfm = crypto_alloc_shash(alg, 0, 0);
Vlad Yasevich8dc49842007-05-09 13:50:20 -07008221 if (IS_ERR(tfm)) {
Joe Perchese87cc472012-05-13 21:56:26 +00008222 net_info_ratelimited("failed to load transform for %s: %ld\n",
Neil Horman3c681982012-10-24 09:20:03 +00008223 sp->sctp_hmac_alg, PTR_ERR(tfm));
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00008224 return -ENOSYS;
8225 }
8226 sctp_sk(sk)->hmac = tfm;
8227 }
8228
8229 /*
8230 * If a bind() or sctp_bindx() is not called prior to a listen()
8231 * call that allows new associations to be accepted, the system
8232 * picks an ephemeral port and will choose an address set equivalent
8233 * to binding with a wildcard address.
8234 *
8235 * This is not currently spelled out in the SCTP sockets
8236 * extensions draft, but follows the practice as seen in TCP
8237 * sockets.
8238 *
8239 */
Yafang Shaocbabf462017-12-20 11:12:54 +08008240 inet_sk_set_state(sk, SCTP_SS_LISTENING);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00008241 if (!ep->base.bind_addr.port) {
8242 if (sctp_autobind(sk))
8243 return -EAGAIN;
8244 } else {
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008245 if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
Yafang Shaocbabf462017-12-20 11:12:54 +08008246 inet_sk_set_state(sk, SCTP_SS_CLOSED);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00008247 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008248 }
8249 }
8250
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00008251 sk->sk_max_ack_backlog = backlog;
Xin Long76c6d982018-11-12 18:27:16 +08008252 return sctp_hash_endpoint(ep);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00008253}
8254
8255/*
8256 * 4.1.3 / 5.1.3 listen()
8257 *
8258 * By default, new associations are not accepted for UDP style sockets.
8259 * An application uses listen() to mark a socket as being able to
8260 * accept new associations.
8261 *
8262 * On TCP style sockets, applications use listen() to ready the SCTP
8263 * endpoint for accepting inbound associations.
8264 *
8265 * On both types of endpoints a backlog of '0' disables listening.
8266 *
8267 * Move a socket to LISTENING state.
8268 */
8269int sctp_inet_listen(struct socket *sock, int backlog)
8270{
8271 struct sock *sk = sock->sk;
8272 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
8273 int err = -EINVAL;
8274
8275 if (unlikely(backlog < 0))
8276 return err;
8277
wangweidong048ed4b2014-01-21 15:44:11 +08008278 lock_sock(sk);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00008279
8280 /* Peeled-off sockets are not allowed to listen(). */
8281 if (sctp_style(sk, UDP_HIGH_BANDWIDTH))
8282 goto out;
8283
8284 if (sock->state != SS_UNCONNECTED)
8285 goto out;
8286
Xin Long34b27892017-04-06 13:10:52 +08008287 if (!sctp_sstate(sk, LISTENING) && !sctp_sstate(sk, CLOSED))
8288 goto out;
8289
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00008290 /* If backlog is zero, disable listening. */
8291 if (!backlog) {
8292 if (sctp_sstate(sk, CLOSED))
8293 goto out;
8294
8295 err = 0;
8296 sctp_unhash_endpoint(ep);
8297 sk->sk_state = SCTP_SS_CLOSED;
Xin Longb0e9a2f2018-06-28 15:31:00 +08008298 if (sk->sk_reuse || sctp_sk(sk)->reuse)
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00008299 sctp_sk(sk)->bind_hash->fastreuse = 1;
8300 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07008301 }
8302
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00008303 /* If we are already listening, just update the backlog */
8304 if (sctp_sstate(sk, LISTENING))
8305 sk->sk_max_ack_backlog = backlog;
8306 else {
8307 err = sctp_listen_start(sk, backlog);
8308 if (err)
8309 goto out;
8310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008311
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00008312 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008313out:
wangweidong048ed4b2014-01-21 15:44:11 +08008314 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008315 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008316}
8317
8318/*
8319 * This function is done by modeling the current datagram_poll() and the
8320 * tcp_poll(). Note that, based on these implementations, we don't
8321 * lock the socket in this function, even though it seems that,
8322 * ideally, locking or some other mechanisms can be used to ensure
Neil Horman9bffc4a2005-12-19 14:24:40 -08008323 * the integrity of the counters (sndbuf and wmem_alloc) used
Linus Torvalds1da177e2005-04-16 15:20:36 -07008324 * in this place. We assume that we don't need locks either until proven
8325 * otherwise.
8326 *
8327 * Another thing to note is that we include the Async I/O support
8328 * here, again, by modeling the current TCP/UDP code. We don't have
8329 * a good way to test with it yet.
8330 */
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07008331__poll_t sctp_poll(struct file *file, struct socket *sock, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008332{
8333 struct sock *sk = sock->sk;
8334 struct sctp_sock *sp = sctp_sk(sk);
Al Viroade994f2017-07-03 00:01:49 -04008335 __poll_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008336
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07008337 poll_wait(file, sk_sleep(sk), wait);
8338
Marcelo Ricardo Leitner486bdee2016-04-12 18:11:31 -03008339 sock_rps_record_flow(sk);
8340
Linus Torvalds1da177e2005-04-16 15:20:36 -07008341 /* A TCP-style listening socket becomes readable when the accept queue
8342 * is not empty.
8343 */
8344 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
8345 return (!list_empty(&sp->ep->asocs)) ?
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008346 (EPOLLIN | EPOLLRDNORM) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008347
8348 mask = 0;
8349
8350 /* Is there any exceptional events? */
8351 if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008352 mask |= EPOLLERR |
8353 (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? EPOLLPRI : 0);
Davide Libenzif348d702006-03-25 03:07:39 -08008354 if (sk->sk_shutdown & RCV_SHUTDOWN)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008355 mask |= EPOLLRDHUP | EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008356 if (sk->sk_shutdown == SHUTDOWN_MASK)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008357 mask |= EPOLLHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008358
8359 /* Is it readable? Reconsider this code with TCP-style support. */
Eric Dumazetdb409802010-09-06 11:13:50 +00008360 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008361 mask |= EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008362
8363 /* The association is either gone or not ready. */
8364 if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED))
8365 return mask;
8366
8367 /* Is it writable? */
8368 if (sctp_writeable(sk)) {
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008369 mask |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008370 } else {
Eric Dumazet9cd3e072015-11-29 20:03:10 -08008371 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008372 /*
8373 * Since the socket is not locked, the buffer
8374 * might be made available after the writeable check and
8375 * before the bit is set. This could cause a lost I/O
8376 * signal. tcp_poll() has a race breaker for this race
8377 * condition. Based on their implementation, we put
8378 * in the following code to cover it as well.
8379 */
8380 if (sctp_writeable(sk))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008381 mask |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008382 }
8383 return mask;
8384}
8385
8386/********************************************************************
8387 * 2nd Level Abstractions
8388 ********************************************************************/
8389
8390static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008391 struct sctp_bind_hashbucket *head, struct net *net, unsigned short snum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008392{
8393 struct sctp_bind_bucket *pp;
8394
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08008395 pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008396 if (pp) {
Li Zefan935a7f62008-04-10 01:58:06 -07008397 SCTP_DBG_OBJCNT_INC(bind_bucket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008398 pp->port = snum;
8399 pp->fastreuse = 0;
8400 INIT_HLIST_HEAD(&pp->owner);
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008401 pp->net = net;
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05008402 hlist_add_head(&pp->node, &head->chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008403 }
8404 return pp;
8405}
8406
8407/* Caller must hold hashbucket lock for this tb with local BH disabled */
8408static void sctp_bucket_destroy(struct sctp_bind_bucket *pp)
8409{
Sridhar Samudrala37fa6872006-07-21 14:45:47 -07008410 if (pp && hlist_empty(&pp->owner)) {
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05008411 __hlist_del(&pp->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008412 kmem_cache_free(sctp_bucket_cachep, pp);
8413 SCTP_DBG_OBJCNT_DEC(bind_bucket);
8414 }
8415}
8416
8417/* Release this socket's reference to a local port. */
8418static inline void __sctp_put_port(struct sock *sk)
8419{
8420 struct sctp_bind_hashbucket *head =
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008421 &sctp_port_hashtable[sctp_phashfn(sock_net(sk),
8422 inet_sk(sk)->inet_num)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07008423 struct sctp_bind_bucket *pp;
8424
wangweidong3c8e43b2014-01-21 15:44:08 +08008425 spin_lock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008426 pp = sctp_sk(sk)->bind_hash;
8427 __sk_del_bind_node(sk);
8428 sctp_sk(sk)->bind_hash = NULL;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008429 inet_sk(sk)->inet_num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008430 sctp_bucket_destroy(pp);
wangweidong3c8e43b2014-01-21 15:44:08 +08008431 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008432}
8433
8434void sctp_put_port(struct sock *sk)
8435{
wangweidong79b91132014-01-21 15:44:07 +08008436 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008437 __sctp_put_port(sk);
wangweidong79b91132014-01-21 15:44:07 +08008438 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008439}
8440
8441/*
8442 * The system picks an ephemeral port and choose an address set equivalent
8443 * to binding with a wildcard address.
8444 * One of those addresses will be the primary address for the association.
8445 * This automatically enables the multihoming capability of SCTP.
8446 */
8447static int sctp_autobind(struct sock *sk)
8448{
8449 union sctp_addr autoaddr;
8450 struct sctp_af *af;
Al Viro6fbfa9f2006-11-20 17:24:53 -08008451 __be16 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008452
8453 /* Initialize a local sockaddr structure to INADDR_ANY. */
8454 af = sctp_sk(sk)->pf->af;
8455
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008456 port = htons(inet_sk(sk)->inet_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008457 af->inaddr_any(&autoaddr, port);
8458
8459 return sctp_do_bind(sk, &autoaddr, af->sockaddr_len);
8460}
8461
8462/* Parse out IPPROTO_SCTP CMSG headers. Perform only minimal validation.
8463 *
8464 * From RFC 2292
8465 * 4.2 The cmsghdr Structure *
8466 *
8467 * When ancillary data is sent or received, any number of ancillary data
8468 * objects can be specified by the msg_control and msg_controllen members of
8469 * the msghdr structure, because each object is preceded by
8470 * a cmsghdr structure defining the object's length (the cmsg_len member).
8471 * Historically Berkeley-derived implementations have passed only one object
8472 * at a time, but this API allows multiple objects to be
8473 * passed in a single call to sendmsg() or recvmsg(). The following example
8474 * shows two ancillary data objects in a control buffer.
8475 *
8476 * |<--------------------------- msg_controllen -------------------------->|
8477 * | |
8478 *
8479 * |<----- ancillary data object ----->|<----- ancillary data object ----->|
8480 *
8481 * |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->|
8482 * | | |
8483 *
8484 * |<---------- cmsg_len ---------->| |<--------- cmsg_len ----------->| |
8485 *
8486 * |<--------- CMSG_LEN() --------->| |<-------- CMSG_LEN() ---------->| |
8487 * | | | | |
8488 *
8489 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
8490 * |cmsg_|cmsg_|cmsg_|XX| |XX|cmsg_|cmsg_|cmsg_|XX| |XX|
8491 *
8492 * |len |level|type |XX|cmsg_data[]|XX|len |level|type |XX|cmsg_data[]|XX|
8493 *
8494 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
8495 * ^
8496 * |
8497 *
8498 * msg_control
8499 * points here
8500 */
Xin Longa05437a2017-08-11 10:23:48 +08008501static int sctp_msghdr_parse(const struct msghdr *msg, struct sctp_cmsgs *cmsgs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008502{
Vlad Yasevichab38fb02008-04-12 18:40:06 -07008503 struct msghdr *my_msg = (struct msghdr *)msg;
Xin Longa05437a2017-08-11 10:23:48 +08008504 struct cmsghdr *cmsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008505
Gu Zhengf95b4142014-12-11 11:22:04 +08008506 for_each_cmsghdr(cmsg, my_msg) {
Vlad Yasevichab38fb02008-04-12 18:40:06 -07008507 if (!CMSG_OK(my_msg, cmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008508 return -EINVAL;
8509
8510 /* Should we parse this header or ignore? */
8511 if (cmsg->cmsg_level != IPPROTO_SCTP)
8512 continue;
8513
8514 /* Strictly check lengths following example in SCM code. */
8515 switch (cmsg->cmsg_type) {
8516 case SCTP_INIT:
8517 /* SCTP Socket API Extension
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008518 * 5.3.1 SCTP Initiation Structure (SCTP_INIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008519 *
8520 * This cmsghdr structure provides information for
8521 * initializing new SCTP associations with sendmsg().
8522 * The SCTP_INITMSG socket option uses this same data
8523 * structure. This structure is not used for
8524 * recvmsg().
8525 *
8526 * cmsg_level cmsg_type cmsg_data[]
8527 * ------------ ------------ ----------------------
8528 * IPPROTO_SCTP SCTP_INIT struct sctp_initmsg
8529 */
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008530 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_initmsg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008531 return -EINVAL;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008532
8533 cmsgs->init = CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008534 break;
8535
8536 case SCTP_SNDRCV:
8537 /* SCTP Socket API Extension
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008538 * 5.3.2 SCTP Header Information Structure(SCTP_SNDRCV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008539 *
8540 * This cmsghdr structure specifies SCTP options for
8541 * sendmsg() and describes SCTP header information
8542 * about a received message through recvmsg().
8543 *
8544 * cmsg_level cmsg_type cmsg_data[]
8545 * ------------ ------------ ----------------------
8546 * IPPROTO_SCTP SCTP_SNDRCV struct sctp_sndrcvinfo
8547 */
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008548 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndrcvinfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008549 return -EINVAL;
8550
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008551 cmsgs->srinfo = CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008552
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008553 if (cmsgs->srinfo->sinfo_flags &
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07008554 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
Xin Long49102802018-03-05 20:44:20 +08008555 SCTP_SACK_IMMEDIATELY | SCTP_SENDALL |
8556 SCTP_PR_SCTP_MASK | SCTP_ABORT | SCTP_EOF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008557 return -EINVAL;
8558 break;
8559
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008560 case SCTP_SNDINFO:
8561 /* SCTP Socket API Extension
8562 * 5.3.4 SCTP Send Information Structure (SCTP_SNDINFO)
8563 *
8564 * This cmsghdr structure specifies SCTP options for
8565 * sendmsg(). This structure and SCTP_RCVINFO replaces
8566 * SCTP_SNDRCV which has been deprecated.
8567 *
8568 * cmsg_level cmsg_type cmsg_data[]
8569 * ------------ ------------ ---------------------
8570 * IPPROTO_SCTP SCTP_SNDINFO struct sctp_sndinfo
8571 */
8572 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndinfo)))
8573 return -EINVAL;
8574
8575 cmsgs->sinfo = CMSG_DATA(cmsg);
8576
8577 if (cmsgs->sinfo->snd_flags &
8578 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
Xin Long49102802018-03-05 20:44:20 +08008579 SCTP_SACK_IMMEDIATELY | SCTP_SENDALL |
8580 SCTP_PR_SCTP_MASK | SCTP_ABORT | SCTP_EOF))
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008581 return -EINVAL;
8582 break;
Xin Longed63afb2018-03-05 20:44:18 +08008583 case SCTP_PRINFO:
8584 /* SCTP Socket API Extension
8585 * 5.3.7 SCTP PR-SCTP Information Structure (SCTP_PRINFO)
8586 *
8587 * This cmsghdr structure specifies SCTP options for sendmsg().
8588 *
8589 * cmsg_level cmsg_type cmsg_data[]
8590 * ------------ ------------ ---------------------
8591 * IPPROTO_SCTP SCTP_PRINFO struct sctp_prinfo
8592 */
8593 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_prinfo)))
8594 return -EINVAL;
8595
8596 cmsgs->prinfo = CMSG_DATA(cmsg);
8597 if (cmsgs->prinfo->pr_policy & ~SCTP_PR_SCTP_MASK)
8598 return -EINVAL;
8599
8600 if (cmsgs->prinfo->pr_policy == SCTP_PR_SCTP_NONE)
8601 cmsgs->prinfo->pr_value = 0;
8602 break;
Xin Long3ff547c2018-03-14 19:05:31 +08008603 case SCTP_AUTHINFO:
8604 /* SCTP Socket API Extension
8605 * 5.3.8 SCTP AUTH Information Structure (SCTP_AUTHINFO)
8606 *
8607 * This cmsghdr structure specifies SCTP options for sendmsg().
8608 *
8609 * cmsg_level cmsg_type cmsg_data[]
8610 * ------------ ------------ ---------------------
8611 * IPPROTO_SCTP SCTP_AUTHINFO struct sctp_authinfo
8612 */
8613 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_authinfo)))
8614 return -EINVAL;
8615
8616 cmsgs->authinfo = CMSG_DATA(cmsg);
8617 break;
Xin Long2c0dbaa2018-03-05 20:44:19 +08008618 case SCTP_DSTADDRV4:
8619 case SCTP_DSTADDRV6:
8620 /* SCTP Socket API Extension
8621 * 5.3.9/10 SCTP Destination IPv4/6 Address Structure (SCTP_DSTADDRV4/6)
8622 *
8623 * This cmsghdr structure specifies SCTP options for sendmsg().
8624 *
8625 * cmsg_level cmsg_type cmsg_data[]
8626 * ------------ ------------ ---------------------
8627 * IPPROTO_SCTP SCTP_DSTADDRV4 struct in_addr
8628 * ------------ ------------ ---------------------
8629 * IPPROTO_SCTP SCTP_DSTADDRV6 struct in6_addr
8630 */
8631 cmsgs->addrs_msg = my_msg;
8632 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008633 default:
8634 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07008635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008636 }
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02008637
Linus Torvalds1da177e2005-04-16 15:20:36 -07008638 return 0;
8639}
8640
8641/*
8642 * Wait for a packet..
8643 * Note: This function is the same function as in core/datagram.c
8644 * with a few modifications to make lksctp work.
8645 */
wangweidong26ac8e52013-12-23 12:16:51 +08008646static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008647{
8648 int error;
8649 DEFINE_WAIT(wait);
8650
Eric Dumazetaa395142010-04-20 13:03:51 +00008651 prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008652
8653 /* Socket errors? */
8654 error = sock_error(sk);
8655 if (error)
8656 goto out;
8657
8658 if (!skb_queue_empty(&sk->sk_receive_queue))
8659 goto ready;
8660
8661 /* Socket shut down? */
8662 if (sk->sk_shutdown & RCV_SHUTDOWN)
8663 goto out;
8664
8665 /* Sequenced packets can come disconnected. If so we report the
8666 * problem.
8667 */
8668 error = -ENOTCONN;
8669
8670 /* Is there a good reason to think that we may receive some data? */
8671 if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING))
8672 goto out;
8673
8674 /* Handle signals. */
8675 if (signal_pending(current))
8676 goto interrupted;
8677
8678 /* Let another process have a go. Since we are going to sleep
8679 * anyway. Note: This may cause odd behaviors if the message
8680 * does not fit in the user's buffer, but this seems to be the
8681 * only way to honor MSG_DONTWAIT realistically.
8682 */
wangweidong048ed4b2014-01-21 15:44:11 +08008683 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008684 *timeo_p = schedule_timeout(*timeo_p);
wangweidong048ed4b2014-01-21 15:44:11 +08008685 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008686
8687ready:
Eric Dumazetaa395142010-04-20 13:03:51 +00008688 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008689 return 0;
8690
8691interrupted:
8692 error = sock_intr_errno(*timeo_p);
8693
8694out:
Eric Dumazetaa395142010-04-20 13:03:51 +00008695 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008696 *err = error;
8697 return error;
8698}
8699
8700/* Receive a datagram.
8701 * Note: This is pretty much the same routine as in core/datagram.c
8702 * with a few changes to make lksctp work.
8703 */
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02008704struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags,
8705 int noblock, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008706{
8707 int error;
8708 struct sk_buff *skb;
8709 long timeo;
8710
Linus Torvalds1da177e2005-04-16 15:20:36 -07008711 timeo = sock_rcvtimeo(sk, noblock);
8712
Daniel Borkmannbb333812013-06-28 19:49:40 +02008713 pr_debug("%s: timeo:%ld, max:%ld\n", __func__, timeo,
8714 MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008715
8716 do {
8717 /* Again only user level code calls this function,
8718 * so nothing interrupt level
8719 * will suddenly eat the receive_queue.
8720 *
8721 * Look at current nfs client by the way...
David Shwatrz8917a3c2010-12-02 09:01:55 +00008722 * However, this function was correct in any case. 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008723 */
8724 if (flags & MSG_PEEK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008725 skb = skb_peek(&sk->sk_receive_queue);
8726 if (skb)
Reshetova, Elena63354792017-06-30 13:07:58 +03008727 refcount_inc(&skb->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008728 } else {
Marcelo Ricardo Leitner311b2172016-04-13 19:12:29 -03008729 skb = __skb_dequeue(&sk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008730 }
8731
8732 if (skb)
8733 return skb;
8734
Neil Horman6736dc32005-12-02 20:30:06 -08008735 /* Caller is allowed not to check sk->sk_err before calling. */
8736 error = sock_error(sk);
8737 if (error)
8738 goto no_packet;
8739
Linus Torvalds1da177e2005-04-16 15:20:36 -07008740 if (sk->sk_shutdown & RCV_SHUTDOWN)
8741 break;
8742
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07008743 if (sk_can_busy_loop(sk)) {
8744 sk_busy_loop(sk, noblock);
8745
8746 if (!skb_queue_empty(&sk->sk_receive_queue))
8747 continue;
8748 }
Neil Horman8465a5f2014-04-17 15:26:51 -04008749
Linus Torvalds1da177e2005-04-16 15:20:36 -07008750 /* User doesn't want to wait. */
8751 error = -EAGAIN;
8752 if (!timeo)
8753 goto no_packet;
8754 } while (sctp_wait_for_packet(sk, err, &timeo) == 0);
8755
8756 return NULL;
8757
8758no_packet:
8759 *err = error;
8760 return NULL;
8761}
8762
8763/* If sndbuf has changed, wake up per association sndbuf waiters. */
8764static void __sctp_write_space(struct sctp_association *asoc)
8765{
8766 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008767
Eric Dumazetceb5d582015-11-29 20:03:11 -08008768 if (sctp_wspace(asoc) <= 0)
8769 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008770
Eric Dumazetceb5d582015-11-29 20:03:11 -08008771 if (waitqueue_active(&asoc->wait))
8772 wake_up_interruptible(&asoc->wait);
Eric Dumazeteaefd112011-02-18 03:26:36 +00008773
Eric Dumazetceb5d582015-11-29 20:03:11 -08008774 if (sctp_writeable(sk)) {
8775 struct socket_wq *wq;
8776
8777 rcu_read_lock();
8778 wq = rcu_dereference(sk->sk_wq);
8779 if (wq) {
8780 if (waitqueue_active(&wq->wait))
8781 wake_up_interruptible(&wq->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008782
8783 /* Note that we try to include the Async I/O support
8784 * here by modeling from the current TCP/UDP code.
8785 * We have not tested with it yet.
8786 */
Eric Dumazeteaefd112011-02-18 03:26:36 +00008787 if (!(sk->sk_shutdown & SEND_SHUTDOWN))
Eric Dumazetceb5d582015-11-29 20:03:11 -08008788 sock_wake_async(wq, SOCK_WAKE_SPACE, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008789 }
Eric Dumazetceb5d582015-11-29 20:03:11 -08008790 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008791 }
8792}
8793
Daniel Borkmann52c35be2014-04-08 17:26:13 +02008794static void sctp_wake_up_waiters(struct sock *sk,
8795 struct sctp_association *asoc)
8796{
8797 struct sctp_association *tmp = asoc;
8798
8799 /* We do accounting for the sndbuf space per association,
8800 * so we only need to wake our own association.
8801 */
8802 if (asoc->ep->sndbuf_policy)
8803 return __sctp_write_space(asoc);
8804
Daniel Borkmann1e1cdf82014-04-09 16:10:20 +02008805 /* If association goes down and is just flushing its
8806 * outq, then just normally notify others.
8807 */
8808 if (asoc->base.dead)
8809 return sctp_write_space(sk);
8810
Daniel Borkmann52c35be2014-04-08 17:26:13 +02008811 /* Accounting for the sndbuf space is per socket, so we
8812 * need to wake up others, try to be fair and in case of
8813 * other associations, let them have a go first instead
8814 * of just doing a sctp_write_space() call.
8815 *
8816 * Note that we reach sctp_wake_up_waiters() only when
8817 * associations free up queued chunks, thus we are under
8818 * lock and the list of associations on a socket is
8819 * guaranteed not to change.
8820 */
8821 for (tmp = list_next_entry(tmp, asocs); 1;
8822 tmp = list_next_entry(tmp, asocs)) {
8823 /* Manually skip the head element. */
8824 if (&tmp->asocs == &((sctp_sk(sk))->ep->asocs))
8825 continue;
8826 /* Wake up association. */
8827 __sctp_write_space(tmp);
8828 /* We've reached the end. */
8829 if (tmp == asoc)
8830 break;
8831 }
8832}
8833
Linus Torvalds1da177e2005-04-16 15:20:36 -07008834/* Do accounting for the sndbuf space.
8835 * Decrement the used sndbuf space of the corresponding association by the
8836 * data size which was just transmitted(freed).
8837 */
8838static void sctp_wfree(struct sk_buff *skb)
8839{
Daniel Borkmannf869c912014-11-20 01:54:48 +01008840 struct sctp_chunk *chunk = skb_shinfo(skb)->destructor_arg;
8841 struct sctp_association *asoc = chunk->asoc;
8842 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008843
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008844 sk_mem_uncharge(sk, skb->truesize);
Xin Long605c0ac2018-10-17 03:07:50 +08008845 sk->sk_wmem_queued -= skb->truesize + sizeof(struct sctp_chunk);
8846 asoc->sndbuf_used -= skb->truesize + sizeof(struct sctp_chunk);
8847 WARN_ON(refcount_sub_and_test(sizeof(struct sctp_chunk),
8848 &sk->sk_wmem_alloc));
Neil Horman4d93df02007-08-15 16:07:44 -07008849
Xin Longec2e5062018-03-14 19:05:33 +08008850 if (chunk->shkey) {
8851 struct sctp_shared_key *shkey = chunk->shkey;
8852
8853 /* refcnt == 2 and !list_empty mean after this release, it's
8854 * not being used anywhere, and it's time to notify userland
8855 * that this shkey can be freed if it's been deactivated.
8856 */
8857 if (shkey->deactivated && !list_empty(&shkey->key_list) &&
8858 refcount_read(&shkey->refcnt) == 2) {
8859 struct sctp_ulpevent *ev;
8860
8861 ev = sctp_ulpevent_make_authkey(asoc, shkey->key_id,
8862 SCTP_AUTH_FREE_KEY,
8863 GFP_KERNEL);
8864 if (ev)
8865 asoc->stream.si->enqueue_event(&asoc->ulpq, ev);
8866 }
Xin Long1b1e0bc2018-03-14 19:05:30 +08008867 sctp_auth_shkey_release(chunk->shkey);
Xin Longec2e5062018-03-14 19:05:33 +08008868 }
Xin Long1b1e0bc2018-03-14 19:05:30 +08008869
Neil Horman4eb701d2005-04-28 12:02:04 -07008870 sock_wfree(skb);
Daniel Borkmann52c35be2014-04-08 17:26:13 +02008871 sctp_wake_up_waiters(sk, asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008872
8873 sctp_association_put(asoc);
8874}
8875
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07008876/* Do accounting for the receive space on the socket.
8877 * Accounting for the association is done in ulpevent.c
8878 * We set this as a destructor for the cloned data skbs so that
8879 * accounting is done at the correct time.
8880 */
8881void sctp_sock_rfree(struct sk_buff *skb)
8882{
8883 struct sock *sk = skb->sk;
8884 struct sctp_ulpevent *event = sctp_skb2event(skb);
8885
8886 atomic_sub(event->rmem_len, &sk->sk_rmem_alloc);
Neil Horman4d93df02007-08-15 16:07:44 -07008887
8888 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008889 * Mimic the behavior of sock_rfree
Neil Horman4d93df02007-08-15 16:07:44 -07008890 */
Hideo Aoki3ab224b2007-12-31 00:11:19 -08008891 sk_mem_uncharge(sk, event->rmem_len);
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07008892}
8893
8894
Linus Torvalds1da177e2005-04-16 15:20:36 -07008895/* Helper function to wait for space in the sndbuf. */
8896static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
Xin Longa0ff6602018-01-15 17:01:36 +08008897 size_t msg_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008898{
8899 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008900 long current_timeo = *timeo_p;
8901 DEFINE_WAIT(wait);
Xin Longa0ff6602018-01-15 17:01:36 +08008902 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008903
Daniel Borkmannbb333812013-06-28 19:49:40 +02008904 pr_debug("%s: asoc:%p, timeo:%ld, msg_len:%zu\n", __func__, asoc,
8905 *timeo_p, msg_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008906
8907 /* Increment the association's refcnt. */
8908 sctp_association_hold(asoc);
8909
8910 /* Wait on the association specific sndbuf space. */
8911 for (;;) {
8912 prepare_to_wait_exclusive(&asoc->wait, &wait,
8913 TASK_INTERRUPTIBLE);
Xin Longca3af4d2017-11-15 16:55:54 +08008914 if (asoc->base.dead)
8915 goto do_dead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008916 if (!*timeo_p)
8917 goto do_nonblock;
Xin Longca3af4d2017-11-15 16:55:54 +08008918 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008919 goto do_error;
8920 if (signal_pending(current))
8921 goto do_interrupted;
Xin Long10339902019-04-15 17:15:06 +08008922 if (sk_under_memory_pressure(sk))
8923 sk_mem_reclaim(sk);
8924 if ((int)msg_len <= sctp_wspace(asoc) &&
8925 sk_wmem_schedule(sk, msg_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008926 break;
8927
8928 /* Let another process have a go. Since we are going
8929 * to sleep anyway.
8930 */
wangweidong048ed4b2014-01-21 15:44:11 +08008931 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008932 current_timeo = schedule_timeout(current_timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08008933 lock_sock(sk);
Xin Longa0ff6602018-01-15 17:01:36 +08008934 if (sk != asoc->base.sk)
8935 goto do_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008936
8937 *timeo_p = current_timeo;
8938 }
8939
8940out:
8941 finish_wait(&asoc->wait, &wait);
8942
8943 /* Release the association's refcnt. */
8944 sctp_association_put(asoc);
8945
8946 return err;
8947
Xin Longca3af4d2017-11-15 16:55:54 +08008948do_dead:
8949 err = -ESRCH;
8950 goto out;
8951
Linus Torvalds1da177e2005-04-16 15:20:36 -07008952do_error:
8953 err = -EPIPE;
8954 goto out;
8955
8956do_interrupted:
8957 err = sock_intr_errno(*timeo_p);
8958 goto out;
8959
8960do_nonblock:
8961 err = -EAGAIN;
8962 goto out;
8963}
8964
David S. Miller676d2362014-04-11 16:15:36 -04008965void sctp_data_ready(struct sock *sk)
Wei Yongjun561b1732010-04-28 08:47:18 +00008966{
David S. Miller7ef52732010-05-02 21:43:40 -07008967 struct socket_wq *wq;
8968
8969 rcu_read_lock();
8970 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08008971 if (skwq_has_sleeper(wq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08008972 wake_up_interruptible_sync_poll(&wq->wait, EPOLLIN |
8973 EPOLLRDNORM | EPOLLRDBAND);
Wei Yongjun561b1732010-04-28 08:47:18 +00008974 sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
David S. Miller7ef52732010-05-02 21:43:40 -07008975 rcu_read_unlock();
Wei Yongjun561b1732010-04-28 08:47:18 +00008976}
8977
Linus Torvalds1da177e2005-04-16 15:20:36 -07008978/* If socket sndbuf has changed, wake up all per association waiters. */
8979void sctp_write_space(struct sock *sk)
8980{
8981 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008982
8983 /* Wake up the tasks in each wait queue. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07008984 list_for_each_entry(asoc, &((sctp_sk(sk))->ep->asocs), asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008985 __sctp_write_space(asoc);
8986 }
8987}
8988
8989/* Is there any sndbuf space available on the socket?
8990 *
Neil Horman9bffc4a2005-12-19 14:24:40 -08008991 * Note that sk_wmem_alloc is the sum of the send buffers on all of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07008992 * associations on the same socket. For a UDP-style socket with
8993 * multiple associations, it is possible for it to be "unwriteable"
8994 * prematurely. I assume that this is acceptable because
8995 * a premature "unwriteable" is better than an accidental "writeable" which
8996 * would cause an unwanted block under certain circumstances. For the 1-1
8997 * UDP-style sockets or TCP-style sockets, this code should work.
8998 * - Daisy
8999 */
Xin Longcd305c72018-10-17 03:07:51 +08009000static bool sctp_writeable(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009001{
Xin Longcd305c72018-10-17 03:07:51 +08009002 return sk->sk_sndbuf > sk->sk_wmem_queued;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009003}
9004
9005/* Wait for an association to go into ESTABLISHED state. If timeout is 0,
9006 * returns immediately with EINPROGRESS.
9007 */
9008static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p)
9009{
9010 struct sock *sk = asoc->base.sk;
9011 int err = 0;
9012 long current_timeo = *timeo_p;
9013 DEFINE_WAIT(wait);
9014
Daniel Borkmannbb333812013-06-28 19:49:40 +02009015 pr_debug("%s: asoc:%p, timeo:%ld\n", __func__, asoc, *timeo_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009016
9017 /* Increment the association's refcnt. */
9018 sctp_association_hold(asoc);
9019
9020 for (;;) {
9021 prepare_to_wait_exclusive(&asoc->wait, &wait,
9022 TASK_INTERRUPTIBLE);
9023 if (!*timeo_p)
9024 goto do_nonblock;
9025 if (sk->sk_shutdown & RCV_SHUTDOWN)
9026 break;
9027 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
9028 asoc->base.dead)
9029 goto do_error;
9030 if (signal_pending(current))
9031 goto do_interrupted;
9032
9033 if (sctp_state(asoc, ESTABLISHED))
9034 break;
9035
9036 /* Let another process have a go. Since we are going
9037 * to sleep anyway.
9038 */
wangweidong048ed4b2014-01-21 15:44:11 +08009039 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009040 current_timeo = schedule_timeout(current_timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08009041 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009042
9043 *timeo_p = current_timeo;
9044 }
9045
9046out:
9047 finish_wait(&asoc->wait, &wait);
9048
9049 /* Release the association's refcnt. */
9050 sctp_association_put(asoc);
9051
9052 return err;
9053
9054do_error:
Vlad Yasevich81845c22006-01-30 15:59:54 -08009055 if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009056 err = -ETIMEDOUT;
9057 else
9058 err = -ECONNREFUSED;
9059 goto out;
9060
9061do_interrupted:
9062 err = sock_intr_errno(*timeo_p);
9063 goto out;
9064
9065do_nonblock:
9066 err = -EINPROGRESS;
9067 goto out;
9068}
9069
9070static int sctp_wait_for_accept(struct sock *sk, long timeo)
9071{
9072 struct sctp_endpoint *ep;
9073 int err = 0;
9074 DEFINE_WAIT(wait);
9075
9076 ep = sctp_sk(sk)->ep;
9077
9078
9079 for (;;) {
Eric Dumazetaa395142010-04-20 13:03:51 +00009080 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009081 TASK_INTERRUPTIBLE);
9082
9083 if (list_empty(&ep->asocs)) {
wangweidong048ed4b2014-01-21 15:44:11 +08009084 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009085 timeo = schedule_timeout(timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08009086 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009087 }
9088
9089 err = -EINVAL;
9090 if (!sctp_sstate(sk, LISTENING))
9091 break;
9092
9093 err = 0;
9094 if (!list_empty(&ep->asocs))
9095 break;
9096
9097 err = sock_intr_errno(timeo);
9098 if (signal_pending(current))
9099 break;
9100
9101 err = -EAGAIN;
9102 if (!timeo)
9103 break;
9104 }
9105
Eric Dumazetaa395142010-04-20 13:03:51 +00009106 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009107
9108 return err;
9109}
9110
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +02009111static void sctp_wait_for_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009112{
9113 DEFINE_WAIT(wait);
9114
9115 do {
Eric Dumazetaa395142010-04-20 13:03:51 +00009116 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009117 if (list_empty(&sctp_sk(sk)->ep->asocs))
9118 break;
wangweidong048ed4b2014-01-21 15:44:11 +08009119 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009120 timeout = schedule_timeout(timeout);
wangweidong048ed4b2014-01-21 15:44:11 +08009121 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009122 } while (!signal_pending(current) && timeout);
9123
Eric Dumazetaa395142010-04-20 13:03:51 +00009124 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009125}
9126
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07009127static void sctp_skb_set_owner_r_frag(struct sk_buff *skb, struct sock *sk)
9128{
9129 struct sk_buff *frag;
9130
9131 if (!skb->data_len)
9132 goto done;
9133
9134 /* Don't forget the fragments. */
David S. Miller1b003be2009-06-09 00:22:35 -07009135 skb_walk_frags(skb, frag)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07009136 sctp_skb_set_owner_r_frag(frag, sk);
9137
9138done:
9139 sctp_skb_set_owner_r(skb, sk);
9140}
9141
Vlad Yasevich914e1c82009-02-13 08:33:44 +00009142void sctp_copy_sock(struct sock *newsk, struct sock *sk,
9143 struct sctp_association *asoc)
9144{
9145 struct inet_sock *inet = inet_sk(sk);
Julia Lawall09cb47a2010-01-21 02:43:20 -08009146 struct inet_sock *newinet;
Richard Haines2277c7c2018-02-13 20:56:24 +00009147 struct sctp_sock *sp = sctp_sk(sk);
9148 struct sctp_endpoint *ep = sp->ep;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00009149
9150 newsk->sk_type = sk->sk_type;
9151 newsk->sk_bound_dev_if = sk->sk_bound_dev_if;
9152 newsk->sk_flags = sk->sk_flags;
Marcelo Ricardo Leitner50a5ffb2015-12-04 15:14:05 -02009153 newsk->sk_tsflags = sk->sk_tsflags;
Tom Herbert28448b82014-05-23 08:47:19 -07009154 newsk->sk_no_check_tx = sk->sk_no_check_tx;
9155 newsk->sk_no_check_rx = sk->sk_no_check_rx;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00009156 newsk->sk_reuse = sk->sk_reuse;
Xin Longb0e9a2f2018-06-28 15:31:00 +08009157 sctp_sk(newsk)->reuse = sp->reuse;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00009158
9159 newsk->sk_shutdown = sk->sk_shutdown;
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02009160 newsk->sk_destruct = sctp_destruct_sock;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00009161 newsk->sk_family = sk->sk_family;
9162 newsk->sk_protocol = IPPROTO_SCTP;
9163 newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
9164 newsk->sk_sndbuf = sk->sk_sndbuf;
9165 newsk->sk_rcvbuf = sk->sk_rcvbuf;
9166 newsk->sk_lingertime = sk->sk_lingertime;
9167 newsk->sk_rcvtimeo = sk->sk_rcvtimeo;
9168 newsk->sk_sndtimeo = sk->sk_sndtimeo;
Marcelo Ricardo Leitner486bdee2016-04-12 18:11:31 -03009169 newsk->sk_rxhash = sk->sk_rxhash;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00009170
9171 newinet = inet_sk(newsk);
9172
9173 /* Initialize sk's sport, dport, rcv_saddr and daddr for
9174 * getsockname() and getpeername()
9175 */
Eric Dumazetc720c7e82009-10-15 06:30:45 +00009176 newinet->inet_sport = inet->inet_sport;
9177 newinet->inet_saddr = inet->inet_saddr;
9178 newinet->inet_rcv_saddr = inet->inet_rcv_saddr;
9179 newinet->inet_dport = htons(asoc->peer.port);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00009180 newinet->pmtudisc = inet->pmtudisc;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00009181 newinet->inet_id = asoc->next_tsn ^ jiffies;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00009182
9183 newinet->uc_ttl = inet->uc_ttl;
9184 newinet->mc_loop = 1;
9185 newinet->mc_ttl = 1;
9186 newinet->mc_index = 0;
9187 newinet->mc_list = NULL;
Marcelo Ricardo Leitner01ce63c2015-12-04 15:14:04 -02009188
9189 if (newsk->sk_flags & SK_FLAGS_TIMESTAMP)
9190 net_enable_timestamp();
Marcelo Ricardo Leitner3538a5c2015-12-23 16:44:09 -02009191
Richard Haines2277c7c2018-02-13 20:56:24 +00009192 /* Set newsk security attributes from orginal sk and connection
9193 * security attribute from ep.
9194 */
9195 security_sctp_sk_clone(ep, sk, newsk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00009196}
9197
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03009198static inline void sctp_copy_descendant(struct sock *sk_to,
9199 const struct sock *sk_from)
9200{
9201 int ancestor_size = sizeof(struct inet_sock) +
9202 sizeof(struct sctp_sock) -
Xin Long636d25d2019-03-18 19:58:29 +08009203 offsetof(struct sctp_sock, pd_lobby);
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03009204
9205 if (sk_from->sk_family == PF_INET6)
9206 ancestor_size += sizeof(struct ipv6_pinfo);
9207
9208 __inet_sk_copy_descendant(sk_to, sk_from, ancestor_size);
9209}
9210
Linus Torvalds1da177e2005-04-16 15:20:36 -07009211/* Populate the fields of the newsk from the oldsk and migrate the assoc
9212 * and its messages to the newsk.
9213 */
Xin Long89664c622019-03-03 17:54:53 +08009214static int sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
9215 struct sctp_association *assoc,
9216 enum sctp_socket_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009217{
9218 struct sctp_sock *oldsp = sctp_sk(oldsk);
9219 struct sctp_sock *newsp = sctp_sk(newsk);
9220 struct sctp_bind_bucket *pp; /* hash list port iterator */
9221 struct sctp_endpoint *newep = newsp->ep;
9222 struct sk_buff *skb, *tmp;
9223 struct sctp_ulpevent *event;
Vlad Yasevichf26f7c42007-12-06 22:50:27 -08009224 struct sctp_bind_hashbucket *head;
Xin Long89664c622019-03-03 17:54:53 +08009225 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009226
9227 /* Migrate socket buffer sizes and all the socket level options to the
9228 * new socket.
9229 */
9230 newsk->sk_sndbuf = oldsk->sk_sndbuf;
9231 newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
9232 /* Brute force copy old sctp opt. */
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03009233 sctp_copy_descendant(newsk, oldsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009234
9235 /* Restore the ep value that was overwritten with the above structure
9236 * copy.
9237 */
9238 newsp->ep = newep;
9239 newsp->hmac = NULL;
9240
9241 /* Hook this new socket in to the bind_hash list. */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00009242 head = &sctp_port_hashtable[sctp_phashfn(sock_net(oldsk),
9243 inet_sk(oldsk)->inet_num)];
Nicholas Mc Guire489ce5f2016-03-13 11:48:24 +01009244 spin_lock_bh(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009245 pp = sctp_sk(oldsk)->bind_hash;
9246 sk_add_bind_node(newsk, &pp->owner);
9247 sctp_sk(newsk)->bind_hash = pp;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00009248 inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num;
Nicholas Mc Guire489ce5f2016-03-13 11:48:24 +01009249 spin_unlock_bh(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009250
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07009251 /* Copy the bind_addr list from the original endpoint to the new
9252 * endpoint so that we can handle restarts properly
9253 */
Xin Long89664c622019-03-03 17:54:53 +08009254 err = sctp_bind_addr_dup(&newsp->ep->base.bind_addr,
9255 &oldsp->ep->base.bind_addr, GFP_KERNEL);
9256 if (err)
9257 return err;
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07009258
Xin Longc6f33e02019-03-03 17:54:55 +08009259 /* New ep's auth_hmacs should be set if old ep's is set, in case
9260 * that net->sctp.auth_enable has been changed to 0 by users and
9261 * new ep's auth_hmacs couldn't be set in sctp_endpoint_init().
9262 */
9263 if (oldsp->ep->auth_hmacs) {
9264 err = sctp_auth_init_hmacs(newsp->ep, GFP_KERNEL);
9265 if (err)
9266 return err;
9267 }
9268
Linus Torvalds1da177e2005-04-16 15:20:36 -07009269 /* Move any messages in the old socket's receive queue that are for the
9270 * peeled off association to the new socket's receive queue.
9271 */
9272 sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) {
9273 event = sctp_skb2event(skb);
9274 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07009275 __skb_unlink(skb, &oldsk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009276 __skb_queue_tail(&newsk->sk_receive_queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07009277 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009278 }
9279 }
9280
9281 /* Clean up any messages pending delivery due to partial
9282 * delivery. Three cases:
9283 * 1) No partial deliver; no work.
9284 * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby.
9285 * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue.
9286 */
Vlad Yasevichb6e13312007-04-20 12:23:15 -07009287 atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009288
Vlad Yasevichb6e13312007-04-20 12:23:15 -07009289 if (atomic_read(&sctp_sk(oldsk)->pd_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009290 struct sk_buff_head *queue;
9291
9292 /* Decide which queue to move pd_lobby skbs to. */
9293 if (assoc->ulpq.pd_mode) {
9294 queue = &newsp->pd_lobby;
9295 } else
9296 queue = &newsk->sk_receive_queue;
9297
9298 /* Walk through the pd_lobby, looking for skbs that
9299 * need moved to the new socket.
9300 */
9301 sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) {
9302 event = sctp_skb2event(skb);
9303 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07009304 __skb_unlink(skb, &oldsp->pd_lobby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009305 __skb_queue_tail(queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07009306 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009307 }
9308 }
9309
9310 /* Clear up any skbs waiting for the partial
9311 * delivery to finish.
9312 */
9313 if (assoc->ulpq.pd_mode)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07009314 sctp_clear_pd(oldsk, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009315
9316 }
9317
Xin Long13228232017-12-08 21:04:09 +08009318 sctp_for_each_rx_skb(assoc, newsk, sctp_skb_set_owner_r_frag);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07009319
Linus Torvalds1da177e2005-04-16 15:20:36 -07009320 /* Set the type of socket to indicate that it is peeled off from the
9321 * original UDP-style socket or created with the accept() call on a
9322 * TCP-style socket..
9323 */
9324 newsp->type = type;
9325
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07009326 /* Mark the new socket "in-use" by the user so that any packets
9327 * that may arrive on the association after we've moved it are
9328 * queued to the backlog. This prevents a potential race between
9329 * backlog processing on the old socket and new-packet processing
9330 * on the new socket.
Zach Brown5131a182007-06-22 15:14:46 -07009331 *
9332 * The caller has just allocated newsk so we can guarantee that other
9333 * paths won't try to lock it and then oldsk.
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07009334 */
Zach Brown5131a182007-06-22 15:14:46 -07009335 lock_sock_nested(newsk, SINGLE_DEPTH_NESTING);
Xin Longd04adf12017-10-28 02:13:29 +08009336 sctp_for_each_tx_datachunk(assoc, sctp_clear_owner_w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009337 sctp_assoc_migrate(assoc, newsk);
Xin Longd04adf12017-10-28 02:13:29 +08009338 sctp_for_each_tx_datachunk(assoc, sctp_set_owner_w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009339
9340 /* If the association on the newsk is already closed before accept()
9341 * is called, set RCV_SHUTDOWN flag.
9342 */
Xin Longd46e4162016-06-09 22:48:18 +08009343 if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP)) {
Yafang Shaocbabf462017-12-20 11:12:54 +08009344 inet_sk_set_state(newsk, SCTP_SS_CLOSED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009345 newsk->sk_shutdown |= RCV_SHUTDOWN;
Xin Longd46e4162016-06-09 22:48:18 +08009346 } else {
Yafang Shaocbabf462017-12-20 11:12:54 +08009347 inet_sk_set_state(newsk, SCTP_SS_ESTABLISHED);
Xin Longd46e4162016-06-09 22:48:18 +08009348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009349
wangweidong048ed4b2014-01-21 15:44:11 +08009350 release_sock(newsk);
Xin Long89664c622019-03-03 17:54:53 +08009351
9352 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009353}
9354
Neil Horman4d93df02007-08-15 16:07:44 -07009355
Linus Torvalds1da177e2005-04-16 15:20:36 -07009356/* This proto struct describes the ULP interface for SCTP. */
9357struct proto sctp_prot = {
9358 .name = "SCTP",
9359 .owner = THIS_MODULE,
9360 .close = sctp_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009361 .disconnect = sctp_disconnect,
9362 .accept = sctp_accept,
9363 .ioctl = sctp_ioctl,
9364 .init = sctp_init_sock,
9365 .destroy = sctp_destroy_sock,
9366 .shutdown = sctp_shutdown,
9367 .setsockopt = sctp_setsockopt,
9368 .getsockopt = sctp_getsockopt,
9369 .sendmsg = sctp_sendmsg,
9370 .recvmsg = sctp_recvmsg,
9371 .bind = sctp_bind,
9372 .backlog_rcv = sctp_backlog_rcv,
9373 .hash = sctp_hash,
9374 .unhash = sctp_unhash,
9375 .get_port = sctp_get_port,
9376 .obj_size = sizeof(struct sctp_sock),
David Windsorab9ee8e2017-08-24 16:57:57 -07009377 .useroffset = offsetof(struct sctp_sock, subscribe),
9378 .usersize = offsetof(struct sctp_sock, initmsg) -
9379 offsetof(struct sctp_sock, subscribe) +
9380 sizeof_field(struct sctp_sock, initmsg),
Neil Horman4d93df02007-08-15 16:07:44 -07009381 .sysctl_mem = sysctl_sctp_mem,
9382 .sysctl_rmem = sysctl_sctp_rmem,
9383 .sysctl_wmem = sysctl_sctp_wmem,
9384 .memory_pressure = &sctp_memory_pressure,
9385 .enter_memory_pressure = sctp_enter_memory_pressure,
9386 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08009387 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009388};
9389
Eric Dumazetdfd56b82011-12-10 09:48:31 +00009390#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazet8295b6d2007-11-05 23:40:28 -08009391
Eric Dumazet602dd622015-12-01 07:20:07 -08009392#include <net/transp_v6.h>
9393static void sctp_v6_destroy_sock(struct sock *sk)
9394{
9395 sctp_destroy_sock(sk);
9396 inet6_destroy_sock(sk);
9397}
9398
Linus Torvalds1da177e2005-04-16 15:20:36 -07009399struct proto sctpv6_prot = {
9400 .name = "SCTPv6",
9401 .owner = THIS_MODULE,
9402 .close = sctp_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009403 .disconnect = sctp_disconnect,
9404 .accept = sctp_accept,
9405 .ioctl = sctp_ioctl,
9406 .init = sctp_init_sock,
Eric Dumazet602dd622015-12-01 07:20:07 -08009407 .destroy = sctp_v6_destroy_sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009408 .shutdown = sctp_shutdown,
9409 .setsockopt = sctp_setsockopt,
9410 .getsockopt = sctp_getsockopt,
9411 .sendmsg = sctp_sendmsg,
9412 .recvmsg = sctp_recvmsg,
9413 .bind = sctp_bind,
9414 .backlog_rcv = sctp_backlog_rcv,
9415 .hash = sctp_hash,
9416 .unhash = sctp_unhash,
9417 .get_port = sctp_get_port,
9418 .obj_size = sizeof(struct sctp6_sock),
David Windsorab9ee8e2017-08-24 16:57:57 -07009419 .useroffset = offsetof(struct sctp6_sock, sctp.subscribe),
9420 .usersize = offsetof(struct sctp6_sock, sctp.initmsg) -
9421 offsetof(struct sctp6_sock, sctp.subscribe) +
9422 sizeof_field(struct sctp6_sock, sctp.initmsg),
Neil Horman4d93df02007-08-15 16:07:44 -07009423 .sysctl_mem = sysctl_sctp_mem,
9424 .sysctl_rmem = sysctl_sctp_rmem,
9425 .sysctl_wmem = sysctl_sctp_wmem,
9426 .memory_pressure = &sctp_memory_pressure,
9427 .enter_memory_pressure = sctp_enter_memory_pressure,
9428 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08009429 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009430};
Eric Dumazetdfd56b82011-12-10 09:48:31 +00009431#endif /* IS_ENABLED(CONFIG_IPV6) */