blob: 1db478e345203f75733044d843a763cc3a3966e1 [file] [log] [blame]
Vlad Yasevich60c778b2008-01-11 09:57:09 -05001/* SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999-2000 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 * Copyright (c) 2001-2003 Intel Corp.
6 * Copyright (c) 2001-2002 Nokia, Inc.
7 * Copyright (c) 2001 La Monte H.P. Yarroll
8 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05009 * This file is part of the SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * These functions interface with the sockets layer to implement the
12 * SCTP Extensions for the Sockets API.
13 *
14 * Note that the descriptions from the specification are USER level
15 * functions--this file is the functions which populate the struct proto
16 * for SCTP which is the BOTTOM of the sockets interface.
17 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050018 * This SCTP implementation is free software;
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * you can redistribute it and/or modify it under the terms of
20 * the GNU General Public License as published by
21 * the Free Software Foundation; either version 2, or (at your option)
22 * any later version.
23 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050024 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
26 * ************************
27 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
28 * See the GNU General Public License for more details.
29 *
30 * You should have received a copy of the GNU General Public License
Jeff Kirsher4b2f13a2013-12-06 06:28:48 -080031 * along with GNU CC; see the file COPYING. If not, see
32 * <http://www.gnu.org/licenses/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 *
34 * Please send any bug reports or fixes you make to the
35 * email address(es):
Daniel Borkmann91705c62013-07-23 14:51:47 +020036 * lksctp developers <linux-sctp@vger.kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * Written or modified by:
39 * La Monte H.P. Yarroll <piggy@acm.org>
40 * Narasimha Budihal <narsi@refcode.org>
41 * Karl Knutson <karl@athena.chicago.il.us>
42 * Jon Grimm <jgrimm@us.ibm.com>
43 * Xingang Guo <xingang.guo@intel.com>
44 * Daisy Chang <daisyc@us.ibm.com>
45 * Sridhar Samudrala <samudrala@us.ibm.com>
46 * Inaky Perez-Gonzalez <inaky.gonzalez@intel.com>
47 * Ardelle Fan <ardelle.fan@intel.com>
48 * Ryan Layer <rmlayer@us.ibm.com>
49 * Anup Pemmaiah <pemmaiah@cc.usu.edu>
50 * Kevin Gao <kevin.gao@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 */
52
Joe Perches145ce502010-08-24 13:21:08 +000053#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
54
Herbert Xu5821c762016-01-24 21:20:12 +080055#include <crypto/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <linux/types.h>
57#include <linux/kernel.h>
58#include <linux/wait.h>
59#include <linux/time.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010060#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/ip.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080062#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/fcntl.h>
64#include <linux/poll.h>
65#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090066#include <linux/slab.h>
Al Viro56b31d12012-08-18 00:25:51 -040067#include <linux/file.h>
Daniel Borkmannffd59392014-02-17 12:11:11 +010068#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70#include <net/ip.h>
71#include <net/icmp.h>
72#include <net/route.h>
73#include <net/ipv6.h>
74#include <net/inet_common.h>
Neil Horman8465a5f2014-04-17 15:26:51 -040075#include <net/busy_poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77#include <linux/socket.h> /* for sa_family_t */
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040078#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <net/sock.h>
80#include <net/sctp/sctp.h>
81#include <net/sctp/sm.h>
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/* Forward declarations for internal helper functions. */
84static int sctp_writeable(struct sock *sk);
85static void sctp_wfree(struct sk_buff *skb);
86static int sctp_wait_for_sndbuf(struct sctp_association *, long *timeo_p,
87 size_t msg_len);
wangweidong26ac8e52013-12-23 12:16:51 +080088static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
90static int sctp_wait_for_accept(struct sock *sk, long timeo);
91static void sctp_wait_for_close(struct sock *sk, long timeo);
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +020092static void sctp_destruct_sock(struct sock *sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
94 union sctp_addr *addr, int len);
95static int sctp_bindx_add(struct sock *, struct sockaddr *, int);
96static int sctp_bindx_rem(struct sock *, struct sockaddr *, int);
97static int sctp_send_asconf_add_ip(struct sock *, struct sockaddr *, int);
98static int sctp_send_asconf_del_ip(struct sock *, struct sockaddr *, int);
99static int sctp_send_asconf(struct sctp_association *asoc,
100 struct sctp_chunk *chunk);
101static int sctp_do_bind(struct sock *, union sctp_addr *, int);
102static int sctp_autobind(struct sock *sk);
103static void sctp_sock_migrate(struct sock *, struct sock *,
104 struct sctp_association *, sctp_socket_type_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Eric Dumazet06044752017-06-07 13:29:12 -0700106static unsigned long sctp_memory_pressure;
Eric Dumazet8d987e52010-11-09 23:24:26 +0000107static atomic_long_t sctp_memory_allocated;
Eric Dumazet17483762008-11-25 21:16:35 -0800108struct percpu_counter sctp_sockets_allocated;
Neil Horman4d93df02007-08-15 16:07:44 -0700109
Pavel Emelyanov5c52ba12008-07-16 20:28:10 -0700110static void sctp_enter_memory_pressure(struct sock *sk)
Neil Horman4d93df02007-08-15 16:07:44 -0700111{
112 sctp_memory_pressure = 1;
113}
114
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116/* Get the sndbuf space available at the time on the association. */
117static inline int sctp_wspace(struct sctp_association *asoc)
118{
Neil Horman4d93df02007-08-15 16:07:44 -0700119 int amt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Neil Horman4d93df02007-08-15 16:07:44 -0700121 if (asoc->ep->sndbuf_policy)
122 amt = asoc->sndbuf_used;
123 else
Eric Dumazet31e6d362009-06-17 19:05:41 -0700124 amt = sk_wmem_alloc_get(asoc->base.sk);
Neil Horman4d93df02007-08-15 16:07:44 -0700125
126 if (amt >= asoc->base.sk->sk_sndbuf) {
127 if (asoc->base.sk->sk_userlocks & SOCK_SNDBUF_LOCK)
128 amt = 0;
129 else {
130 amt = sk_stream_wspace(asoc->base.sk);
131 if (amt < 0)
132 amt = 0;
133 }
Neil Horman4eb701d2005-04-28 12:02:04 -0700134 } else {
Neil Horman4d93df02007-08-15 16:07:44 -0700135 amt = asoc->base.sk->sk_sndbuf - amt;
Neil Horman4eb701d2005-04-28 12:02:04 -0700136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 return amt;
138}
139
140/* Increment the used sndbuf space count of the corresponding association by
141 * the size of the outgoing data chunk.
142 * Also, set the skb destructor for sndbuf accounting later.
143 *
144 * Since it is always 1-1 between chunk and skb, and also a new skb is always
145 * allocated for chunk bundling in sctp_packet_transmit(), we can use the
146 * destructor in the data chunk skb for the purpose of the sndbuf space
147 * tracking.
148 */
149static inline void sctp_set_owner_w(struct sctp_chunk *chunk)
150{
151 struct sctp_association *asoc = chunk->asoc;
152 struct sock *sk = asoc->base.sk;
153
154 /* The sndbuf space is tracked per association. */
155 sctp_association_hold(asoc);
156
Neil Horman4eb701d2005-04-28 12:02:04 -0700157 skb_set_owner_w(chunk->skb, sk);
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 chunk->skb->destructor = sctp_wfree;
160 /* Save the chunk pointer in skb for sctp_wfree to use later. */
Daniel Borkmannf869c912014-11-20 01:54:48 +0100161 skb_shinfo(chunk->skb)->destructor_arg = chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Neil Horman4eb701d2005-04-28 12:02:04 -0700163 asoc->sndbuf_used += SCTP_DATA_SNDSIZE(chunk) +
164 sizeof(struct sk_buff) +
165 sizeof(struct sctp_chunk);
166
Reshetova, Elena14afee42017-06-30 13:08:00 +0300167 refcount_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800168 sk->sk_wmem_queued += chunk->skb->truesize;
169 sk_mem_charge(sk, chunk->skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
172/* Verify that this is a valid address. */
173static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr,
174 int len)
175{
176 struct sctp_af *af;
177
178 /* Verify basic sockaddr. */
179 af = sctp_sockaddr_af(sctp_sk(sk), addr, len);
180 if (!af)
181 return -EINVAL;
182
183 /* Is this a valid SCTP address? */
Vlad Yasevich5636bef2006-06-17 22:55:35 -0700184 if (!af->addr_valid(addr, sctp_sk(sk), NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return -EINVAL;
186
187 if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr)))
188 return -EINVAL;
189
190 return 0;
191}
192
193/* Look up the association by its id. If this is not a UDP-style
194 * socket, the ID field is always ignored.
195 */
196struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
197{
198 struct sctp_association *asoc = NULL;
199
200 /* If this is not a UDP-style socket, assoc id should be ignored. */
201 if (!sctp_style(sk, UDP)) {
202 /* Return NULL if the socket state is not ESTABLISHED. It
203 * could be a TCP-style listening socket or a socket which
204 * hasn't yet called connect() to establish an association.
205 */
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -0300206 if (!sctp_sstate(sk, ESTABLISHED) && !sctp_sstate(sk, CLOSING))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return NULL;
208
209 /* Get the first and the only association from the list. */
210 if (!list_empty(&sctp_sk(sk)->ep->asocs))
211 asoc = list_entry(sctp_sk(sk)->ep->asocs.next,
212 struct sctp_association, asocs);
213 return asoc;
214 }
215
216 /* Otherwise this is a UDP-style socket. */
217 if (!id || (id == (sctp_assoc_t)-1))
218 return NULL;
219
220 spin_lock_bh(&sctp_assocs_id_lock);
221 asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id);
222 spin_unlock_bh(&sctp_assocs_id_lock);
223
224 if (!asoc || (asoc->base.sk != sk) || asoc->base.dead)
225 return NULL;
226
227 return asoc;
228}
229
230/* Look up the transport from an address and an assoc id. If both address and
231 * id are specified, the associations matching the address and the id should be
232 * the same.
233 */
234static struct sctp_transport *sctp_addr_id2transport(struct sock *sk,
235 struct sockaddr_storage *addr,
236 sctp_assoc_t id)
237{
238 struct sctp_association *addr_asoc = NULL, *id_asoc = NULL;
Xin Long6f29a132017-01-24 14:01:53 +0800239 struct sctp_af *af = sctp_get_af_specific(addr->ss_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 union sctp_addr *laddr = (union sctp_addr *)addr;
Xin Long6f29a132017-01-24 14:01:53 +0800241 struct sctp_transport *transport;
242
Xin Long912964e2017-02-07 20:56:08 +0800243 if (!af || sctp_verify_addr(sk, laddr, af->sockaddr_len))
Xin Long6f29a132017-01-24 14:01:53 +0800244 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
Al Virocd4ff032006-11-20 17:11:33 -0800247 laddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 &transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 if (!addr_asoc)
251 return NULL;
252
253 id_asoc = sctp_id2assoc(sk, id);
254 if (id_asoc && (id_asoc != addr_asoc))
255 return NULL;
256
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600257 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 (union sctp_addr *)addr);
259
260 return transport;
261}
262
263/* API 3.1.2 bind() - UDP Style Syntax
264 * The syntax of bind() is,
265 *
266 * ret = bind(int sd, struct sockaddr *addr, int addrlen);
267 *
268 * sd - the socket descriptor returned by socket().
269 * addr - the address structure (struct sockaddr_in or struct
270 * sockaddr_in6 [RFC 2553]),
271 * addr_len - the size of the address structure.
272 */
Daniel Borkmanndda91922013-06-17 11:40:05 +0200273static int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
275 int retval = 0;
276
wangweidong048ed4b2014-01-21 15:44:11 +0800277 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Daniel Borkmannbb333812013-06-28 19:49:40 +0200279 pr_debug("%s: sk:%p, addr:%p, addr_len:%d\n", __func__, sk,
280 addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 /* Disallow binding twice. */
283 if (!sctp_sk(sk)->ep->base.bind_addr.port)
Frank Filz3f7a87d2005-06-20 13:14:57 -0700284 retval = sctp_do_bind(sk, (union sctp_addr *)addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 addr_len);
286 else
287 retval = -EINVAL;
288
wangweidong048ed4b2014-01-21 15:44:11 +0800289 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 return retval;
292}
293
294static long sctp_get_port_local(struct sock *, union sctp_addr *);
295
296/* Verify this is a valid sockaddr. */
297static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
298 union sctp_addr *addr, int len)
299{
300 struct sctp_af *af;
301
302 /* Check minimum size. */
303 if (len < sizeof (struct sockaddr))
304 return NULL;
305
Vlad Yasevich7dab83d2008-07-18 23:05:40 -0700306 /* V4 mapped address are really of AF_INET family */
307 if (addr->sa.sa_family == AF_INET6 &&
308 ipv6_addr_v4mapped(&addr->v6.sin6_addr)) {
309 if (!opt->pf->af_supported(AF_INET, opt))
310 return NULL;
311 } else {
312 /* Does this PF support this AF? */
313 if (!opt->pf->af_supported(addr->sa.sa_family, opt))
314 return NULL;
315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 /* If we get this far, af is valid. */
318 af = sctp_get_af_specific(addr->sa.sa_family);
319
320 if (len < af->sockaddr_len)
321 return NULL;
322
323 return af;
324}
325
326/* Bind a local address either to an endpoint or to an association. */
Daniel Borkmanndda91922013-06-17 11:40:05 +0200327static int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Eric W. Biederman35946982012-11-16 03:03:12 +0000329 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 struct sctp_sock *sp = sctp_sk(sk);
331 struct sctp_endpoint *ep = sp->ep;
332 struct sctp_bind_addr *bp = &ep->base.bind_addr;
333 struct sctp_af *af;
334 unsigned short snum;
335 int ret = 0;
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 /* Common sockaddr verification. */
338 af = sctp_sockaddr_af(sp, addr, len);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700339 if (!af) {
Daniel Borkmannbb333812013-06-28 19:49:40 +0200340 pr_debug("%s: sk:%p, newaddr:%p, len:%d EINVAL\n",
341 __func__, sk, addr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 return -EINVAL;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700343 }
344
345 snum = ntohs(addr->v4.sin_port);
346
Daniel Borkmannbb333812013-06-28 19:49:40 +0200347 pr_debug("%s: sk:%p, new addr:%pISc, port:%d, new port:%d, len:%d\n",
348 __func__, sk, &addr->sa, bp->port, snum, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 /* PF specific bind() address verification. */
351 if (!sp->pf->bind_verify(sp, addr))
352 return -EADDRNOTAVAIL;
353
Vlad Yasevich8b358052007-05-15 17:14:58 -0400354 /* We must either be unbound, or bind to the same port.
355 * It's OK to allow 0 ports if we are already bound.
356 * We'll just inhert an already bound port in this case
357 */
358 if (bp->port) {
359 if (!snum)
360 snum = bp->port;
361 else if (snum != bp->port) {
Daniel Borkmannbb333812013-06-28 19:49:40 +0200362 pr_debug("%s: new port %d doesn't match existing port "
363 "%d\n", __func__, snum, bp->port);
Vlad Yasevich8b358052007-05-15 17:14:58 -0400364 return -EINVAL;
365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
367
Krister Johansen4548b682017-01-20 17:49:11 -0800368 if (snum && snum < inet_prot_sock(net) &&
Eric W. Biederman35946982012-11-16 03:03:12 +0000369 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return -EACCES;
371
Vlad Yasevich4e540642008-07-18 23:06:32 -0700372 /* See if the address matches any of the addresses we may have
373 * already bound before checking against other endpoints.
374 */
375 if (sctp_bind_addr_match(bp, addr, sp))
376 return -EINVAL;
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 /* Make sure we are allowed to bind here.
379 * The function sctp_get_port_local() does duplicate address
380 * detection.
381 */
Vlad Yasevich2772b492007-08-21 14:24:30 +0900382 addr->v4.sin_port = htons(snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 if ((ret = sctp_get_port_local(sk, addr))) {
Vlad Yasevich4e540642008-07-18 23:06:32 -0700384 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
386
387 /* Refresh ephemeral port. */
388 if (!bp->port)
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000389 bp->port = inet_sk(sk)->inet_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Vlad Yasevich559cf712007-09-16 16:03:28 -0700391 /* Add the address to the bind address list.
392 * Use GFP_ATOMIC since BHs will be disabled.
393 */
Marcelo Ricardo Leitner133800d2016-03-08 10:34:28 -0300394 ret = sctp_add_bind_addr(bp, addr, af->sockaddr_len,
395 SCTP_ADDR_SRC, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 /* Copy back into socket for getsockname() use. */
398 if (!ret) {
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000399 inet_sk(sk)->inet_sport = htons(inet_sk(sk)->inet_num);
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600400 sp->pf->to_sk_saddr(addr, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
402
403 return ret;
404}
405
406 /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
407 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900408 * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 * at any one time. If a sender, after sending an ASCONF chunk, decides
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900410 * it needs to transfer another ASCONF Chunk, it MUST wait until the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900412 * subsequent ASCONF. Note this restriction binds each side, so at any
413 * time two ASCONF may be in-transit on any given association (one sent
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 * from each endpoint).
415 */
416static int sctp_send_asconf(struct sctp_association *asoc,
417 struct sctp_chunk *chunk)
418{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +0000419 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 int retval = 0;
421
422 /* If there is an outstanding ASCONF chunk, queue it for later
423 * transmission.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900424 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (asoc->addip_last_asconf) {
David S. Miller79af02c2005-07-08 21:47:49 -0700426 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900427 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429
430 /* Hold the chunk until an ASCONF_ACK is received. */
431 sctp_chunk_hold(chunk);
Eric W. Biederman55e26eb2012-08-07 07:25:24 +0000432 retval = sctp_primitive_ASCONF(net, asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (retval)
434 sctp_chunk_free(chunk);
435 else
436 asoc->addip_last_asconf = chunk;
437
438out:
439 return retval;
440}
441
442/* Add a list of addresses as bind addresses to local endpoint or
443 * association.
444 *
445 * Basically run through each address specified in the addrs/addrcnt
446 * array/length pair, determine if it is IPv6 or IPv4 and call
447 * sctp_do_bind() on it.
448 *
449 * If any of them fails, then the operation will be reversed and the
450 * ones that were added will be removed.
451 *
452 * Only sctp_setsockopt_bindx() is supposed to call this function.
453 */
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +0200454static int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 int cnt;
457 int retval = 0;
458 void *addr_buf;
459 struct sockaddr *sa_addr;
460 struct sctp_af *af;
461
Daniel Borkmannbb333812013-06-28 19:49:40 +0200462 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n", __func__, sk,
463 addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 addr_buf = addrs;
466 for (cnt = 0; cnt < addrcnt; cnt++) {
467 /* The list may contain either IPv4 or IPv6 address;
468 * determine the address length for walking thru the list.
469 */
Joe Perchesea110732011-06-13 16:21:26 +0000470 sa_addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 af = sctp_get_af_specific(sa_addr->sa_family);
472 if (!af) {
473 retval = -EINVAL;
474 goto err_bindx_add;
475 }
476
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900477 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 af->sockaddr_len);
479
480 addr_buf += af->sockaddr_len;
481
482err_bindx_add:
483 if (retval < 0) {
484 /* Failed. Cleanup the ones that have been added */
485 if (cnt > 0)
486 sctp_bindx_rem(sk, addrs, cnt);
487 return retval;
488 }
489 }
490
491 return retval;
492}
493
494/* Send an ASCONF chunk with Add IP address parameters to all the peers of the
495 * associations that are part of the endpoint indicating that a list of local
496 * addresses are added to the endpoint.
497 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900498 * If any of the addresses is already in the bind address list of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 * association, we do not send the chunk for that association. But it will not
500 * affect other associations.
501 *
502 * Only sctp_setsockopt_bindx() is supposed to call this function.
503 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900504static int sctp_send_asconf_add_ip(struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 struct sockaddr *addrs,
506 int addrcnt)
507{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000508 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 struct sctp_sock *sp;
510 struct sctp_endpoint *ep;
511 struct sctp_association *asoc;
512 struct sctp_bind_addr *bp;
513 struct sctp_chunk *chunk;
514 struct sctp_sockaddr_entry *laddr;
515 union sctp_addr *addr;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700516 union sctp_addr saveaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 void *addr_buf;
518 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 struct list_head *p;
520 int i;
521 int retval = 0;
522
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000523 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return retval;
525
526 sp = sctp_sk(sk);
527 ep = sp->ep;
528
Daniel Borkmannbb333812013-06-28 19:49:40 +0200529 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
530 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700532 list_for_each_entry(asoc, &ep->asocs, asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (!asoc->peer.asconf_capable)
534 continue;
535
536 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_ADD_IP)
537 continue;
538
539 if (!sctp_state(asoc, ESTABLISHED))
540 continue;
541
542 /* Check if any address in the packed array of addresses is
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900543 * in the bind address list of the association. If so,
544 * do not send the asconf chunk to its peer, but continue with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 * other associations.
546 */
547 addr_buf = addrs;
548 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000549 addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 af = sctp_get_af_specific(addr->v4.sin_family);
551 if (!af) {
552 retval = -EINVAL;
553 goto out;
554 }
555
556 if (sctp_assoc_lookup_laddr(asoc, addr))
557 break;
558
559 addr_buf += af->sockaddr_len;
560 }
561 if (i < addrcnt)
562 continue;
563
Vlad Yasevich559cf712007-09-16 16:03:28 -0700564 /* Use the first valid address in bind addr list of
565 * association as Address Parameter of ASCONF CHUNK.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 bp = &asoc->base.bind_addr;
568 p = bp->address_list.next;
569 laddr = list_entry(p, struct sctp_sockaddr_entry, list);
Al Viro5ae955c2006-11-20 17:22:08 -0800570 chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 addrcnt, SCTP_PARAM_ADD_IP);
572 if (!chunk) {
573 retval = -ENOMEM;
574 goto out;
575 }
576
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700577 /* Add the new addresses to the bind address list with
578 * use_as_src set to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700580 addr_buf = addrs;
581 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000582 addr = addr_buf;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700583 af = sctp_get_af_specific(addr->v4.sin_family);
584 memcpy(&saveaddr, addr, af->sockaddr_len);
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800585 retval = sctp_add_bind_addr(bp, &saveaddr,
Marcelo Ricardo Leitner133800d2016-03-08 10:34:28 -0300586 sizeof(saveaddr),
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800587 SCTP_ADDR_NEW, GFP_ATOMIC);
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700588 addr_buf += af->sockaddr_len;
589 }
Michio Honda8a07eb02011-04-26 20:19:36 +0900590 if (asoc->src_out_of_asoc_ok) {
591 struct sctp_transport *trans;
592
593 list_for_each_entry(trans,
594 &asoc->peer.transport_addr_list, transports) {
595 /* Clear the source and route cache */
Julian Anastasovc86a7732017-02-06 23:14:13 +0200596 sctp_transport_dst_release(trans);
Michio Honda8a07eb02011-04-26 20:19:36 +0900597 trans->cwnd = min(4*asoc->pathmtu, max_t(__u32,
598 2*asoc->pathmtu, 4380));
599 trans->ssthresh = asoc->peer.i.a_rwnd;
600 trans->rto = asoc->rto_initial;
Michele Baldessari196d6752012-12-01 04:49:42 +0000601 sctp_max_rto(asoc, trans);
Michio Honda8a07eb02011-04-26 20:19:36 +0900602 trans->rtt = trans->srtt = trans->rttvar = 0;
603 sctp_transport_route(trans, NULL,
604 sctp_sk(asoc->base.sk));
605 }
606 }
607 retval = sctp_send_asconf(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609
610out:
611 return retval;
612}
613
614/* Remove a list of addresses from bind addresses list. Do not remove the
615 * last address.
616 *
617 * Basically run through each address specified in the addrs/addrcnt
618 * array/length pair, determine if it is IPv6 or IPv4 and call
619 * sctp_del_bind() on it.
620 *
621 * If any of them fails, then the operation will be reversed and the
622 * ones that were removed will be added back.
623 *
624 * At least one address has to be left; if only one address is
625 * available, the operation will return -EBUSY.
626 *
627 * Only sctp_setsockopt_bindx() is supposed to call this function.
628 */
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +0200629static int sctp_bindx_rem(struct sock *sk, struct sockaddr *addrs, int addrcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
631 struct sctp_sock *sp = sctp_sk(sk);
632 struct sctp_endpoint *ep = sp->ep;
633 int cnt;
634 struct sctp_bind_addr *bp = &ep->base.bind_addr;
635 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 void *addr_buf;
Al Viroc9a08502006-11-20 17:07:48 -0800637 union sctp_addr *sa_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 struct sctp_af *af;
639
Daniel Borkmannbb333812013-06-28 19:49:40 +0200640 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
641 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 addr_buf = addrs;
644 for (cnt = 0; cnt < addrcnt; cnt++) {
645 /* If the bind address list is empty or if there is only one
646 * bind address, there is nothing more to be removed (we need
647 * at least one address here).
648 */
649 if (list_empty(&bp->address_list) ||
650 (sctp_list_single_entry(&bp->address_list))) {
651 retval = -EBUSY;
652 goto err_bindx_rem;
653 }
654
Joe Perchesea110732011-06-13 16:21:26 +0000655 sa_addr = addr_buf;
Al Viroc9a08502006-11-20 17:07:48 -0800656 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 if (!af) {
658 retval = -EINVAL;
659 goto err_bindx_rem;
660 }
Paolo Galtieri0304ff8a2007-04-17 12:52:36 -0700661
662 if (!af->addr_valid(sa_addr, sp, NULL)) {
663 retval = -EADDRNOTAVAIL;
664 goto err_bindx_rem;
665 }
666
Vlad Yasevichee9cbac2011-04-18 19:14:47 +0000667 if (sa_addr->v4.sin_port &&
668 sa_addr->v4.sin_port != htons(bp->port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 retval = -EINVAL;
670 goto err_bindx_rem;
671 }
672
Vlad Yasevichee9cbac2011-04-18 19:14:47 +0000673 if (!sa_addr->v4.sin_port)
674 sa_addr->v4.sin_port = htons(bp->port);
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 /* FIXME - There is probably a need to check if sk->sk_saddr and
677 * sk->sk_rcv_addr are currently set to one of the addresses to
678 * be removed. This is something which needs to be looked into
679 * when we are fixing the outstanding issues with multi-homing
680 * socket routing and failover schemes. Refer to comments in
681 * sctp_do_bind(). -daisy
682 */
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -0400683 retval = sctp_del_bind_addr(bp, sa_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 addr_buf += af->sockaddr_len;
686err_bindx_rem:
687 if (retval < 0) {
688 /* Failed. Add the ones that has been removed back */
689 if (cnt > 0)
690 sctp_bindx_add(sk, addrs, cnt);
691 return retval;
692 }
693 }
694
695 return retval;
696}
697
698/* Send an ASCONF chunk with Delete IP address parameters to all the peers of
699 * the associations that are part of the endpoint indicating that a list of
700 * local addresses are removed from the endpoint.
701 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900702 * If any of the addresses is already in the bind address list of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 * association, we do not send the chunk for that association. But it will not
704 * affect other associations.
705 *
706 * Only sctp_setsockopt_bindx() is supposed to call this function.
707 */
708static int sctp_send_asconf_del_ip(struct sock *sk,
709 struct sockaddr *addrs,
710 int addrcnt)
711{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000712 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 struct sctp_sock *sp;
714 struct sctp_endpoint *ep;
715 struct sctp_association *asoc;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700716 struct sctp_transport *transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 struct sctp_bind_addr *bp;
718 struct sctp_chunk *chunk;
719 union sctp_addr *laddr;
720 void *addr_buf;
721 struct sctp_af *af;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700722 struct sctp_sockaddr_entry *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 int i;
724 int retval = 0;
Michio Honda8a07eb02011-04-26 20:19:36 +0900725 int stored = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Michio Honda8a07eb02011-04-26 20:19:36 +0900727 chunk = NULL;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000728 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return retval;
730
731 sp = sctp_sk(sk);
732 ep = sp->ep;
733
Daniel Borkmannbb333812013-06-28 19:49:40 +0200734 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
735 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700737 list_for_each_entry(asoc, &ep->asocs, asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 if (!asoc->peer.asconf_capable)
740 continue;
741
742 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_DEL_IP)
743 continue;
744
745 if (!sctp_state(asoc, ESTABLISHED))
746 continue;
747
748 /* Check if any address in the packed array of addresses is
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900749 * not present in the bind address list of the association.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 * If so, do not send the asconf chunk to its peer, but
751 * continue with other associations.
752 */
753 addr_buf = addrs;
754 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000755 laddr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 af = sctp_get_af_specific(laddr->v4.sin_family);
757 if (!af) {
758 retval = -EINVAL;
759 goto out;
760 }
761
762 if (!sctp_assoc_lookup_laddr(asoc, laddr))
763 break;
764
765 addr_buf += af->sockaddr_len;
766 }
767 if (i < addrcnt)
768 continue;
769
770 /* Find one address in the association's bind address list
771 * that is not in the packed array of addresses. This is to
772 * make sure that we do not delete all the addresses in the
773 * association.
774 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 bp = &asoc->base.bind_addr;
776 laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs,
777 addrcnt, sp);
Michio Honda8a07eb02011-04-26 20:19:36 +0900778 if ((laddr == NULL) && (addrcnt == 1)) {
779 if (asoc->asconf_addr_del_pending)
780 continue;
781 asoc->asconf_addr_del_pending =
782 kzalloc(sizeof(union sctp_addr), GFP_ATOMIC);
Michio Honda6d65e5e2011-06-10 16:42:14 +0900783 if (asoc->asconf_addr_del_pending == NULL) {
784 retval = -ENOMEM;
785 goto out;
786 }
Michio Honda8a07eb02011-04-26 20:19:36 +0900787 asoc->asconf_addr_del_pending->sa.sa_family =
788 addrs->sa_family;
789 asoc->asconf_addr_del_pending->v4.sin_port =
790 htons(bp->port);
791 if (addrs->sa_family == AF_INET) {
792 struct sockaddr_in *sin;
793
794 sin = (struct sockaddr_in *)addrs;
795 asoc->asconf_addr_del_pending->v4.sin_addr.s_addr = sin->sin_addr.s_addr;
796 } else if (addrs->sa_family == AF_INET6) {
797 struct sockaddr_in6 *sin6;
798
799 sin6 = (struct sockaddr_in6 *)addrs;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000800 asoc->asconf_addr_del_pending->v6.sin6_addr = sin6->sin6_addr;
Michio Honda8a07eb02011-04-26 20:19:36 +0900801 }
Daniel Borkmannbb333812013-06-28 19:49:40 +0200802
803 pr_debug("%s: keep the last address asoc:%p %pISc at %p\n",
804 __func__, asoc, &asoc->asconf_addr_del_pending->sa,
805 asoc->asconf_addr_del_pending);
806
Michio Honda8a07eb02011-04-26 20:19:36 +0900807 asoc->src_out_of_asoc_ok = 1;
808 stored = 1;
809 goto skip_mkasconf;
810 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Daniel Borkmann88362ad2013-09-07 20:51:21 +0200812 if (laddr == NULL)
813 return -EINVAL;
814
Vlad Yasevich559cf712007-09-16 16:03:28 -0700815 /* We do not need RCU protection throughout this loop
816 * because this is done under a socket lock from the
817 * setsockopt call.
818 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 chunk = sctp_make_asconf_update_ip(asoc, laddr, addrs, addrcnt,
820 SCTP_PARAM_DEL_IP);
821 if (!chunk) {
822 retval = -ENOMEM;
823 goto out;
824 }
825
Michio Honda8a07eb02011-04-26 20:19:36 +0900826skip_mkasconf:
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700827 /* Reset use_as_src flag for the addresses in the bind address
828 * list that are to be deleted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700830 addr_buf = addrs;
831 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000832 laddr = addr_buf;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700833 af = sctp_get_af_specific(laddr->v4.sin_family);
Vlad Yasevich559cf712007-09-16 16:03:28 -0700834 list_for_each_entry(saddr, &bp->address_list, list) {
Al Viro5f242a12006-11-20 17:05:23 -0800835 if (sctp_cmp_addr_exact(&saddr->a, laddr))
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800836 saddr->state = SCTP_ADDR_DEL;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700837 }
838 addr_buf += af->sockaddr_len;
839 }
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700840
841 /* Update the route and saddr entries for all the transports
842 * as some of the addresses in the bind address list are
843 * about to be deleted and cannot be used as source addresses.
844 */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700845 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
846 transports) {
Julian Anastasovc86a7732017-02-06 23:14:13 +0200847 sctp_transport_dst_release(transport);
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700848 sctp_transport_route(transport, NULL,
849 sctp_sk(asoc->base.sk));
850 }
851
Michio Honda8a07eb02011-04-26 20:19:36 +0900852 if (stored)
853 /* We don't need to transmit ASCONF */
854 continue;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700855 retval = sctp_send_asconf(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
857out:
858 return retval;
859}
860
Michio Honda9f7d6532011-04-26 19:32:51 +0900861/* set addr events to assocs in the endpoint. ep and addr_wq must be locked */
862int sctp_asconf_mgmt(struct sctp_sock *sp, struct sctp_sockaddr_entry *addrw)
863{
864 struct sock *sk = sctp_opt2sk(sp);
865 union sctp_addr *addr;
866 struct sctp_af *af;
867
868 /* It is safe to write port space in caller. */
869 addr = &addrw->a;
870 addr->v4.sin_port = htons(sp->ep->base.bind_addr.port);
871 af = sctp_get_af_specific(addr->sa.sa_family);
872 if (!af)
873 return -EINVAL;
874 if (sctp_verify_addr(sk, addr, af->sockaddr_len))
875 return -EINVAL;
876
877 if (addrw->state == SCTP_ADDR_NEW)
878 return sctp_send_asconf_add_ip(sk, (struct sockaddr *)addr, 1);
879 else
880 return sctp_send_asconf_del_ip(sk, (struct sockaddr *)addr, 1);
881}
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883/* Helper for tunneling sctp_bindx() requests through sctp_setsockopt()
884 *
885 * API 8.1
886 * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt,
887 * int flags);
888 *
889 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
890 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
891 * or IPv6 addresses.
892 *
893 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
894 * Section 3.1.2 for this usage.
895 *
896 * addrs is a pointer to an array of one or more socket addresses. Each
897 * address is contained in its appropriate structure (i.e. struct
898 * sockaddr_in or struct sockaddr_in6) the family of the address type
Ville Nuorvala23c435f2006-10-16 22:08:28 -0700899 * must be used to distinguish the address length (note that this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 * representation is termed a "packed array" of addresses). The caller
901 * specifies the number of addresses in the array with addrcnt.
902 *
903 * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns
904 * -1, and sets errno to the appropriate error code.
905 *
906 * For SCTP, the port given in each socket address must be the same, or
907 * sctp_bindx() will fail, setting errno to EINVAL.
908 *
909 * The flags parameter is formed from the bitwise OR of zero or more of
910 * the following currently defined flags:
911 *
912 * SCTP_BINDX_ADD_ADDR
913 *
914 * SCTP_BINDX_REM_ADDR
915 *
916 * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the
917 * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given
918 * addresses from the association. The two flags are mutually exclusive;
919 * if both are given, sctp_bindx() will fail with EINVAL. A caller may
920 * not remove all addresses from an association; sctp_bindx() will
921 * reject such an attempt with EINVAL.
922 *
923 * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate
924 * additional addresses with an endpoint after calling bind(). Or use
925 * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening
926 * socket is associated with so that no new association accepted will be
927 * associated with those addresses. If the endpoint supports dynamic
928 * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a
929 * endpoint to send the appropriate message to the peer to change the
930 * peers address lists.
931 *
932 * Adding and removing addresses from a connected association is
933 * optional functionality. Implementations that do not support this
934 * functionality should return EOPNOTSUPP.
935 *
936 * Basically do nothing but copying the addresses from user to kernel
937 * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk.
Frank Filz3f7a87d2005-06-20 13:14:57 -0700938 * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
939 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 *
941 * We don't use copy_from_user() for optimization: we first do the
942 * sanity checks (buffer size -fast- and access check-healthy
943 * pointer); if all of those succeed, then we can alloc the memory
944 * (expensive operation) needed to copy the data to kernel. Then we do
945 * the copying without checking the user space area
946 * (__copy_from_user()).
947 *
948 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
949 * it.
950 *
951 * sk The sk of the socket
952 * addrs The pointer to the addresses in user land
953 * addrssize Size of the addrs buffer
954 * op Operation to perform (add or remove, see the flags of
955 * sctp_bindx)
956 *
957 * Returns 0 if ok, <0 errno code on error.
958 */
wangweidong26ac8e52013-12-23 12:16:51 +0800959static int sctp_setsockopt_bindx(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +0200960 struct sockaddr __user *addrs,
961 int addrs_size, int op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
963 struct sockaddr *kaddrs;
964 int err;
965 int addrcnt = 0;
966 int walk_size = 0;
967 struct sockaddr *sa_addr;
968 void *addr_buf;
969 struct sctp_af *af;
970
Daniel Borkmannbb333812013-06-28 19:49:40 +0200971 pr_debug("%s: sk:%p addrs:%p addrs_size:%d opt:%d\n",
972 __func__, sk, addrs, addrs_size, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 if (unlikely(addrs_size <= 0))
975 return -EINVAL;
976
977 /* Check the user passed a healthy pointer. */
978 if (unlikely(!access_ok(VERIFY_READ, addrs, addrs_size)))
979 return -EFAULT;
980
981 /* Alloc space for the address array in kernel memory. */
Marcelo Ricardo Leitnercacc0622015-11-30 14:32:54 -0200982 kaddrs = kmalloc(addrs_size, GFP_USER | __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (unlikely(!kaddrs))
984 return -ENOMEM;
985
986 if (__copy_from_user(kaddrs, addrs, addrs_size)) {
987 kfree(kaddrs);
988 return -EFAULT;
989 }
990
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) {
995 kfree(kaddrs);
996 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) {
1006 kfree(kaddrs);
1007 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:
1017 err = sctp_bindx_add(sk, kaddrs, addrcnt);
1018 if (err)
1019 goto out;
1020 err = sctp_send_asconf_add_ip(sk, kaddrs, addrcnt);
1021 break;
1022
1023 case SCTP_BINDX_REM_ADDR:
1024 err = sctp_bindx_rem(sk, kaddrs, addrcnt);
1025 if (err)
1026 goto out;
1027 err = sctp_send_asconf_del_ip(sk, kaddrs, addrcnt);
1028 break;
1029
1030 default:
1031 err = -EINVAL;
1032 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001033 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035out:
1036 kfree(kaddrs);
1037
1038 return err;
1039}
1040
Frank Filz3f7a87d2005-06-20 13:14:57 -07001041/* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size)
1042 *
1043 * Common routine for handling connect() and sctp_connectx().
1044 * Connect will come in with just a single address.
1045 */
wangweidong26ac8e52013-12-23 12:16:51 +08001046static int __sctp_connect(struct sock *sk,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001047 struct sockaddr *kaddrs,
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001048 int addrs_size,
1049 sctp_assoc_t *assoc_id)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001050{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001051 struct net *net = sock_net(sk);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001052 struct sctp_sock *sp;
1053 struct sctp_endpoint *ep;
1054 struct sctp_association *asoc = NULL;
1055 struct sctp_association *asoc2;
1056 struct sctp_transport *transport;
1057 union sctp_addr to;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001058 sctp_scope_t scope;
1059 long timeo;
1060 int err = 0;
1061 int addrcnt = 0;
1062 int walk_size = 0;
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001063 union sctp_addr *sa_addr = NULL;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001064 void *addr_buf;
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001065 unsigned short port;
Vlad Yasevichf50f95c2007-07-03 12:47:40 -04001066 unsigned int f_flags = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001067
1068 sp = sctp_sk(sk);
1069 ep = sp->ep;
1070
1071 /* connect() cannot be done on a socket that is already in ESTABLISHED
1072 * state - UDP-style peeled off socket or a TCP-style socket that
1073 * is already connected.
1074 * It cannot be done even on a TCP-style listening socket.
1075 */
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -03001076 if (sctp_sstate(sk, ESTABLISHED) || sctp_sstate(sk, CLOSING) ||
Frank Filz3f7a87d2005-06-20 13:14:57 -07001077 (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))) {
1078 err = -EISCONN;
1079 goto out_free;
1080 }
1081
1082 /* Walk through the addrs buffer and count the number of addresses. */
1083 addr_buf = kaddrs;
1084 while (walk_size < addrs_size) {
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001085 struct sctp_af *af;
1086
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001087 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1088 err = -EINVAL;
1089 goto out_free;
1090 }
1091
Joe Perchesea110732011-06-13 16:21:26 +00001092 sa_addr = addr_buf;
Al Viro4bdf4b52006-11-20 17:10:20 -08001093 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001094
1095 /* If the address family is not supported or if this address
1096 * causes the address buffer to overflow return EINVAL.
1097 */
1098 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1099 err = -EINVAL;
1100 goto out_free;
1101 }
1102
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001103 port = ntohs(sa_addr->v4.sin_port);
1104
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001105 /* Save current address so we can work with it */
1106 memcpy(&to, sa_addr, af->sockaddr_len);
1107
1108 err = sctp_verify_addr(sk, &to, af->sockaddr_len);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001109 if (err)
1110 goto out_free;
1111
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001112 /* Make sure the destination port is correctly set
1113 * in all addresses.
1114 */
Wei Yongjun524fba62013-04-03 03:02:28 +00001115 if (asoc && asoc->peer.port && asoc->peer.port != port) {
1116 err = -EINVAL;
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001117 goto out_free;
Wei Yongjun524fba62013-04-03 03:02:28 +00001118 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001119
1120 /* Check if there already is a matching association on the
1121 * endpoint (other than the one created here).
1122 */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001123 asoc2 = sctp_endpoint_lookup_assoc(ep, &to, &transport);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001124 if (asoc2 && asoc2 != asoc) {
1125 if (asoc2->state >= SCTP_STATE_ESTABLISHED)
1126 err = -EISCONN;
1127 else
1128 err = -EALREADY;
1129 goto out_free;
1130 }
1131
1132 /* If we could not find a matching association on the endpoint,
1133 * make sure that there is no peeled-off association matching
1134 * the peer address even on another socket.
1135 */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001136 if (sctp_endpoint_is_peeled_off(ep, &to)) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07001137 err = -EADDRNOTAVAIL;
1138 goto out_free;
1139 }
1140
1141 if (!asoc) {
1142 /* If a bind() or sctp_bindx() is not called prior to
1143 * an sctp_connectx() call, the system picks an
1144 * ephemeral port and will choose an address set
1145 * equivalent to binding with a wildcard address.
1146 */
1147 if (!ep->base.bind_addr.port) {
1148 if (sctp_autobind(sk)) {
1149 err = -EAGAIN;
1150 goto out_free;
1151 }
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001152 } else {
1153 /*
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001154 * If an unprivileged user inherits a 1-many
1155 * style socket with open associations on a
1156 * privileged port, it MAY be permitted to
1157 * accept new associations, but it SHOULD NOT
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001158 * be permitted to open new associations.
1159 */
Krister Johansen4548b682017-01-20 17:49:11 -08001160 if (ep->base.bind_addr.port <
1161 inet_prot_sock(net) &&
1162 !ns_capable(net->user_ns,
1163 CAP_NET_BIND_SERVICE)) {
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001164 err = -EACCES;
1165 goto out_free;
1166 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001167 }
1168
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001169 scope = sctp_scope(&to);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001170 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1171 if (!asoc) {
1172 err = -ENOMEM;
1173 goto out_free;
1174 }
Vlad Yasevich409b95a2009-11-10 08:57:34 +00001175
1176 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope,
1177 GFP_KERNEL);
1178 if (err < 0) {
1179 goto out_free;
1180 }
1181
Frank Filz3f7a87d2005-06-20 13:14:57 -07001182 }
1183
1184 /* Prime the peer's transport structures. */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001185 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001186 SCTP_UNKNOWN);
1187 if (!transport) {
1188 err = -ENOMEM;
1189 goto out_free;
1190 }
1191
1192 addrcnt++;
1193 addr_buf += af->sockaddr_len;
1194 walk_size += af->sockaddr_len;
1195 }
1196
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001197 /* In case the user of sctp_connectx() wants an association
1198 * id back, assign one now.
1199 */
1200 if (assoc_id) {
1201 err = sctp_assoc_set_id(asoc, GFP_KERNEL);
1202 if (err < 0)
1203 goto out_free;
1204 }
1205
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001206 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001207 if (err < 0) {
1208 goto out_free;
1209 }
1210
1211 /* Initialize sk's dport and daddr for getpeername() */
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001212 inet_sk(sk)->inet_dport = htons(asoc->peer.port);
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001213 sp->pf->to_sk_daddr(sa_addr, sk);
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07001214 sk->sk_err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001215
Vlad Yasevichf50f95c2007-07-03 12:47:40 -04001216 /* in-kernel sockets don't generally have a file allocated to them
1217 * if all they do is call sock_create_kern().
1218 */
1219 if (sk->sk_socket->file)
1220 f_flags = sk->sk_socket->file->f_flags;
1221
1222 timeo = sock_sndtimeo(sk, f_flags & O_NONBLOCK);
1223
Marcelo Ricardo Leitner7233bc82016-11-03 17:03:41 -02001224 if (assoc_id)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001225 *assoc_id = asoc->assoc_id;
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 *
1294 * We don't use copy_from_user() for optimization: we first do the
1295 * sanity checks (buffer size -fast- and access check-healthy
1296 * pointer); if all of those succeed, then we can alloc the memory
1297 * (expensive operation) needed to copy the data to kernel. Then we do
1298 * the copying without checking the user space area
1299 * (__copy_from_user()).
1300 *
1301 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
1302 * it.
1303 *
1304 * sk The sk of the socket
1305 * addrs The pointer to the addresses in user land
1306 * addrssize Size of the addrs buffer
1307 *
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001308 * Returns >=0 if ok, <0 errno code on error.
Frank Filz3f7a87d2005-06-20 13:14:57 -07001309 */
wangweidong26ac8e52013-12-23 12:16:51 +08001310static int __sctp_setsockopt_connectx(struct sock *sk,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001311 struct sockaddr __user *addrs,
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001312 int addrs_size,
1313 sctp_assoc_t *assoc_id)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001314{
Frank Filz3f7a87d2005-06-20 13:14:57 -07001315 struct sockaddr *kaddrs;
Marcelo Ricardo Leitner9ba0b962015-12-23 16:28:40 -02001316 gfp_t gfp = GFP_KERNEL;
1317 int err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001318
Daniel Borkmannbb333812013-06-28 19:49:40 +02001319 pr_debug("%s: sk:%p addrs:%p addrs_size:%d\n",
1320 __func__, sk, addrs, addrs_size);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001321
1322 if (unlikely(addrs_size <= 0))
1323 return -EINVAL;
1324
1325 /* Check the user passed a healthy pointer. */
1326 if (unlikely(!access_ok(VERIFY_READ, addrs, addrs_size)))
1327 return -EFAULT;
1328
1329 /* Alloc space for the address array in kernel memory. */
Marcelo Ricardo Leitner9ba0b962015-12-23 16:28:40 -02001330 if (sk->sk_socket->file)
1331 gfp = GFP_USER | __GFP_NOWARN;
1332 kaddrs = kmalloc(addrs_size, gfp);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001333 if (unlikely(!kaddrs))
1334 return -ENOMEM;
1335
1336 if (__copy_from_user(kaddrs, addrs, addrs_size)) {
1337 err = -EFAULT;
1338 } else {
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001339 err = __sctp_connect(sk, kaddrs, addrs_size, assoc_id);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001340 }
1341
1342 kfree(kaddrs);
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001343
Frank Filz3f7a87d2005-06-20 13:14:57 -07001344 return err;
1345}
1346
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001347/*
1348 * This is an older interface. It's kept for backward compatibility
1349 * to the option that doesn't provide association id.
1350 */
wangweidong26ac8e52013-12-23 12:16:51 +08001351static int sctp_setsockopt_connectx_old(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001352 struct sockaddr __user *addrs,
1353 int addrs_size)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001354{
1355 return __sctp_setsockopt_connectx(sk, addrs, addrs_size, NULL);
1356}
1357
1358/*
1359 * New interface for the API. The since the API is done with a socket
1360 * option, to make it simple we feed back the association id is as a return
1361 * indication to the call. Error is always negative and association id is
1362 * always positive.
1363 */
wangweidong26ac8e52013-12-23 12:16:51 +08001364static int sctp_setsockopt_connectx(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001365 struct sockaddr __user *addrs,
1366 int addrs_size)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001367{
1368 sctp_assoc_t assoc_id = 0;
1369 int err = 0;
1370
1371 err = __sctp_setsockopt_connectx(sk, addrs, addrs_size, &assoc_id);
1372
1373 if (err)
1374 return err;
1375 else
1376 return assoc_id;
1377}
1378
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001379/*
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001380 * New (hopefully final) interface for the API.
1381 * We use the sctp_getaddrs_old structure so that use-space library
Daniel Borkmannffd59392014-02-17 12:11:11 +01001382 * can avoid any unnecessary allocations. The only different part
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001383 * is that we store the actual length of the address buffer into the
Daniel Borkmannffd59392014-02-17 12:11:11 +01001384 * addrs_num structure member. That way we can re-use the existing
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001385 * code.
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001386 */
Daniel Borkmannffd59392014-02-17 12:11:11 +01001387#ifdef CONFIG_COMPAT
1388struct compat_sctp_getaddrs_old {
1389 sctp_assoc_t assoc_id;
1390 s32 addr_num;
1391 compat_uptr_t addrs; /* struct sockaddr * */
1392};
1393#endif
1394
wangweidong26ac8e52013-12-23 12:16:51 +08001395static int sctp_getsockopt_connectx3(struct sock *sk, int len,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001396 char __user *optval,
1397 int __user *optlen)
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001398{
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001399 struct sctp_getaddrs_old param;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001400 sctp_assoc_t assoc_id = 0;
1401 int err = 0;
1402
Daniel Borkmannffd59392014-02-17 12:11:11 +01001403#ifdef CONFIG_COMPAT
Andy Lutomirski96c0e0a2016-03-22 14:25:07 -07001404 if (in_compat_syscall()) {
Daniel Borkmannffd59392014-02-17 12:11:11 +01001405 struct compat_sctp_getaddrs_old param32;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001406
Daniel Borkmannffd59392014-02-17 12:11:11 +01001407 if (len < sizeof(param32))
1408 return -EINVAL;
1409 if (copy_from_user(&param32, optval, sizeof(param32)))
1410 return -EFAULT;
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001411
Daniel Borkmannffd59392014-02-17 12:11:11 +01001412 param.assoc_id = param32.assoc_id;
1413 param.addr_num = param32.addr_num;
1414 param.addrs = compat_ptr(param32.addrs);
1415 } else
1416#endif
1417 {
1418 if (len < sizeof(param))
1419 return -EINVAL;
1420 if (copy_from_user(&param, optval, sizeof(param)))
1421 return -EFAULT;
1422 }
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001423
Daniel Borkmannffd59392014-02-17 12:11:11 +01001424 err = __sctp_setsockopt_connectx(sk, (struct sockaddr __user *)
1425 param.addrs, param.addr_num,
1426 &assoc_id);
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001427 if (err == 0 || err == -EINPROGRESS) {
1428 if (copy_to_user(optval, &assoc_id, sizeof(assoc_id)))
1429 return -EFAULT;
1430 if (put_user(sizeof(assoc_id), optlen))
1431 return -EFAULT;
1432 }
1433
1434 return err;
1435}
1436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437/* API 3.1.4 close() - UDP Style Syntax
1438 * Applications use close() to perform graceful shutdown (as described in
1439 * Section 10.1 of [SCTP]) on ALL the associations currently represented
1440 * by a UDP-style socket.
1441 *
1442 * The syntax is
1443 *
1444 * ret = close(int sd);
1445 *
1446 * sd - the socket descriptor of the associations to be closed.
1447 *
1448 * To gracefully shutdown a specific association represented by the
1449 * UDP-style socket, an application should use the sendmsg() call,
1450 * passing no user data, but including the appropriate flag in the
1451 * ancillary data (see Section xxxx).
1452 *
1453 * If sd in the close() call is a branched-off socket representing only
1454 * one association, the shutdown is performed on that association only.
1455 *
1456 * 4.1.6 close() - TCP Style Syntax
1457 *
1458 * Applications use close() to gracefully close down an association.
1459 *
1460 * The syntax is:
1461 *
1462 * int close(int sd);
1463 *
1464 * sd - the socket descriptor of the association to be closed.
1465 *
1466 * After an application calls close() on a socket descriptor, no further
1467 * socket operations will succeed on that descriptor.
1468 *
1469 * API 7.1.4 SO_LINGER
1470 *
1471 * An application using the TCP-style socket can use this option to
1472 * perform the SCTP ABORT primitive. The linger option structure is:
1473 *
1474 * struct linger {
1475 * int l_onoff; // option on/off
1476 * int l_linger; // linger time
1477 * };
1478 *
1479 * To enable the option, set l_onoff to 1. If the l_linger value is set
1480 * to 0, calling close() is the same as the ABORT primitive. If the
1481 * value is set to a negative value, the setsockopt() call will return
1482 * an error. If the value is set to a positive value linger_time, the
1483 * close() can be blocked for at most linger_time ms. If the graceful
1484 * shutdown phase does not finish during this period, close() will
1485 * return but the graceful shutdown phase continues in the system.
1486 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02001487static void sctp_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001489 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 struct sctp_endpoint *ep;
1491 struct sctp_association *asoc;
1492 struct list_head *pos, *temp;
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001493 unsigned int data_was_unread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Daniel Borkmannbb333812013-06-28 19:49:40 +02001495 pr_debug("%s: sk:%p, timeout:%ld\n", __func__, sk, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Xin Long6dfe4b92017-06-10 14:56:56 +08001497 lock_sock_nested(sk, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 sk->sk_shutdown = SHUTDOWN_MASK;
Vlad Yasevichbec96402009-07-30 18:08:28 -04001499 sk->sk_state = SCTP_SS_CLOSING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
1501 ep = sctp_sk(sk)->ep;
1502
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001503 /* Clean up any skbs sitting on the receive queue. */
1504 data_was_unread = sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1505 data_was_unread += sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1506
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07001507 /* Walk all associations on an endpoint. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 list_for_each_safe(pos, temp, &ep->asocs) {
1509 asoc = list_entry(pos, struct sctp_association, asocs);
1510
1511 if (sctp_style(sk, TCP)) {
1512 /* A closed association can still be in the list if
1513 * it belongs to a TCP-style listening socket that is
1514 * not yet accepted. If so, free it. If not, send an
1515 * ABORT or SHUTDOWN based on the linger options.
1516 */
1517 if (sctp_state(asoc, CLOSED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 sctp_association_free(asoc);
Vladislav Yasevichb89498a2006-05-19 14:32:06 -07001519 continue;
1520 }
1521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001523 if (data_was_unread || !skb_queue_empty(&asoc->ulpq.lobby) ||
1524 !skb_queue_empty(&asoc->ulpq.reasm) ||
1525 (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) {
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001526 struct sctp_chunk *chunk;
1527
1528 chunk = sctp_make_abort_user(asoc, NULL, 0);
Xin Long068d8bd2015-12-29 17:49:25 +08001529 sctp_primitive_ABORT(net, asoc, chunk);
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001530 } else
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001531 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 }
1533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 /* On a TCP-style socket, block for at most linger_time if set. */
1535 if (sctp_style(sk, TCP) && timeout)
1536 sctp_wait_for_close(sk, timeout);
1537
1538 /* This will run the backlog queue. */
wangweidong048ed4b2014-01-21 15:44:11 +08001539 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
1541 /* Supposedly, no process has access to the socket, but
1542 * the net layers still may.
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001543 * Also, sctp_destroy_sock() needs to be called with addr_wq_lock
1544 * held and that should be grabbed before socket lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 */
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001546 spin_lock_bh(&net->sctp.addr_wq_lock);
Xin Long6dfe4b92017-06-10 14:56:56 +08001547 bh_lock_sock_nested(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
1549 /* Hold the sock, since sk_common_release() will put sock_put()
1550 * and we have just a little more cleanup.
1551 */
1552 sock_hold(sk);
1553 sk_common_release(sk);
1554
wangweidong5bc1d1b2014-01-21 15:44:12 +08001555 bh_unlock_sock(sk);
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001556 spin_unlock_bh(&net->sctp.addr_wq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 sock_put(sk);
1559
1560 SCTP_DBG_OBJCNT_DEC(sock);
1561}
1562
1563/* Handle EPIPE error. */
1564static int sctp_error(struct sock *sk, int flags, int err)
1565{
1566 if (err == -EPIPE)
1567 err = sock_error(sk) ? : -EPIPE;
1568 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1569 send_sig(SIGPIPE, current, 0);
1570 return err;
1571}
1572
1573/* API 3.1.3 sendmsg() - UDP Style Syntax
1574 *
1575 * An application uses sendmsg() and recvmsg() calls to transmit data to
1576 * and receive data from its peer.
1577 *
1578 * ssize_t sendmsg(int socket, const struct msghdr *message,
1579 * int flags);
1580 *
1581 * socket - the socket descriptor of the endpoint.
1582 * message - pointer to the msghdr structure which contains a single
1583 * user message and possibly some ancillary data.
1584 *
1585 * See Section 5 for complete description of the data
1586 * structures.
1587 *
1588 * flags - flags sent or received with the user message, see Section
1589 * 5 for complete description of the flags.
1590 *
1591 * Note: This function could use a rewrite especially when explicit
1592 * connect support comes in.
1593 */
1594/* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */
1595
Daniel Borkmanndda91922013-06-17 11:40:05 +02001596static int sctp_msghdr_parse(const struct msghdr *, sctp_cmsgs_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Ying Xue1b784142015-03-02 15:37:48 +08001598static int sctp_sendmsg(struct sock *sk, struct msghdr *msg, size_t msg_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001600 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 struct sctp_sock *sp;
1602 struct sctp_endpoint *ep;
wangweidongcb3f8372013-12-23 12:16:50 +08001603 struct sctp_association *new_asoc = NULL, *asoc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 struct sctp_transport *transport, *chunk_tp;
1605 struct sctp_chunk *chunk;
Al Virodce116a2006-11-20 17:25:15 -08001606 union sctp_addr to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 struct sockaddr *msg_name = NULL;
Joe Perches517aa0b2011-05-12 11:27:20 +00001608 struct sctp_sndrcvinfo default_sinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 struct sctp_sndrcvinfo *sinfo;
1610 struct sctp_initmsg *sinit;
1611 sctp_assoc_t associd = 0;
1612 sctp_cmsgs_t cmsgs = { NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 sctp_scope_t scope;
Daniel Borkmann2061dcd2015-01-15 16:34:35 +01001614 bool fill_sinfo_ttl = false, wait_connect = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 struct sctp_datamsg *datamsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 int msg_flags = msg->msg_flags;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02001617 __u16 sinfo_flags = 0;
1618 long timeo;
1619 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 err = 0;
1622 sp = sctp_sk(sk);
1623 ep = sp->ep;
1624
Daniel Borkmannbb333812013-06-28 19:49:40 +02001625 pr_debug("%s: sk:%p, msg:%p, msg_len:%zu ep:%p\n", __func__, sk,
1626 msg, msg_len, ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 /* We cannot send a message over a TCP-style listening socket. */
1629 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING)) {
1630 err = -EPIPE;
1631 goto out_nounlock;
1632 }
1633
1634 /* Parse out the SCTP CMSGs. */
1635 err = sctp_msghdr_parse(msg, &cmsgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 if (err) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02001637 pr_debug("%s: msghdr parse err:%x\n", __func__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 goto out_nounlock;
1639 }
1640
1641 /* Fetch the destination address for this packet. This
1642 * address only selects the association--it is not necessarily
1643 * the address we will send to.
1644 * For a peeled-off socket, msg_name is ignored.
1645 */
1646 if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
1647 int msg_namelen = msg->msg_namelen;
1648
1649 err = sctp_verify_addr(sk, (union sctp_addr *)msg->msg_name,
1650 msg_namelen);
1651 if (err)
1652 return err;
1653
1654 if (msg_namelen > sizeof(to))
1655 msg_namelen = sizeof(to);
1656 memcpy(&to, msg->msg_name, msg_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 msg_name = msg->msg_name;
1658 }
1659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 sinit = cmsgs.init;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02001661 if (cmsgs.sinfo != NULL) {
1662 memset(&default_sinfo, 0, sizeof(default_sinfo));
1663 default_sinfo.sinfo_stream = cmsgs.sinfo->snd_sid;
1664 default_sinfo.sinfo_flags = cmsgs.sinfo->snd_flags;
1665 default_sinfo.sinfo_ppid = cmsgs.sinfo->snd_ppid;
1666 default_sinfo.sinfo_context = cmsgs.sinfo->snd_context;
1667 default_sinfo.sinfo_assoc_id = cmsgs.sinfo->snd_assoc_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02001669 sinfo = &default_sinfo;
1670 fill_sinfo_ttl = true;
1671 } else {
1672 sinfo = cmsgs.srinfo;
1673 }
1674 /* Did the user specify SNDINFO/SNDRCVINFO? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 if (sinfo) {
1676 sinfo_flags = sinfo->sinfo_flags;
1677 associd = sinfo->sinfo_assoc_id;
1678 }
1679
Daniel Borkmannbb333812013-06-28 19:49:40 +02001680 pr_debug("%s: msg_len:%zu, sinfo_flags:0x%x\n", __func__,
1681 msg_len, sinfo_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001683 /* SCTP_EOF or SCTP_ABORT cannot be set on a TCP-style socket. */
1684 if (sctp_style(sk, TCP) && (sinfo_flags & (SCTP_EOF | SCTP_ABORT))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 err = -EINVAL;
1686 goto out_nounlock;
1687 }
1688
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001689 /* If SCTP_EOF is set, no data can be sent. Disallow sending zero
1690 * length messages when SCTP_EOF|SCTP_ABORT is not set.
1691 * If SCTP_ABORT is set, the message length could be non zero with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 * the msg_iov set to the user abort reason.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001693 */
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001694 if (((sinfo_flags & SCTP_EOF) && (msg_len > 0)) ||
1695 (!(sinfo_flags & (SCTP_EOF|SCTP_ABORT)) && (msg_len == 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 err = -EINVAL;
1697 goto out_nounlock;
1698 }
1699
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001700 /* If SCTP_ADDR_OVER is set, there must be an address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 * specified in msg_name.
1702 */
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001703 if ((sinfo_flags & SCTP_ADDR_OVER) && (!msg->msg_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 err = -EINVAL;
1705 goto out_nounlock;
1706 }
1707
1708 transport = NULL;
1709
Daniel Borkmannbb333812013-06-28 19:49:40 +02001710 pr_debug("%s: about to look up association\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
wangweidong048ed4b2014-01-21 15:44:11 +08001712 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
1714 /* If a msg_name has been specified, assume this is to be used. */
1715 if (msg_name) {
1716 /* Look for a matching association on the endpoint. */
Al Virodce116a2006-11-20 17:25:15 -08001717 asoc = sctp_endpoint_lookup_assoc(ep, &to, &transport);
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -03001718
1719 /* If we could not find a matching association on the
1720 * endpoint, make sure that it is not a TCP-style
1721 * socket that already has an association or there is
1722 * no peeled-off association on another socket.
1723 */
1724 if (!asoc &&
1725 ((sctp_style(sk, TCP) &&
1726 (sctp_sstate(sk, ESTABLISHED) ||
1727 sctp_sstate(sk, CLOSING))) ||
1728 sctp_endpoint_is_peeled_off(ep, &to))) {
1729 err = -EADDRNOTAVAIL;
1730 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 }
1732 } else {
1733 asoc = sctp_id2assoc(sk, associd);
1734 if (!asoc) {
1735 err = -EPIPE;
1736 goto out_unlock;
1737 }
1738 }
1739
1740 if (asoc) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02001741 pr_debug("%s: just looked up association:%p\n", __func__, asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
1743 /* We cannot send a message on a TCP-style SCTP_SS_ESTABLISHED
1744 * socket that has an association in CLOSED state. This can
1745 * happen when an accepted socket has an association that is
1746 * already CLOSED.
1747 */
1748 if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP)) {
1749 err = -EPIPE;
1750 goto out_unlock;
1751 }
1752
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001753 if (sinfo_flags & SCTP_EOF) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02001754 pr_debug("%s: shutting down association:%p\n",
1755 __func__, asoc);
1756
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001757 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 err = 0;
1759 goto out_unlock;
1760 }
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001761 if (sinfo_flags & SCTP_ABORT) {
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001762
1763 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1764 if (!chunk) {
1765 err = -ENOMEM;
1766 goto out_unlock;
1767 }
1768
Daniel Borkmannbb333812013-06-28 19:49:40 +02001769 pr_debug("%s: aborting association:%p\n",
1770 __func__, asoc);
1771
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001772 sctp_primitive_ABORT(net, asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 err = 0;
1774 goto out_unlock;
1775 }
1776 }
1777
1778 /* Do we need to create the association? */
1779 if (!asoc) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02001780 pr_debug("%s: there is no association yet\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001782 if (sinfo_flags & (SCTP_EOF | SCTP_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 err = -EINVAL;
1784 goto out_unlock;
1785 }
1786
1787 /* Check for invalid stream against the stream counts,
1788 * either the default or the user specified stream counts.
1789 */
1790 if (sinfo) {
Dan Carpenter0e864b22014-01-13 16:46:08 +03001791 if (!sinit || !sinit->sinit_num_ostreams) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 /* Check against the defaults. */
1793 if (sinfo->sinfo_stream >=
1794 sp->initmsg.sinit_num_ostreams) {
1795 err = -EINVAL;
1796 goto out_unlock;
1797 }
1798 } else {
1799 /* Check against the requested. */
1800 if (sinfo->sinfo_stream >=
1801 sinit->sinit_num_ostreams) {
1802 err = -EINVAL;
1803 goto out_unlock;
1804 }
1805 }
1806 }
1807
1808 /*
1809 * API 3.1.2 bind() - UDP Style Syntax
1810 * If a bind() or sctp_bindx() is not called prior to a
1811 * sendmsg() call that initiates a new association, the
1812 * system picks an ephemeral port and will choose an address
1813 * set equivalent to binding with a wildcard address.
1814 */
1815 if (!ep->base.bind_addr.port) {
1816 if (sctp_autobind(sk)) {
1817 err = -EAGAIN;
1818 goto out_unlock;
1819 }
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001820 } else {
1821 /*
1822 * If an unprivileged user inherits a one-to-many
1823 * style socket with open associations on a privileged
1824 * port, it MAY be permitted to accept new associations,
1825 * but it SHOULD NOT be permitted to open new
1826 * associations.
1827 */
Krister Johansen4548b682017-01-20 17:49:11 -08001828 if (ep->base.bind_addr.port < inet_prot_sock(net) &&
Eric W. Biederman35946982012-11-16 03:03:12 +00001829 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE)) {
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001830 err = -EACCES;
1831 goto out_unlock;
1832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 }
1834
1835 scope = sctp_scope(&to);
1836 new_asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1837 if (!new_asoc) {
1838 err = -ENOMEM;
1839 goto out_unlock;
1840 }
1841 asoc = new_asoc;
Vlad Yasevich409b95a2009-11-10 08:57:34 +00001842 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope, GFP_KERNEL);
1843 if (err < 0) {
1844 err = -ENOMEM;
1845 goto out_free;
1846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
1848 /* If the SCTP_INIT ancillary data is specified, set all
1849 * the association init values accordingly.
1850 */
1851 if (sinit) {
1852 if (sinit->sinit_num_ostreams) {
1853 asoc->c.sinit_num_ostreams =
1854 sinit->sinit_num_ostreams;
1855 }
1856 if (sinit->sinit_max_instreams) {
1857 asoc->c.sinit_max_instreams =
1858 sinit->sinit_max_instreams;
1859 }
1860 if (sinit->sinit_max_attempts) {
1861 asoc->max_init_attempts
1862 = sinit->sinit_max_attempts;
1863 }
1864 if (sinit->sinit_max_init_timeo) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001865 asoc->max_init_timeo =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 msecs_to_jiffies(sinit->sinit_max_init_timeo);
1867 }
1868 }
1869
1870 /* Prime the peer's transport structures. */
Al Virodce116a2006-11-20 17:25:15 -08001871 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL, SCTP_UNKNOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 if (!transport) {
1873 err = -ENOMEM;
1874 goto out_free;
1875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
1877
1878 /* ASSERT: we have a valid association at this point. */
Daniel Borkmannbb333812013-06-28 19:49:40 +02001879 pr_debug("%s: we have a valid association\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
1881 if (!sinfo) {
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02001882 /* If the user didn't specify SNDINFO/SNDRCVINFO, make up
1883 * one with some defaults.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 */
Joe Perches517aa0b2011-05-12 11:27:20 +00001885 memset(&default_sinfo, 0, sizeof(default_sinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 default_sinfo.sinfo_stream = asoc->default_stream;
1887 default_sinfo.sinfo_flags = asoc->default_flags;
1888 default_sinfo.sinfo_ppid = asoc->default_ppid;
1889 default_sinfo.sinfo_context = asoc->default_context;
1890 default_sinfo.sinfo_timetolive = asoc->default_timetolive;
1891 default_sinfo.sinfo_assoc_id = sctp_assoc2id(asoc);
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02001892
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 sinfo = &default_sinfo;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02001894 } else if (fill_sinfo_ttl) {
1895 /* In case SNDINFO was specified, we still need to fill
1896 * it with a default ttl from the assoc here.
1897 */
1898 sinfo->sinfo_timetolive = asoc->default_timetolive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 }
1900
1901 /* API 7.1.7, the sndbuf size per association bounds the
1902 * maximum size of data that can be sent in a single send call.
1903 */
1904 if (msg_len > sk->sk_sndbuf) {
1905 err = -EMSGSIZE;
1906 goto out_free;
1907 }
1908
Vlad Yasevich8a479492007-06-07 14:21:05 -04001909 if (asoc->pmtu_pending)
Xin Long3ebfdf02017-04-04 13:39:55 +08001910 sctp_assoc_pending_pmtu(asoc);
Vlad Yasevich8a479492007-06-07 14:21:05 -04001911
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 /* If fragmentation is disabled and the message length exceeds the
1913 * association fragmentation point, return EMSGSIZE. The I-D
1914 * does not specify what this error is, but this looks like
1915 * a great fit.
1916 */
1917 if (sctp_sk(sk)->disable_fragments && (msg_len > asoc->frag_point)) {
1918 err = -EMSGSIZE;
1919 goto out_free;
1920 }
1921
Joe Perchesafd76142011-05-12 09:19:10 +00001922 /* Check for invalid stream. */
Xin Longcee360a2017-05-31 16:36:31 +08001923 if (sinfo->sinfo_stream >= asoc->stream.outcnt) {
Joe Perchesafd76142011-05-12 09:19:10 +00001924 err = -EINVAL;
1925 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 }
1927
Xin Long8dbdf1f2016-07-09 19:47:45 +08001928 if (sctp_wspace(asoc) < msg_len)
1929 sctp_prsctp_prune(asoc, sinfo, msg_len - sctp_wspace(asoc));
1930
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1932 if (!sctp_wspace(asoc)) {
1933 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1934 if (err)
1935 goto out_free;
1936 }
1937
1938 /* If an address is passed with the sendto/sendmsg call, it is used
1939 * to override the primary destination address in the TCP model, or
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001940 * when SCTP_ADDR_OVER flag is set in the UDP model.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 */
1942 if ((sctp_style(sk, TCP) && msg_name) ||
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001943 (sinfo_flags & SCTP_ADDR_OVER)) {
Al Virodce116a2006-11-20 17:25:15 -08001944 chunk_tp = sctp_assoc_lookup_paddr(asoc, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 if (!chunk_tp) {
1946 err = -EINVAL;
1947 goto out_free;
1948 }
1949 } else
1950 chunk_tp = NULL;
1951
1952 /* Auto-connect, if we aren't connected already. */
1953 if (sctp_state(asoc, CLOSED)) {
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001954 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 if (err < 0)
1956 goto out_free;
Daniel Borkmannbb333812013-06-28 19:49:40 +02001957
Daniel Borkmann2061dcd2015-01-15 16:34:35 +01001958 wait_connect = true;
Daniel Borkmannbb333812013-06-28 19:49:40 +02001959 pr_debug("%s: we associated primitively\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 }
1961
1962 /* Break the message into multiple chunks of maximum size. */
Al Viroc0371da2014-11-24 10:42:55 -05001963 datamsg = sctp_datamsg_from_user(asoc, sinfo, &msg->msg_iter);
Tommi Rantala6e51fe72012-11-22 03:23:16 +00001964 if (IS_ERR(datamsg)) {
1965 err = PTR_ERR(datamsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 goto out_free;
1967 }
Xin Longf9ba3502017-03-27 00:21:15 +08001968 asoc->force_delay = !!(msg->msg_flags & MSG_MORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
1970 /* Now send the (possibly) fragmented message. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001971 list_for_each_entry(chunk, &datamsg->chunks, frag_list) {
Xin Longb61c6542016-09-14 02:04:20 +08001972 sctp_chunk_hold(chunk);
1973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 /* Do accounting for the write space. */
1975 sctp_set_owner_w(chunk);
1976
1977 chunk->transport = chunk_tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 }
1979
Vlad Yasevich9c5c62b2009-08-10 13:51:03 -04001980 /* Send it to the lower layers. Note: all chunks
1981 * must either fail or succeed. The lower layer
1982 * works that way today. Keep it that way or this
1983 * breaks.
1984 */
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001985 err = sctp_primitive_SEND(net, asoc, datamsg);
Vlad Yasevich9c5c62b2009-08-10 13:51:03 -04001986 /* Did the lower layer accept the chunk? */
Xin Longb61c6542016-09-14 02:04:20 +08001987 if (err) {
1988 sctp_datamsg_free(datamsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 goto out_free;
Xin Longb61c6542016-09-14 02:04:20 +08001990 }
Daniel Borkmannbb333812013-06-28 19:49:40 +02001991
1992 pr_debug("%s: we sent primitively\n", __func__);
1993
Xin Longb61c6542016-09-14 02:04:20 +08001994 sctp_datamsg_put(datamsg);
Daniel Borkmannbb333812013-06-28 19:49:40 +02001995 err = msg_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
Daniel Borkmann2061dcd2015-01-15 16:34:35 +01001997 if (unlikely(wait_connect)) {
1998 timeo = sock_sndtimeo(sk, msg_flags & MSG_DONTWAIT);
1999 sctp_wait_for_connect(asoc, &timeo);
2000 }
2001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 /* If we are already past ASSOCIATE, the lower
2003 * layers are responsible for association cleanup.
2004 */
2005 goto out_unlock;
2006
2007out_free:
Xin Longb5eff712015-12-30 23:50:49 +08002008 if (new_asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 sctp_association_free(asoc);
2010out_unlock:
wangweidong048ed4b2014-01-21 15:44:11 +08002011 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
2013out_nounlock:
2014 return sctp_error(sk, msg_flags, err);
2015
2016#if 0
2017do_sock_err:
2018 if (msg_len)
2019 err = msg_len;
2020 else
2021 err = sock_error(sk);
2022 goto out;
2023
2024do_interrupted:
2025 if (msg_len)
2026 err = msg_len;
2027 goto out;
2028#endif /* 0 */
2029}
2030
2031/* This is an extended version of skb_pull() that removes the data from the
2032 * start of a skb even when data is spread across the list of skb's in the
2033 * frag_list. len specifies the total amount of data that needs to be removed.
2034 * when 'len' bytes could be removed from the skb, it returns 0.
2035 * If 'len' exceeds the total skb length, it returns the no. of bytes that
2036 * could not be removed.
2037 */
2038static int sctp_skb_pull(struct sk_buff *skb, int len)
2039{
2040 struct sk_buff *list;
2041 int skb_len = skb_headlen(skb);
2042 int rlen;
2043
2044 if (len <= skb_len) {
2045 __skb_pull(skb, len);
2046 return 0;
2047 }
2048 len -= skb_len;
2049 __skb_pull(skb, skb_len);
2050
David S. Miller1b003be2009-06-09 00:22:35 -07002051 skb_walk_frags(skb, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 rlen = sctp_skb_pull(list, len);
2053 skb->len -= (len-rlen);
2054 skb->data_len -= (len-rlen);
2055
2056 if (!rlen)
2057 return 0;
2058
2059 len = rlen;
2060 }
2061
2062 return len;
2063}
2064
2065/* API 3.1.3 recvmsg() - UDP Style Syntax
2066 *
2067 * ssize_t recvmsg(int socket, struct msghdr *message,
2068 * int flags);
2069 *
2070 * socket - the socket descriptor of the endpoint.
2071 * message - pointer to the msghdr structure which contains a single
2072 * user message and possibly some ancillary data.
2073 *
2074 * See Section 5 for complete description of the data
2075 * structures.
2076 *
2077 * flags - flags sent or received with the user message, see Section
2078 * 5 for complete description of the flags.
2079 */
Ying Xue1b784142015-03-02 15:37:48 +08002080static int sctp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
2081 int noblock, int flags, int *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082{
2083 struct sctp_ulpevent *event = NULL;
2084 struct sctp_sock *sp = sctp_sk(sk);
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002085 struct sk_buff *skb, *head_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 int copied;
2087 int err = 0;
2088 int skb_len;
2089
Daniel Borkmannbb333812013-06-28 19:49:40 +02002090 pr_debug("%s: sk:%p, msghdr:%p, len:%zd, noblock:%d, flags:0x%x, "
2091 "addr_len:%p)\n", __func__, sk, msg, len, noblock, flags,
2092 addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
wangweidong048ed4b2014-01-21 15:44:11 +08002094 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -03002096 if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED) &&
Xin Longe0878692016-07-30 14:14:41 +08002097 !sctp_sstate(sk, CLOSING) && !sctp_sstate(sk, CLOSED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 err = -ENOTCONN;
2099 goto out;
2100 }
2101
2102 skb = sctp_skb_recv_datagram(sk, flags, noblock, &err);
2103 if (!skb)
2104 goto out;
2105
2106 /* Get the total length of the skb including any skb's in the
2107 * frag_list.
2108 */
2109 skb_len = skb->len;
2110
2111 copied = skb_len;
2112 if (copied > len)
2113 copied = len;
2114
David S. Miller51f3d022014-11-05 16:46:40 -05002115 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117 event = sctp_skb2event(skb);
2118
2119 if (err)
2120 goto out_free;
2121
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002122 if (event->chunk && event->chunk->head_skb)
2123 head_skb = event->chunk->head_skb;
2124 else
2125 head_skb = skb;
2126 sock_recv_ts_and_drops(msg, sk, head_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 if (sctp_ulpevent_is_notification(event)) {
2128 msg->msg_flags |= MSG_NOTIFICATION;
2129 sp->pf->event_msgname(event, msg->msg_name, addr_len);
2130 } else {
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002131 sp->pf->skb_msgname(head_skb, msg->msg_name, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 }
2133
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02002134 /* Check if we allow SCTP_NXTINFO. */
2135 if (sp->recvnxtinfo)
2136 sctp_ulpevent_read_nxtinfo(event, msg, sk);
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02002137 /* Check if we allow SCTP_RCVINFO. */
2138 if (sp->recvrcvinfo)
2139 sctp_ulpevent_read_rcvinfo(event, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 /* Check if we allow SCTP_SNDRCVINFO. */
2141 if (sp->subscribe.sctp_data_io_event)
2142 sctp_ulpevent_read_sndrcvinfo(event, msg);
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02002143
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 err = copied;
2145
2146 /* If skb's length exceeds the user's buffer, update the skb and
2147 * push it back to the receive_queue so that the next call to
2148 * recvmsg() will return the remaining data. Don't set MSG_EOR.
2149 */
2150 if (skb_len > copied) {
2151 msg->msg_flags &= ~MSG_EOR;
2152 if (flags & MSG_PEEK)
2153 goto out_free;
2154 sctp_skb_pull(skb, copied);
2155 skb_queue_head(&sk->sk_receive_queue, skb);
2156
Daniel Borkmann362d5202014-04-14 21:45:17 +02002157 /* When only partial message is copied to the user, increase
2158 * rwnd by that amount. If all the data in the skb is read,
2159 * rwnd is updated when the event is freed.
2160 */
2161 if (!sctp_ulpevent_is_notification(event))
2162 sctp_assoc_rwnd_increase(event->asoc, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 goto out;
2164 } else if ((event->msg_flags & MSG_NOTIFICATION) ||
2165 (event->msg_flags & MSG_EOR))
2166 msg->msg_flags |= MSG_EOR;
2167 else
2168 msg->msg_flags &= ~MSG_EOR;
2169
2170out_free:
2171 if (flags & MSG_PEEK) {
2172 /* Release the skb reference acquired after peeking the skb in
2173 * sctp_skb_recv_datagram().
2174 */
2175 kfree_skb(skb);
2176 } else {
2177 /* Free the event which includes releasing the reference to
2178 * the owner of the skb, freeing the skb and updating the
2179 * rwnd.
2180 */
2181 sctp_ulpevent_free(event);
2182 }
2183out:
wangweidong048ed4b2014-01-21 15:44:11 +08002184 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 return err;
2186}
2187
2188/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
2189 *
2190 * This option is a on/off flag. If enabled no SCTP message
2191 * fragmentation will be performed. Instead if a message being sent
2192 * exceeds the current PMTU size, the message will NOT be sent and
2193 * instead a error will be indicated to the user.
2194 */
2195static int sctp_setsockopt_disable_fragments(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002196 char __user *optval,
2197 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198{
2199 int val;
2200
2201 if (optlen < sizeof(int))
2202 return -EINVAL;
2203
2204 if (get_user(val, (int __user *)optval))
2205 return -EFAULT;
2206
2207 sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1;
2208
2209 return 0;
2210}
2211
2212static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002213 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214{
Wei Yongjun94912302011-07-02 09:28:04 +00002215 struct sctp_association *asoc;
2216 struct sctp_ulpevent *event;
2217
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05002218 if (optlen > sizeof(struct sctp_event_subscribe))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 return -EINVAL;
2220 if (copy_from_user(&sctp_sk(sk)->subscribe, optval, optlen))
2221 return -EFAULT;
Wei Yongjun94912302011-07-02 09:28:04 +00002222
Daniel Borkmannbbbea412014-07-12 20:30:40 +02002223 /* At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT,
Wei Yongjun94912302011-07-02 09:28:04 +00002224 * if there is no data to be sent or retransmit, the stack will
2225 * immediately send up this notification.
2226 */
2227 if (sctp_ulpevent_type_enabled(SCTP_SENDER_DRY_EVENT,
2228 &sctp_sk(sk)->subscribe)) {
2229 asoc = sctp_id2assoc(sk, 0);
2230
2231 if (asoc && sctp_outq_is_empty(&asoc->outqueue)) {
2232 event = sctp_ulpevent_make_sender_dry_event(asoc,
2233 GFP_ATOMIC);
2234 if (!event)
2235 return -ENOMEM;
2236
2237 sctp_ulpq_tail_event(&asoc->ulpq, event);
2238 }
2239 }
2240
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 return 0;
2242}
2243
2244/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
2245 *
2246 * This socket option is applicable to the UDP-style socket only. When
2247 * set it will cause associations that are idle for more than the
2248 * specified number of seconds to automatically close. An association
2249 * being idle is defined an association that has NOT sent or received
2250 * user data. The special value of '0' indicates that no automatic
2251 * close of any associations should be performed. The option expects an
2252 * integer defining the number of seconds of idle time before an
2253 * association is closed.
2254 */
2255static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002256 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257{
2258 struct sctp_sock *sp = sctp_sk(sk);
Neil Horman9f70f462013-12-10 06:48:15 -05002259 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
2261 /* Applicable to UDP-style socket only */
2262 if (sctp_style(sk, TCP))
2263 return -EOPNOTSUPP;
2264 if (optlen != sizeof(int))
2265 return -EINVAL;
2266 if (copy_from_user(&sp->autoclose, optval, optlen))
2267 return -EFAULT;
2268
Neil Horman9f70f462013-12-10 06:48:15 -05002269 if (sp->autoclose > net->sctp.max_autoclose)
2270 sp->autoclose = net->sctp.max_autoclose;
2271
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 return 0;
2273}
2274
2275/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
2276 *
2277 * Applications can enable or disable heartbeats for any peer address of
2278 * an association, modify an address's heartbeat interval, force a
2279 * heartbeat to be sent immediately, and adjust the address's maximum
2280 * number of retransmissions sent before an address is considered
2281 * unreachable. The following structure is used to access and modify an
2282 * address's parameters:
2283 *
2284 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002285 * sctp_assoc_t spp_assoc_id;
2286 * struct sockaddr_storage spp_address;
2287 * uint32_t spp_hbinterval;
2288 * uint16_t spp_pathmaxrxt;
2289 * uint32_t spp_pathmtu;
2290 * uint32_t spp_sackdelay;
2291 * uint32_t spp_flags;
2292 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002294 * spp_assoc_id - (one-to-many style socket) This is filled in the
2295 * application, and identifies the association for
2296 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 * spp_address - This specifies which address is of interest.
2298 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08002299 * in milliseconds. If a value of zero
2300 * is present in this field then no changes are to
2301 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 * spp_pathmaxrxt - This contains the maximum number of
2303 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08002304 * considered unreachable. If a value of zero
2305 * is present in this field then no changes are to
2306 * be made to this parameter.
2307 * spp_pathmtu - When Path MTU discovery is disabled the value
2308 * specified here will be the "fixed" path mtu.
2309 * Note that if the spp_address field is empty
2310 * then all associations on this address will
2311 * have this fixed path mtu set upon them.
2312 *
2313 * spp_sackdelay - When delayed sack is enabled, this value specifies
2314 * the number of milliseconds that sacks will be delayed
2315 * for. This value will apply to all addresses of an
2316 * association if the spp_address field is empty. Note
2317 * also, that if delayed sack is enabled and this
2318 * value is set to 0, no change is made to the last
2319 * recorded delayed sack timer value.
2320 *
2321 * spp_flags - These flags are used to control various features
2322 * on an association. The flag field may contain
2323 * zero or more of the following options.
2324 *
2325 * SPP_HB_ENABLE - Enable heartbeats on the
2326 * specified address. Note that if the address
2327 * field is empty all addresses for the association
2328 * have heartbeats enabled upon them.
2329 *
2330 * SPP_HB_DISABLE - Disable heartbeats on the
2331 * speicifed address. Note that if the address
2332 * field is empty all addresses for the association
2333 * will have their heartbeats disabled. Note also
2334 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
2335 * mutually exclusive, only one of these two should
2336 * be specified. Enabling both fields will have
2337 * undetermined results.
2338 *
2339 * SPP_HB_DEMAND - Request a user initiated heartbeat
2340 * to be made immediately.
2341 *
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002342 * SPP_HB_TIME_IS_ZERO - Specify's that the time for
2343 * heartbeat delayis to be set to the value of 0
2344 * milliseconds.
2345 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002346 * SPP_PMTUD_ENABLE - This field will enable PMTU
2347 * discovery upon the specified address. Note that
2348 * if the address feild is empty then all addresses
2349 * on the association are effected.
2350 *
2351 * SPP_PMTUD_DISABLE - This field will disable PMTU
2352 * discovery upon the specified address. Note that
2353 * if the address feild is empty then all addresses
2354 * on the association are effected. Not also that
2355 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2356 * exclusive. Enabling both will have undetermined
2357 * results.
2358 *
2359 * SPP_SACKDELAY_ENABLE - Setting this flag turns
2360 * on delayed sack. The time specified in spp_sackdelay
2361 * is used to specify the sack delay for this address. Note
2362 * that if spp_address is empty then all addresses will
2363 * enable delayed sack and take on the sack delay
2364 * value specified in spp_sackdelay.
2365 * SPP_SACKDELAY_DISABLE - Setting this flag turns
2366 * off delayed sack. If the spp_address field is blank then
2367 * delayed sack is disabled for the entire association. Note
2368 * also that this field is mutually exclusive to
2369 * SPP_SACKDELAY_ENABLE, setting both will have undefined
2370 * results.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 */
Adrian Bunk16164362006-09-18 00:40:38 -07002372static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2373 struct sctp_transport *trans,
2374 struct sctp_association *asoc,
2375 struct sctp_sock *sp,
2376 int hb_change,
2377 int pmtud_change,
2378 int sackdelay_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 int error;
2381
Frank Filz52ccb8e2005-12-22 11:36:46 -08002382 if (params->spp_flags & SPP_HB_DEMAND && trans) {
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00002383 struct net *net = sock_net(trans->asoc->base.sk);
2384
2385 error = sctp_primitive_REQUESTHEARTBEAT(net, trans->asoc, trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 if (error)
2387 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 }
2389
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002390 /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2391 * this field is ignored. Note also that a value of zero indicates
2392 * the current setting should be left unchanged.
2393 */
2394 if (params->spp_flags & SPP_HB_ENABLE) {
2395
2396 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2397 * set. This lets us use 0 value when this flag
2398 * is set.
2399 */
2400 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2401 params->spp_hbinterval = 0;
2402
2403 if (params->spp_hbinterval ||
2404 (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2405 if (trans) {
2406 trans->hbinterval =
2407 msecs_to_jiffies(params->spp_hbinterval);
2408 } else if (asoc) {
2409 asoc->hbinterval =
2410 msecs_to_jiffies(params->spp_hbinterval);
2411 } else {
2412 sp->hbinterval = params->spp_hbinterval;
2413 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08002414 }
2415 }
2416
2417 if (hb_change) {
2418 if (trans) {
2419 trans->param_flags =
2420 (trans->param_flags & ~SPP_HB) | hb_change;
2421 } else if (asoc) {
2422 asoc->param_flags =
2423 (asoc->param_flags & ~SPP_HB) | hb_change;
2424 } else {
2425 sp->param_flags =
2426 (sp->param_flags & ~SPP_HB) | hb_change;
2427 }
2428 }
2429
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002430 /* When Path MTU discovery is disabled the value specified here will
2431 * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2432 * include the flag SPP_PMTUD_DISABLE for this field to have any
2433 * effect).
2434 */
2435 if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002436 if (trans) {
2437 trans->pathmtu = params->spp_pathmtu;
Xin Long3ebfdf02017-04-04 13:39:55 +08002438 sctp_assoc_sync_pmtu(asoc);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002439 } else if (asoc) {
2440 asoc->pathmtu = params->spp_pathmtu;
Frank Filz52ccb8e2005-12-22 11:36:46 -08002441 } else {
2442 sp->pathmtu = params->spp_pathmtu;
2443 }
2444 }
2445
2446 if (pmtud_change) {
2447 if (trans) {
2448 int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2449 (params->spp_flags & SPP_PMTUD_ENABLE);
2450 trans->param_flags =
2451 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2452 if (update) {
Vlad Yasevich9914ae32011-04-26 21:51:31 +00002453 sctp_transport_pmtu(trans, sctp_opt2sk(sp));
Xin Long3ebfdf02017-04-04 13:39:55 +08002454 sctp_assoc_sync_pmtu(asoc);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002455 }
2456 } else if (asoc) {
2457 asoc->param_flags =
2458 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2459 } else {
2460 sp->param_flags =
2461 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2462 }
2463 }
2464
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002465 /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2466 * value of this field is ignored. Note also that a value of zero
2467 * indicates the current setting should be left unchanged.
2468 */
2469 if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002470 if (trans) {
2471 trans->sackdelay =
2472 msecs_to_jiffies(params->spp_sackdelay);
2473 } else if (asoc) {
2474 asoc->sackdelay =
2475 msecs_to_jiffies(params->spp_sackdelay);
2476 } else {
2477 sp->sackdelay = params->spp_sackdelay;
2478 }
2479 }
2480
2481 if (sackdelay_change) {
2482 if (trans) {
2483 trans->param_flags =
2484 (trans->param_flags & ~SPP_SACKDELAY) |
2485 sackdelay_change;
2486 } else if (asoc) {
2487 asoc->param_flags =
2488 (asoc->param_flags & ~SPP_SACKDELAY) |
2489 sackdelay_change;
2490 } else {
2491 sp->param_flags =
2492 (sp->param_flags & ~SPP_SACKDELAY) |
2493 sackdelay_change;
2494 }
2495 }
2496
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002497 /* Note that a value of zero indicates the current setting should be
2498 left unchanged.
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002499 */
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002500 if (params->spp_pathmaxrxt) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002501 if (trans) {
2502 trans->pathmaxrxt = params->spp_pathmaxrxt;
2503 } else if (asoc) {
2504 asoc->pathmaxrxt = params->spp_pathmaxrxt;
2505 } else {
2506 sp->pathmaxrxt = params->spp_pathmaxrxt;
2507 }
2508 }
2509
2510 return 0;
2511}
2512
2513static int sctp_setsockopt_peer_addr_params(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002514 char __user *optval,
2515 unsigned int optlen)
Frank Filz52ccb8e2005-12-22 11:36:46 -08002516{
2517 struct sctp_paddrparams params;
2518 struct sctp_transport *trans = NULL;
2519 struct sctp_association *asoc = NULL;
2520 struct sctp_sock *sp = sctp_sk(sk);
2521 int error;
2522 int hb_change, pmtud_change, sackdelay_change;
2523
2524 if (optlen != sizeof(struct sctp_paddrparams))
wangweidongcb3f8372013-12-23 12:16:50 +08002525 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08002526
2527 if (copy_from_user(&params, optval, optlen))
2528 return -EFAULT;
2529
2530 /* Validate flags and value parameters. */
2531 hb_change = params.spp_flags & SPP_HB;
2532 pmtud_change = params.spp_flags & SPP_PMTUD;
2533 sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2534
2535 if (hb_change == SPP_HB ||
2536 pmtud_change == SPP_PMTUD ||
2537 sackdelay_change == SPP_SACKDELAY ||
2538 params.spp_sackdelay > 500 ||
Joe Perchesf64f9e72009-11-29 16:55:45 -08002539 (params.spp_pathmtu &&
2540 params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
Frank Filz52ccb8e2005-12-22 11:36:46 -08002541 return -EINVAL;
2542
2543 /* If an address other than INADDR_ANY is specified, and
2544 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 */
wangweidongcb3f8372013-12-23 12:16:50 +08002546 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002547 trans = sctp_addr_id2transport(sk, &params.spp_address,
2548 params.spp_assoc_id);
2549 if (!trans)
2550 return -EINVAL;
2551 }
2552
2553 /* Get association, if assoc_id != 0 and the socket is a one
2554 * to many style socket, and an association was not found, then
2555 * the id was invalid.
2556 */
2557 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
2558 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP))
2559 return -EINVAL;
2560
2561 /* Heartbeat demand can only be sent on a transport or
2562 * association, but not a socket.
2563 */
2564 if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2565 return -EINVAL;
2566
2567 /* Process parameters. */
2568 error = sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2569 hb_change, pmtud_change,
2570 sackdelay_change);
2571
2572 if (error)
2573 return error;
2574
2575 /* If changes are for association, also apply parameters to each
2576 * transport.
2577 */
2578 if (!trans && asoc) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002579 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2580 transports) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002581 sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2582 hb_change, pmtud_change,
2583 sackdelay_change);
2584 }
2585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586
2587 return 0;
2588}
2589
wangweidong0ea5e4d2014-01-15 17:24:01 +08002590static inline __u32 sctp_spp_sackdelay_enable(__u32 param_flags)
2591{
2592 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_ENABLE;
2593}
2594
2595static inline __u32 sctp_spp_sackdelay_disable(__u32 param_flags)
2596{
2597 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_DISABLE;
2598}
2599
Wei Yongjund364d922008-05-09 15:13:26 -07002600/*
2601 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08002602 *
Wei Yongjund364d922008-05-09 15:13:26 -07002603 * This option will effect the way delayed acks are performed. This
2604 * option allows you to get or set the delayed ack time, in
2605 * milliseconds. It also allows changing the delayed ack frequency.
2606 * Changing the frequency to 1 disables the delayed sack algorithm. If
2607 * the assoc_id is 0, then this sets or gets the endpoints default
2608 * values. If the assoc_id field is non-zero, then the set or get
2609 * effects the specified association for the one to many model (the
2610 * assoc_id field is ignored by the one to one model). Note that if
2611 * sack_delay or sack_freq are 0 when setting this option, then the
2612 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08002613 *
Wei Yongjund364d922008-05-09 15:13:26 -07002614 * struct sctp_sack_info {
2615 * sctp_assoc_t sack_assoc_id;
2616 * uint32_t sack_delay;
2617 * uint32_t sack_freq;
2618 * };
Frank Filz77086102005-12-22 11:37:30 -08002619 *
Wei Yongjund364d922008-05-09 15:13:26 -07002620 * sack_assoc_id - This parameter, indicates which association the user
2621 * is performing an action upon. Note that if this field's value is
2622 * zero then the endpoints default value is changed (effecting future
2623 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08002624 *
Wei Yongjund364d922008-05-09 15:13:26 -07002625 * sack_delay - This parameter contains the number of milliseconds that
2626 * the user is requesting the delayed ACK timer be set to. Note that
2627 * this value is defined in the standard to be between 200 and 500
2628 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08002629 *
Wei Yongjund364d922008-05-09 15:13:26 -07002630 * sack_freq - This parameter contains the number of packets that must
2631 * be received before a sack is sent without waiting for the delay
2632 * timer to expire. The default value for this is 2, setting this
2633 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08002634 */
2635
Wei Yongjund364d922008-05-09 15:13:26 -07002636static int sctp_setsockopt_delayed_ack(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002637 char __user *optval, unsigned int optlen)
Frank Filz77086102005-12-22 11:37:30 -08002638{
Wei Yongjund364d922008-05-09 15:13:26 -07002639 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08002640 struct sctp_transport *trans = NULL;
2641 struct sctp_association *asoc = NULL;
2642 struct sctp_sock *sp = sctp_sk(sk);
2643
Wei Yongjund364d922008-05-09 15:13:26 -07002644 if (optlen == sizeof(struct sctp_sack_info)) {
2645 if (copy_from_user(&params, optval, optlen))
2646 return -EFAULT;
2647
2648 if (params.sack_delay == 0 && params.sack_freq == 0)
2649 return 0;
2650 } else if (optlen == sizeof(struct sctp_assoc_value)) {
Neil Horman94f65192013-12-23 08:29:43 -05002651 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05002652 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05002653 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05002654 "Use struct sctp_sack_info instead\n",
2655 current->comm, task_pid_nr(current));
Wei Yongjund364d922008-05-09 15:13:26 -07002656 if (copy_from_user(&params, optval, optlen))
2657 return -EFAULT;
2658
2659 if (params.sack_delay == 0)
2660 params.sack_freq = 1;
2661 else
2662 params.sack_freq = 0;
2663 } else
wangweidongcb3f8372013-12-23 12:16:50 +08002664 return -EINVAL;
Frank Filz77086102005-12-22 11:37:30 -08002665
Frank Filz77086102005-12-22 11:37:30 -08002666 /* Validate value parameter. */
Wei Yongjund364d922008-05-09 15:13:26 -07002667 if (params.sack_delay > 500)
Frank Filz77086102005-12-22 11:37:30 -08002668 return -EINVAL;
2669
Wei Yongjund364d922008-05-09 15:13:26 -07002670 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08002671 * to many style socket, and an association was not found, then
2672 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002673 */
Wei Yongjund364d922008-05-09 15:13:26 -07002674 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
2675 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08002676 return -EINVAL;
2677
Wei Yongjund364d922008-05-09 15:13:26 -07002678 if (params.sack_delay) {
Frank Filz77086102005-12-22 11:37:30 -08002679 if (asoc) {
2680 asoc->sackdelay =
Wei Yongjund364d922008-05-09 15:13:26 -07002681 msecs_to_jiffies(params.sack_delay);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002682 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002683 sctp_spp_sackdelay_enable(asoc->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002684 } else {
Wei Yongjund364d922008-05-09 15:13:26 -07002685 sp->sackdelay = params.sack_delay;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002686 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002687 sctp_spp_sackdelay_enable(sp->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002688 }
Wei Yongjund364d922008-05-09 15:13:26 -07002689 }
2690
2691 if (params.sack_freq == 1) {
Frank Filz77086102005-12-22 11:37:30 -08002692 if (asoc) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002693 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002694 sctp_spp_sackdelay_disable(asoc->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002695 } else {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002696 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002697 sctp_spp_sackdelay_disable(sp->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002698 }
Wei Yongjund364d922008-05-09 15:13:26 -07002699 } else if (params.sack_freq > 1) {
2700 if (asoc) {
2701 asoc->sackfreq = params.sack_freq;
2702 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002703 sctp_spp_sackdelay_enable(asoc->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002704 } else {
2705 sp->sackfreq = params.sack_freq;
2706 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002707 sctp_spp_sackdelay_enable(sp->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002708 }
Frank Filz77086102005-12-22 11:37:30 -08002709 }
2710
2711 /* If change is for association, also apply to each transport. */
2712 if (asoc) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002713 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2714 transports) {
Wei Yongjund364d922008-05-09 15:13:26 -07002715 if (params.sack_delay) {
Frank Filz77086102005-12-22 11:37:30 -08002716 trans->sackdelay =
Wei Yongjund364d922008-05-09 15:13:26 -07002717 msecs_to_jiffies(params.sack_delay);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002718 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002719 sctp_spp_sackdelay_enable(trans->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002720 }
Vlad Yasevich7bfe8bd2008-06-09 15:45:05 -07002721 if (params.sack_freq == 1) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002722 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002723 sctp_spp_sackdelay_disable(trans->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002724 } else if (params.sack_freq > 1) {
2725 trans->sackfreq = params.sack_freq;
2726 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002727 sctp_spp_sackdelay_enable(trans->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002728 }
2729 }
2730 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002731
Frank Filz77086102005-12-22 11:37:30 -08002732 return 0;
2733}
2734
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2736 *
2737 * Applications can specify protocol parameters for the default association
2738 * initialization. The option name argument to setsockopt() and getsockopt()
2739 * is SCTP_INITMSG.
2740 *
2741 * Setting initialization parameters is effective only on an unconnected
2742 * socket (for UDP-style sockets only future associations are effected
2743 * by the change). With TCP-style sockets, this option is inherited by
2744 * sockets derived from a listener socket.
2745 */
David S. Millerb7058842009-09-30 16:12:20 -07002746static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747{
2748 struct sctp_initmsg sinit;
2749 struct sctp_sock *sp = sctp_sk(sk);
2750
2751 if (optlen != sizeof(struct sctp_initmsg))
2752 return -EINVAL;
2753 if (copy_from_user(&sinit, optval, optlen))
2754 return -EFAULT;
2755
2756 if (sinit.sinit_num_ostreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002757 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 if (sinit.sinit_max_instreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002759 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 if (sinit.sinit_max_attempts)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002761 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 if (sinit.sinit_max_init_timeo)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002763 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764
2765 return 0;
2766}
2767
2768/*
2769 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2770 *
2771 * Applications that wish to use the sendto() system call may wish to
2772 * specify a default set of parameters that would normally be supplied
2773 * through the inclusion of ancillary data. This socket option allows
2774 * such an application to set the default sctp_sndrcvinfo structure.
2775 * The application that wishes to use this socket option simply passes
2776 * in to this call the sctp_sndrcvinfo structure defined in Section
2777 * 5.2.2) The input parameters accepted by this call include
2778 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2779 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
2780 * to this call if the caller is using the UDP model.
2781 */
2782static int sctp_setsockopt_default_send_param(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002783 char __user *optval,
2784 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 struct sctp_sock *sp = sctp_sk(sk);
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002787 struct sctp_association *asoc;
2788 struct sctp_sndrcvinfo info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002790 if (optlen != sizeof(info))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 return -EINVAL;
2792 if (copy_from_user(&info, optval, optlen))
2793 return -EFAULT;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002794 if (info.sinfo_flags &
2795 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2796 SCTP_ABORT | SCTP_EOF))
2797 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798
2799 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
2800 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
2801 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 if (asoc) {
2803 asoc->default_stream = info.sinfo_stream;
2804 asoc->default_flags = info.sinfo_flags;
2805 asoc->default_ppid = info.sinfo_ppid;
2806 asoc->default_context = info.sinfo_context;
2807 asoc->default_timetolive = info.sinfo_timetolive;
2808 } else {
2809 sp->default_stream = info.sinfo_stream;
2810 sp->default_flags = info.sinfo_flags;
2811 sp->default_ppid = info.sinfo_ppid;
2812 sp->default_context = info.sinfo_context;
2813 sp->default_timetolive = info.sinfo_timetolive;
2814 }
2815
2816 return 0;
2817}
2818
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002819/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
2820 * (SCTP_DEFAULT_SNDINFO)
2821 */
2822static int sctp_setsockopt_default_sndinfo(struct sock *sk,
2823 char __user *optval,
2824 unsigned int optlen)
2825{
2826 struct sctp_sock *sp = sctp_sk(sk);
2827 struct sctp_association *asoc;
2828 struct sctp_sndinfo info;
2829
2830 if (optlen != sizeof(info))
2831 return -EINVAL;
2832 if (copy_from_user(&info, optval, optlen))
2833 return -EFAULT;
2834 if (info.snd_flags &
2835 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2836 SCTP_ABORT | SCTP_EOF))
2837 return -EINVAL;
2838
2839 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
2840 if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
2841 return -EINVAL;
2842 if (asoc) {
2843 asoc->default_stream = info.snd_sid;
2844 asoc->default_flags = info.snd_flags;
2845 asoc->default_ppid = info.snd_ppid;
2846 asoc->default_context = info.snd_context;
2847 } else {
2848 sp->default_stream = info.snd_sid;
2849 sp->default_flags = info.snd_flags;
2850 sp->default_ppid = info.snd_ppid;
2851 sp->default_context = info.snd_context;
2852 }
2853
2854 return 0;
2855}
2856
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
2858 *
2859 * Requests that the local SCTP stack use the enclosed peer address as
2860 * the association primary. The enclosed address must be one of the
2861 * association peer's addresses.
2862 */
2863static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002864 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865{
2866 struct sctp_prim prim;
2867 struct sctp_transport *trans;
2868
2869 if (optlen != sizeof(struct sctp_prim))
2870 return -EINVAL;
2871
2872 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
2873 return -EFAULT;
2874
2875 trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
2876 if (!trans)
2877 return -EINVAL;
2878
2879 sctp_assoc_set_primary(trans->asoc, trans);
2880
2881 return 0;
2882}
2883
2884/*
2885 * 7.1.5 SCTP_NODELAY
2886 *
2887 * Turn on/off any Nagle-like algorithm. This means that packets are
2888 * generally sent as soon as possible and no unnecessary delays are
2889 * introduced, at the cost of more packets in the network. Expects an
2890 * integer boolean flag.
2891 */
2892static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002893 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894{
2895 int val;
2896
2897 if (optlen < sizeof(int))
2898 return -EINVAL;
2899 if (get_user(val, (int __user *)optval))
2900 return -EFAULT;
2901
2902 sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
2903 return 0;
2904}
2905
2906/*
2907 *
2908 * 7.1.1 SCTP_RTOINFO
2909 *
2910 * The protocol parameters used to initialize and bound retransmission
2911 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
2912 * and modify these parameters.
2913 * All parameters are time values, in milliseconds. A value of 0, when
2914 * modifying the parameters, indicates that the current value should not
2915 * be changed.
2916 *
2917 */
David S. Millerb7058842009-09-30 16:12:20 -07002918static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, unsigned int optlen)
2919{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 struct sctp_rtoinfo rtoinfo;
2921 struct sctp_association *asoc;
wangweidong85f935d2013-12-11 09:50:38 +08002922 unsigned long rto_min, rto_max;
2923 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924
2925 if (optlen != sizeof (struct sctp_rtoinfo))
2926 return -EINVAL;
2927
2928 if (copy_from_user(&rtoinfo, optval, optlen))
2929 return -EFAULT;
2930
2931 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
2932
2933 /* Set the values to the specific association */
2934 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
2935 return -EINVAL;
2936
wangweidong85f935d2013-12-11 09:50:38 +08002937 rto_max = rtoinfo.srto_max;
2938 rto_min = rtoinfo.srto_min;
2939
2940 if (rto_max)
2941 rto_max = asoc ? msecs_to_jiffies(rto_max) : rto_max;
2942 else
2943 rto_max = asoc ? asoc->rto_max : sp->rtoinfo.srto_max;
2944
2945 if (rto_min)
2946 rto_min = asoc ? msecs_to_jiffies(rto_min) : rto_min;
2947 else
2948 rto_min = asoc ? asoc->rto_min : sp->rtoinfo.srto_min;
2949
2950 if (rto_min > rto_max)
2951 return -EINVAL;
2952
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 if (asoc) {
2954 if (rtoinfo.srto_initial != 0)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002955 asoc->rto_initial =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 msecs_to_jiffies(rtoinfo.srto_initial);
wangweidong85f935d2013-12-11 09:50:38 +08002957 asoc->rto_max = rto_max;
2958 asoc->rto_min = rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 } else {
2960 /* If there is no association or the association-id = 0
2961 * set the values to the endpoint.
2962 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 if (rtoinfo.srto_initial != 0)
2964 sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
wangweidong85f935d2013-12-11 09:50:38 +08002965 sp->rtoinfo.srto_max = rto_max;
2966 sp->rtoinfo.srto_min = rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 }
2968
2969 return 0;
2970}
2971
2972/*
2973 *
2974 * 7.1.2 SCTP_ASSOCINFO
2975 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02002976 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 * of the association.
2978 * Returns an error if the new association retransmission value is
2979 * greater than the sum of the retransmission value of the peer.
2980 * See [SCTP] for more information.
2981 *
2982 */
David S. Millerb7058842009-09-30 16:12:20 -07002983static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984{
2985
2986 struct sctp_assocparams assocparams;
2987 struct sctp_association *asoc;
2988
2989 if (optlen != sizeof(struct sctp_assocparams))
2990 return -EINVAL;
2991 if (copy_from_user(&assocparams, optval, optlen))
2992 return -EFAULT;
2993
2994 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
2995
2996 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
2997 return -EINVAL;
2998
2999 /* Set the values to the specific association */
3000 if (asoc) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003001 if (assocparams.sasoc_asocmaxrxt != 0) {
3002 __u32 path_sum = 0;
3003 int paths = 0;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003004 struct sctp_transport *peer_addr;
3005
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07003006 list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
3007 transports) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003008 path_sum += peer_addr->pathmaxrxt;
3009 paths++;
3010 }
3011
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003012 /* Only validate asocmaxrxt if we have more than
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003013 * one path/transport. We do this because path
3014 * retransmissions are only counted when we have more
3015 * then one path.
3016 */
3017 if (paths > 1 &&
3018 assocparams.sasoc_asocmaxrxt > path_sum)
3019 return -EINVAL;
3020
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003022 }
3023
Daniel Borkmann52db8822013-06-25 18:17:27 +02003024 if (assocparams.sasoc_cookie_life != 0)
3025 asoc->cookie_life = ms_to_ktime(assocparams.sasoc_cookie_life);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 } else {
3027 /* Set the values to the endpoint */
3028 struct sctp_sock *sp = sctp_sk(sk);
3029
3030 if (assocparams.sasoc_asocmaxrxt != 0)
3031 sp->assocparams.sasoc_asocmaxrxt =
3032 assocparams.sasoc_asocmaxrxt;
3033 if (assocparams.sasoc_cookie_life != 0)
3034 sp->assocparams.sasoc_cookie_life =
3035 assocparams.sasoc_cookie_life;
3036 }
3037 return 0;
3038}
3039
3040/*
3041 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
3042 *
3043 * This socket option is a boolean flag which turns on or off mapped V4
3044 * addresses. If this option is turned on and the socket is type
3045 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
3046 * If this option is turned off, then no mapping will be done of V4
3047 * addresses and a user will receive both PF_INET6 and PF_INET type
3048 * addresses on the socket.
3049 */
David S. Millerb7058842009-09-30 16:12:20 -07003050static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051{
3052 int val;
3053 struct sctp_sock *sp = sctp_sk(sk);
3054
3055 if (optlen < sizeof(int))
3056 return -EINVAL;
3057 if (get_user(val, (int __user *)optval))
3058 return -EFAULT;
3059 if (val)
3060 sp->v4mapped = 1;
3061 else
3062 sp->v4mapped = 0;
3063
3064 return 0;
3065}
3066
3067/*
Wei Yongjune89c2092008-12-25 16:54:58 -08003068 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
3069 * This option will get or set the maximum size to put in any outgoing
3070 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 * fragmented by SCTP into the specified size. Note that the underlying
3072 * SCTP implementation may fragment into smaller sized chunks when the
3073 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08003074 * the user. The default value for this option is '0' which indicates
3075 * the user is NOT limiting fragmentation and only the PMTU will effect
3076 * SCTP's choice of DATA chunk size. Note also that values set larger
3077 * than the maximum size of an IP datagram will effectively let SCTP
3078 * control fragmentation (i.e. the same as setting this option to 0).
3079 *
3080 * The following structure is used to access and modify this parameter:
3081 *
3082 * struct sctp_assoc_value {
3083 * sctp_assoc_t assoc_id;
3084 * uint32_t assoc_value;
3085 * };
3086 *
3087 * assoc_id: This parameter is ignored for one-to-one style sockets.
3088 * For one-to-many style sockets this parameter indicates which
3089 * association the user is performing an action upon. Note that if
3090 * this field's value is zero then the endpoints default value is
3091 * changed (effecting future associations only).
3092 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 */
David S. Millerb7058842009-09-30 16:12:20 -07003094static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095{
Wei Yongjune89c2092008-12-25 16:54:58 -08003096 struct sctp_assoc_value params;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 struct sctp_sock *sp = sctp_sk(sk);
3099 int val;
3100
Wei Yongjune89c2092008-12-25 16:54:58 -08003101 if (optlen == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05003102 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05003103 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05003104 "Use of int in maxseg socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05003105 "Use struct sctp_assoc_value instead\n",
3106 current->comm, task_pid_nr(current));
Wei Yongjune89c2092008-12-25 16:54:58 -08003107 if (copy_from_user(&val, optval, optlen))
3108 return -EFAULT;
3109 params.assoc_id = 0;
3110 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3111 if (copy_from_user(&params, optval, optlen))
3112 return -EFAULT;
3113 val = params.assoc_value;
3114 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 return -EINVAL;
Wei Yongjune89c2092008-12-25 16:54:58 -08003116
Ivan Skytte Jorgensen96a33992005-10-28 15:36:12 -07003117 if ((val != 0) && ((val < 8) || (val > SCTP_MAX_CHUNK_LEN)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
Wei Yongjune89c2092008-12-25 16:54:58 -08003120 asoc = sctp_id2assoc(sk, params.assoc_id);
3121 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
3122 return -EINVAL;
3123
3124 if (asoc) {
3125 if (val == 0) {
3126 val = asoc->pathmtu;
3127 val -= sp->pf->af->net_header_len;
3128 val -= sizeof(struct sctphdr) +
3129 sizeof(struct sctp_data_chunk);
3130 }
Vlad Yasevichf68b2e02009-09-04 18:21:00 -04003131 asoc->user_frag = val;
3132 asoc->frag_point = sctp_frag_point(asoc, asoc->pathmtu);
Wei Yongjune89c2092008-12-25 16:54:58 -08003133 } else {
3134 sp->user_frag = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 }
3136
3137 return 0;
3138}
3139
3140
3141/*
3142 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3143 *
3144 * Requests that the peer mark the enclosed address as the association
3145 * primary. The enclosed address must be one of the association's
3146 * locally bound addresses. The following structure is used to make a
3147 * set primary request:
3148 */
3149static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003150 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003152 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 struct sctp_association *asoc = NULL;
3155 struct sctp_setpeerprim prim;
3156 struct sctp_chunk *chunk;
Wei Yongjun40a01032010-12-07 17:11:09 +00003157 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 int err;
3159
3160 sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003162 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 return -EPERM;
3164
3165 if (optlen != sizeof(struct sctp_setpeerprim))
3166 return -EINVAL;
3167
3168 if (copy_from_user(&prim, optval, optlen))
3169 return -EFAULT;
3170
3171 asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003172 if (!asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 return -EINVAL;
3174
3175 if (!asoc->peer.asconf_capable)
3176 return -EPERM;
3177
3178 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
3179 return -EPERM;
3180
3181 if (!sctp_state(asoc, ESTABLISHED))
3182 return -ENOTCONN;
3183
Wei Yongjun40a01032010-12-07 17:11:09 +00003184 af = sctp_get_af_specific(prim.sspp_addr.ss_family);
3185 if (!af)
3186 return -EINVAL;
3187
3188 if (!af->addr_valid((union sctp_addr *)&prim.sspp_addr, sp, NULL))
3189 return -EADDRNOTAVAIL;
3190
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
3192 return -EADDRNOTAVAIL;
3193
3194 /* Create an ASCONF chunk with SET_PRIMARY parameter */
3195 chunk = sctp_make_asconf_set_prim(asoc,
3196 (union sctp_addr *)&prim.sspp_addr);
3197 if (!chunk)
3198 return -ENOMEM;
3199
3200 err = sctp_send_asconf(asoc, chunk);
3201
Daniel Borkmannbb333812013-06-28 19:49:40 +02003202 pr_debug("%s: we set peer primary addr primitively\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
3204 return err;
3205}
3206
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003207static int sctp_setsockopt_adaptation_layer(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003208 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003210 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003212 if (optlen != sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 return -EINVAL;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003214 if (copy_from_user(&adaptation, optval, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 return -EFAULT;
3216
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003217 sctp_sk(sk)->adaptation_ind = adaptation.ssb_adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218
3219 return 0;
3220}
3221
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003222/*
3223 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
3224 *
3225 * The context field in the sctp_sndrcvinfo structure is normally only
3226 * used when a failed message is retrieved holding the value that was
3227 * sent down on the actual send call. This option allows the setting of
3228 * a default context on an association basis that will be received on
3229 * reading messages from the peer. This is especially helpful in the
3230 * one-2-many model for an application to keep some reference to an
3231 * internal state machine that is processing messages on the
3232 * association. Note that the setting of this value only effects
3233 * received messages from the peer and does not effect the value that is
3234 * saved with outbound messages.
3235 */
3236static int sctp_setsockopt_context(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003237 unsigned int optlen)
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003238{
3239 struct sctp_assoc_value params;
3240 struct sctp_sock *sp;
3241 struct sctp_association *asoc;
3242
3243 if (optlen != sizeof(struct sctp_assoc_value))
3244 return -EINVAL;
3245 if (copy_from_user(&params, optval, optlen))
3246 return -EFAULT;
3247
3248 sp = sctp_sk(sk);
3249
3250 if (params.assoc_id != 0) {
3251 asoc = sctp_id2assoc(sk, params.assoc_id);
3252 if (!asoc)
3253 return -EINVAL;
3254 asoc->default_rcv_context = params.assoc_value;
3255 } else {
3256 sp->default_rcv_context = params.assoc_value;
3257 }
3258
3259 return 0;
3260}
3261
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003262/*
3263 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
3264 *
3265 * This options will at a minimum specify if the implementation is doing
3266 * fragmented interleave. Fragmented interleave, for a one to many
3267 * socket, is when subsequent calls to receive a message may return
3268 * parts of messages from different associations. Some implementations
3269 * may allow you to turn this value on or off. If so, when turned off,
3270 * no fragment interleave will occur (which will cause a head of line
3271 * blocking amongst multiple associations sharing the same one to many
3272 * socket). When this option is turned on, then each receive call may
3273 * come from a different association (thus the user must receive data
3274 * with the extended calls (e.g. sctp_recvmsg) to keep track of which
3275 * association each receive belongs to.
3276 *
3277 * This option takes a boolean value. A non-zero value indicates that
3278 * fragmented interleave is on. A value of zero indicates that
3279 * fragmented interleave is off.
3280 *
3281 * Note that it is important that an implementation that allows this
3282 * option to be turned on, have it off by default. Otherwise an unaware
3283 * application using the one to many model may become confused and act
3284 * incorrectly.
3285 */
3286static int sctp_setsockopt_fragment_interleave(struct sock *sk,
3287 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003288 unsigned int optlen)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003289{
3290 int val;
3291
3292 if (optlen != sizeof(int))
3293 return -EINVAL;
3294 if (get_user(val, (int __user *)optval))
3295 return -EFAULT;
3296
3297 sctp_sk(sk)->frag_interleave = (val == 0) ? 0 : 1;
3298
3299 return 0;
3300}
3301
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003302/*
Wei Yongjun8510b932008-12-25 16:59:03 -08003303 * 8.1.21. Set or Get the SCTP Partial Delivery Point
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003304 * (SCTP_PARTIAL_DELIVERY_POINT)
Wei Yongjun8510b932008-12-25 16:59:03 -08003305 *
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003306 * This option will set or get the SCTP partial delivery point. This
3307 * point is the size of a message where the partial delivery API will be
3308 * invoked to help free up rwnd space for the peer. Setting this to a
Wei Yongjun8510b932008-12-25 16:59:03 -08003309 * lower value will cause partial deliveries to happen more often. The
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003310 * calls argument is an integer that sets or gets the partial delivery
Wei Yongjun8510b932008-12-25 16:59:03 -08003311 * point. Note also that the call will fail if the user attempts to set
3312 * this value larger than the socket receive buffer size.
3313 *
3314 * Note that any single message having a length smaller than or equal to
3315 * the SCTP partial delivery point will be delivered in one single read
3316 * call as long as the user provided buffer is large enough to hold the
3317 * message.
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003318 */
3319static int sctp_setsockopt_partial_delivery_point(struct sock *sk,
3320 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003321 unsigned int optlen)
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003322{
3323 u32 val;
3324
3325 if (optlen != sizeof(u32))
3326 return -EINVAL;
3327 if (get_user(val, (int __user *)optval))
3328 return -EFAULT;
3329
Wei Yongjun8510b932008-12-25 16:59:03 -08003330 /* Note: We double the receive buffer from what the user sets
3331 * it to be, also initial rwnd is based on rcvbuf/2.
3332 */
3333 if (val > (sk->sk_rcvbuf >> 1))
3334 return -EINVAL;
3335
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003336 sctp_sk(sk)->pd_point = val;
3337
3338 return 0; /* is this the right error code? */
3339}
3340
Vlad Yasevich70331572007-03-23 11:34:36 -07003341/*
3342 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
3343 *
3344 * This option will allow a user to change the maximum burst of packets
3345 * that can be emitted by this association. Note that the default value
3346 * is 4, and some implementations may restrict this setting so that it
3347 * can only be lowered.
3348 *
3349 * NOTE: This text doesn't seem right. Do this on a socket basis with
3350 * future associations inheriting the socket value.
3351 */
3352static int sctp_setsockopt_maxburst(struct sock *sk,
3353 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003354 unsigned int optlen)
Vlad Yasevich70331572007-03-23 11:34:36 -07003355{
Neil Horman219b99a2008-03-05 13:44:46 -08003356 struct sctp_assoc_value params;
3357 struct sctp_sock *sp;
3358 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07003359 int val;
Neil Horman219b99a2008-03-05 13:44:46 -08003360 int assoc_id = 0;
Vlad Yasevich70331572007-03-23 11:34:36 -07003361
Neil Horman219b99a2008-03-05 13:44:46 -08003362 if (optlen == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05003363 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05003364 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05003365 "Use of int in max_burst socket option deprecated.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05003366 "Use struct sctp_assoc_value instead\n",
3367 current->comm, task_pid_nr(current));
Neil Horman219b99a2008-03-05 13:44:46 -08003368 if (copy_from_user(&val, optval, optlen))
3369 return -EFAULT;
3370 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3371 if (copy_from_user(&params, optval, optlen))
3372 return -EFAULT;
3373 val = params.assoc_value;
3374 assoc_id = params.assoc_id;
3375 } else
3376 return -EINVAL;
3377
3378 sp = sctp_sk(sk);
3379
3380 if (assoc_id != 0) {
3381 asoc = sctp_id2assoc(sk, assoc_id);
3382 if (!asoc)
3383 return -EINVAL;
3384 asoc->max_burst = val;
3385 } else
3386 sp->max_burst = val;
Vlad Yasevich70331572007-03-23 11:34:36 -07003387
3388 return 0;
3389}
3390
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003391/*
3392 * 7.1.18. Add a chunk that must be authenticated (SCTP_AUTH_CHUNK)
3393 *
3394 * This set option adds a chunk type that the user is requesting to be
3395 * received only in an authenticated way. Changes to the list of chunks
3396 * will only effect future associations on the socket.
3397 */
3398static int sctp_setsockopt_auth_chunk(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003399 char __user *optval,
3400 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003401{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003402 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003403 struct sctp_authchunk val;
3404
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003405 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003406 return -EACCES;
3407
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003408 if (optlen != sizeof(struct sctp_authchunk))
3409 return -EINVAL;
3410 if (copy_from_user(&val, optval, optlen))
3411 return -EFAULT;
3412
3413 switch (val.sauth_chunk) {
Joe Perches7fd71b12011-07-01 09:43:11 +00003414 case SCTP_CID_INIT:
3415 case SCTP_CID_INIT_ACK:
3416 case SCTP_CID_SHUTDOWN_COMPLETE:
3417 case SCTP_CID_AUTH:
3418 return -EINVAL;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003419 }
3420
3421 /* add this chunk id to the endpoint */
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003422 return sctp_auth_ep_add_chunkid(ep, val.sauth_chunk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003423}
3424
3425/*
3426 * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
3427 *
3428 * This option gets or sets the list of HMAC algorithms that the local
3429 * endpoint requires the peer to use.
3430 */
3431static int sctp_setsockopt_hmac_ident(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003432 char __user *optval,
3433 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003434{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003435 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003436 struct sctp_hmacalgo *hmacs;
Vlad Yasevichd9724052008-08-27 16:09:49 -07003437 u32 idents;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003438 int err;
3439
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003440 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003441 return -EACCES;
3442
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003443 if (optlen < sizeof(struct sctp_hmacalgo))
3444 return -EINVAL;
3445
wangweidongcb3f8372013-12-23 12:16:50 +08003446 hmacs = memdup_user(optval, optlen);
Shan Wei934253a2011-04-18 19:13:18 +00003447 if (IS_ERR(hmacs))
3448 return PTR_ERR(hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003449
Vlad Yasevichd9724052008-08-27 16:09:49 -07003450 idents = hmacs->shmac_num_idents;
3451 if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS ||
3452 (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo))) {
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003453 err = -EINVAL;
3454 goto out;
3455 }
3456
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003457 err = sctp_auth_ep_set_hmacs(ep, hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003458out:
3459 kfree(hmacs);
3460 return err;
3461}
3462
3463/*
3464 * 7.1.20. Set a shared key (SCTP_AUTH_KEY)
3465 *
3466 * This option will set a shared secret key which is used to build an
3467 * association shared key.
3468 */
3469static int sctp_setsockopt_auth_key(struct sock *sk,
3470 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003471 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003472{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003473 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003474 struct sctp_authkey *authkey;
3475 struct sctp_association *asoc;
3476 int ret;
3477
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003478 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003479 return -EACCES;
3480
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003481 if (optlen <= sizeof(struct sctp_authkey))
3482 return -EINVAL;
3483
wangweidongcb3f8372013-12-23 12:16:50 +08003484 authkey = memdup_user(optval, optlen);
Shan Wei934253a2011-04-18 19:13:18 +00003485 if (IS_ERR(authkey))
3486 return PTR_ERR(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003487
Vlad Yasevich328fc472008-08-27 16:08:54 -07003488 if (authkey->sca_keylength > optlen - sizeof(struct sctp_authkey)) {
Vlad Yasevich30c22352008-08-25 15:16:19 -07003489 ret = -EINVAL;
3490 goto out;
3491 }
3492
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003493 asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
3494 if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) {
3495 ret = -EINVAL;
3496 goto out;
3497 }
3498
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003499 ret = sctp_auth_set_key(ep, asoc, authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003500out:
Daniel Borkmann6ba542a2013-02-08 03:04:34 +00003501 kzfree(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003502 return ret;
3503}
3504
3505/*
3506 * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
3507 *
3508 * This option will get or set the active shared key to be used to build
3509 * the association shared key.
3510 */
3511static int sctp_setsockopt_active_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003512 char __user *optval,
3513 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003514{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003515 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003516 struct sctp_authkeyid val;
3517 struct sctp_association *asoc;
3518
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003519 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003520 return -EACCES;
3521
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003522 if (optlen != sizeof(struct sctp_authkeyid))
3523 return -EINVAL;
3524 if (copy_from_user(&val, optval, optlen))
3525 return -EFAULT;
3526
3527 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3528 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3529 return -EINVAL;
3530
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003531 return sctp_auth_set_active_key(ep, asoc, val.scact_keynumber);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003532}
3533
3534/*
3535 * 7.1.22. Delete a shared key (SCTP_AUTH_DELETE_KEY)
3536 *
3537 * This set option will delete a shared secret key from use.
3538 */
3539static int sctp_setsockopt_del_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003540 char __user *optval,
3541 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003542{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003543 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003544 struct sctp_authkeyid val;
3545 struct sctp_association *asoc;
3546
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003547 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003548 return -EACCES;
3549
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003550 if (optlen != sizeof(struct sctp_authkeyid))
3551 return -EINVAL;
3552 if (copy_from_user(&val, optval, optlen))
3553 return -EFAULT;
3554
3555 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3556 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3557 return -EINVAL;
3558
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003559 return sctp_auth_del_key_id(ep, asoc, val.scact_keynumber);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003560
3561}
3562
Michio Honda7dc04d72011-04-26 20:16:31 +09003563/*
3564 * 8.1.23 SCTP_AUTO_ASCONF
3565 *
3566 * This option will enable or disable the use of the automatic generation of
3567 * ASCONF chunks to add and delete addresses to an existing association. Note
3568 * that this option has two caveats namely: a) it only affects sockets that
3569 * are bound to all addresses available to the SCTP stack, and b) the system
3570 * administrator may have an overriding control that turns the ASCONF feature
3571 * off no matter what setting the socket option may have.
3572 * This option expects an integer boolean flag, where a non-zero value turns on
3573 * the option, and a zero value turns off the option.
3574 * Note. In this implementation, socket operation overrides default parameter
3575 * being set by sysctl as well as FreeBSD implementation
3576 */
3577static int sctp_setsockopt_auto_asconf(struct sock *sk, char __user *optval,
3578 unsigned int optlen)
3579{
3580 int val;
3581 struct sctp_sock *sp = sctp_sk(sk);
3582
3583 if (optlen < sizeof(int))
3584 return -EINVAL;
3585 if (get_user(val, (int __user *)optval))
3586 return -EFAULT;
3587 if (!sctp_is_ep_boundall(sk) && val)
3588 return -EINVAL;
3589 if ((val && sp->do_auto_asconf) || (!val && !sp->do_auto_asconf))
3590 return 0;
3591
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03003592 spin_lock_bh(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda7dc04d72011-04-26 20:16:31 +09003593 if (val == 0 && sp->do_auto_asconf) {
3594 list_del(&sp->auto_asconf_list);
3595 sp->do_auto_asconf = 0;
3596 } else if (val && !sp->do_auto_asconf) {
3597 list_add_tail(&sp->auto_asconf_list,
Eric W. Biederman4db67e82012-08-06 08:42:04 +00003598 &sock_net(sk)->sctp.auto_asconf_splist);
Michio Honda7dc04d72011-04-26 20:16:31 +09003599 sp->do_auto_asconf = 1;
3600 }
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03003601 spin_unlock_bh(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda7dc04d72011-04-26 20:16:31 +09003602 return 0;
3603}
3604
Neil Horman5aa93bc2012-07-21 07:56:07 +00003605/*
3606 * SCTP_PEER_ADDR_THLDS
3607 *
3608 * This option allows us to alter the partially failed threshold for one or all
3609 * transports in an association. See Section 6.1 of:
3610 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
3611 */
3612static int sctp_setsockopt_paddr_thresholds(struct sock *sk,
3613 char __user *optval,
3614 unsigned int optlen)
3615{
3616 struct sctp_paddrthlds val;
3617 struct sctp_transport *trans;
3618 struct sctp_association *asoc;
3619
3620 if (optlen < sizeof(struct sctp_paddrthlds))
3621 return -EINVAL;
3622 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval,
3623 sizeof(struct sctp_paddrthlds)))
3624 return -EFAULT;
3625
3626
3627 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
3628 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
3629 if (!asoc)
3630 return -ENOENT;
3631 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
3632 transports) {
3633 if (val.spt_pathmaxrxt)
3634 trans->pathmaxrxt = val.spt_pathmaxrxt;
3635 trans->pf_retrans = val.spt_pathpfthld;
3636 }
3637
3638 if (val.spt_pathmaxrxt)
3639 asoc->pathmaxrxt = val.spt_pathmaxrxt;
3640 asoc->pf_retrans = val.spt_pathpfthld;
3641 } else {
3642 trans = sctp_addr_id2transport(sk, &val.spt_address,
3643 val.spt_assoc_id);
3644 if (!trans)
3645 return -ENOENT;
3646
3647 if (val.spt_pathmaxrxt)
3648 trans->pathmaxrxt = val.spt_pathmaxrxt;
3649 trans->pf_retrans = val.spt_pathpfthld;
3650 }
3651
3652 return 0;
3653}
3654
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02003655static int sctp_setsockopt_recvrcvinfo(struct sock *sk,
3656 char __user *optval,
3657 unsigned int optlen)
3658{
3659 int val;
3660
3661 if (optlen < sizeof(int))
3662 return -EINVAL;
3663 if (get_user(val, (int __user *) optval))
3664 return -EFAULT;
3665
3666 sctp_sk(sk)->recvrcvinfo = (val == 0) ? 0 : 1;
3667
3668 return 0;
3669}
3670
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02003671static int sctp_setsockopt_recvnxtinfo(struct sock *sk,
3672 char __user *optval,
3673 unsigned int optlen)
3674{
3675 int val;
3676
3677 if (optlen < sizeof(int))
3678 return -EINVAL;
3679 if (get_user(val, (int __user *) optval))
3680 return -EFAULT;
3681
3682 sctp_sk(sk)->recvnxtinfo = (val == 0) ? 0 : 1;
3683
3684 return 0;
3685}
3686
Xin Long28aa4c22016-07-09 19:47:40 +08003687static int sctp_setsockopt_pr_supported(struct sock *sk,
3688 char __user *optval,
3689 unsigned int optlen)
3690{
3691 struct sctp_assoc_value params;
3692 struct sctp_association *asoc;
3693 int retval = -EINVAL;
3694
3695 if (optlen != sizeof(params))
3696 goto out;
3697
3698 if (copy_from_user(&params, optval, optlen)) {
3699 retval = -EFAULT;
3700 goto out;
3701 }
3702
3703 asoc = sctp_id2assoc(sk, params.assoc_id);
3704 if (asoc) {
3705 asoc->prsctp_enable = !!params.assoc_value;
3706 } else if (!params.assoc_id) {
3707 struct sctp_sock *sp = sctp_sk(sk);
3708
3709 sp->ep->prsctp_enable = !!params.assoc_value;
3710 } else {
3711 goto out;
3712 }
3713
3714 retval = 0;
3715
3716out:
3717 return retval;
3718}
3719
Xin Longf959fb42016-07-09 19:47:41 +08003720static int sctp_setsockopt_default_prinfo(struct sock *sk,
3721 char __user *optval,
3722 unsigned int optlen)
3723{
3724 struct sctp_default_prinfo info;
3725 struct sctp_association *asoc;
3726 int retval = -EINVAL;
3727
3728 if (optlen != sizeof(info))
3729 goto out;
3730
3731 if (copy_from_user(&info, optval, sizeof(info))) {
3732 retval = -EFAULT;
3733 goto out;
3734 }
3735
3736 if (info.pr_policy & ~SCTP_PR_SCTP_MASK)
3737 goto out;
3738
3739 if (info.pr_policy == SCTP_PR_SCTP_NONE)
3740 info.pr_value = 0;
3741
3742 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
3743 if (asoc) {
3744 SCTP_PR_SET_POLICY(asoc->default_flags, info.pr_policy);
3745 asoc->default_timetolive = info.pr_value;
3746 } else if (!info.pr_assoc_id) {
3747 struct sctp_sock *sp = sctp_sk(sk);
3748
3749 SCTP_PR_SET_POLICY(sp->default_flags, info.pr_policy);
3750 sp->default_timetolive = info.pr_value;
3751 } else {
3752 goto out;
3753 }
3754
3755 retval = 0;
3756
3757out:
3758 return retval;
3759}
3760
Xin Longc0d8bab2017-03-10 12:11:12 +08003761static int sctp_setsockopt_reconfig_supported(struct sock *sk,
3762 char __user *optval,
3763 unsigned int optlen)
3764{
3765 struct sctp_assoc_value params;
3766 struct sctp_association *asoc;
3767 int retval = -EINVAL;
3768
3769 if (optlen != sizeof(params))
3770 goto out;
3771
3772 if (copy_from_user(&params, optval, optlen)) {
3773 retval = -EFAULT;
3774 goto out;
3775 }
3776
3777 asoc = sctp_id2assoc(sk, params.assoc_id);
3778 if (asoc) {
3779 asoc->reconf_enable = !!params.assoc_value;
3780 } else if (!params.assoc_id) {
3781 struct sctp_sock *sp = sctp_sk(sk);
3782
3783 sp->ep->reconf_enable = !!params.assoc_value;
3784 } else {
3785 goto out;
3786 }
3787
3788 retval = 0;
3789
3790out:
3791 return retval;
3792}
3793
Xin Long9fb657a2017-01-18 00:44:46 +08003794static int sctp_setsockopt_enable_strreset(struct sock *sk,
3795 char __user *optval,
3796 unsigned int optlen)
3797{
3798 struct sctp_assoc_value params;
3799 struct sctp_association *asoc;
3800 int retval = -EINVAL;
3801
3802 if (optlen != sizeof(params))
3803 goto out;
3804
3805 if (copy_from_user(&params, optval, optlen)) {
3806 retval = -EFAULT;
3807 goto out;
3808 }
3809
3810 if (params.assoc_value & (~SCTP_ENABLE_STRRESET_MASK))
3811 goto out;
3812
3813 asoc = sctp_id2assoc(sk, params.assoc_id);
3814 if (asoc) {
3815 asoc->strreset_enable = params.assoc_value;
3816 } else if (!params.assoc_id) {
3817 struct sctp_sock *sp = sctp_sk(sk);
3818
3819 sp->ep->strreset_enable = params.assoc_value;
3820 } else {
3821 goto out;
3822 }
3823
3824 retval = 0;
3825
3826out:
3827 return retval;
3828}
3829
Xin Long7f9d68a2017-01-18 00:44:47 +08003830static int sctp_setsockopt_reset_streams(struct sock *sk,
3831 char __user *optval,
3832 unsigned int optlen)
3833{
3834 struct sctp_reset_streams *params;
3835 struct sctp_association *asoc;
3836 int retval = -EINVAL;
3837
3838 if (optlen < sizeof(struct sctp_reset_streams))
3839 return -EINVAL;
3840
3841 params = memdup_user(optval, optlen);
3842 if (IS_ERR(params))
3843 return PTR_ERR(params);
3844
3845 asoc = sctp_id2assoc(sk, params->srs_assoc_id);
3846 if (!asoc)
3847 goto out;
3848
3849 retval = sctp_send_reset_streams(asoc, params);
3850
3851out:
3852 kfree(params);
3853 return retval;
3854}
3855
Xin Longa92ce1a2017-02-09 01:18:18 +08003856static int sctp_setsockopt_reset_assoc(struct sock *sk,
3857 char __user *optval,
3858 unsigned int optlen)
3859{
3860 struct sctp_association *asoc;
3861 sctp_assoc_t associd;
3862 int retval = -EINVAL;
3863
3864 if (optlen != sizeof(associd))
3865 goto out;
3866
3867 if (copy_from_user(&associd, optval, optlen)) {
3868 retval = -EFAULT;
3869 goto out;
3870 }
3871
3872 asoc = sctp_id2assoc(sk, associd);
3873 if (!asoc)
3874 goto out;
3875
3876 retval = sctp_send_reset_assoc(asoc);
3877
3878out:
3879 return retval;
3880}
3881
Xin Long242bd2d2017-02-09 01:18:20 +08003882static int sctp_setsockopt_add_streams(struct sock *sk,
3883 char __user *optval,
3884 unsigned int optlen)
3885{
3886 struct sctp_association *asoc;
3887 struct sctp_add_streams params;
3888 int retval = -EINVAL;
3889
3890 if (optlen != sizeof(params))
3891 goto out;
3892
3893 if (copy_from_user(&params, optval, optlen)) {
3894 retval = -EFAULT;
3895 goto out;
3896 }
3897
3898 asoc = sctp_id2assoc(sk, params.sas_assoc_id);
3899 if (!asoc)
3900 goto out;
3901
3902 retval = sctp_send_add_streams(asoc, &params);
3903
3904out:
3905 return retval;
3906}
3907
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908/* API 6.2 setsockopt(), getsockopt()
3909 *
3910 * Applications use setsockopt() and getsockopt() to set or retrieve
3911 * socket options. Socket options are used to change the default
3912 * behavior of sockets calls. They are described in Section 7.
3913 *
3914 * The syntax is:
3915 *
3916 * ret = getsockopt(int sd, int level, int optname, void __user *optval,
3917 * int __user *optlen);
3918 * ret = setsockopt(int sd, int level, int optname, const void __user *optval,
3919 * int optlen);
3920 *
3921 * sd - the socket descript.
3922 * level - set to IPPROTO_SCTP for all SCTP options.
3923 * optname - the option name.
3924 * optval - the buffer to store the value of the option.
3925 * optlen - the size of the buffer.
3926 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02003927static int sctp_setsockopt(struct sock *sk, int level, int optname,
3928 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929{
3930 int retval = 0;
3931
Daniel Borkmannbb333812013-06-28 19:49:40 +02003932 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933
3934 /* I can hardly begin to describe how wrong this is. This is
3935 * so broken as to be worse than useless. The API draft
3936 * REALLY is NOT helpful here... I am not convinced that the
3937 * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
3938 * are at all well-founded.
3939 */
3940 if (level != SOL_SCTP) {
3941 struct sctp_af *af = sctp_sk(sk)->pf->af;
3942 retval = af->setsockopt(sk, level, optname, optval, optlen);
3943 goto out_nounlock;
3944 }
3945
wangweidong048ed4b2014-01-21 15:44:11 +08003946 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947
3948 switch (optname) {
3949 case SCTP_SOCKOPT_BINDX_ADD:
3950 /* 'optlen' is the size of the addresses buffer. */
3951 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
3952 optlen, SCTP_BINDX_ADD_ADDR);
3953 break;
3954
3955 case SCTP_SOCKOPT_BINDX_REM:
3956 /* 'optlen' is the size of the addresses buffer. */
3957 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
3958 optlen, SCTP_BINDX_REM_ADDR);
3959 break;
3960
Vlad Yasevich88a0a942008-05-09 15:14:11 -07003961 case SCTP_SOCKOPT_CONNECTX_OLD:
3962 /* 'optlen' is the size of the addresses buffer. */
3963 retval = sctp_setsockopt_connectx_old(sk,
3964 (struct sockaddr __user *)optval,
3965 optlen);
3966 break;
3967
Frank Filz3f7a87d2005-06-20 13:14:57 -07003968 case SCTP_SOCKOPT_CONNECTX:
3969 /* 'optlen' is the size of the addresses buffer. */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07003970 retval = sctp_setsockopt_connectx(sk,
3971 (struct sockaddr __user *)optval,
3972 optlen);
Frank Filz3f7a87d2005-06-20 13:14:57 -07003973 break;
3974
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 case SCTP_DISABLE_FRAGMENTS:
3976 retval = sctp_setsockopt_disable_fragments(sk, optval, optlen);
3977 break;
3978
3979 case SCTP_EVENTS:
3980 retval = sctp_setsockopt_events(sk, optval, optlen);
3981 break;
3982
3983 case SCTP_AUTOCLOSE:
3984 retval = sctp_setsockopt_autoclose(sk, optval, optlen);
3985 break;
3986
3987 case SCTP_PEER_ADDR_PARAMS:
3988 retval = sctp_setsockopt_peer_addr_params(sk, optval, optlen);
3989 break;
3990
Shan Wei4580ccc2011-01-18 22:39:00 +00003991 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07003992 retval = sctp_setsockopt_delayed_ack(sk, optval, optlen);
Frank Filz77086102005-12-22 11:37:30 -08003993 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003994 case SCTP_PARTIAL_DELIVERY_POINT:
3995 retval = sctp_setsockopt_partial_delivery_point(sk, optval, optlen);
3996 break;
Frank Filz77086102005-12-22 11:37:30 -08003997
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998 case SCTP_INITMSG:
3999 retval = sctp_setsockopt_initmsg(sk, optval, optlen);
4000 break;
4001 case SCTP_DEFAULT_SEND_PARAM:
4002 retval = sctp_setsockopt_default_send_param(sk, optval,
4003 optlen);
4004 break;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02004005 case SCTP_DEFAULT_SNDINFO:
4006 retval = sctp_setsockopt_default_sndinfo(sk, optval, optlen);
4007 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 case SCTP_PRIMARY_ADDR:
4009 retval = sctp_setsockopt_primary_addr(sk, optval, optlen);
4010 break;
4011 case SCTP_SET_PEER_PRIMARY_ADDR:
4012 retval = sctp_setsockopt_peer_primary_addr(sk, optval, optlen);
4013 break;
4014 case SCTP_NODELAY:
4015 retval = sctp_setsockopt_nodelay(sk, optval, optlen);
4016 break;
4017 case SCTP_RTOINFO:
4018 retval = sctp_setsockopt_rtoinfo(sk, optval, optlen);
4019 break;
4020 case SCTP_ASSOCINFO:
4021 retval = sctp_setsockopt_associnfo(sk, optval, optlen);
4022 break;
4023 case SCTP_I_WANT_MAPPED_V4_ADDR:
4024 retval = sctp_setsockopt_mappedv4(sk, optval, optlen);
4025 break;
4026 case SCTP_MAXSEG:
4027 retval = sctp_setsockopt_maxseg(sk, optval, optlen);
4028 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004029 case SCTP_ADAPTATION_LAYER:
4030 retval = sctp_setsockopt_adaptation_layer(sk, optval, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004032 case SCTP_CONTEXT:
4033 retval = sctp_setsockopt_context(sk, optval, optlen);
4034 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004035 case SCTP_FRAGMENT_INTERLEAVE:
4036 retval = sctp_setsockopt_fragment_interleave(sk, optval, optlen);
4037 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07004038 case SCTP_MAX_BURST:
4039 retval = sctp_setsockopt_maxburst(sk, optval, optlen);
4040 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07004041 case SCTP_AUTH_CHUNK:
4042 retval = sctp_setsockopt_auth_chunk(sk, optval, optlen);
4043 break;
4044 case SCTP_HMAC_IDENT:
4045 retval = sctp_setsockopt_hmac_ident(sk, optval, optlen);
4046 break;
4047 case SCTP_AUTH_KEY:
4048 retval = sctp_setsockopt_auth_key(sk, optval, optlen);
4049 break;
4050 case SCTP_AUTH_ACTIVE_KEY:
4051 retval = sctp_setsockopt_active_key(sk, optval, optlen);
4052 break;
4053 case SCTP_AUTH_DELETE_KEY:
4054 retval = sctp_setsockopt_del_key(sk, optval, optlen);
4055 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09004056 case SCTP_AUTO_ASCONF:
4057 retval = sctp_setsockopt_auto_asconf(sk, optval, optlen);
4058 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00004059 case SCTP_PEER_ADDR_THLDS:
4060 retval = sctp_setsockopt_paddr_thresholds(sk, optval, optlen);
4061 break;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004062 case SCTP_RECVRCVINFO:
4063 retval = sctp_setsockopt_recvrcvinfo(sk, optval, optlen);
4064 break;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02004065 case SCTP_RECVNXTINFO:
4066 retval = sctp_setsockopt_recvnxtinfo(sk, optval, optlen);
4067 break;
Xin Long28aa4c22016-07-09 19:47:40 +08004068 case SCTP_PR_SUPPORTED:
4069 retval = sctp_setsockopt_pr_supported(sk, optval, optlen);
4070 break;
Xin Longf959fb42016-07-09 19:47:41 +08004071 case SCTP_DEFAULT_PRINFO:
4072 retval = sctp_setsockopt_default_prinfo(sk, optval, optlen);
4073 break;
Xin Longc0d8bab2017-03-10 12:11:12 +08004074 case SCTP_RECONFIG_SUPPORTED:
4075 retval = sctp_setsockopt_reconfig_supported(sk, optval, optlen);
4076 break;
Xin Long9fb657a2017-01-18 00:44:46 +08004077 case SCTP_ENABLE_STREAM_RESET:
4078 retval = sctp_setsockopt_enable_strreset(sk, optval, optlen);
4079 break;
Xin Long7f9d68a2017-01-18 00:44:47 +08004080 case SCTP_RESET_STREAMS:
4081 retval = sctp_setsockopt_reset_streams(sk, optval, optlen);
4082 break;
Xin Longa92ce1a2017-02-09 01:18:18 +08004083 case SCTP_RESET_ASSOC:
4084 retval = sctp_setsockopt_reset_assoc(sk, optval, optlen);
4085 break;
Xin Long242bd2d2017-02-09 01:18:20 +08004086 case SCTP_ADD_STREAMS:
4087 retval = sctp_setsockopt_add_streams(sk, optval, optlen);
4088 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 default:
4090 retval = -ENOPROTOOPT;
4091 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07004092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093
wangweidong048ed4b2014-01-21 15:44:11 +08004094 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095
4096out_nounlock:
4097 return retval;
4098}
4099
4100/* API 3.1.6 connect() - UDP Style Syntax
4101 *
4102 * An application may use the connect() call in the UDP model to initiate an
4103 * association without sending data.
4104 *
4105 * The syntax is:
4106 *
4107 * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
4108 *
4109 * sd: the socket descriptor to have a new association added to.
4110 *
4111 * nam: the address structure (either struct sockaddr_in or struct
4112 * sockaddr_in6 defined in RFC2553 [7]).
4113 *
4114 * len: the size of the address.
4115 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004116static int sctp_connect(struct sock *sk, struct sockaddr *addr,
4117 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119 int err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07004120 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121
wangweidong048ed4b2014-01-21 15:44:11 +08004122 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123
Daniel Borkmannbb333812013-06-28 19:49:40 +02004124 pr_debug("%s: sk:%p, sockaddr:%p, addr_len:%d\n", __func__, sk,
4125 addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126
Frank Filz3f7a87d2005-06-20 13:14:57 -07004127 /* Validate addr_len before calling common connect/connectx routine. */
4128 af = sctp_get_af_specific(addr->sa_family);
4129 if (!af || addr_len < af->sockaddr_len) {
4130 err = -EINVAL;
4131 } else {
4132 /* Pass correct addr len to common routine (so it knows there
4133 * is only one address being passed.
4134 */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07004135 err = __sctp_connect(sk, addr, af->sockaddr_len, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136 }
4137
wangweidong048ed4b2014-01-21 15:44:11 +08004138 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139 return err;
4140}
4141
4142/* FIXME: Write comments. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004143static int sctp_disconnect(struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144{
4145 return -EOPNOTSUPP; /* STUB */
4146}
4147
4148/* 4.1.4 accept() - TCP Style Syntax
4149 *
4150 * Applications use accept() call to remove an established SCTP
4151 * association from the accept queue of the endpoint. A new socket
4152 * descriptor will be returned from accept() to represent the newly
4153 * formed association.
4154 */
David Howellscdfbabf2017-03-09 08:09:05 +00004155static struct sock *sctp_accept(struct sock *sk, int flags, int *err, bool kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156{
4157 struct sctp_sock *sp;
4158 struct sctp_endpoint *ep;
4159 struct sock *newsk = NULL;
4160 struct sctp_association *asoc;
4161 long timeo;
4162 int error = 0;
4163
wangweidong048ed4b2014-01-21 15:44:11 +08004164 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165
4166 sp = sctp_sk(sk);
4167 ep = sp->ep;
4168
4169 if (!sctp_style(sk, TCP)) {
4170 error = -EOPNOTSUPP;
4171 goto out;
4172 }
4173
4174 if (!sctp_sstate(sk, LISTENING)) {
4175 error = -EINVAL;
4176 goto out;
4177 }
4178
Sridhar Samudrala8abfedd2006-08-22 00:24:09 -07004179 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180
4181 error = sctp_wait_for_accept(sk, timeo);
4182 if (error)
4183 goto out;
4184
4185 /* We treat the list of associations on the endpoint as the accept
4186 * queue and pick the first association on the list.
4187 */
4188 asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
4189
David Howellscdfbabf2017-03-09 08:09:05 +00004190 newsk = sp->pf->create_accept_sk(sk, asoc, kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191 if (!newsk) {
4192 error = -ENOMEM;
4193 goto out;
4194 }
4195
4196 /* Populate the fields of the newsk from the oldsk and migrate the
4197 * asoc to the newsk.
4198 */
4199 sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
4200
4201out:
wangweidong048ed4b2014-01-21 15:44:11 +08004202 release_sock(sk);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004203 *err = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 return newsk;
4205}
4206
4207/* The SCTP ioctl handler. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004208static int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209{
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004210 int rc = -ENOTCONN;
4211
wangweidong048ed4b2014-01-21 15:44:11 +08004212 lock_sock(sk);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004213
4214 /*
4215 * SEQPACKET-style sockets in LISTENING state are valid, for
4216 * SCTP, so only discard TCP-style sockets in LISTENING state.
4217 */
4218 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
4219 goto out;
4220
4221 switch (cmd) {
4222 case SIOCINQ: {
4223 struct sk_buff *skb;
4224 unsigned int amount = 0;
4225
4226 skb = skb_peek(&sk->sk_receive_queue);
4227 if (skb != NULL) {
4228 /*
4229 * We will only return the amount of this packet since
4230 * that is all that will be read.
4231 */
4232 amount = skb->len;
4233 }
4234 rc = put_user(amount, (int __user *)arg);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004235 break;
David S. Miller9a7241c2010-10-03 22:14:37 -07004236 }
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004237 default:
4238 rc = -ENOIOCTLCMD;
4239 break;
4240 }
4241out:
wangweidong048ed4b2014-01-21 15:44:11 +08004242 release_sock(sk);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004243 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244}
4245
4246/* This is the function which gets called during socket creation to
4247 * initialized the SCTP-specific portion of the sock.
4248 * The sock structure should already be zero-filled memory.
4249 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004250static int sctp_init_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004252 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 struct sctp_sock *sp;
4254
Daniel Borkmannbb333812013-06-28 19:49:40 +02004255 pr_debug("%s: sk:%p\n", __func__, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256
4257 sp = sctp_sk(sk);
4258
4259 /* Initialize the SCTP per socket area. */
4260 switch (sk->sk_type) {
4261 case SOCK_SEQPACKET:
4262 sp->type = SCTP_SOCKET_UDP;
4263 break;
4264 case SOCK_STREAM:
4265 sp->type = SCTP_SOCKET_TCP;
4266 break;
4267 default:
4268 return -ESOCKTNOSUPPORT;
4269 }
4270
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -03004271 sk->sk_gso_type = SKB_GSO_SCTP;
4272
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273 /* Initialize default send parameters. These parameters can be
4274 * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
4275 */
4276 sp->default_stream = 0;
4277 sp->default_ppid = 0;
4278 sp->default_flags = 0;
4279 sp->default_context = 0;
4280 sp->default_timetolive = 0;
4281
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004282 sp->default_rcv_context = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004283 sp->max_burst = net->sctp.max_burst;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004284
Neil Horman3c681982012-10-24 09:20:03 +00004285 sp->sctp_hmac_alg = net->sctp.sctp_hmac_alg;
4286
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287 /* Initialize default setup parameters. These parameters
4288 * can be modified with the SCTP_INITMSG socket option or
4289 * overridden by the SCTP_INIT CMSG.
4290 */
4291 sp->initmsg.sinit_num_ostreams = sctp_max_outstreams;
4292 sp->initmsg.sinit_max_instreams = sctp_max_instreams;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004293 sp->initmsg.sinit_max_attempts = net->sctp.max_retrans_init;
4294 sp->initmsg.sinit_max_init_timeo = net->sctp.rto_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295
4296 /* Initialize default RTO related parameters. These parameters can
4297 * be modified for with the SCTP_RTOINFO socket option.
4298 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004299 sp->rtoinfo.srto_initial = net->sctp.rto_initial;
4300 sp->rtoinfo.srto_max = net->sctp.rto_max;
4301 sp->rtoinfo.srto_min = net->sctp.rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302
4303 /* Initialize default association related parameters. These parameters
4304 * can be modified with the SCTP_ASSOCINFO socket option.
4305 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004306 sp->assocparams.sasoc_asocmaxrxt = net->sctp.max_retrans_association;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307 sp->assocparams.sasoc_number_peer_destinations = 0;
4308 sp->assocparams.sasoc_peer_rwnd = 0;
4309 sp->assocparams.sasoc_local_rwnd = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004310 sp->assocparams.sasoc_cookie_life = net->sctp.valid_cookie_life;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311
4312 /* Initialize default event subscriptions. By default, all the
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004313 * options are off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 */
4315 memset(&sp->subscribe, 0, sizeof(struct sctp_event_subscribe));
4316
4317 /* Default Peer Address Parameters. These defaults can
4318 * be modified via SCTP_PEER_ADDR_PARAMS
4319 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004320 sp->hbinterval = net->sctp.hb_interval;
4321 sp->pathmaxrxt = net->sctp.max_retrans_path;
wangweidong4e2d52b2013-12-23 12:16:54 +08004322 sp->pathmtu = 0; /* allow default discovery */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004323 sp->sackdelay = net->sctp.sack_timeout;
Vlad Yasevich7bfe8bd2008-06-09 15:45:05 -07004324 sp->sackfreq = 2;
Frank Filz52ccb8e2005-12-22 11:36:46 -08004325 sp->param_flags = SPP_HB_ENABLE |
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004326 SPP_PMTUD_ENABLE |
4327 SPP_SACKDELAY_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328
4329 /* If enabled no SCTP message fragmentation will be performed.
4330 * Configure through SCTP_DISABLE_FRAGMENTS socket option.
4331 */
4332 sp->disable_fragments = 0;
4333
Sridhar Samudrala208edef2006-09-29 17:08:01 -07004334 /* Enable Nagle algorithm by default. */
4335 sp->nodelay = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004337 sp->recvrcvinfo = 0;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02004338 sp->recvnxtinfo = 0;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004339
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340 /* Enable by default. */
4341 sp->v4mapped = 1;
4342
4343 /* Auto-close idle associations after the configured
4344 * number of seconds. A value of 0 disables this
4345 * feature. Configure through the SCTP_AUTOCLOSE socket option,
4346 * for UDP-style sockets only.
4347 */
4348 sp->autoclose = 0;
4349
4350 /* User specified fragmentation limit. */
4351 sp->user_frag = 0;
4352
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004353 sp->adaptation_ind = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354
4355 sp->pf = sctp_get_pf_specific(sk->sk_family);
4356
4357 /* Control variables for partial data delivery. */
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004358 atomic_set(&sp->pd_mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 skb_queue_head_init(&sp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004360 sp->frag_interleave = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361
4362 /* Create a per socket endpoint structure. Even if we
4363 * change the data structure relationships, this may still
4364 * be useful for storing pre-connect address information.
4365 */
Daniel Borkmannc164b832013-06-14 18:24:06 +02004366 sp->ep = sctp_endpoint_new(sk, GFP_KERNEL);
4367 if (!sp->ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 return -ENOMEM;
4369
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370 sp->hmac = NULL;
4371
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004372 sk->sk_destruct = sctp_destruct_sock;
4373
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374 SCTP_DBG_OBJCNT_INC(sock);
David S. Miller6f756a82008-11-23 17:34:03 -08004375
4376 local_bh_disable();
Vlad Yasevich81419d82010-04-28 08:47:20 +00004377 percpu_counter_inc(&sctp_sockets_allocated);
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004378 sock_prot_inuse_add(net, sk->sk_prot, 1);
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004379
4380 /* Nothing can fail after this block, otherwise
4381 * sctp_destroy_sock() will be called without addr_wq_lock held
4382 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004383 if (net->sctp.default_auto_asconf) {
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004384 spin_lock(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda9f7d6532011-04-26 19:32:51 +09004385 list_add_tail(&sp->auto_asconf_list,
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004386 &net->sctp.auto_asconf_splist);
Michio Honda9f7d6532011-04-26 19:32:51 +09004387 sp->do_auto_asconf = 1;
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004388 spin_unlock(&sock_net(sk)->sctp.addr_wq_lock);
4389 } else {
Michio Honda9f7d6532011-04-26 19:32:51 +09004390 sp->do_auto_asconf = 0;
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004391 }
4392
David S. Miller6f756a82008-11-23 17:34:03 -08004393 local_bh_enable();
4394
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 return 0;
4396}
4397
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004398/* Cleanup any SCTP per socket resources. Must be called with
4399 * sock_net(sk)->sctp.addr_wq_lock held if sp->do_auto_asconf is true
4400 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004401static void sctp_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402{
Michio Honda9f7d6532011-04-26 19:32:51 +09004403 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404
Daniel Borkmannbb333812013-06-28 19:49:40 +02004405 pr_debug("%s: sk:%p\n", __func__, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406
4407 /* Release our hold on the endpoint. */
Michio Honda9f7d6532011-04-26 19:32:51 +09004408 sp = sctp_sk(sk);
Daniel Borkmann1abd1652013-06-06 15:53:47 +02004409 /* This could happen during socket init, thus we bail out
4410 * early, since the rest of the below is not setup either.
4411 */
4412 if (sp->ep == NULL)
4413 return;
4414
Michio Honda9f7d6532011-04-26 19:32:51 +09004415 if (sp->do_auto_asconf) {
4416 sp->do_auto_asconf = 0;
4417 list_del(&sp->auto_asconf_list);
4418 }
4419 sctp_endpoint_free(sp->ep);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004420 local_bh_disable();
Vlad Yasevich81419d82010-04-28 08:47:20 +00004421 percpu_counter_dec(&sctp_sockets_allocated);
Eric Dumazet9a57f7f2008-11-17 02:41:00 -08004422 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004423 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424}
4425
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004426/* Triggered when there are no references on the socket anymore */
4427static void sctp_destruct_sock(struct sock *sk)
4428{
4429 struct sctp_sock *sp = sctp_sk(sk);
4430
4431 /* Free up the HMAC transform. */
Herbert Xu5821c762016-01-24 21:20:12 +08004432 crypto_free_shash(sp->hmac);
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004433
4434 inet_sock_destruct(sk);
4435}
4436
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437/* API 4.1.7 shutdown() - TCP Style Syntax
4438 * int shutdown(int socket, int how);
4439 *
4440 * sd - the socket descriptor of the association to be closed.
4441 * how - Specifies the type of shutdown. The values are
4442 * as follows:
4443 * SHUT_RD
4444 * Disables further receive operations. No SCTP
4445 * protocol action is taken.
4446 * SHUT_WR
4447 * Disables further send operations, and initiates
4448 * the SCTP shutdown sequence.
4449 * SHUT_RDWR
4450 * Disables further send and receive operations
4451 * and initiates the SCTP shutdown sequence.
4452 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004453static void sctp_shutdown(struct sock *sk, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00004455 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456 struct sctp_endpoint *ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457
4458 if (!sctp_style(sk, TCP))
4459 return;
4460
Xin Long5bf35dd2016-11-13 21:44:37 +08004461 ep = sctp_sk(sk)->ep;
4462 if (how & SEND_SHUTDOWN && !list_empty(&ep->asocs)) {
4463 struct sctp_association *asoc;
4464
Xin Longd46e4162016-06-09 22:48:18 +08004465 sk->sk_state = SCTP_SS_CLOSING;
Xin Long5bf35dd2016-11-13 21:44:37 +08004466 asoc = list_entry(ep->asocs.next,
4467 struct sctp_association, asocs);
4468 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469 }
4470}
4471
Xin Long52c52a62016-04-14 15:35:30 +08004472int sctp_get_sctp_info(struct sock *sk, struct sctp_association *asoc,
4473 struct sctp_info *info)
4474{
4475 struct sctp_transport *prim;
4476 struct list_head *pos;
4477 int mask;
4478
4479 memset(info, 0, sizeof(*info));
4480 if (!asoc) {
4481 struct sctp_sock *sp = sctp_sk(sk);
4482
4483 info->sctpi_s_autoclose = sp->autoclose;
4484 info->sctpi_s_adaptation_ind = sp->adaptation_ind;
4485 info->sctpi_s_pd_point = sp->pd_point;
4486 info->sctpi_s_nodelay = sp->nodelay;
4487 info->sctpi_s_disable_fragments = sp->disable_fragments;
4488 info->sctpi_s_v4mapped = sp->v4mapped;
4489 info->sctpi_s_frag_interleave = sp->frag_interleave;
Xin Long40eb90e2016-05-29 17:42:13 +08004490 info->sctpi_s_type = sp->type;
Xin Long52c52a62016-04-14 15:35:30 +08004491
4492 return 0;
4493 }
4494
4495 info->sctpi_tag = asoc->c.my_vtag;
4496 info->sctpi_state = asoc->state;
4497 info->sctpi_rwnd = asoc->a_rwnd;
4498 info->sctpi_unackdata = asoc->unack_data;
4499 info->sctpi_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
Xin Longcee360a2017-05-31 16:36:31 +08004500 info->sctpi_instrms = asoc->stream.incnt;
4501 info->sctpi_outstrms = asoc->stream.outcnt;
Xin Long52c52a62016-04-14 15:35:30 +08004502 list_for_each(pos, &asoc->base.inqueue.in_chunk_list)
4503 info->sctpi_inqueue++;
4504 list_for_each(pos, &asoc->outqueue.out_chunk_list)
4505 info->sctpi_outqueue++;
4506 info->sctpi_overall_error = asoc->overall_error_count;
4507 info->sctpi_max_burst = asoc->max_burst;
4508 info->sctpi_maxseg = asoc->frag_point;
4509 info->sctpi_peer_rwnd = asoc->peer.rwnd;
4510 info->sctpi_peer_tag = asoc->c.peer_vtag;
4511
4512 mask = asoc->peer.ecn_capable << 1;
4513 mask = (mask | asoc->peer.ipv4_address) << 1;
4514 mask = (mask | asoc->peer.ipv6_address) << 1;
4515 mask = (mask | asoc->peer.hostname_address) << 1;
4516 mask = (mask | asoc->peer.asconf_capable) << 1;
4517 mask = (mask | asoc->peer.prsctp_capable) << 1;
4518 mask = (mask | asoc->peer.auth_capable);
4519 info->sctpi_peer_capable = mask;
4520 mask = asoc->peer.sack_needed << 1;
4521 mask = (mask | asoc->peer.sack_generation) << 1;
4522 mask = (mask | asoc->peer.zero_window_announced);
4523 info->sctpi_peer_sack = mask;
4524
4525 info->sctpi_isacks = asoc->stats.isacks;
4526 info->sctpi_osacks = asoc->stats.osacks;
4527 info->sctpi_opackets = asoc->stats.opackets;
4528 info->sctpi_ipackets = asoc->stats.ipackets;
4529 info->sctpi_rtxchunks = asoc->stats.rtxchunks;
4530 info->sctpi_outofseqtsns = asoc->stats.outofseqtsns;
4531 info->sctpi_idupchunks = asoc->stats.idupchunks;
4532 info->sctpi_gapcnt = asoc->stats.gapcnt;
4533 info->sctpi_ouodchunks = asoc->stats.ouodchunks;
4534 info->sctpi_iuodchunks = asoc->stats.iuodchunks;
4535 info->sctpi_oodchunks = asoc->stats.oodchunks;
4536 info->sctpi_iodchunks = asoc->stats.iodchunks;
4537 info->sctpi_octrlchunks = asoc->stats.octrlchunks;
4538 info->sctpi_ictrlchunks = asoc->stats.ictrlchunks;
4539
4540 prim = asoc->peer.primary_path;
4541 memcpy(&info->sctpi_p_address, &prim->ipaddr,
4542 sizeof(struct sockaddr_storage));
4543 info->sctpi_p_state = prim->state;
4544 info->sctpi_p_cwnd = prim->cwnd;
4545 info->sctpi_p_srtt = prim->srtt;
4546 info->sctpi_p_rto = jiffies_to_msecs(prim->rto);
4547 info->sctpi_p_hbinterval = prim->hbinterval;
4548 info->sctpi_p_pathmaxrxt = prim->pathmaxrxt;
4549 info->sctpi_p_sackdelay = jiffies_to_msecs(prim->sackdelay);
4550 info->sctpi_p_ssthresh = prim->ssthresh;
4551 info->sctpi_p_partial_bytes_acked = prim->partial_bytes_acked;
4552 info->sctpi_p_flight_size = prim->flight_size;
4553 info->sctpi_p_error = prim->error_count;
4554
4555 return 0;
4556}
4557EXPORT_SYMBOL_GPL(sctp_get_sctp_info);
4558
Xin Long626d16f2016-04-14 15:35:31 +08004559/* use callback to avoid exporting the core structure */
4560int sctp_transport_walk_start(struct rhashtable_iter *iter)
4561{
4562 int err;
4563
Xin Long7fda7022016-11-15 23:23:11 +08004564 rhltable_walk_enter(&sctp_transport_hashtable, iter);
Xin Long626d16f2016-04-14 15:35:31 +08004565
4566 err = rhashtable_walk_start(iter);
Xin Long53fa1032016-04-14 15:35:35 +08004567 if (err && err != -EAGAIN) {
Vegard Nossum5fc382d2016-07-23 09:42:35 +02004568 rhashtable_walk_stop(iter);
Xin Long53fa1032016-04-14 15:35:35 +08004569 rhashtable_walk_exit(iter);
4570 return err;
4571 }
Xin Long626d16f2016-04-14 15:35:31 +08004572
Xin Long53fa1032016-04-14 15:35:35 +08004573 return 0;
Xin Long626d16f2016-04-14 15:35:31 +08004574}
4575
4576void sctp_transport_walk_stop(struct rhashtable_iter *iter)
4577{
4578 rhashtable_walk_stop(iter);
4579 rhashtable_walk_exit(iter);
4580}
4581
4582struct sctp_transport *sctp_transport_get_next(struct net *net,
4583 struct rhashtable_iter *iter)
4584{
4585 struct sctp_transport *t;
4586
4587 t = rhashtable_walk_next(iter);
4588 for (; t; t = rhashtable_walk_next(iter)) {
4589 if (IS_ERR(t)) {
4590 if (PTR_ERR(t) == -EAGAIN)
4591 continue;
4592 break;
4593 }
4594
4595 if (net_eq(sock_net(t->asoc->base.sk), net) &&
4596 t->asoc->peer.primary_path == t)
4597 break;
4598 }
4599
4600 return t;
4601}
4602
4603struct sctp_transport *sctp_transport_get_idx(struct net *net,
4604 struct rhashtable_iter *iter,
4605 int pos)
4606{
4607 void *obj = SEQ_START_TOKEN;
4608
4609 while (pos && (obj = sctp_transport_get_next(net, iter)) &&
4610 !IS_ERR(obj))
4611 pos--;
4612
4613 return obj;
4614}
4615
4616int sctp_for_each_endpoint(int (*cb)(struct sctp_endpoint *, void *),
4617 void *p) {
4618 int err = 0;
4619 int hash = 0;
4620 struct sctp_ep_common *epb;
4621 struct sctp_hashbucket *head;
4622
4623 for (head = sctp_ep_hashtable; hash < sctp_ep_hashsize;
4624 hash++, head++) {
Xin Long581409d2017-06-10 14:48:14 +08004625 read_lock_bh(&head->lock);
Xin Long626d16f2016-04-14 15:35:31 +08004626 sctp_for_each_hentry(epb, &head->chain) {
4627 err = cb(sctp_ep(epb), p);
4628 if (err)
4629 break;
4630 }
Xin Long581409d2017-06-10 14:48:14 +08004631 read_unlock_bh(&head->lock);
Xin Long626d16f2016-04-14 15:35:31 +08004632 }
4633
4634 return err;
4635}
4636EXPORT_SYMBOL_GPL(sctp_for_each_endpoint);
4637
4638int sctp_transport_lookup_process(int (*cb)(struct sctp_transport *, void *),
4639 struct net *net,
4640 const union sctp_addr *laddr,
4641 const union sctp_addr *paddr, void *p)
4642{
4643 struct sctp_transport *transport;
Xin Long08abb792016-12-15 23:05:52 +08004644 int err;
Xin Long626d16f2016-04-14 15:35:31 +08004645
4646 rcu_read_lock();
4647 transport = sctp_addrs_lookup_transport(net, laddr, paddr);
Xin Long626d16f2016-04-14 15:35:31 +08004648 rcu_read_unlock();
Xin Long08abb792016-12-15 23:05:52 +08004649 if (!transport)
4650 return -ENOENT;
4651
Xin Long1cceda782016-09-29 02:55:44 +08004652 err = cb(transport, p);
Xin Longcd26da42016-10-31 20:32:31 +08004653 sctp_transport_put(transport);
Xin Long1cceda782016-09-29 02:55:44 +08004654
Xin Long626d16f2016-04-14 15:35:31 +08004655 return err;
4656}
4657EXPORT_SYMBOL_GPL(sctp_transport_lookup_process);
4658
4659int sctp_for_each_transport(int (*cb)(struct sctp_transport *, void *),
4660 struct net *net, int pos, void *p) {
4661 struct rhashtable_iter hti;
Xin Long626d16f2016-04-14 15:35:31 +08004662 void *obj;
Xin Long53fa1032016-04-14 15:35:35 +08004663 int err;
Xin Long626d16f2016-04-14 15:35:31 +08004664
Xin Long53fa1032016-04-14 15:35:35 +08004665 err = sctp_transport_walk_start(&hti);
4666 if (err)
4667 return err;
Xin Long626d16f2016-04-14 15:35:31 +08004668
Xin Long988c7322017-06-15 17:49:08 +08004669 obj = sctp_transport_get_idx(net, &hti, pos + 1);
4670 for (; !IS_ERR_OR_NULL(obj); obj = sctp_transport_get_next(net, &hti)) {
Xin Long626d16f2016-04-14 15:35:31 +08004671 struct sctp_transport *transport = obj;
4672
4673 if (!sctp_transport_hold(transport))
4674 continue;
4675 err = cb(transport, p);
4676 sctp_transport_put(transport);
4677 if (err)
4678 break;
4679 }
Xin Long626d16f2016-04-14 15:35:31 +08004680 sctp_transport_walk_stop(&hti);
Xin Long53fa1032016-04-14 15:35:35 +08004681
Xin Long626d16f2016-04-14 15:35:31 +08004682 return err;
4683}
4684EXPORT_SYMBOL_GPL(sctp_for_each_transport);
4685
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686/* 7.2.1 Association Status (SCTP_STATUS)
4687
4688 * Applications can retrieve current status information about an
4689 * association, including association state, peer receiver window size,
4690 * number of unacked data chunks, and number of data chunks pending
4691 * receipt. This information is read-only.
4692 */
4693static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
4694 char __user *optval,
4695 int __user *optlen)
4696{
4697 struct sctp_status status;
4698 struct sctp_association *asoc = NULL;
4699 struct sctp_transport *transport;
4700 sctp_assoc_t associd;
4701 int retval = 0;
4702
Neil Horman408f22e2007-06-16 14:03:45 -04004703 if (len < sizeof(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704 retval = -EINVAL;
4705 goto out;
4706 }
4707
Neil Horman408f22e2007-06-16 14:03:45 -04004708 len = sizeof(status);
4709 if (copy_from_user(&status, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710 retval = -EFAULT;
4711 goto out;
4712 }
4713
4714 associd = status.sstat_assoc_id;
4715 asoc = sctp_id2assoc(sk, associd);
4716 if (!asoc) {
4717 retval = -EINVAL;
4718 goto out;
4719 }
4720
4721 transport = asoc->peer.primary_path;
4722
4723 status.sstat_assoc_id = sctp_assoc2id(asoc);
Daniel Borkmann38ab1fa2014-08-28 15:28:26 +02004724 status.sstat_state = sctp_assoc_to_state(asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725 status.sstat_rwnd = asoc->peer.rwnd;
4726 status.sstat_unackdata = asoc->unack_data;
4727
4728 status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
Xin Longcee360a2017-05-31 16:36:31 +08004729 status.sstat_instrms = asoc->stream.incnt;
4730 status.sstat_outstrms = asoc->stream.outcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731 status.sstat_fragmentation_point = asoc->frag_point;
4732 status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Al Viro8cec6b82006-11-20 17:23:01 -08004733 memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
4734 transport->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 /* Map ipv4 address into v4-mapped-on-v6 address. */
Jason Gunthorpe299ee122014-07-30 12:40:53 -06004736 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737 (union sctp_addr *)&status.sstat_primary.spinfo_address);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004738 status.sstat_primary.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739 status.sstat_primary.spinfo_cwnd = transport->cwnd;
4740 status.sstat_primary.spinfo_srtt = transport->srtt;
4741 status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08004742 status.sstat_primary.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743
Frank Filz3f7a87d2005-06-20 13:14:57 -07004744 if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
4745 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
4746
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747 if (put_user(len, optlen)) {
4748 retval = -EFAULT;
4749 goto out;
4750 }
4751
Daniel Borkmannbb333812013-06-28 19:49:40 +02004752 pr_debug("%s: len:%d, state:%d, rwnd:%d, assoc_id:%d\n",
4753 __func__, len, status.sstat_state, status.sstat_rwnd,
4754 status.sstat_assoc_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755
4756 if (copy_to_user(optval, &status, len)) {
4757 retval = -EFAULT;
4758 goto out;
4759 }
4760
4761out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00004762 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763}
4764
4765
4766/* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
4767 *
4768 * Applications can retrieve information about a specific peer address
4769 * of an association, including its reachability state, congestion
4770 * window, and retransmission timer values. This information is
4771 * read-only.
4772 */
4773static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
4774 char __user *optval,
4775 int __user *optlen)
4776{
4777 struct sctp_paddrinfo pinfo;
4778 struct sctp_transport *transport;
4779 int retval = 0;
4780
Neil Horman408f22e2007-06-16 14:03:45 -04004781 if (len < sizeof(pinfo)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782 retval = -EINVAL;
4783 goto out;
4784 }
4785
Neil Horman408f22e2007-06-16 14:03:45 -04004786 len = sizeof(pinfo);
4787 if (copy_from_user(&pinfo, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788 retval = -EFAULT;
4789 goto out;
4790 }
4791
4792 transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
4793 pinfo.spinfo_assoc_id);
4794 if (!transport)
4795 return -EINVAL;
4796
4797 pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004798 pinfo.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799 pinfo.spinfo_cwnd = transport->cwnd;
4800 pinfo.spinfo_srtt = transport->srtt;
4801 pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08004802 pinfo.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803
Frank Filz3f7a87d2005-06-20 13:14:57 -07004804 if (pinfo.spinfo_state == SCTP_UNKNOWN)
4805 pinfo.spinfo_state = SCTP_ACTIVE;
4806
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 if (put_user(len, optlen)) {
4808 retval = -EFAULT;
4809 goto out;
4810 }
4811
4812 if (copy_to_user(optval, &pinfo, len)) {
4813 retval = -EFAULT;
4814 goto out;
4815 }
4816
4817out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00004818 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819}
4820
4821/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
4822 *
4823 * This option is a on/off flag. If enabled no SCTP message
4824 * fragmentation will be performed. Instead if a message being sent
4825 * exceeds the current PMTU size, the message will NOT be sent and
4826 * instead a error will be indicated to the user.
4827 */
4828static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
4829 char __user *optval, int __user *optlen)
4830{
4831 int val;
4832
4833 if (len < sizeof(int))
4834 return -EINVAL;
4835
4836 len = sizeof(int);
4837 val = (sctp_sk(sk)->disable_fragments == 1);
4838 if (put_user(len, optlen))
4839 return -EFAULT;
4840 if (copy_to_user(optval, &val, len))
4841 return -EFAULT;
4842 return 0;
4843}
4844
4845/* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
4846 *
4847 * This socket option is used to specify various notifications and
4848 * ancillary data the user wishes to receive.
4849 */
4850static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
4851 int __user *optlen)
4852{
Jiri Slabya4b8e712016-10-21 14:13:24 +02004853 if (len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854 return -EINVAL;
Thomas Grafacdd5982012-04-03 22:17:53 +00004855 if (len > sizeof(struct sctp_event_subscribe))
4856 len = sizeof(struct sctp_event_subscribe);
Neil Horman408f22e2007-06-16 14:03:45 -04004857 if (put_user(len, optlen))
4858 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 if (copy_to_user(optval, &sctp_sk(sk)->subscribe, len))
4860 return -EFAULT;
4861 return 0;
4862}
4863
4864/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
4865 *
4866 * This socket option is applicable to the UDP-style socket only. When
4867 * set it will cause associations that are idle for more than the
4868 * specified number of seconds to automatically close. An association
4869 * being idle is defined an association that has NOT sent or received
4870 * user data. The special value of '0' indicates that no automatic
4871 * close of any associations should be performed. The option expects an
4872 * integer defining the number of seconds of idle time before an
4873 * association is closed.
4874 */
4875static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
4876{
4877 /* Applicable to UDP-style socket only */
4878 if (sctp_style(sk, TCP))
4879 return -EOPNOTSUPP;
Neil Horman408f22e2007-06-16 14:03:45 -04004880 if (len < sizeof(int))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004882 len = sizeof(int);
4883 if (put_user(len, optlen))
4884 return -EFAULT;
4885 if (copy_to_user(optval, &sctp_sk(sk)->autoclose, sizeof(int)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886 return -EFAULT;
4887 return 0;
4888}
4889
4890/* Helper routine to branch off an association to a new socket. */
Benjamin Poirier0343c552012-03-08 05:55:58 +00004891int sctp_do_peeloff(struct sock *sk, sctp_assoc_t id, struct socket **sockp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892{
Benjamin Poirier0343c552012-03-08 05:55:58 +00004893 struct sctp_association *asoc = sctp_id2assoc(sk, id);
Jason Gunthorpe299ee122014-07-30 12:40:53 -06004894 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895 struct socket *sock;
4896 int err = 0;
4897
Benjamin Poirier0343c552012-03-08 05:55:58 +00004898 if (!asoc)
4899 return -EINVAL;
4900
Marcelo Ricardo Leitnerdfcb9f42017-02-23 09:31:18 -03004901 /* If there is a thread waiting on more sndbuf space for
4902 * sending on this asoc, it cannot be peeled.
4903 */
4904 if (waitqueue_active(&asoc->wait))
4905 return -EBUSY;
4906
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907 /* An association cannot be branched off from an already peeled-off
4908 * socket, nor is this supported for tcp style sockets.
4909 */
4910 if (!sctp_style(sk, UDP))
4911 return -EINVAL;
4912
4913 /* Create a new socket. */
4914 err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
4915 if (err < 0)
4916 return err;
4917
Vlad Yasevich914e1c82009-02-13 08:33:44 +00004918 sctp_copy_sock(sock->sk, sk, asoc);
Vlad Yasevich4f444302006-10-30 18:54:32 -08004919
4920 /* Make peeled-off sockets more like 1-1 accepted sockets.
4921 * Set the daddr and initialize id to something more random
4922 */
Jason Gunthorpe299ee122014-07-30 12:40:53 -06004923 sp->pf->to_sk_daddr(&asoc->peer.primary_addr, sk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00004924
4925 /* Populate the fields of the newsk from the oldsk and migrate the
4926 * asoc to the newsk.
4927 */
4928 sctp_sock_migrate(sk, sock->sk, asoc, SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
Vlad Yasevich4f444302006-10-30 18:54:32 -08004929
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930 *sockp = sock;
4931
4932 return err;
4933}
Benjamin Poirier0343c552012-03-08 05:55:58 +00004934EXPORT_SYMBOL(sctp_do_peeloff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935
Neil Horman2cb5c8e2017-06-30 13:32:57 -04004936static int sctp_getsockopt_peeloff_common(struct sock *sk, sctp_peeloff_arg_t *peeloff,
4937 struct file **newfile, unsigned flags)
4938{
4939 struct socket *newsock;
4940 int retval;
4941
4942 retval = sctp_do_peeloff(sk, peeloff->associd, &newsock);
4943 if (retval < 0)
4944 goto out;
4945
4946 /* Map the socket to an unused fd that can be returned to the user. */
4947 retval = get_unused_fd_flags(flags & SOCK_CLOEXEC);
4948 if (retval < 0) {
4949 sock_release(newsock);
4950 goto out;
4951 }
4952
4953 *newfile = sock_alloc_file(newsock, 0, NULL);
4954 if (IS_ERR(*newfile)) {
4955 put_unused_fd(retval);
4956 sock_release(newsock);
4957 retval = PTR_ERR(*newfile);
4958 *newfile = NULL;
4959 return retval;
4960 }
4961
4962 pr_debug("%s: sk:%p, newsk:%p, sd:%d\n", __func__, sk, newsock->sk,
4963 retval);
4964
4965 peeloff->sd = retval;
4966
4967 if (flags & SOCK_NONBLOCK)
4968 (*newfile)->f_flags |= O_NONBLOCK;
4969out:
4970 return retval;
4971}
4972
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
4974{
4975 sctp_peeloff_arg_t peeloff;
Neil Horman2cb5c8e2017-06-30 13:32:57 -04004976 struct file *newfile = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978
Neil Horman408f22e2007-06-16 14:03:45 -04004979 if (len < sizeof(sctp_peeloff_arg_t))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004981 len = sizeof(sctp_peeloff_arg_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982 if (copy_from_user(&peeloff, optval, len))
4983 return -EFAULT;
4984
Neil Horman2cb5c8e2017-06-30 13:32:57 -04004985 retval = sctp_getsockopt_peeloff_common(sk, &peeloff, &newfile, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986 if (retval < 0)
4987 goto out;
4988
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989 /* Return the fd mapped to the new socket. */
Al Viro56b31d12012-08-18 00:25:51 -04004990 if (put_user(len, optlen)) {
4991 fput(newfile);
4992 put_unused_fd(retval);
Neil Horman408f22e2007-06-16 14:03:45 -04004993 return -EFAULT;
Al Viro56b31d12012-08-18 00:25:51 -04004994 }
Neil Horman2cb5c8e2017-06-30 13:32:57 -04004995
4996 if (copy_to_user(optval, &peeloff, len)) {
4997 fput(newfile);
4998 put_unused_fd(retval);
4999 return -EFAULT;
5000 }
5001 fd_install(retval, newfile);
5002out:
5003 return retval;
5004}
5005
5006static int sctp_getsockopt_peeloff_flags(struct sock *sk, int len,
5007 char __user *optval, int __user *optlen)
5008{
5009 sctp_peeloff_flags_arg_t peeloff;
5010 struct file *newfile = NULL;
5011 int retval = 0;
5012
5013 if (len < sizeof(sctp_peeloff_flags_arg_t))
5014 return -EINVAL;
5015 len = sizeof(sctp_peeloff_flags_arg_t);
5016 if (copy_from_user(&peeloff, optval, len))
5017 return -EFAULT;
5018
5019 retval = sctp_getsockopt_peeloff_common(sk, &peeloff.p_arg,
5020 &newfile, peeloff.flags);
5021 if (retval < 0)
5022 goto out;
5023
5024 /* Return the fd mapped to the new socket. */
5025 if (put_user(len, optlen)) {
5026 fput(newfile);
5027 put_unused_fd(retval);
5028 return -EFAULT;
5029 }
5030
Al Viro56b31d12012-08-18 00:25:51 -04005031 if (copy_to_user(optval, &peeloff, len)) {
5032 fput(newfile);
5033 put_unused_fd(retval);
5034 return -EFAULT;
5035 }
5036 fd_install(retval, newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037out:
5038 return retval;
5039}
5040
5041/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
5042 *
5043 * Applications can enable or disable heartbeats for any peer address of
5044 * an association, modify an address's heartbeat interval, force a
5045 * heartbeat to be sent immediately, and adjust the address's maximum
5046 * number of retransmissions sent before an address is considered
5047 * unreachable. The following structure is used to access and modify an
5048 * address's parameters:
5049 *
5050 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08005051 * sctp_assoc_t spp_assoc_id;
5052 * struct sockaddr_storage spp_address;
5053 * uint32_t spp_hbinterval;
5054 * uint16_t spp_pathmaxrxt;
5055 * uint32_t spp_pathmtu;
5056 * uint32_t spp_sackdelay;
5057 * uint32_t spp_flags;
5058 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08005060 * spp_assoc_id - (one-to-many style socket) This is filled in the
5061 * application, and identifies the association for
5062 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063 * spp_address - This specifies which address is of interest.
5064 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08005065 * in milliseconds. If a value of zero
5066 * is present in this field then no changes are to
5067 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068 * spp_pathmaxrxt - This contains the maximum number of
5069 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08005070 * considered unreachable. If a value of zero
5071 * is present in this field then no changes are to
5072 * be made to this parameter.
5073 * spp_pathmtu - When Path MTU discovery is disabled the value
5074 * specified here will be the "fixed" path mtu.
5075 * Note that if the spp_address field is empty
5076 * then all associations on this address will
5077 * have this fixed path mtu set upon them.
5078 *
5079 * spp_sackdelay - When delayed sack is enabled, this value specifies
5080 * the number of milliseconds that sacks will be delayed
5081 * for. This value will apply to all addresses of an
5082 * association if the spp_address field is empty. Note
5083 * also, that if delayed sack is enabled and this
5084 * value is set to 0, no change is made to the last
5085 * recorded delayed sack timer value.
5086 *
5087 * spp_flags - These flags are used to control various features
5088 * on an association. The flag field may contain
5089 * zero or more of the following options.
5090 *
5091 * SPP_HB_ENABLE - Enable heartbeats on the
5092 * specified address. Note that if the address
5093 * field is empty all addresses for the association
5094 * have heartbeats enabled upon them.
5095 *
5096 * SPP_HB_DISABLE - Disable heartbeats on the
5097 * speicifed address. Note that if the address
5098 * field is empty all addresses for the association
5099 * will have their heartbeats disabled. Note also
5100 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
5101 * mutually exclusive, only one of these two should
5102 * be specified. Enabling both fields will have
5103 * undetermined results.
5104 *
5105 * SPP_HB_DEMAND - Request a user initiated heartbeat
5106 * to be made immediately.
5107 *
5108 * SPP_PMTUD_ENABLE - This field will enable PMTU
5109 * discovery upon the specified address. Note that
5110 * if the address feild is empty then all addresses
5111 * on the association are effected.
5112 *
5113 * SPP_PMTUD_DISABLE - This field will disable PMTU
5114 * discovery upon the specified address. Note that
5115 * if the address feild is empty then all addresses
5116 * on the association are effected. Not also that
5117 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
5118 * exclusive. Enabling both will have undetermined
5119 * results.
5120 *
5121 * SPP_SACKDELAY_ENABLE - Setting this flag turns
5122 * on delayed sack. The time specified in spp_sackdelay
5123 * is used to specify the sack delay for this address. Note
5124 * that if spp_address is empty then all addresses will
5125 * enable delayed sack and take on the sack delay
5126 * value specified in spp_sackdelay.
5127 * SPP_SACKDELAY_DISABLE - Setting this flag turns
5128 * off delayed sack. If the spp_address field is blank then
5129 * delayed sack is disabled for the entire association. Note
5130 * also that this field is mutually exclusive to
5131 * SPP_SACKDELAY_ENABLE, setting both will have undefined
5132 * results.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133 */
5134static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
Frank Filz52ccb8e2005-12-22 11:36:46 -08005135 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136{
Frank Filz52ccb8e2005-12-22 11:36:46 -08005137 struct sctp_paddrparams params;
5138 struct sctp_transport *trans = NULL;
5139 struct sctp_association *asoc = NULL;
5140 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141
Neil Horman408f22e2007-06-16 14:03:45 -04005142 if (len < sizeof(struct sctp_paddrparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005144 len = sizeof(struct sctp_paddrparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145 if (copy_from_user(&params, optval, len))
5146 return -EFAULT;
5147
Frank Filz52ccb8e2005-12-22 11:36:46 -08005148 /* If an address other than INADDR_ANY is specified, and
5149 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 */
wangweidongcb3f8372013-12-23 12:16:50 +08005151 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08005152 trans = sctp_addr_id2transport(sk, &params.spp_address,
5153 params.spp_assoc_id);
5154 if (!trans) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02005155 pr_debug("%s: failed no transport\n", __func__);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005156 return -EINVAL;
5157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158 }
5159
Frank Filz52ccb8e2005-12-22 11:36:46 -08005160 /* Get association, if assoc_id != 0 and the socket is a one
5161 * to many style socket, and an association was not found, then
5162 * the id was invalid.
5163 */
5164 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
5165 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP)) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02005166 pr_debug("%s: failed no association\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08005168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169
Frank Filz52ccb8e2005-12-22 11:36:46 -08005170 if (trans) {
5171 /* Fetch transport values. */
5172 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
5173 params.spp_pathmtu = trans->pathmtu;
5174 params.spp_pathmaxrxt = trans->pathmaxrxt;
5175 params.spp_sackdelay = jiffies_to_msecs(trans->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176
Frank Filz52ccb8e2005-12-22 11:36:46 -08005177 /*draft-11 doesn't say what to return in spp_flags*/
5178 params.spp_flags = trans->param_flags;
5179 } else if (asoc) {
5180 /* Fetch association values. */
5181 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
5182 params.spp_pathmtu = asoc->pathmtu;
5183 params.spp_pathmaxrxt = asoc->pathmaxrxt;
5184 params.spp_sackdelay = jiffies_to_msecs(asoc->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185
Frank Filz52ccb8e2005-12-22 11:36:46 -08005186 /*draft-11 doesn't say what to return in spp_flags*/
5187 params.spp_flags = asoc->param_flags;
5188 } else {
5189 /* Fetch socket values. */
5190 params.spp_hbinterval = sp->hbinterval;
5191 params.spp_pathmtu = sp->pathmtu;
5192 params.spp_sackdelay = sp->sackdelay;
5193 params.spp_pathmaxrxt = sp->pathmaxrxt;
5194
5195 /*draft-11 doesn't say what to return in spp_flags*/
5196 params.spp_flags = sp->param_flags;
5197 }
5198
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199 if (copy_to_user(optval, &params, len))
5200 return -EFAULT;
5201
5202 if (put_user(len, optlen))
5203 return -EFAULT;
5204
5205 return 0;
5206}
5207
Wei Yongjund364d922008-05-09 15:13:26 -07005208/*
5209 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08005210 *
Wei Yongjund364d922008-05-09 15:13:26 -07005211 * This option will effect the way delayed acks are performed. This
5212 * option allows you to get or set the delayed ack time, in
5213 * milliseconds. It also allows changing the delayed ack frequency.
5214 * Changing the frequency to 1 disables the delayed sack algorithm. If
5215 * the assoc_id is 0, then this sets or gets the endpoints default
5216 * values. If the assoc_id field is non-zero, then the set or get
5217 * effects the specified association for the one to many model (the
5218 * assoc_id field is ignored by the one to one model). Note that if
5219 * sack_delay or sack_freq are 0 when setting this option, then the
5220 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08005221 *
Wei Yongjund364d922008-05-09 15:13:26 -07005222 * struct sctp_sack_info {
5223 * sctp_assoc_t sack_assoc_id;
5224 * uint32_t sack_delay;
5225 * uint32_t sack_freq;
5226 * };
Frank Filz77086102005-12-22 11:37:30 -08005227 *
Wei Yongjund364d922008-05-09 15:13:26 -07005228 * sack_assoc_id - This parameter, indicates which association the user
5229 * is performing an action upon. Note that if this field's value is
5230 * zero then the endpoints default value is changed (effecting future
5231 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08005232 *
Wei Yongjund364d922008-05-09 15:13:26 -07005233 * sack_delay - This parameter contains the number of milliseconds that
5234 * the user is requesting the delayed ACK timer be set to. Note that
5235 * this value is defined in the standard to be between 200 and 500
5236 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08005237 *
Wei Yongjund364d922008-05-09 15:13:26 -07005238 * sack_freq - This parameter contains the number of packets that must
5239 * be received before a sack is sent without waiting for the delay
5240 * timer to expire. The default value for this is 2, setting this
5241 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08005242 */
Wei Yongjund364d922008-05-09 15:13:26 -07005243static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
Frank Filz77086102005-12-22 11:37:30 -08005244 char __user *optval,
5245 int __user *optlen)
5246{
Wei Yongjund364d922008-05-09 15:13:26 -07005247 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08005248 struct sctp_association *asoc = NULL;
5249 struct sctp_sock *sp = sctp_sk(sk);
5250
Wei Yongjund364d922008-05-09 15:13:26 -07005251 if (len >= sizeof(struct sctp_sack_info)) {
5252 len = sizeof(struct sctp_sack_info);
5253
5254 if (copy_from_user(&params, optval, len))
5255 return -EFAULT;
5256 } else if (len == sizeof(struct sctp_assoc_value)) {
Neil Horman94f65192013-12-23 08:29:43 -05005257 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05005258 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05005259 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05005260 "Use struct sctp_sack_info instead\n",
5261 current->comm, task_pid_nr(current));
Wei Yongjund364d922008-05-09 15:13:26 -07005262 if (copy_from_user(&params, optval, len))
5263 return -EFAULT;
5264 } else
wangweidongcb3f8372013-12-23 12:16:50 +08005265 return -EINVAL;
Frank Filz77086102005-12-22 11:37:30 -08005266
Wei Yongjund364d922008-05-09 15:13:26 -07005267 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08005268 * to many style socket, and an association was not found, then
5269 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005270 */
Wei Yongjund364d922008-05-09 15:13:26 -07005271 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
5272 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08005273 return -EINVAL;
5274
5275 if (asoc) {
5276 /* Fetch association values. */
Wei Yongjund364d922008-05-09 15:13:26 -07005277 if (asoc->param_flags & SPP_SACKDELAY_ENABLE) {
5278 params.sack_delay = jiffies_to_msecs(
Frank Filz77086102005-12-22 11:37:30 -08005279 asoc->sackdelay);
Wei Yongjund364d922008-05-09 15:13:26 -07005280 params.sack_freq = asoc->sackfreq;
5281
5282 } else {
5283 params.sack_delay = 0;
5284 params.sack_freq = 1;
5285 }
Frank Filz77086102005-12-22 11:37:30 -08005286 } else {
5287 /* Fetch socket values. */
Wei Yongjund364d922008-05-09 15:13:26 -07005288 if (sp->param_flags & SPP_SACKDELAY_ENABLE) {
5289 params.sack_delay = sp->sackdelay;
5290 params.sack_freq = sp->sackfreq;
5291 } else {
5292 params.sack_delay = 0;
5293 params.sack_freq = 1;
5294 }
Frank Filz77086102005-12-22 11:37:30 -08005295 }
5296
5297 if (copy_to_user(optval, &params, len))
5298 return -EFAULT;
5299
5300 if (put_user(len, optlen))
5301 return -EFAULT;
5302
5303 return 0;
5304}
5305
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
5307 *
5308 * Applications can specify protocol parameters for the default association
5309 * initialization. The option name argument to setsockopt() and getsockopt()
5310 * is SCTP_INITMSG.
5311 *
5312 * Setting initialization parameters is effective only on an unconnected
5313 * socket (for UDP-style sockets only future associations are effected
5314 * by the change). With TCP-style sockets, this option is inherited by
5315 * sockets derived from a listener socket.
5316 */
5317static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
5318{
Neil Horman408f22e2007-06-16 14:03:45 -04005319 if (len < sizeof(struct sctp_initmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005321 len = sizeof(struct sctp_initmsg);
5322 if (put_user(len, optlen))
5323 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324 if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
5325 return -EFAULT;
5326 return 0;
5327}
5328
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005330static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
5331 char __user *optval, int __user *optlen)
5332{
5333 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005334 int cnt = 0;
5335 struct sctp_getaddrs getaddrs;
5336 struct sctp_transport *from;
5337 void __user *to;
5338 union sctp_addr temp;
5339 struct sctp_sock *sp = sctp_sk(sk);
5340 int addrlen;
5341 size_t space_left;
5342 int bytes_copied;
5343
5344 if (len < sizeof(struct sctp_getaddrs))
5345 return -EINVAL;
5346
5347 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
5348 return -EFAULT;
5349
5350 /* For UDP-style sockets, id specifies the association to query. */
5351 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
5352 if (!asoc)
5353 return -EINVAL;
5354
wangweidongcb3f8372013-12-23 12:16:50 +08005355 to = optval + offsetof(struct sctp_getaddrs, addrs);
5356 space_left = len - offsetof(struct sctp_getaddrs, addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005357
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07005358 list_for_each_entry(from, &asoc->peer.transport_addr_list,
5359 transports) {
Al Virob3f5b3b2006-11-20 17:22:43 -08005360 memcpy(&temp, &from->ipaddr, sizeof(temp));
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005361 addrlen = sctp_get_pf_specific(sk->sk_family)
5362 ->addr_to_user(sp, &temp);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005363 if (space_left < addrlen)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005364 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005365 if (copy_to_user(to, &temp, addrlen))
5366 return -EFAULT;
5367 to += addrlen;
5368 cnt++;
5369 space_left -= addrlen;
5370 }
5371
5372 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
5373 return -EFAULT;
5374 bytes_copied = ((char __user *)to) - optval;
5375 if (put_user(bytes_copied, optlen))
5376 return -EFAULT;
5377
5378 return 0;
5379}
5380
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005381static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to,
5382 size_t space_left, int *bytes_copied)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005383{
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005384 struct sctp_sockaddr_entry *addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005385 union sctp_addr temp;
5386 int cnt = 0;
5387 int addrlen;
Eric W. Biederman4db67e82012-08-06 08:42:04 +00005388 struct net *net = sock_net(sk);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005389
Vlad Yasevich29303542007-09-16 16:02:12 -07005390 rcu_read_lock();
Eric W. Biederman4db67e82012-08-06 08:42:04 +00005391 list_for_each_entry_rcu(addr, &net->sctp.local_addr_list, list) {
Vlad Yasevich29303542007-09-16 16:02:12 -07005392 if (!addr->valid)
5393 continue;
5394
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005395 if ((PF_INET == sk->sk_family) &&
Al Viro6244be42006-11-20 17:21:44 -08005396 (AF_INET6 == addr->a.sa.sa_family))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005397 continue;
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07005398 if ((PF_INET6 == sk->sk_family) &&
5399 inet_v6_ipv6only(sk) &&
5400 (AF_INET == addr->a.sa.sa_family))
5401 continue;
Al Viro6244be42006-11-20 17:21:44 -08005402 memcpy(&temp, &addr->a, sizeof(temp));
Vlad Yasevichb46ae362008-01-28 14:25:36 -05005403 if (!temp.v4.sin_port)
5404 temp.v4.sin_port = htons(port);
5405
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005406 addrlen = sctp_get_pf_specific(sk->sk_family)
5407 ->addr_to_user(sctp_sk(sk), &temp);
5408
Vlad Yasevich29303542007-09-16 16:02:12 -07005409 if (space_left < addrlen) {
5410 cnt = -ENOMEM;
5411 break;
5412 }
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005413 memcpy(to, &temp, addrlen);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08005414
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005415 to += addrlen;
wangweidongcb3f8372013-12-23 12:16:50 +08005416 cnt++;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005417 space_left -= addrlen;
Vlad Yasevich3663c302007-07-03 12:43:12 -04005418 *bytes_copied += addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005419 }
Vlad Yasevich29303542007-09-16 16:02:12 -07005420 rcu_read_unlock();
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005421
5422 return cnt;
5423}
5424
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005426static int sctp_getsockopt_local_addrs(struct sock *sk, int len,
5427 char __user *optval, int __user *optlen)
5428{
5429 struct sctp_bind_addr *bp;
5430 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005431 int cnt = 0;
5432 struct sctp_getaddrs getaddrs;
5433 struct sctp_sockaddr_entry *addr;
5434 void __user *to;
5435 union sctp_addr temp;
5436 struct sctp_sock *sp = sctp_sk(sk);
5437 int addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005438 int err = 0;
5439 size_t space_left;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005440 int bytes_copied = 0;
5441 void *addrs;
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005442 void *buf;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005443
Neil Horman408f22e2007-06-16 14:03:45 -04005444 if (len < sizeof(struct sctp_getaddrs))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005445 return -EINVAL;
5446
5447 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
5448 return -EFAULT;
5449
5450 /*
5451 * For UDP-style sockets, id specifies the association to query.
5452 * If the id field is set to the value '0' then the locally bound
5453 * addresses are returned without regard to any particular
5454 * association.
5455 */
5456 if (0 == getaddrs.assoc_id) {
5457 bp = &sctp_sk(sk)->ep->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005458 } else {
5459 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
5460 if (!asoc)
5461 return -EINVAL;
5462 bp = &asoc->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005463 }
5464
wangweidongcb3f8372013-12-23 12:16:50 +08005465 to = optval + offsetof(struct sctp_getaddrs, addrs);
5466 space_left = len - offsetof(struct sctp_getaddrs, addrs);
Neil Horman186e2342007-06-18 19:59:16 -04005467
Marcelo Ricardo Leitnercacc0622015-11-30 14:32:54 -02005468 addrs = kmalloc(space_left, GFP_USER | __GFP_NOWARN);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005469 if (!addrs)
5470 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005471
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005472 /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
5473 * addresses from the global local address list.
5474 */
5475 if (sctp_list_single_entry(&bp->address_list)) {
5476 addr = list_entry(bp->address_list.next,
5477 struct sctp_sockaddr_entry, list);
Vlad Yasevich52cae8f2008-08-18 10:34:34 -04005478 if (sctp_is_any(sk, &addr->a)) {
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005479 cnt = sctp_copy_laddrs(sk, bp->port, addrs,
5480 space_left, &bytes_copied);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005481 if (cnt < 0) {
5482 err = cnt;
Vlad Yasevich559cf712007-09-16 16:03:28 -07005483 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005484 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005485 goto copy_getaddrs;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005486 }
5487 }
5488
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005489 buf = addrs;
Vlad Yasevich559cf712007-09-16 16:03:28 -07005490 /* Protection on the bound address list is not needed since
5491 * in the socket option context we hold a socket lock and
5492 * thus the bound address list can't change.
5493 */
5494 list_for_each_entry(addr, &bp->address_list, list) {
Al Viro6244be42006-11-20 17:21:44 -08005495 memcpy(&temp, &addr->a, sizeof(temp));
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005496 addrlen = sctp_get_pf_specific(sk->sk_family)
5497 ->addr_to_user(sp, &temp);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005498 if (space_left < addrlen) {
5499 err = -ENOMEM; /*fixme: right error?*/
Vlad Yasevich559cf712007-09-16 16:03:28 -07005500 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005501 }
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005502 memcpy(buf, &temp, addrlen);
5503 buf += addrlen;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005504 bytes_copied += addrlen;
wangweidongcb3f8372013-12-23 12:16:50 +08005505 cnt++;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005506 space_left -= addrlen;
5507 }
5508
5509copy_getaddrs:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005510 if (copy_to_user(to, addrs, bytes_copied)) {
5511 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02005512 goto out;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005513 }
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04005514 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num)) {
5515 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02005516 goto out;
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04005517 }
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005518 if (put_user(bytes_copied, optlen))
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04005519 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02005520out:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005521 kfree(addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005522 return err;
5523}
5524
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
5526 *
5527 * Requests that the local SCTP stack use the enclosed peer address as
5528 * the association primary. The enclosed address must be one of the
5529 * association peer's addresses.
5530 */
5531static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
5532 char __user *optval, int __user *optlen)
5533{
5534 struct sctp_prim prim;
5535 struct sctp_association *asoc;
5536 struct sctp_sock *sp = sctp_sk(sk);
5537
Neil Horman408f22e2007-06-16 14:03:45 -04005538 if (len < sizeof(struct sctp_prim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539 return -EINVAL;
5540
Neil Horman408f22e2007-06-16 14:03:45 -04005541 len = sizeof(struct sctp_prim);
5542
5543 if (copy_from_user(&prim, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544 return -EFAULT;
5545
5546 asoc = sctp_id2assoc(sk, prim.ssp_assoc_id);
5547 if (!asoc)
5548 return -EINVAL;
5549
5550 if (!asoc->peer.primary_path)
5551 return -ENOTCONN;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005552
Al Viro8cec6b82006-11-20 17:23:01 -08005553 memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr,
5554 asoc->peer.primary_path->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005555
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005556 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005557 (union sctp_addr *)&prim.ssp_addr);
5558
Neil Horman408f22e2007-06-16 14:03:45 -04005559 if (put_user(len, optlen))
5560 return -EFAULT;
5561 if (copy_to_user(optval, &prim, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005562 return -EFAULT;
5563
5564 return 0;
5565}
5566
5567/*
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005568 * 7.1.11 Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005569 *
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005570 * Requests that the local endpoint set the specified Adaptation Layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07005571 * Indication parameter for all future INIT and INIT-ACK exchanges.
5572 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005573static int sctp_getsockopt_adaptation_layer(struct sock *sk, int len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005574 char __user *optval, int __user *optlen)
5575{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005576 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005577
Neil Horman408f22e2007-06-16 14:03:45 -04005578 if (len < sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005579 return -EINVAL;
5580
Neil Horman408f22e2007-06-16 14:03:45 -04005581 len = sizeof(struct sctp_setadaptation);
5582
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005583 adaptation.ssb_adaptation_ind = sctp_sk(sk)->adaptation_ind;
Neil Horman408f22e2007-06-16 14:03:45 -04005584
5585 if (put_user(len, optlen))
5586 return -EFAULT;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005587 if (copy_to_user(optval, &adaptation, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588 return -EFAULT;
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07005589
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590 return 0;
5591}
5592
5593/*
5594 *
5595 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
5596 *
5597 * Applications that wish to use the sendto() system call may wish to
5598 * specify a default set of parameters that would normally be supplied
5599 * through the inclusion of ancillary data. This socket option allows
5600 * such an application to set the default sctp_sndrcvinfo structure.
5601
5602
5603 * The application that wishes to use this socket option simply passes
5604 * in to this call the sctp_sndrcvinfo structure defined in Section
5605 * 5.2.2) The input parameters accepted by this call include
5606 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
5607 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
5608 * to this call if the caller is using the UDP model.
5609 *
5610 * For getsockopt, it get the default sctp_sndrcvinfo structure.
5611 */
5612static int sctp_getsockopt_default_send_param(struct sock *sk,
5613 int len, char __user *optval,
5614 int __user *optlen)
5615{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005616 struct sctp_sock *sp = sctp_sk(sk);
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005617 struct sctp_association *asoc;
5618 struct sctp_sndrcvinfo info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005619
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005620 if (len < sizeof(info))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005622
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005623 len = sizeof(info);
Neil Horman408f22e2007-06-16 14:03:45 -04005624
5625 if (copy_from_user(&info, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626 return -EFAULT;
5627
5628 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
5629 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
5630 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005631 if (asoc) {
5632 info.sinfo_stream = asoc->default_stream;
5633 info.sinfo_flags = asoc->default_flags;
5634 info.sinfo_ppid = asoc->default_ppid;
5635 info.sinfo_context = asoc->default_context;
5636 info.sinfo_timetolive = asoc->default_timetolive;
5637 } else {
5638 info.sinfo_stream = sp->default_stream;
5639 info.sinfo_flags = sp->default_flags;
5640 info.sinfo_ppid = sp->default_ppid;
5641 info.sinfo_context = sp->default_context;
5642 info.sinfo_timetolive = sp->default_timetolive;
5643 }
5644
Neil Horman408f22e2007-06-16 14:03:45 -04005645 if (put_user(len, optlen))
5646 return -EFAULT;
5647 if (copy_to_user(optval, &info, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648 return -EFAULT;
5649
5650 return 0;
5651}
5652
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005653/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
5654 * (SCTP_DEFAULT_SNDINFO)
5655 */
5656static int sctp_getsockopt_default_sndinfo(struct sock *sk, int len,
5657 char __user *optval,
5658 int __user *optlen)
5659{
5660 struct sctp_sock *sp = sctp_sk(sk);
5661 struct sctp_association *asoc;
5662 struct sctp_sndinfo info;
5663
5664 if (len < sizeof(info))
5665 return -EINVAL;
5666
5667 len = sizeof(info);
5668
5669 if (copy_from_user(&info, optval, len))
5670 return -EFAULT;
5671
5672 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
5673 if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
5674 return -EINVAL;
5675 if (asoc) {
5676 info.snd_sid = asoc->default_stream;
5677 info.snd_flags = asoc->default_flags;
5678 info.snd_ppid = asoc->default_ppid;
5679 info.snd_context = asoc->default_context;
5680 } else {
5681 info.snd_sid = sp->default_stream;
5682 info.snd_flags = sp->default_flags;
5683 info.snd_ppid = sp->default_ppid;
5684 info.snd_context = sp->default_context;
5685 }
5686
5687 if (put_user(len, optlen))
5688 return -EFAULT;
5689 if (copy_to_user(optval, &info, len))
5690 return -EFAULT;
5691
5692 return 0;
5693}
5694
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695/*
5696 *
5697 * 7.1.5 SCTP_NODELAY
5698 *
5699 * Turn on/off any Nagle-like algorithm. This means that packets are
5700 * generally sent as soon as possible and no unnecessary delays are
5701 * introduced, at the cost of more packets in the network. Expects an
5702 * integer boolean flag.
5703 */
5704
5705static int sctp_getsockopt_nodelay(struct sock *sk, int len,
5706 char __user *optval, int __user *optlen)
5707{
5708 int val;
5709
5710 if (len < sizeof(int))
5711 return -EINVAL;
5712
5713 len = sizeof(int);
5714 val = (sctp_sk(sk)->nodelay == 1);
5715 if (put_user(len, optlen))
5716 return -EFAULT;
5717 if (copy_to_user(optval, &val, len))
5718 return -EFAULT;
5719 return 0;
5720}
5721
5722/*
5723 *
5724 * 7.1.1 SCTP_RTOINFO
5725 *
5726 * The protocol parameters used to initialize and bound retransmission
5727 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
5728 * and modify these parameters.
5729 * All parameters are time values, in milliseconds. A value of 0, when
5730 * modifying the parameters, indicates that the current value should not
5731 * be changed.
5732 *
5733 */
5734static int sctp_getsockopt_rtoinfo(struct sock *sk, int len,
5735 char __user *optval,
5736 int __user *optlen) {
5737 struct sctp_rtoinfo rtoinfo;
5738 struct sctp_association *asoc;
5739
Neil Horman408f22e2007-06-16 14:03:45 -04005740 if (len < sizeof (struct sctp_rtoinfo))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005741 return -EINVAL;
5742
Neil Horman408f22e2007-06-16 14:03:45 -04005743 len = sizeof(struct sctp_rtoinfo);
5744
5745 if (copy_from_user(&rtoinfo, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746 return -EFAULT;
5747
5748 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
5749
5750 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
5751 return -EINVAL;
5752
5753 /* Values corresponding to the specific association. */
5754 if (asoc) {
5755 rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial);
5756 rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max);
5757 rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min);
5758 } else {
5759 /* Values corresponding to the endpoint. */
5760 struct sctp_sock *sp = sctp_sk(sk);
5761
5762 rtoinfo.srto_initial = sp->rtoinfo.srto_initial;
5763 rtoinfo.srto_max = sp->rtoinfo.srto_max;
5764 rtoinfo.srto_min = sp->rtoinfo.srto_min;
5765 }
5766
5767 if (put_user(len, optlen))
5768 return -EFAULT;
5769
5770 if (copy_to_user(optval, &rtoinfo, len))
5771 return -EFAULT;
5772
5773 return 0;
5774}
5775
5776/*
5777 *
5778 * 7.1.2 SCTP_ASSOCINFO
5779 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02005780 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07005781 * of the association.
5782 * Returns an error if the new association retransmission value is
5783 * greater than the sum of the retransmission value of the peer.
5784 * See [SCTP] for more information.
5785 *
5786 */
5787static int sctp_getsockopt_associnfo(struct sock *sk, int len,
5788 char __user *optval,
5789 int __user *optlen)
5790{
5791
5792 struct sctp_assocparams assocparams;
5793 struct sctp_association *asoc;
5794 struct list_head *pos;
5795 int cnt = 0;
5796
Neil Horman408f22e2007-06-16 14:03:45 -04005797 if (len < sizeof (struct sctp_assocparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798 return -EINVAL;
5799
Neil Horman408f22e2007-06-16 14:03:45 -04005800 len = sizeof(struct sctp_assocparams);
5801
5802 if (copy_from_user(&assocparams, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005803 return -EFAULT;
5804
5805 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
5806
5807 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
5808 return -EINVAL;
5809
5810 /* Values correspoinding to the specific association */
Vladislav Yasevich17337212005-04-28 11:57:54 -07005811 if (asoc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812 assocparams.sasoc_asocmaxrxt = asoc->max_retrans;
5813 assocparams.sasoc_peer_rwnd = asoc->peer.rwnd;
5814 assocparams.sasoc_local_rwnd = asoc->a_rwnd;
Daniel Borkmann52db8822013-06-25 18:17:27 +02005815 assocparams.sasoc_cookie_life = ktime_to_ms(asoc->cookie_life);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816
5817 list_for_each(pos, &asoc->peer.transport_addr_list) {
wangweidongcb3f8372013-12-23 12:16:50 +08005818 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819 }
5820
5821 assocparams.sasoc_number_peer_destinations = cnt;
5822 } else {
5823 /* Values corresponding to the endpoint */
5824 struct sctp_sock *sp = sctp_sk(sk);
5825
5826 assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt;
5827 assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd;
5828 assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd;
5829 assocparams.sasoc_cookie_life =
5830 sp->assocparams.sasoc_cookie_life;
5831 assocparams.sasoc_number_peer_destinations =
5832 sp->assocparams.
5833 sasoc_number_peer_destinations;
5834 }
5835
5836 if (put_user(len, optlen))
5837 return -EFAULT;
5838
5839 if (copy_to_user(optval, &assocparams, len))
5840 return -EFAULT;
5841
5842 return 0;
5843}
5844
5845/*
5846 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
5847 *
5848 * This socket option is a boolean flag which turns on or off mapped V4
5849 * addresses. If this option is turned on and the socket is type
5850 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
5851 * If this option is turned off, then no mapping will be done of V4
5852 * addresses and a user will receive both PF_INET6 and PF_INET type
5853 * addresses on the socket.
5854 */
5855static int sctp_getsockopt_mappedv4(struct sock *sk, int len,
5856 char __user *optval, int __user *optlen)
5857{
5858 int val;
5859 struct sctp_sock *sp = sctp_sk(sk);
5860
5861 if (len < sizeof(int))
5862 return -EINVAL;
5863
5864 len = sizeof(int);
5865 val = sp->v4mapped;
5866 if (put_user(len, optlen))
5867 return -EFAULT;
5868 if (copy_to_user(optval, &val, len))
5869 return -EFAULT;
5870
5871 return 0;
5872}
5873
5874/*
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005875 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
5876 * (chapter and verse is quoted at sctp_setsockopt_context())
5877 */
5878static int sctp_getsockopt_context(struct sock *sk, int len,
5879 char __user *optval, int __user *optlen)
5880{
5881 struct sctp_assoc_value params;
5882 struct sctp_sock *sp;
5883 struct sctp_association *asoc;
5884
Neil Horman408f22e2007-06-16 14:03:45 -04005885 if (len < sizeof(struct sctp_assoc_value))
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005886 return -EINVAL;
5887
Neil Horman408f22e2007-06-16 14:03:45 -04005888 len = sizeof(struct sctp_assoc_value);
5889
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005890 if (copy_from_user(&params, optval, len))
5891 return -EFAULT;
5892
5893 sp = sctp_sk(sk);
5894
5895 if (params.assoc_id != 0) {
5896 asoc = sctp_id2assoc(sk, params.assoc_id);
5897 if (!asoc)
5898 return -EINVAL;
5899 params.assoc_value = asoc->default_rcv_context;
5900 } else {
5901 params.assoc_value = sp->default_rcv_context;
5902 }
5903
5904 if (put_user(len, optlen))
5905 return -EFAULT;
5906 if (copy_to_user(optval, &params, len))
5907 return -EFAULT;
5908
5909 return 0;
5910}
5911
5912/*
Wei Yongjune89c2092008-12-25 16:54:58 -08005913 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
5914 * This option will get or set the maximum size to put in any outgoing
5915 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916 * fragmented by SCTP into the specified size. Note that the underlying
5917 * SCTP implementation may fragment into smaller sized chunks when the
5918 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08005919 * the user. The default value for this option is '0' which indicates
5920 * the user is NOT limiting fragmentation and only the PMTU will effect
5921 * SCTP's choice of DATA chunk size. Note also that values set larger
5922 * than the maximum size of an IP datagram will effectively let SCTP
5923 * control fragmentation (i.e. the same as setting this option to 0).
5924 *
5925 * The following structure is used to access and modify this parameter:
5926 *
5927 * struct sctp_assoc_value {
5928 * sctp_assoc_t assoc_id;
5929 * uint32_t assoc_value;
5930 * };
5931 *
5932 * assoc_id: This parameter is ignored for one-to-one style sockets.
5933 * For one-to-many style sockets this parameter indicates which
5934 * association the user is performing an action upon. Note that if
5935 * this field's value is zero then the endpoints default value is
5936 * changed (effecting future associations only).
5937 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938 */
5939static int sctp_getsockopt_maxseg(struct sock *sk, int len,
5940 char __user *optval, int __user *optlen)
5941{
Wei Yongjune89c2092008-12-25 16:54:58 -08005942 struct sctp_assoc_value params;
5943 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005944
Wei Yongjune89c2092008-12-25 16:54:58 -08005945 if (len == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05005946 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05005947 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05005948 "Use of int in maxseg socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05005949 "Use struct sctp_assoc_value instead\n",
5950 current->comm, task_pid_nr(current));
Wei Yongjune89c2092008-12-25 16:54:58 -08005951 params.assoc_id = 0;
5952 } else if (len >= sizeof(struct sctp_assoc_value)) {
5953 len = sizeof(struct sctp_assoc_value);
5954 if (copy_from_user(&params, optval, sizeof(params)))
5955 return -EFAULT;
5956 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957 return -EINVAL;
5958
Wei Yongjune89c2092008-12-25 16:54:58 -08005959 asoc = sctp_id2assoc(sk, params.assoc_id);
5960 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
5961 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962
Wei Yongjune89c2092008-12-25 16:54:58 -08005963 if (asoc)
5964 params.assoc_value = asoc->frag_point;
5965 else
5966 params.assoc_value = sctp_sk(sk)->user_frag;
5967
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968 if (put_user(len, optlen))
5969 return -EFAULT;
Wei Yongjune89c2092008-12-25 16:54:58 -08005970 if (len == sizeof(int)) {
5971 if (copy_to_user(optval, &params.assoc_value, len))
5972 return -EFAULT;
5973 } else {
5974 if (copy_to_user(optval, &params, len))
5975 return -EFAULT;
5976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005977
5978 return 0;
5979}
5980
Vlad Yasevichb6e13312007-04-20 12:23:15 -07005981/*
5982 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
5983 * (chapter and verse is quoted at sctp_setsockopt_fragment_interleave())
5984 */
5985static int sctp_getsockopt_fragment_interleave(struct sock *sk, int len,
5986 char __user *optval, int __user *optlen)
5987{
5988 int val;
5989
5990 if (len < sizeof(int))
5991 return -EINVAL;
5992
5993 len = sizeof(int);
5994
5995 val = sctp_sk(sk)->frag_interleave;
5996 if (put_user(len, optlen))
5997 return -EFAULT;
5998 if (copy_to_user(optval, &val, len))
5999 return -EFAULT;
6000
6001 return 0;
6002}
6003
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006004/*
6005 * 7.1.25. Set or Get the sctp partial delivery point
6006 * (chapter and verse is quoted at sctp_setsockopt_partial_delivery_point())
6007 */
6008static int sctp_getsockopt_partial_delivery_point(struct sock *sk, int len,
6009 char __user *optval,
6010 int __user *optlen)
6011{
YOSHIFUJI Hideaki9cbcbf42007-07-19 10:44:50 +09006012 u32 val;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006013
6014 if (len < sizeof(u32))
6015 return -EINVAL;
6016
6017 len = sizeof(u32);
6018
6019 val = sctp_sk(sk)->pd_point;
6020 if (put_user(len, optlen))
6021 return -EFAULT;
6022 if (copy_to_user(optval, &val, len))
6023 return -EFAULT;
6024
Wei Yongjun7d743b72010-12-14 16:10:41 +00006025 return 0;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006026}
6027
Vlad Yasevich70331572007-03-23 11:34:36 -07006028/*
6029 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
6030 * (chapter and verse is quoted at sctp_setsockopt_maxburst())
6031 */
6032static int sctp_getsockopt_maxburst(struct sock *sk, int len,
6033 char __user *optval,
6034 int __user *optlen)
6035{
Neil Horman219b99a2008-03-05 13:44:46 -08006036 struct sctp_assoc_value params;
6037 struct sctp_sock *sp;
6038 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07006039
Neil Horman219b99a2008-03-05 13:44:46 -08006040 if (len == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05006041 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05006042 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05006043 "Use of int in max_burst socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05006044 "Use struct sctp_assoc_value instead\n",
6045 current->comm, task_pid_nr(current));
Neil Horman219b99a2008-03-05 13:44:46 -08006046 params.assoc_id = 0;
Wei Yongjunc6db93a2009-03-02 09:46:12 +00006047 } else if (len >= sizeof(struct sctp_assoc_value)) {
6048 len = sizeof(struct sctp_assoc_value);
Neil Horman219b99a2008-03-05 13:44:46 -08006049 if (copy_from_user(&params, optval, len))
6050 return -EFAULT;
6051 } else
6052 return -EINVAL;
Vlad Yasevich70331572007-03-23 11:34:36 -07006053
Neil Horman219b99a2008-03-05 13:44:46 -08006054 sp = sctp_sk(sk);
Vlad Yasevich70331572007-03-23 11:34:36 -07006055
Neil Horman219b99a2008-03-05 13:44:46 -08006056 if (params.assoc_id != 0) {
6057 asoc = sctp_id2assoc(sk, params.assoc_id);
6058 if (!asoc)
6059 return -EINVAL;
6060 params.assoc_value = asoc->max_burst;
6061 } else
6062 params.assoc_value = sp->max_burst;
6063
6064 if (len == sizeof(int)) {
6065 if (copy_to_user(optval, &params.assoc_value, len))
6066 return -EFAULT;
6067 } else {
6068 if (copy_to_user(optval, &params, len))
6069 return -EFAULT;
6070 }
6071
6072 return 0;
6073
Vlad Yasevich70331572007-03-23 11:34:36 -07006074}
6075
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006076static int sctp_getsockopt_hmac_ident(struct sock *sk, int len,
6077 char __user *optval, int __user *optlen)
6078{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006079 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006080 struct sctp_hmacalgo __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006081 struct sctp_hmac_algo_param *hmacs;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006082 __u16 data_len = 0;
6083 u32 num_idents;
Xin Long7a84bd42016-02-03 23:33:30 +08006084 int i;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006085
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006086 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006087 return -EACCES;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006088
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006089 hmacs = ep->auth_hmacs_list;
Xin Long3c918702017-06-30 11:52:16 +08006090 data_len = ntohs(hmacs->param_hdr.length) -
6091 sizeof(struct sctp_paramhdr);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006092
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006093 if (len < sizeof(struct sctp_hmacalgo) + data_len)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006094 return -EINVAL;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006095
6096 len = sizeof(struct sctp_hmacalgo) + data_len;
6097 num_idents = data_len / sizeof(u16);
6098
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006099 if (put_user(len, optlen))
6100 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006101 if (put_user(num_idents, &p->shmac_num_idents))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006102 return -EFAULT;
Xin Long7a84bd42016-02-03 23:33:30 +08006103 for (i = 0; i < num_idents; i++) {
6104 __u16 hmacid = ntohs(hmacs->hmac_ids[i]);
6105
6106 if (copy_to_user(&p->shmac_idents[i], &hmacid, sizeof(__u16)))
6107 return -EFAULT;
6108 }
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006109 return 0;
6110}
6111
6112static int sctp_getsockopt_active_key(struct sock *sk, int len,
6113 char __user *optval, int __user *optlen)
6114{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006115 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006116 struct sctp_authkeyid val;
6117 struct sctp_association *asoc;
6118
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006119 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006120 return -EACCES;
6121
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006122 if (len < sizeof(struct sctp_authkeyid))
6123 return -EINVAL;
6124 if (copy_from_user(&val, optval, sizeof(struct sctp_authkeyid)))
6125 return -EFAULT;
6126
6127 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
6128 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
6129 return -EINVAL;
6130
6131 if (asoc)
6132 val.scact_keynumber = asoc->active_key_id;
6133 else
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006134 val.scact_keynumber = ep->active_key_id;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006135
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006136 len = sizeof(struct sctp_authkeyid);
6137 if (put_user(len, optlen))
6138 return -EFAULT;
6139 if (copy_to_user(optval, &val, len))
6140 return -EFAULT;
6141
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006142 return 0;
6143}
6144
6145static int sctp_getsockopt_peer_auth_chunks(struct sock *sk, int len,
6146 char __user *optval, int __user *optlen)
6147{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006148 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Al Viro411223c2007-10-14 19:21:20 +01006149 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006150 struct sctp_authchunks val;
6151 struct sctp_association *asoc;
6152 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006153 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006154 char __user *to;
6155
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006156 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006157 return -EACCES;
6158
6159 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006160 return -EINVAL;
6161
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006162 if (copy_from_user(&val, optval, sizeof(struct sctp_authchunks)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006163 return -EFAULT;
6164
Al Viro411223c2007-10-14 19:21:20 +01006165 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006166 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6167 if (!asoc)
6168 return -EINVAL;
6169
6170 ch = asoc->peer.peer_chunks;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006171 if (!ch)
6172 goto num;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006173
6174 /* See if the user provided enough room for all the data */
Xin Long3c918702017-06-30 11:52:16 +08006175 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
Vlad Yasevichb40db682008-02-27 14:40:37 -05006176 if (len < num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006177 return -EINVAL;
6178
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006179 if (copy_to_user(to, ch->chunks, num_chunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006180 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006181num:
6182 len = sizeof(struct sctp_authchunks) + num_chunks;
wangweidong8d726512013-12-23 12:16:53 +08006183 if (put_user(len, optlen))
6184 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05006185 if (put_user(num_chunks, &p->gauth_number_of_chunks))
6186 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006187 return 0;
6188}
6189
6190static int sctp_getsockopt_local_auth_chunks(struct sock *sk, int len,
6191 char __user *optval, int __user *optlen)
6192{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006193 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Al Viro411223c2007-10-14 19:21:20 +01006194 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006195 struct sctp_authchunks val;
6196 struct sctp_association *asoc;
6197 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006198 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006199 char __user *to;
6200
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006201 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006202 return -EACCES;
6203
6204 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006205 return -EINVAL;
6206
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006207 if (copy_from_user(&val, optval, sizeof(struct sctp_authchunks)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006208 return -EFAULT;
6209
Al Viro411223c2007-10-14 19:21:20 +01006210 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006211 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6212 if (!asoc && val.gauth_assoc_id && sctp_style(sk, UDP))
6213 return -EINVAL;
6214
6215 if (asoc)
wangweidong26ac8e52013-12-23 12:16:51 +08006216 ch = (struct sctp_chunks_param *)asoc->c.auth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006217 else
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006218 ch = ep->auth_chunk_list;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006219
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006220 if (!ch)
6221 goto num;
6222
Xin Long3c918702017-06-30 11:52:16 +08006223 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006224 if (len < sizeof(struct sctp_authchunks) + num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006225 return -EINVAL;
6226
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006227 if (copy_to_user(to, ch->chunks, num_chunks))
6228 return -EFAULT;
6229num:
6230 len = sizeof(struct sctp_authchunks) + num_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006231 if (put_user(len, optlen))
6232 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05006233 if (put_user(num_chunks, &p->gauth_number_of_chunks))
6234 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006235
6236 return 0;
6237}
6238
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08006239/*
6240 * 8.2.5. Get the Current Number of Associations (SCTP_GET_ASSOC_NUMBER)
6241 * This option gets the current number of associations that are attached
6242 * to a one-to-many style socket. The option value is an uint32_t.
6243 */
6244static int sctp_getsockopt_assoc_number(struct sock *sk, int len,
6245 char __user *optval, int __user *optlen)
6246{
6247 struct sctp_sock *sp = sctp_sk(sk);
6248 struct sctp_association *asoc;
6249 u32 val = 0;
6250
6251 if (sctp_style(sk, TCP))
6252 return -EOPNOTSUPP;
6253
6254 if (len < sizeof(u32))
6255 return -EINVAL;
6256
6257 len = sizeof(u32);
6258
6259 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6260 val++;
6261 }
6262
6263 if (put_user(len, optlen))
6264 return -EFAULT;
6265 if (copy_to_user(optval, &val, len))
6266 return -EFAULT;
6267
6268 return 0;
6269}
6270
Wei Yongjun209ba422011-04-17 17:27:08 +00006271/*
Michio Honda7dc04d72011-04-26 20:16:31 +09006272 * 8.1.23 SCTP_AUTO_ASCONF
6273 * See the corresponding setsockopt entry as description
6274 */
6275static int sctp_getsockopt_auto_asconf(struct sock *sk, int len,
6276 char __user *optval, int __user *optlen)
6277{
6278 int val = 0;
6279
6280 if (len < sizeof(int))
6281 return -EINVAL;
6282
6283 len = sizeof(int);
6284 if (sctp_sk(sk)->do_auto_asconf && sctp_is_ep_boundall(sk))
6285 val = 1;
6286 if (put_user(len, optlen))
6287 return -EFAULT;
6288 if (copy_to_user(optval, &val, len))
6289 return -EFAULT;
6290 return 0;
6291}
6292
6293/*
Wei Yongjun209ba422011-04-17 17:27:08 +00006294 * 8.2.6. Get the Current Identifiers of Associations
6295 * (SCTP_GET_ASSOC_ID_LIST)
6296 *
6297 * This option gets the current list of SCTP association identifiers of
6298 * the SCTP associations handled by a one-to-many style socket.
6299 */
6300static int sctp_getsockopt_assoc_ids(struct sock *sk, int len,
6301 char __user *optval, int __user *optlen)
6302{
6303 struct sctp_sock *sp = sctp_sk(sk);
6304 struct sctp_association *asoc;
6305 struct sctp_assoc_ids *ids;
6306 u32 num = 0;
6307
6308 if (sctp_style(sk, TCP))
6309 return -EOPNOTSUPP;
6310
6311 if (len < sizeof(struct sctp_assoc_ids))
6312 return -EINVAL;
6313
6314 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6315 num++;
6316 }
6317
6318 if (len < sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num)
6319 return -EINVAL;
6320
6321 len = sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num;
6322
Marcelo Ricardo Leitner9ba0b962015-12-23 16:28:40 -02006323 ids = kmalloc(len, GFP_USER | __GFP_NOWARN);
Wei Yongjun209ba422011-04-17 17:27:08 +00006324 if (unlikely(!ids))
6325 return -ENOMEM;
6326
6327 ids->gaids_number_of_ids = num;
6328 num = 0;
6329 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6330 ids->gaids_assoc_id[num++] = asoc->assoc_id;
6331 }
6332
6333 if (put_user(len, optlen) || copy_to_user(optval, ids, len)) {
6334 kfree(ids);
6335 return -EFAULT;
6336 }
6337
6338 kfree(ids);
6339 return 0;
6340}
6341
Neil Horman5aa93bc2012-07-21 07:56:07 +00006342/*
6343 * SCTP_PEER_ADDR_THLDS
6344 *
6345 * This option allows us to fetch the partially failed threshold for one or all
6346 * transports in an association. See Section 6.1 of:
6347 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
6348 */
6349static int sctp_getsockopt_paddr_thresholds(struct sock *sk,
6350 char __user *optval,
6351 int len,
6352 int __user *optlen)
6353{
6354 struct sctp_paddrthlds val;
6355 struct sctp_transport *trans;
6356 struct sctp_association *asoc;
6357
6358 if (len < sizeof(struct sctp_paddrthlds))
6359 return -EINVAL;
6360 len = sizeof(struct sctp_paddrthlds);
6361 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval, len))
6362 return -EFAULT;
6363
6364 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
6365 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
6366 if (!asoc)
6367 return -ENOENT;
6368
6369 val.spt_pathpfthld = asoc->pf_retrans;
6370 val.spt_pathmaxrxt = asoc->pathmaxrxt;
6371 } else {
6372 trans = sctp_addr_id2transport(sk, &val.spt_address,
6373 val.spt_assoc_id);
6374 if (!trans)
6375 return -ENOENT;
6376
6377 val.spt_pathmaxrxt = trans->pathmaxrxt;
6378 val.spt_pathpfthld = trans->pf_retrans;
6379 }
6380
6381 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
6382 return -EFAULT;
6383
6384 return 0;
6385}
6386
Michele Baldessari196d6752012-12-01 04:49:42 +00006387/*
6388 * SCTP_GET_ASSOC_STATS
6389 *
6390 * This option retrieves local per endpoint statistics. It is modeled
6391 * after OpenSolaris' implementation
6392 */
6393static int sctp_getsockopt_assoc_stats(struct sock *sk, int len,
6394 char __user *optval,
6395 int __user *optlen)
6396{
6397 struct sctp_assoc_stats sas;
6398 struct sctp_association *asoc = NULL;
6399
6400 /* User must provide at least the assoc id */
6401 if (len < sizeof(sctp_assoc_t))
6402 return -EINVAL;
6403
Guenter Roeck726bc6b2013-02-27 10:57:31 +00006404 /* Allow the struct to grow and fill in as much as possible */
6405 len = min_t(size_t, len, sizeof(sas));
6406
Michele Baldessari196d6752012-12-01 04:49:42 +00006407 if (copy_from_user(&sas, optval, len))
6408 return -EFAULT;
6409
6410 asoc = sctp_id2assoc(sk, sas.sas_assoc_id);
6411 if (!asoc)
6412 return -EINVAL;
6413
6414 sas.sas_rtxchunks = asoc->stats.rtxchunks;
6415 sas.sas_gapcnt = asoc->stats.gapcnt;
6416 sas.sas_outofseqtsns = asoc->stats.outofseqtsns;
6417 sas.sas_osacks = asoc->stats.osacks;
6418 sas.sas_isacks = asoc->stats.isacks;
6419 sas.sas_octrlchunks = asoc->stats.octrlchunks;
6420 sas.sas_ictrlchunks = asoc->stats.ictrlchunks;
6421 sas.sas_oodchunks = asoc->stats.oodchunks;
6422 sas.sas_iodchunks = asoc->stats.iodchunks;
6423 sas.sas_ouodchunks = asoc->stats.ouodchunks;
6424 sas.sas_iuodchunks = asoc->stats.iuodchunks;
6425 sas.sas_idupchunks = asoc->stats.idupchunks;
6426 sas.sas_opackets = asoc->stats.opackets;
6427 sas.sas_ipackets = asoc->stats.ipackets;
6428
6429 /* New high max rto observed, will return 0 if not a single
6430 * RTO update took place. obs_rto_ipaddr will be bogus
6431 * in such a case
6432 */
6433 sas.sas_maxrto = asoc->stats.max_obs_rto;
6434 memcpy(&sas.sas_obs_rto_ipaddr, &asoc->stats.obs_rto_ipaddr,
6435 sizeof(struct sockaddr_storage));
6436
6437 /* Mark beginning of a new observation period */
6438 asoc->stats.max_obs_rto = asoc->rto_min;
6439
Michele Baldessari196d6752012-12-01 04:49:42 +00006440 if (put_user(len, optlen))
6441 return -EFAULT;
6442
Daniel Borkmannbb333812013-06-28 19:49:40 +02006443 pr_debug("%s: len:%d, assoc_id:%d\n", __func__, len, sas.sas_assoc_id);
Michele Baldessari196d6752012-12-01 04:49:42 +00006444
6445 if (copy_to_user(optval, &sas, len))
6446 return -EFAULT;
6447
6448 return 0;
6449}
6450
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02006451static int sctp_getsockopt_recvrcvinfo(struct sock *sk, int len,
6452 char __user *optval,
6453 int __user *optlen)
6454{
6455 int val = 0;
6456
6457 if (len < sizeof(int))
6458 return -EINVAL;
6459
6460 len = sizeof(int);
6461 if (sctp_sk(sk)->recvrcvinfo)
6462 val = 1;
6463 if (put_user(len, optlen))
6464 return -EFAULT;
6465 if (copy_to_user(optval, &val, len))
6466 return -EFAULT;
6467
6468 return 0;
6469}
6470
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02006471static int sctp_getsockopt_recvnxtinfo(struct sock *sk, int len,
6472 char __user *optval,
6473 int __user *optlen)
6474{
6475 int val = 0;
6476
6477 if (len < sizeof(int))
6478 return -EINVAL;
6479
6480 len = sizeof(int);
6481 if (sctp_sk(sk)->recvnxtinfo)
6482 val = 1;
6483 if (put_user(len, optlen))
6484 return -EFAULT;
6485 if (copy_to_user(optval, &val, len))
6486 return -EFAULT;
6487
6488 return 0;
6489}
6490
Xin Long28aa4c22016-07-09 19:47:40 +08006491static int sctp_getsockopt_pr_supported(struct sock *sk, int len,
6492 char __user *optval,
6493 int __user *optlen)
6494{
6495 struct sctp_assoc_value params;
6496 struct sctp_association *asoc;
6497 int retval = -EFAULT;
6498
6499 if (len < sizeof(params)) {
6500 retval = -EINVAL;
6501 goto out;
6502 }
6503
6504 len = sizeof(params);
6505 if (copy_from_user(&params, optval, len))
6506 goto out;
6507
6508 asoc = sctp_id2assoc(sk, params.assoc_id);
6509 if (asoc) {
6510 params.assoc_value = asoc->prsctp_enable;
6511 } else if (!params.assoc_id) {
6512 struct sctp_sock *sp = sctp_sk(sk);
6513
6514 params.assoc_value = sp->ep->prsctp_enable;
6515 } else {
6516 retval = -EINVAL;
6517 goto out;
6518 }
6519
6520 if (put_user(len, optlen))
6521 goto out;
6522
6523 if (copy_to_user(optval, &params, len))
6524 goto out;
6525
6526 retval = 0;
6527
6528out:
6529 return retval;
6530}
6531
Xin Longf959fb42016-07-09 19:47:41 +08006532static int sctp_getsockopt_default_prinfo(struct sock *sk, int len,
6533 char __user *optval,
6534 int __user *optlen)
6535{
6536 struct sctp_default_prinfo info;
6537 struct sctp_association *asoc;
6538 int retval = -EFAULT;
6539
6540 if (len < sizeof(info)) {
6541 retval = -EINVAL;
6542 goto out;
6543 }
6544
6545 len = sizeof(info);
6546 if (copy_from_user(&info, optval, len))
6547 goto out;
6548
6549 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
6550 if (asoc) {
6551 info.pr_policy = SCTP_PR_POLICY(asoc->default_flags);
6552 info.pr_value = asoc->default_timetolive;
6553 } else if (!info.pr_assoc_id) {
6554 struct sctp_sock *sp = sctp_sk(sk);
6555
6556 info.pr_policy = SCTP_PR_POLICY(sp->default_flags);
6557 info.pr_value = sp->default_timetolive;
6558 } else {
6559 retval = -EINVAL;
6560 goto out;
6561 }
6562
6563 if (put_user(len, optlen))
6564 goto out;
6565
6566 if (copy_to_user(optval, &info, len))
6567 goto out;
6568
6569 retval = 0;
6570
6571out:
6572 return retval;
6573}
6574
Xin Long826d2532016-07-09 19:47:42 +08006575static int sctp_getsockopt_pr_assocstatus(struct sock *sk, int len,
6576 char __user *optval,
6577 int __user *optlen)
6578{
6579 struct sctp_prstatus params;
6580 struct sctp_association *asoc;
6581 int policy;
6582 int retval = -EINVAL;
6583
6584 if (len < sizeof(params))
6585 goto out;
6586
6587 len = sizeof(params);
6588 if (copy_from_user(&params, optval, len)) {
6589 retval = -EFAULT;
6590 goto out;
6591 }
6592
6593 policy = params.sprstat_policy;
6594 if (policy & ~SCTP_PR_SCTP_MASK)
6595 goto out;
6596
6597 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
6598 if (!asoc)
6599 goto out;
6600
6601 if (policy == SCTP_PR_SCTP_NONE) {
6602 params.sprstat_abandoned_unsent = 0;
6603 params.sprstat_abandoned_sent = 0;
6604 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
6605 params.sprstat_abandoned_unsent +=
6606 asoc->abandoned_unsent[policy];
6607 params.sprstat_abandoned_sent +=
6608 asoc->abandoned_sent[policy];
6609 }
6610 } else {
6611 params.sprstat_abandoned_unsent =
6612 asoc->abandoned_unsent[__SCTP_PR_INDEX(policy)];
6613 params.sprstat_abandoned_sent =
6614 asoc->abandoned_sent[__SCTP_PR_INDEX(policy)];
6615 }
6616
6617 if (put_user(len, optlen)) {
6618 retval = -EFAULT;
6619 goto out;
6620 }
6621
6622 if (copy_to_user(optval, &params, len)) {
6623 retval = -EFAULT;
6624 goto out;
6625 }
6626
6627 retval = 0;
6628
6629out:
6630 return retval;
6631}
6632
Xin Longd229d482017-04-01 17:07:46 +08006633static int sctp_getsockopt_pr_streamstatus(struct sock *sk, int len,
6634 char __user *optval,
6635 int __user *optlen)
6636{
6637 struct sctp_stream_out *streamout;
6638 struct sctp_association *asoc;
6639 struct sctp_prstatus params;
6640 int retval = -EINVAL;
6641 int policy;
6642
6643 if (len < sizeof(params))
6644 goto out;
6645
6646 len = sizeof(params);
6647 if (copy_from_user(&params, optval, len)) {
6648 retval = -EFAULT;
6649 goto out;
6650 }
6651
6652 policy = params.sprstat_policy;
6653 if (policy & ~SCTP_PR_SCTP_MASK)
6654 goto out;
6655
6656 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
Xin Longcee360a2017-05-31 16:36:31 +08006657 if (!asoc || params.sprstat_sid >= asoc->stream.outcnt)
Xin Longd229d482017-04-01 17:07:46 +08006658 goto out;
6659
Xin Longcee360a2017-05-31 16:36:31 +08006660 streamout = &asoc->stream.out[params.sprstat_sid];
Xin Longd229d482017-04-01 17:07:46 +08006661 if (policy == SCTP_PR_SCTP_NONE) {
6662 params.sprstat_abandoned_unsent = 0;
6663 params.sprstat_abandoned_sent = 0;
6664 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
6665 params.sprstat_abandoned_unsent +=
6666 streamout->abandoned_unsent[policy];
6667 params.sprstat_abandoned_sent +=
6668 streamout->abandoned_sent[policy];
6669 }
6670 } else {
6671 params.sprstat_abandoned_unsent =
6672 streamout->abandoned_unsent[__SCTP_PR_INDEX(policy)];
6673 params.sprstat_abandoned_sent =
6674 streamout->abandoned_sent[__SCTP_PR_INDEX(policy)];
6675 }
6676
6677 if (put_user(len, optlen) || copy_to_user(optval, &params, len)) {
6678 retval = -EFAULT;
6679 goto out;
6680 }
6681
6682 retval = 0;
6683
6684out:
6685 return retval;
6686}
6687
Xin Longc0d8bab2017-03-10 12:11:12 +08006688static int sctp_getsockopt_reconfig_supported(struct sock *sk, int len,
6689 char __user *optval,
6690 int __user *optlen)
6691{
6692 struct sctp_assoc_value params;
6693 struct sctp_association *asoc;
6694 int retval = -EFAULT;
6695
6696 if (len < sizeof(params)) {
6697 retval = -EINVAL;
6698 goto out;
6699 }
6700
6701 len = sizeof(params);
6702 if (copy_from_user(&params, optval, len))
6703 goto out;
6704
6705 asoc = sctp_id2assoc(sk, params.assoc_id);
6706 if (asoc) {
6707 params.assoc_value = asoc->reconf_enable;
6708 } else if (!params.assoc_id) {
6709 struct sctp_sock *sp = sctp_sk(sk);
6710
6711 params.assoc_value = sp->ep->reconf_enable;
6712 } else {
6713 retval = -EINVAL;
6714 goto out;
6715 }
6716
6717 if (put_user(len, optlen))
6718 goto out;
6719
6720 if (copy_to_user(optval, &params, len))
6721 goto out;
6722
6723 retval = 0;
6724
6725out:
6726 return retval;
6727}
6728
Xin Long9fb657a2017-01-18 00:44:46 +08006729static int sctp_getsockopt_enable_strreset(struct sock *sk, int len,
6730 char __user *optval,
6731 int __user *optlen)
6732{
6733 struct sctp_assoc_value params;
6734 struct sctp_association *asoc;
6735 int retval = -EFAULT;
6736
6737 if (len < sizeof(params)) {
6738 retval = -EINVAL;
6739 goto out;
6740 }
6741
6742 len = sizeof(params);
6743 if (copy_from_user(&params, optval, len))
6744 goto out;
6745
6746 asoc = sctp_id2assoc(sk, params.assoc_id);
6747 if (asoc) {
6748 params.assoc_value = asoc->strreset_enable;
6749 } else if (!params.assoc_id) {
6750 struct sctp_sock *sp = sctp_sk(sk);
6751
6752 params.assoc_value = sp->ep->strreset_enable;
6753 } else {
6754 retval = -EINVAL;
6755 goto out;
6756 }
6757
6758 if (put_user(len, optlen))
6759 goto out;
6760
6761 if (copy_to_user(optval, &params, len))
6762 goto out;
6763
6764 retval = 0;
6765
6766out:
6767 return retval;
6768}
6769
Daniel Borkmanndda91922013-06-17 11:40:05 +02006770static int sctp_getsockopt(struct sock *sk, int level, int optname,
6771 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006772{
6773 int retval = 0;
6774 int len;
6775
Daniel Borkmannbb333812013-06-28 19:49:40 +02006776 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006777
6778 /* I can hardly begin to describe how wrong this is. This is
6779 * so broken as to be worse than useless. The API draft
6780 * REALLY is NOT helpful here... I am not convinced that the
6781 * semantics of getsockopt() with a level OTHER THAN SOL_SCTP
6782 * are at all well-founded.
6783 */
6784 if (level != SOL_SCTP) {
6785 struct sctp_af *af = sctp_sk(sk)->pf->af;
6786
6787 retval = af->getsockopt(sk, level, optname, optval, optlen);
6788 return retval;
6789 }
6790
6791 if (get_user(len, optlen))
6792 return -EFAULT;
6793
Jiri Slabya4b8e712016-10-21 14:13:24 +02006794 if (len < 0)
6795 return -EINVAL;
6796
wangweidong048ed4b2014-01-21 15:44:11 +08006797 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006798
6799 switch (optname) {
6800 case SCTP_STATUS:
6801 retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen);
6802 break;
6803 case SCTP_DISABLE_FRAGMENTS:
6804 retval = sctp_getsockopt_disable_fragments(sk, len, optval,
6805 optlen);
6806 break;
6807 case SCTP_EVENTS:
6808 retval = sctp_getsockopt_events(sk, len, optval, optlen);
6809 break;
6810 case SCTP_AUTOCLOSE:
6811 retval = sctp_getsockopt_autoclose(sk, len, optval, optlen);
6812 break;
6813 case SCTP_SOCKOPT_PEELOFF:
6814 retval = sctp_getsockopt_peeloff(sk, len, optval, optlen);
6815 break;
Neil Horman2cb5c8e2017-06-30 13:32:57 -04006816 case SCTP_SOCKOPT_PEELOFF_FLAGS:
6817 retval = sctp_getsockopt_peeloff_flags(sk, len, optval, optlen);
6818 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006819 case SCTP_PEER_ADDR_PARAMS:
6820 retval = sctp_getsockopt_peer_addr_params(sk, len, optval,
6821 optlen);
6822 break;
Shan Wei4580ccc2011-01-18 22:39:00 +00006823 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07006824 retval = sctp_getsockopt_delayed_ack(sk, len, optval,
Frank Filz77086102005-12-22 11:37:30 -08006825 optlen);
6826 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006827 case SCTP_INITMSG:
6828 retval = sctp_getsockopt_initmsg(sk, len, optval, optlen);
6829 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006830 case SCTP_GET_PEER_ADDRS:
6831 retval = sctp_getsockopt_peer_addrs(sk, len, optval,
6832 optlen);
6833 break;
6834 case SCTP_GET_LOCAL_ADDRS:
6835 retval = sctp_getsockopt_local_addrs(sk, len, optval,
6836 optlen);
6837 break;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04006838 case SCTP_SOCKOPT_CONNECTX3:
6839 retval = sctp_getsockopt_connectx3(sk, len, optval, optlen);
6840 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006841 case SCTP_DEFAULT_SEND_PARAM:
6842 retval = sctp_getsockopt_default_send_param(sk, len,
6843 optval, optlen);
6844 break;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02006845 case SCTP_DEFAULT_SNDINFO:
6846 retval = sctp_getsockopt_default_sndinfo(sk, len,
6847 optval, optlen);
6848 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006849 case SCTP_PRIMARY_ADDR:
6850 retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen);
6851 break;
6852 case SCTP_NODELAY:
6853 retval = sctp_getsockopt_nodelay(sk, len, optval, optlen);
6854 break;
6855 case SCTP_RTOINFO:
6856 retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen);
6857 break;
6858 case SCTP_ASSOCINFO:
6859 retval = sctp_getsockopt_associnfo(sk, len, optval, optlen);
6860 break;
6861 case SCTP_I_WANT_MAPPED_V4_ADDR:
6862 retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen);
6863 break;
6864 case SCTP_MAXSEG:
6865 retval = sctp_getsockopt_maxseg(sk, len, optval, optlen);
6866 break;
6867 case SCTP_GET_PEER_ADDR_INFO:
6868 retval = sctp_getsockopt_peer_addr_info(sk, len, optval,
6869 optlen);
6870 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08006871 case SCTP_ADAPTATION_LAYER:
6872 retval = sctp_getsockopt_adaptation_layer(sk, len, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006873 optlen);
6874 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08006875 case SCTP_CONTEXT:
6876 retval = sctp_getsockopt_context(sk, len, optval, optlen);
6877 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07006878 case SCTP_FRAGMENT_INTERLEAVE:
6879 retval = sctp_getsockopt_fragment_interleave(sk, len, optval,
6880 optlen);
6881 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006882 case SCTP_PARTIAL_DELIVERY_POINT:
6883 retval = sctp_getsockopt_partial_delivery_point(sk, len, optval,
6884 optlen);
6885 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07006886 case SCTP_MAX_BURST:
6887 retval = sctp_getsockopt_maxburst(sk, len, optval, optlen);
6888 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006889 case SCTP_AUTH_KEY:
6890 case SCTP_AUTH_CHUNK:
6891 case SCTP_AUTH_DELETE_KEY:
6892 retval = -EOPNOTSUPP;
6893 break;
6894 case SCTP_HMAC_IDENT:
6895 retval = sctp_getsockopt_hmac_ident(sk, len, optval, optlen);
6896 break;
6897 case SCTP_AUTH_ACTIVE_KEY:
6898 retval = sctp_getsockopt_active_key(sk, len, optval, optlen);
6899 break;
6900 case SCTP_PEER_AUTH_CHUNKS:
6901 retval = sctp_getsockopt_peer_auth_chunks(sk, len, optval,
6902 optlen);
6903 break;
6904 case SCTP_LOCAL_AUTH_CHUNKS:
6905 retval = sctp_getsockopt_local_auth_chunks(sk, len, optval,
6906 optlen);
6907 break;
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08006908 case SCTP_GET_ASSOC_NUMBER:
6909 retval = sctp_getsockopt_assoc_number(sk, len, optval, optlen);
6910 break;
Wei Yongjun209ba422011-04-17 17:27:08 +00006911 case SCTP_GET_ASSOC_ID_LIST:
6912 retval = sctp_getsockopt_assoc_ids(sk, len, optval, optlen);
6913 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09006914 case SCTP_AUTO_ASCONF:
6915 retval = sctp_getsockopt_auto_asconf(sk, len, optval, optlen);
6916 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00006917 case SCTP_PEER_ADDR_THLDS:
6918 retval = sctp_getsockopt_paddr_thresholds(sk, optval, len, optlen);
6919 break;
Michele Baldessari196d6752012-12-01 04:49:42 +00006920 case SCTP_GET_ASSOC_STATS:
6921 retval = sctp_getsockopt_assoc_stats(sk, len, optval, optlen);
6922 break;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02006923 case SCTP_RECVRCVINFO:
6924 retval = sctp_getsockopt_recvrcvinfo(sk, len, optval, optlen);
6925 break;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02006926 case SCTP_RECVNXTINFO:
6927 retval = sctp_getsockopt_recvnxtinfo(sk, len, optval, optlen);
6928 break;
Xin Long28aa4c22016-07-09 19:47:40 +08006929 case SCTP_PR_SUPPORTED:
6930 retval = sctp_getsockopt_pr_supported(sk, len, optval, optlen);
6931 break;
Xin Longf959fb42016-07-09 19:47:41 +08006932 case SCTP_DEFAULT_PRINFO:
6933 retval = sctp_getsockopt_default_prinfo(sk, len, optval,
6934 optlen);
6935 break;
Xin Long826d2532016-07-09 19:47:42 +08006936 case SCTP_PR_ASSOC_STATUS:
6937 retval = sctp_getsockopt_pr_assocstatus(sk, len, optval,
6938 optlen);
6939 break;
Xin Longd229d482017-04-01 17:07:46 +08006940 case SCTP_PR_STREAM_STATUS:
6941 retval = sctp_getsockopt_pr_streamstatus(sk, len, optval,
6942 optlen);
6943 break;
Xin Longc0d8bab2017-03-10 12:11:12 +08006944 case SCTP_RECONFIG_SUPPORTED:
6945 retval = sctp_getsockopt_reconfig_supported(sk, len, optval,
6946 optlen);
6947 break;
Xin Long9fb657a2017-01-18 00:44:46 +08006948 case SCTP_ENABLE_STREAM_RESET:
6949 retval = sctp_getsockopt_enable_strreset(sk, len, optval,
6950 optlen);
6951 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006952 default:
6953 retval = -ENOPROTOOPT;
6954 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07006955 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006956
wangweidong048ed4b2014-01-21 15:44:11 +08006957 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006958 return retval;
6959}
6960
Craig Gallek086c6532016-02-10 11:50:35 -05006961static int sctp_hash(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006962{
6963 /* STUB */
Craig Gallek086c6532016-02-10 11:50:35 -05006964 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006965}
6966
6967static void sctp_unhash(struct sock *sk)
6968{
6969 /* STUB */
6970}
6971
6972/* Check if port is acceptable. Possibly find first available port.
6973 *
6974 * The port hash table (contained in the 'global' SCTP protocol storage
6975 * returned by struct sctp_protocol *sctp_get_protocol()). The hash
6976 * table is an array of 4096 lists (sctp_bind_hashbucket). Each
6977 * list (the list number is the port number hashed out, so as you
6978 * would expect from a hash function, all the ports in a given list have
6979 * such a number that hashes out to the same list number; you were
6980 * expecting that, right?); so each list has a set of ports, with a
6981 * link to the socket (struct sock) that uses it, the port number and
6982 * a fastreuse flag (FIXME: NPI ipg).
6983 */
6984static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00006985 struct sctp_bind_hashbucket *head, struct net *, unsigned short snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006986
6987static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
6988{
6989 struct sctp_bind_hashbucket *head; /* hash list */
Sasha Levinb67bfe02013-02-27 17:06:00 -08006990 struct sctp_bind_bucket *pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006991 unsigned short snum;
6992 int ret;
6993
Al Viro04afd8b2006-11-20 17:02:01 -08006994 snum = ntohs(addr->v4.sin_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006995
Daniel Borkmannbb333812013-06-28 19:49:40 +02006996 pr_debug("%s: begins, snum:%d\n", __func__, snum);
6997
wangweidong79b91132014-01-21 15:44:07 +08006998 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006999
7000 if (snum == 0) {
Stephen Hemminger06393002007-10-10 17:30:18 -07007001 /* Search for an available port. */
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007002 int low, high, remaining, index;
7003 unsigned int rover;
WANG Cong122ff242014-05-12 16:04:53 -07007004 struct net *net = sock_net(sk);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007005
WANG Cong122ff242014-05-12 16:04:53 -07007006 inet_get_local_port_range(net, &low, &high);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007007 remaining = (high - low) + 1;
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05007008 rover = prandom_u32() % remaining + low;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007009
Linus Torvalds1da177e2005-04-16 15:20:36 -07007010 do {
7011 rover++;
7012 if ((rover < low) || (rover > high))
7013 rover = low;
WANG Cong122ff242014-05-12 16:04:53 -07007014 if (inet_is_local_reserved_port(net, rover))
Amerigo Wange3826f12010-05-05 00:27:06 +00007015 continue;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007016 index = sctp_phashfn(sock_net(sk), rover);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007017 head = &sctp_port_hashtable[index];
wangweidong3c8e43b2014-01-21 15:44:08 +08007018 spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08007019 sctp_for_each_hentry(pp, &head->chain)
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007020 if ((pp->port == rover) &&
7021 net_eq(sock_net(sk), pp->net))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007022 goto next;
7023 break;
7024 next:
wangweidong3c8e43b2014-01-21 15:44:08 +08007025 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007026 } while (--remaining > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007027
7028 /* Exhausted local port range during search? */
7029 ret = 1;
7030 if (remaining <= 0)
7031 goto fail;
7032
7033 /* OK, here is the one we will use. HEAD (the port
7034 * hash table list entry) is non-NULL and we hold it's
7035 * mutex.
7036 */
7037 snum = rover;
7038 } else {
7039 /* We are given an specific port number; we verify
7040 * that it is not being used. If it is used, we will
7041 * exahust the search in the hash list corresponding
7042 * to the port number (snum) - we detect that with the
7043 * port iterator, pp being NULL.
7044 */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007045 head = &sctp_port_hashtable[sctp_phashfn(sock_net(sk), snum)];
wangweidong3c8e43b2014-01-21 15:44:08 +08007046 spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08007047 sctp_for_each_hentry(pp, &head->chain) {
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007048 if ((pp->port == snum) && net_eq(pp->net, sock_net(sk)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007049 goto pp_found;
7050 }
7051 }
7052 pp = NULL;
7053 goto pp_not_found;
7054pp_found:
7055 if (!hlist_empty(&pp->owner)) {
7056 /* We had a port hash table hit - there is an
7057 * available port (pp != NULL) and it is being
7058 * used by other socket (pp->owner not empty); that other
7059 * socket is going to be sk2.
7060 */
7061 int reuse = sk->sk_reuse;
7062 struct sock *sk2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007063
Daniel Borkmannbb333812013-06-28 19:49:40 +02007064 pr_debug("%s: found a possible match\n", __func__);
7065
Vlad Yasevichce5325c2007-05-04 13:34:49 -07007066 if (pp->fastreuse && sk->sk_reuse &&
7067 sk->sk_state != SCTP_SS_LISTENING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007068 goto success;
7069
7070 /* Run through the list of sockets bound to the port
7071 * (pp->port) [via the pointers bind_next and
7072 * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one,
7073 * we get the endpoint they describe and run through
7074 * the endpoint's list of IP (v4 or v6) addresses,
7075 * comparing each of the addresses with the address of
7076 * the socket sk. If we find a match, then that means
7077 * that this port/socket (sk) combination are already
7078 * in an endpoint.
7079 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08007080 sk_for_each_bound(sk2, &pp->owner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007081 struct sctp_endpoint *ep2;
7082 ep2 = sctp_sk(sk2)->ep;
7083
Vlad Yasevich4e540642008-07-18 23:06:32 -07007084 if (sk == sk2 ||
7085 (reuse && sk2->sk_reuse &&
7086 sk2->sk_state != SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007087 continue;
7088
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07007089 if (sctp_bind_addr_conflict(&ep2->base.bind_addr, addr,
7090 sctp_sk(sk2), sctp_sk(sk))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007091 ret = (long)sk2;
7092 goto fail_unlock;
7093 }
7094 }
Daniel Borkmannbb333812013-06-28 19:49:40 +02007095
7096 pr_debug("%s: found a match\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007097 }
7098pp_not_found:
7099 /* If there was a hash table miss, create a new port. */
7100 ret = 1;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007101 if (!pp && !(pp = sctp_bucket_create(head, sock_net(sk), snum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007102 goto fail_unlock;
7103
7104 /* In either case (hit or miss), make sure fastreuse is 1 only
7105 * if sk->sk_reuse is too (that is, if the caller requested
7106 * SO_REUSEADDR on this socket -sk-).
7107 */
Vlad Yasevichce5325c2007-05-04 13:34:49 -07007108 if (hlist_empty(&pp->owner)) {
7109 if (sk->sk_reuse && sk->sk_state != SCTP_SS_LISTENING)
7110 pp->fastreuse = 1;
7111 else
7112 pp->fastreuse = 0;
7113 } else if (pp->fastreuse &&
7114 (!sk->sk_reuse || sk->sk_state == SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007115 pp->fastreuse = 0;
7116
7117 /* We are set, so fill up all the data in the hash table
7118 * entry, tie the socket list information with the rest of the
7119 * sockets FIXME: Blurry, NPI (ipg).
7120 */
7121success:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007122 if (!sctp_sk(sk)->bind_hash) {
Eric Dumazetc720c7e2009-10-15 06:30:45 +00007123 inet_sk(sk)->inet_num = snum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007124 sk_add_bind_node(sk, &pp->owner);
7125 sctp_sk(sk)->bind_hash = pp;
7126 }
7127 ret = 0;
7128
7129fail_unlock:
wangweidong3c8e43b2014-01-21 15:44:08 +08007130 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007131
7132fail:
wangweidong79b91132014-01-21 15:44:07 +08007133 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007134 return ret;
7135}
7136
7137/* Assign a 'snum' port to the socket. If snum == 0, an ephemeral
7138 * port is requested.
7139 */
7140static int sctp_get_port(struct sock *sk, unsigned short snum)
7141{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007142 union sctp_addr addr;
7143 struct sctp_af *af = sctp_sk(sk)->pf->af;
7144
7145 /* Set up a dummy address struct from the sk. */
7146 af->from_sk(&addr, sk);
7147 addr.v4.sin_port = htons(snum);
7148
7149 /* Note: sk->sk_num gets filled in if ephemeral port request. */
Daniel Borkmann62208f12013-06-25 18:17:30 +02007150 return !!sctp_get_port_local(sk, &addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007151}
7152
7153/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007154 * Move a socket to LISTENING state.
7155 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02007156static int sctp_listen_start(struct sock *sk, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007157{
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007158 struct sctp_sock *sp = sctp_sk(sk);
7159 struct sctp_endpoint *ep = sp->ep;
Herbert Xu5821c762016-01-24 21:20:12 +08007160 struct crypto_shash *tfm = NULL;
Neil Horman3c681982012-10-24 09:20:03 +00007161 char alg[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007162
7163 /* Allocate HMAC for generating cookie. */
Neil Horman3c681982012-10-24 09:20:03 +00007164 if (!sp->hmac && sp->sctp_hmac_alg) {
7165 sprintf(alg, "hmac(%s)", sp->sctp_hmac_alg);
Herbert Xu5821c762016-01-24 21:20:12 +08007166 tfm = crypto_alloc_shash(alg, 0, 0);
Vlad Yasevich8dc49842007-05-09 13:50:20 -07007167 if (IS_ERR(tfm)) {
Joe Perchese87cc472012-05-13 21:56:26 +00007168 net_info_ratelimited("failed to load transform for %s: %ld\n",
Neil Horman3c681982012-10-24 09:20:03 +00007169 sp->sctp_hmac_alg, PTR_ERR(tfm));
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007170 return -ENOSYS;
7171 }
7172 sctp_sk(sk)->hmac = tfm;
7173 }
7174
7175 /*
7176 * If a bind() or sctp_bindx() is not called prior to a listen()
7177 * call that allows new associations to be accepted, the system
7178 * picks an ephemeral port and will choose an address set equivalent
7179 * to binding with a wildcard address.
7180 *
7181 * This is not currently spelled out in the SCTP sockets
7182 * extensions draft, but follows the practice as seen in TCP
7183 * sockets.
7184 *
7185 */
7186 sk->sk_state = SCTP_SS_LISTENING;
7187 if (!ep->base.bind_addr.port) {
7188 if (sctp_autobind(sk))
7189 return -EAGAIN;
7190 } else {
Eric Dumazetc720c7e2009-10-15 06:30:45 +00007191 if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007192 sk->sk_state = SCTP_SS_CLOSED;
7193 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007194 }
7195 }
7196
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007197 sk->sk_max_ack_backlog = backlog;
7198 sctp_hash_endpoint(ep);
7199 return 0;
7200}
7201
7202/*
7203 * 4.1.3 / 5.1.3 listen()
7204 *
7205 * By default, new associations are not accepted for UDP style sockets.
7206 * An application uses listen() to mark a socket as being able to
7207 * accept new associations.
7208 *
7209 * On TCP style sockets, applications use listen() to ready the SCTP
7210 * endpoint for accepting inbound associations.
7211 *
7212 * On both types of endpoints a backlog of '0' disables listening.
7213 *
7214 * Move a socket to LISTENING state.
7215 */
7216int sctp_inet_listen(struct socket *sock, int backlog)
7217{
7218 struct sock *sk = sock->sk;
7219 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
7220 int err = -EINVAL;
7221
7222 if (unlikely(backlog < 0))
7223 return err;
7224
wangweidong048ed4b2014-01-21 15:44:11 +08007225 lock_sock(sk);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007226
7227 /* Peeled-off sockets are not allowed to listen(). */
7228 if (sctp_style(sk, UDP_HIGH_BANDWIDTH))
7229 goto out;
7230
7231 if (sock->state != SS_UNCONNECTED)
7232 goto out;
7233
Xin Long34b27892017-04-06 13:10:52 +08007234 if (!sctp_sstate(sk, LISTENING) && !sctp_sstate(sk, CLOSED))
7235 goto out;
7236
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007237 /* If backlog is zero, disable listening. */
7238 if (!backlog) {
7239 if (sctp_sstate(sk, CLOSED))
7240 goto out;
7241
7242 err = 0;
7243 sctp_unhash_endpoint(ep);
7244 sk->sk_state = SCTP_SS_CLOSED;
7245 if (sk->sk_reuse)
7246 sctp_sk(sk)->bind_hash->fastreuse = 1;
7247 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07007248 }
7249
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007250 /* If we are already listening, just update the backlog */
7251 if (sctp_sstate(sk, LISTENING))
7252 sk->sk_max_ack_backlog = backlog;
7253 else {
7254 err = sctp_listen_start(sk, backlog);
7255 if (err)
7256 goto out;
7257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007258
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007259 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007260out:
wangweidong048ed4b2014-01-21 15:44:11 +08007261 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007262 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007263}
7264
7265/*
7266 * This function is done by modeling the current datagram_poll() and the
7267 * tcp_poll(). Note that, based on these implementations, we don't
7268 * lock the socket in this function, even though it seems that,
7269 * ideally, locking or some other mechanisms can be used to ensure
Neil Horman9bffc4a2005-12-19 14:24:40 -08007270 * the integrity of the counters (sndbuf and wmem_alloc) used
Linus Torvalds1da177e2005-04-16 15:20:36 -07007271 * in this place. We assume that we don't need locks either until proven
7272 * otherwise.
7273 *
7274 * Another thing to note is that we include the Async I/O support
7275 * here, again, by modeling the current TCP/UDP code. We don't have
7276 * a good way to test with it yet.
7277 */
7278unsigned int sctp_poll(struct file *file, struct socket *sock, poll_table *wait)
7279{
7280 struct sock *sk = sock->sk;
7281 struct sctp_sock *sp = sctp_sk(sk);
7282 unsigned int mask;
7283
Eric Dumazetaa395142010-04-20 13:03:51 +00007284 poll_wait(file, sk_sleep(sk), wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007285
Marcelo Ricardo Leitner486bdee2016-04-12 18:11:31 -03007286 sock_rps_record_flow(sk);
7287
Linus Torvalds1da177e2005-04-16 15:20:36 -07007288 /* A TCP-style listening socket becomes readable when the accept queue
7289 * is not empty.
7290 */
7291 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
7292 return (!list_empty(&sp->ep->asocs)) ?
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09007293 (POLLIN | POLLRDNORM) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007294
7295 mask = 0;
7296
7297 /* Is there any exceptional events? */
7298 if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
Keller, Jacob E7d4c04f2013-03-28 11:19:25 +00007299 mask |= POLLERR |
Daniel Borkmanna0fb05d2013-09-07 16:44:59 +02007300 (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? POLLPRI : 0);
Davide Libenzif348d702006-03-25 03:07:39 -08007301 if (sk->sk_shutdown & RCV_SHUTDOWN)
Eric Dumazetdb409802010-09-06 11:13:50 +00007302 mask |= POLLRDHUP | POLLIN | POLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007303 if (sk->sk_shutdown == SHUTDOWN_MASK)
7304 mask |= POLLHUP;
7305
7306 /* Is it readable? Reconsider this code with TCP-style support. */
Eric Dumazetdb409802010-09-06 11:13:50 +00007307 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007308 mask |= POLLIN | POLLRDNORM;
7309
7310 /* The association is either gone or not ready. */
7311 if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED))
7312 return mask;
7313
7314 /* Is it writable? */
7315 if (sctp_writeable(sk)) {
7316 mask |= POLLOUT | POLLWRNORM;
7317 } else {
Eric Dumazet9cd3e072015-11-29 20:03:10 -08007318 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007319 /*
7320 * Since the socket is not locked, the buffer
7321 * might be made available after the writeable check and
7322 * before the bit is set. This could cause a lost I/O
7323 * signal. tcp_poll() has a race breaker for this race
7324 * condition. Based on their implementation, we put
7325 * in the following code to cover it as well.
7326 */
7327 if (sctp_writeable(sk))
7328 mask |= POLLOUT | POLLWRNORM;
7329 }
7330 return mask;
7331}
7332
7333/********************************************************************
7334 * 2nd Level Abstractions
7335 ********************************************************************/
7336
7337static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007338 struct sctp_bind_hashbucket *head, struct net *net, unsigned short snum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007339{
7340 struct sctp_bind_bucket *pp;
7341
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08007342 pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007343 if (pp) {
Li Zefan935a7f62008-04-10 01:58:06 -07007344 SCTP_DBG_OBJCNT_INC(bind_bucket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007345 pp->port = snum;
7346 pp->fastreuse = 0;
7347 INIT_HLIST_HEAD(&pp->owner);
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007348 pp->net = net;
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05007349 hlist_add_head(&pp->node, &head->chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007350 }
7351 return pp;
7352}
7353
7354/* Caller must hold hashbucket lock for this tb with local BH disabled */
7355static void sctp_bucket_destroy(struct sctp_bind_bucket *pp)
7356{
Sridhar Samudrala37fa6872006-07-21 14:45:47 -07007357 if (pp && hlist_empty(&pp->owner)) {
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05007358 __hlist_del(&pp->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007359 kmem_cache_free(sctp_bucket_cachep, pp);
7360 SCTP_DBG_OBJCNT_DEC(bind_bucket);
7361 }
7362}
7363
7364/* Release this socket's reference to a local port. */
7365static inline void __sctp_put_port(struct sock *sk)
7366{
7367 struct sctp_bind_hashbucket *head =
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007368 &sctp_port_hashtable[sctp_phashfn(sock_net(sk),
7369 inet_sk(sk)->inet_num)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007370 struct sctp_bind_bucket *pp;
7371
wangweidong3c8e43b2014-01-21 15:44:08 +08007372 spin_lock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007373 pp = sctp_sk(sk)->bind_hash;
7374 __sk_del_bind_node(sk);
7375 sctp_sk(sk)->bind_hash = NULL;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00007376 inet_sk(sk)->inet_num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007377 sctp_bucket_destroy(pp);
wangweidong3c8e43b2014-01-21 15:44:08 +08007378 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007379}
7380
7381void sctp_put_port(struct sock *sk)
7382{
wangweidong79b91132014-01-21 15:44:07 +08007383 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007384 __sctp_put_port(sk);
wangweidong79b91132014-01-21 15:44:07 +08007385 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007386}
7387
7388/*
7389 * The system picks an ephemeral port and choose an address set equivalent
7390 * to binding with a wildcard address.
7391 * One of those addresses will be the primary address for the association.
7392 * This automatically enables the multihoming capability of SCTP.
7393 */
7394static int sctp_autobind(struct sock *sk)
7395{
7396 union sctp_addr autoaddr;
7397 struct sctp_af *af;
Al Viro6fbfa9f2006-11-20 17:24:53 -08007398 __be16 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007399
7400 /* Initialize a local sockaddr structure to INADDR_ANY. */
7401 af = sctp_sk(sk)->pf->af;
7402
Eric Dumazetc720c7e2009-10-15 06:30:45 +00007403 port = htons(inet_sk(sk)->inet_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007404 af->inaddr_any(&autoaddr, port);
7405
7406 return sctp_do_bind(sk, &autoaddr, af->sockaddr_len);
7407}
7408
7409/* Parse out IPPROTO_SCTP CMSG headers. Perform only minimal validation.
7410 *
7411 * From RFC 2292
7412 * 4.2 The cmsghdr Structure *
7413 *
7414 * When ancillary data is sent or received, any number of ancillary data
7415 * objects can be specified by the msg_control and msg_controllen members of
7416 * the msghdr structure, because each object is preceded by
7417 * a cmsghdr structure defining the object's length (the cmsg_len member).
7418 * Historically Berkeley-derived implementations have passed only one object
7419 * at a time, but this API allows multiple objects to be
7420 * passed in a single call to sendmsg() or recvmsg(). The following example
7421 * shows two ancillary data objects in a control buffer.
7422 *
7423 * |<--------------------------- msg_controllen -------------------------->|
7424 * | |
7425 *
7426 * |<----- ancillary data object ----->|<----- ancillary data object ----->|
7427 *
7428 * |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->|
7429 * | | |
7430 *
7431 * |<---------- cmsg_len ---------->| |<--------- cmsg_len ----------->| |
7432 *
7433 * |<--------- CMSG_LEN() --------->| |<-------- CMSG_LEN() ---------->| |
7434 * | | | | |
7435 *
7436 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
7437 * |cmsg_|cmsg_|cmsg_|XX| |XX|cmsg_|cmsg_|cmsg_|XX| |XX|
7438 *
7439 * |len |level|type |XX|cmsg_data[]|XX|len |level|type |XX|cmsg_data[]|XX|
7440 *
7441 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
7442 * ^
7443 * |
7444 *
7445 * msg_control
7446 * points here
7447 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02007448static int sctp_msghdr_parse(const struct msghdr *msg, sctp_cmsgs_t *cmsgs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007449{
7450 struct cmsghdr *cmsg;
Vlad Yasevichab38fb02008-04-12 18:40:06 -07007451 struct msghdr *my_msg = (struct msghdr *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007452
Gu Zhengf95b4142014-12-11 11:22:04 +08007453 for_each_cmsghdr(cmsg, my_msg) {
Vlad Yasevichab38fb02008-04-12 18:40:06 -07007454 if (!CMSG_OK(my_msg, cmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007455 return -EINVAL;
7456
7457 /* Should we parse this header or ignore? */
7458 if (cmsg->cmsg_level != IPPROTO_SCTP)
7459 continue;
7460
7461 /* Strictly check lengths following example in SCM code. */
7462 switch (cmsg->cmsg_type) {
7463 case SCTP_INIT:
7464 /* SCTP Socket API Extension
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007465 * 5.3.1 SCTP Initiation Structure (SCTP_INIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007466 *
7467 * This cmsghdr structure provides information for
7468 * initializing new SCTP associations with sendmsg().
7469 * The SCTP_INITMSG socket option uses this same data
7470 * structure. This structure is not used for
7471 * recvmsg().
7472 *
7473 * cmsg_level cmsg_type cmsg_data[]
7474 * ------------ ------------ ----------------------
7475 * IPPROTO_SCTP SCTP_INIT struct sctp_initmsg
7476 */
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007477 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_initmsg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007478 return -EINVAL;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007479
7480 cmsgs->init = CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007481 break;
7482
7483 case SCTP_SNDRCV:
7484 /* SCTP Socket API Extension
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007485 * 5.3.2 SCTP Header Information Structure(SCTP_SNDRCV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007486 *
7487 * This cmsghdr structure specifies SCTP options for
7488 * sendmsg() and describes SCTP header information
7489 * about a received message through recvmsg().
7490 *
7491 * cmsg_level cmsg_type cmsg_data[]
7492 * ------------ ------------ ----------------------
7493 * IPPROTO_SCTP SCTP_SNDRCV struct sctp_sndrcvinfo
7494 */
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007495 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndrcvinfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007496 return -EINVAL;
7497
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007498 cmsgs->srinfo = CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007499
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007500 if (cmsgs->srinfo->sinfo_flags &
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07007501 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
Xin Longa6c2f792016-07-09 19:47:43 +08007502 SCTP_SACK_IMMEDIATELY | SCTP_PR_SCTP_MASK |
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07007503 SCTP_ABORT | SCTP_EOF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007504 return -EINVAL;
7505 break;
7506
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007507 case SCTP_SNDINFO:
7508 /* SCTP Socket API Extension
7509 * 5.3.4 SCTP Send Information Structure (SCTP_SNDINFO)
7510 *
7511 * This cmsghdr structure specifies SCTP options for
7512 * sendmsg(). This structure and SCTP_RCVINFO replaces
7513 * SCTP_SNDRCV which has been deprecated.
7514 *
7515 * cmsg_level cmsg_type cmsg_data[]
7516 * ------------ ------------ ---------------------
7517 * IPPROTO_SCTP SCTP_SNDINFO struct sctp_sndinfo
7518 */
7519 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndinfo)))
7520 return -EINVAL;
7521
7522 cmsgs->sinfo = CMSG_DATA(cmsg);
7523
7524 if (cmsgs->sinfo->snd_flags &
7525 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
Xin Longa6c2f792016-07-09 19:47:43 +08007526 SCTP_SACK_IMMEDIATELY | SCTP_PR_SCTP_MASK |
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007527 SCTP_ABORT | SCTP_EOF))
7528 return -EINVAL;
7529 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007530 default:
7531 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07007532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007533 }
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007534
Linus Torvalds1da177e2005-04-16 15:20:36 -07007535 return 0;
7536}
7537
7538/*
7539 * Wait for a packet..
7540 * Note: This function is the same function as in core/datagram.c
7541 * with a few modifications to make lksctp work.
7542 */
wangweidong26ac8e52013-12-23 12:16:51 +08007543static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007544{
7545 int error;
7546 DEFINE_WAIT(wait);
7547
Eric Dumazetaa395142010-04-20 13:03:51 +00007548 prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007549
7550 /* Socket errors? */
7551 error = sock_error(sk);
7552 if (error)
7553 goto out;
7554
7555 if (!skb_queue_empty(&sk->sk_receive_queue))
7556 goto ready;
7557
7558 /* Socket shut down? */
7559 if (sk->sk_shutdown & RCV_SHUTDOWN)
7560 goto out;
7561
7562 /* Sequenced packets can come disconnected. If so we report the
7563 * problem.
7564 */
7565 error = -ENOTCONN;
7566
7567 /* Is there a good reason to think that we may receive some data? */
7568 if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING))
7569 goto out;
7570
7571 /* Handle signals. */
7572 if (signal_pending(current))
7573 goto interrupted;
7574
7575 /* Let another process have a go. Since we are going to sleep
7576 * anyway. Note: This may cause odd behaviors if the message
7577 * does not fit in the user's buffer, but this seems to be the
7578 * only way to honor MSG_DONTWAIT realistically.
7579 */
wangweidong048ed4b2014-01-21 15:44:11 +08007580 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007581 *timeo_p = schedule_timeout(*timeo_p);
wangweidong048ed4b2014-01-21 15:44:11 +08007582 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007583
7584ready:
Eric Dumazetaa395142010-04-20 13:03:51 +00007585 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007586 return 0;
7587
7588interrupted:
7589 error = sock_intr_errno(*timeo_p);
7590
7591out:
Eric Dumazetaa395142010-04-20 13:03:51 +00007592 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007593 *err = error;
7594 return error;
7595}
7596
7597/* Receive a datagram.
7598 * Note: This is pretty much the same routine as in core/datagram.c
7599 * with a few changes to make lksctp work.
7600 */
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02007601struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags,
7602 int noblock, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007603{
7604 int error;
7605 struct sk_buff *skb;
7606 long timeo;
7607
Linus Torvalds1da177e2005-04-16 15:20:36 -07007608 timeo = sock_rcvtimeo(sk, noblock);
7609
Daniel Borkmannbb333812013-06-28 19:49:40 +02007610 pr_debug("%s: timeo:%ld, max:%ld\n", __func__, timeo,
7611 MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007612
7613 do {
7614 /* Again only user level code calls this function,
7615 * so nothing interrupt level
7616 * will suddenly eat the receive_queue.
7617 *
7618 * Look at current nfs client by the way...
David Shwatrz8917a3c2010-12-02 09:01:55 +00007619 * However, this function was correct in any case. 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007620 */
7621 if (flags & MSG_PEEK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007622 skb = skb_peek(&sk->sk_receive_queue);
7623 if (skb)
Reshetova, Elena63354792017-06-30 13:07:58 +03007624 refcount_inc(&skb->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007625 } else {
Marcelo Ricardo Leitner311b2172016-04-13 19:12:29 -03007626 skb = __skb_dequeue(&sk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007627 }
7628
7629 if (skb)
7630 return skb;
7631
Neil Horman6736dc32005-12-02 20:30:06 -08007632 /* Caller is allowed not to check sk->sk_err before calling. */
7633 error = sock_error(sk);
7634 if (error)
7635 goto no_packet;
7636
Linus Torvalds1da177e2005-04-16 15:20:36 -07007637 if (sk->sk_shutdown & RCV_SHUTDOWN)
7638 break;
7639
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07007640 if (sk_can_busy_loop(sk)) {
7641 sk_busy_loop(sk, noblock);
7642
7643 if (!skb_queue_empty(&sk->sk_receive_queue))
7644 continue;
7645 }
Neil Horman8465a5f2014-04-17 15:26:51 -04007646
Linus Torvalds1da177e2005-04-16 15:20:36 -07007647 /* User doesn't want to wait. */
7648 error = -EAGAIN;
7649 if (!timeo)
7650 goto no_packet;
7651 } while (sctp_wait_for_packet(sk, err, &timeo) == 0);
7652
7653 return NULL;
7654
7655no_packet:
7656 *err = error;
7657 return NULL;
7658}
7659
7660/* If sndbuf has changed, wake up per association sndbuf waiters. */
7661static void __sctp_write_space(struct sctp_association *asoc)
7662{
7663 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007664
Eric Dumazetceb5d582015-11-29 20:03:11 -08007665 if (sctp_wspace(asoc) <= 0)
7666 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007667
Eric Dumazetceb5d582015-11-29 20:03:11 -08007668 if (waitqueue_active(&asoc->wait))
7669 wake_up_interruptible(&asoc->wait);
Eric Dumazeteaefd112011-02-18 03:26:36 +00007670
Eric Dumazetceb5d582015-11-29 20:03:11 -08007671 if (sctp_writeable(sk)) {
7672 struct socket_wq *wq;
7673
7674 rcu_read_lock();
7675 wq = rcu_dereference(sk->sk_wq);
7676 if (wq) {
7677 if (waitqueue_active(&wq->wait))
7678 wake_up_interruptible(&wq->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007679
7680 /* Note that we try to include the Async I/O support
7681 * here by modeling from the current TCP/UDP code.
7682 * We have not tested with it yet.
7683 */
Eric Dumazeteaefd112011-02-18 03:26:36 +00007684 if (!(sk->sk_shutdown & SEND_SHUTDOWN))
Eric Dumazetceb5d582015-11-29 20:03:11 -08007685 sock_wake_async(wq, SOCK_WAKE_SPACE, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007686 }
Eric Dumazetceb5d582015-11-29 20:03:11 -08007687 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007688 }
7689}
7690
Daniel Borkmann52c35be2014-04-08 17:26:13 +02007691static void sctp_wake_up_waiters(struct sock *sk,
7692 struct sctp_association *asoc)
7693{
7694 struct sctp_association *tmp = asoc;
7695
7696 /* We do accounting for the sndbuf space per association,
7697 * so we only need to wake our own association.
7698 */
7699 if (asoc->ep->sndbuf_policy)
7700 return __sctp_write_space(asoc);
7701
Daniel Borkmann1e1cdf82014-04-09 16:10:20 +02007702 /* If association goes down and is just flushing its
7703 * outq, then just normally notify others.
7704 */
7705 if (asoc->base.dead)
7706 return sctp_write_space(sk);
7707
Daniel Borkmann52c35be2014-04-08 17:26:13 +02007708 /* Accounting for the sndbuf space is per socket, so we
7709 * need to wake up others, try to be fair and in case of
7710 * other associations, let them have a go first instead
7711 * of just doing a sctp_write_space() call.
7712 *
7713 * Note that we reach sctp_wake_up_waiters() only when
7714 * associations free up queued chunks, thus we are under
7715 * lock and the list of associations on a socket is
7716 * guaranteed not to change.
7717 */
7718 for (tmp = list_next_entry(tmp, asocs); 1;
7719 tmp = list_next_entry(tmp, asocs)) {
7720 /* Manually skip the head element. */
7721 if (&tmp->asocs == &((sctp_sk(sk))->ep->asocs))
7722 continue;
7723 /* Wake up association. */
7724 __sctp_write_space(tmp);
7725 /* We've reached the end. */
7726 if (tmp == asoc)
7727 break;
7728 }
7729}
7730
Linus Torvalds1da177e2005-04-16 15:20:36 -07007731/* Do accounting for the sndbuf space.
7732 * Decrement the used sndbuf space of the corresponding association by the
7733 * data size which was just transmitted(freed).
7734 */
7735static void sctp_wfree(struct sk_buff *skb)
7736{
Daniel Borkmannf869c912014-11-20 01:54:48 +01007737 struct sctp_chunk *chunk = skb_shinfo(skb)->destructor_arg;
7738 struct sctp_association *asoc = chunk->asoc;
7739 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007740
Neil Horman4eb701d2005-04-28 12:02:04 -07007741 asoc->sndbuf_used -= SCTP_DATA_SNDSIZE(chunk) +
7742 sizeof(struct sk_buff) +
7743 sizeof(struct sctp_chunk);
7744
Reshetova, Elena14afee42017-06-30 13:08:00 +03007745 WARN_ON(refcount_sub_and_test(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc));
Neil Horman4eb701d2005-04-28 12:02:04 -07007746
Neil Horman4d93df02007-08-15 16:07:44 -07007747 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08007748 * This undoes what is done via sctp_set_owner_w and sk_mem_charge
Neil Horman4d93df02007-08-15 16:07:44 -07007749 */
7750 sk->sk_wmem_queued -= skb->truesize;
Hideo Aoki3ab224b2007-12-31 00:11:19 -08007751 sk_mem_uncharge(sk, skb->truesize);
Neil Horman4d93df02007-08-15 16:07:44 -07007752
Neil Horman4eb701d2005-04-28 12:02:04 -07007753 sock_wfree(skb);
Daniel Borkmann52c35be2014-04-08 17:26:13 +02007754 sctp_wake_up_waiters(sk, asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007755
7756 sctp_association_put(asoc);
7757}
7758
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07007759/* Do accounting for the receive space on the socket.
7760 * Accounting for the association is done in ulpevent.c
7761 * We set this as a destructor for the cloned data skbs so that
7762 * accounting is done at the correct time.
7763 */
7764void sctp_sock_rfree(struct sk_buff *skb)
7765{
7766 struct sock *sk = skb->sk;
7767 struct sctp_ulpevent *event = sctp_skb2event(skb);
7768
7769 atomic_sub(event->rmem_len, &sk->sk_rmem_alloc);
Neil Horman4d93df02007-08-15 16:07:44 -07007770
7771 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08007772 * Mimic the behavior of sock_rfree
Neil Horman4d93df02007-08-15 16:07:44 -07007773 */
Hideo Aoki3ab224b2007-12-31 00:11:19 -08007774 sk_mem_uncharge(sk, event->rmem_len);
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07007775}
7776
7777
Linus Torvalds1da177e2005-04-16 15:20:36 -07007778/* Helper function to wait for space in the sndbuf. */
7779static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
7780 size_t msg_len)
7781{
7782 struct sock *sk = asoc->base.sk;
7783 int err = 0;
7784 long current_timeo = *timeo_p;
7785 DEFINE_WAIT(wait);
7786
Daniel Borkmannbb333812013-06-28 19:49:40 +02007787 pr_debug("%s: asoc:%p, timeo:%ld, msg_len:%zu\n", __func__, asoc,
7788 *timeo_p, msg_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007789
7790 /* Increment the association's refcnt. */
7791 sctp_association_hold(asoc);
7792
7793 /* Wait on the association specific sndbuf space. */
7794 for (;;) {
7795 prepare_to_wait_exclusive(&asoc->wait, &wait,
7796 TASK_INTERRUPTIBLE);
7797 if (!*timeo_p)
7798 goto do_nonblock;
7799 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
7800 asoc->base.dead)
7801 goto do_error;
7802 if (signal_pending(current))
7803 goto do_interrupted;
7804 if (msg_len <= sctp_wspace(asoc))
7805 break;
7806
7807 /* Let another process have a go. Since we are going
7808 * to sleep anyway.
7809 */
wangweidong048ed4b2014-01-21 15:44:11 +08007810 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007811 current_timeo = schedule_timeout(current_timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08007812 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007813
7814 *timeo_p = current_timeo;
7815 }
7816
7817out:
7818 finish_wait(&asoc->wait, &wait);
7819
7820 /* Release the association's refcnt. */
7821 sctp_association_put(asoc);
7822
7823 return err;
7824
7825do_error:
7826 err = -EPIPE;
7827 goto out;
7828
7829do_interrupted:
7830 err = sock_intr_errno(*timeo_p);
7831 goto out;
7832
7833do_nonblock:
7834 err = -EAGAIN;
7835 goto out;
7836}
7837
David S. Miller676d2362014-04-11 16:15:36 -04007838void sctp_data_ready(struct sock *sk)
Wei Yongjun561b1732010-04-28 08:47:18 +00007839{
David S. Miller7ef52732010-05-02 21:43:40 -07007840 struct socket_wq *wq;
7841
7842 rcu_read_lock();
7843 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08007844 if (skwq_has_sleeper(wq))
David S. Miller7ef52732010-05-02 21:43:40 -07007845 wake_up_interruptible_sync_poll(&wq->wait, POLLIN |
Wei Yongjun561b1732010-04-28 08:47:18 +00007846 POLLRDNORM | POLLRDBAND);
7847 sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
David S. Miller7ef52732010-05-02 21:43:40 -07007848 rcu_read_unlock();
Wei Yongjun561b1732010-04-28 08:47:18 +00007849}
7850
Linus Torvalds1da177e2005-04-16 15:20:36 -07007851/* If socket sndbuf has changed, wake up all per association waiters. */
7852void sctp_write_space(struct sock *sk)
7853{
7854 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007855
7856 /* Wake up the tasks in each wait queue. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07007857 list_for_each_entry(asoc, &((sctp_sk(sk))->ep->asocs), asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007858 __sctp_write_space(asoc);
7859 }
7860}
7861
7862/* Is there any sndbuf space available on the socket?
7863 *
Neil Horman9bffc4a2005-12-19 14:24:40 -08007864 * Note that sk_wmem_alloc is the sum of the send buffers on all of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07007865 * associations on the same socket. For a UDP-style socket with
7866 * multiple associations, it is possible for it to be "unwriteable"
7867 * prematurely. I assume that this is acceptable because
7868 * a premature "unwriteable" is better than an accidental "writeable" which
7869 * would cause an unwanted block under certain circumstances. For the 1-1
7870 * UDP-style sockets or TCP-style sockets, this code should work.
7871 * - Daisy
7872 */
7873static int sctp_writeable(struct sock *sk)
7874{
7875 int amt = 0;
7876
Eric Dumazet31e6d362009-06-17 19:05:41 -07007877 amt = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007878 if (amt < 0)
7879 amt = 0;
7880 return amt;
7881}
7882
7883/* Wait for an association to go into ESTABLISHED state. If timeout is 0,
7884 * returns immediately with EINPROGRESS.
7885 */
7886static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p)
7887{
7888 struct sock *sk = asoc->base.sk;
7889 int err = 0;
7890 long current_timeo = *timeo_p;
7891 DEFINE_WAIT(wait);
7892
Daniel Borkmannbb333812013-06-28 19:49:40 +02007893 pr_debug("%s: asoc:%p, timeo:%ld\n", __func__, asoc, *timeo_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007894
7895 /* Increment the association's refcnt. */
7896 sctp_association_hold(asoc);
7897
7898 for (;;) {
7899 prepare_to_wait_exclusive(&asoc->wait, &wait,
7900 TASK_INTERRUPTIBLE);
7901 if (!*timeo_p)
7902 goto do_nonblock;
7903 if (sk->sk_shutdown & RCV_SHUTDOWN)
7904 break;
7905 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
7906 asoc->base.dead)
7907 goto do_error;
7908 if (signal_pending(current))
7909 goto do_interrupted;
7910
7911 if (sctp_state(asoc, ESTABLISHED))
7912 break;
7913
7914 /* Let another process have a go. Since we are going
7915 * to sleep anyway.
7916 */
wangweidong048ed4b2014-01-21 15:44:11 +08007917 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007918 current_timeo = schedule_timeout(current_timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08007919 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007920
7921 *timeo_p = current_timeo;
7922 }
7923
7924out:
7925 finish_wait(&asoc->wait, &wait);
7926
7927 /* Release the association's refcnt. */
7928 sctp_association_put(asoc);
7929
7930 return err;
7931
7932do_error:
Vlad Yasevich81845c22006-01-30 15:59:54 -08007933 if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007934 err = -ETIMEDOUT;
7935 else
7936 err = -ECONNREFUSED;
7937 goto out;
7938
7939do_interrupted:
7940 err = sock_intr_errno(*timeo_p);
7941 goto out;
7942
7943do_nonblock:
7944 err = -EINPROGRESS;
7945 goto out;
7946}
7947
7948static int sctp_wait_for_accept(struct sock *sk, long timeo)
7949{
7950 struct sctp_endpoint *ep;
7951 int err = 0;
7952 DEFINE_WAIT(wait);
7953
7954 ep = sctp_sk(sk)->ep;
7955
7956
7957 for (;;) {
Eric Dumazetaa395142010-04-20 13:03:51 +00007958 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007959 TASK_INTERRUPTIBLE);
7960
7961 if (list_empty(&ep->asocs)) {
wangweidong048ed4b2014-01-21 15:44:11 +08007962 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007963 timeo = schedule_timeout(timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08007964 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007965 }
7966
7967 err = -EINVAL;
7968 if (!sctp_sstate(sk, LISTENING))
7969 break;
7970
7971 err = 0;
7972 if (!list_empty(&ep->asocs))
7973 break;
7974
7975 err = sock_intr_errno(timeo);
7976 if (signal_pending(current))
7977 break;
7978
7979 err = -EAGAIN;
7980 if (!timeo)
7981 break;
7982 }
7983
Eric Dumazetaa395142010-04-20 13:03:51 +00007984 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007985
7986 return err;
7987}
7988
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +02007989static void sctp_wait_for_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007990{
7991 DEFINE_WAIT(wait);
7992
7993 do {
Eric Dumazetaa395142010-04-20 13:03:51 +00007994 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007995 if (list_empty(&sctp_sk(sk)->ep->asocs))
7996 break;
wangweidong048ed4b2014-01-21 15:44:11 +08007997 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007998 timeout = schedule_timeout(timeout);
wangweidong048ed4b2014-01-21 15:44:11 +08007999 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008000 } while (!signal_pending(current) && timeout);
8001
Eric Dumazetaa395142010-04-20 13:03:51 +00008002 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008003}
8004
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008005static void sctp_skb_set_owner_r_frag(struct sk_buff *skb, struct sock *sk)
8006{
8007 struct sk_buff *frag;
8008
8009 if (!skb->data_len)
8010 goto done;
8011
8012 /* Don't forget the fragments. */
David S. Miller1b003be2009-06-09 00:22:35 -07008013 skb_walk_frags(skb, frag)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008014 sctp_skb_set_owner_r_frag(frag, sk);
8015
8016done:
8017 sctp_skb_set_owner_r(skb, sk);
8018}
8019
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008020void sctp_copy_sock(struct sock *newsk, struct sock *sk,
8021 struct sctp_association *asoc)
8022{
8023 struct inet_sock *inet = inet_sk(sk);
Julia Lawall09cb47a2010-01-21 02:43:20 -08008024 struct inet_sock *newinet;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008025
8026 newsk->sk_type = sk->sk_type;
8027 newsk->sk_bound_dev_if = sk->sk_bound_dev_if;
8028 newsk->sk_flags = sk->sk_flags;
Marcelo Ricardo Leitner50a5ffb2015-12-04 15:14:05 -02008029 newsk->sk_tsflags = sk->sk_tsflags;
Tom Herbert28448b82014-05-23 08:47:19 -07008030 newsk->sk_no_check_tx = sk->sk_no_check_tx;
8031 newsk->sk_no_check_rx = sk->sk_no_check_rx;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008032 newsk->sk_reuse = sk->sk_reuse;
8033
8034 newsk->sk_shutdown = sk->sk_shutdown;
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02008035 newsk->sk_destruct = sctp_destruct_sock;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008036 newsk->sk_family = sk->sk_family;
8037 newsk->sk_protocol = IPPROTO_SCTP;
8038 newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
8039 newsk->sk_sndbuf = sk->sk_sndbuf;
8040 newsk->sk_rcvbuf = sk->sk_rcvbuf;
8041 newsk->sk_lingertime = sk->sk_lingertime;
8042 newsk->sk_rcvtimeo = sk->sk_rcvtimeo;
8043 newsk->sk_sndtimeo = sk->sk_sndtimeo;
Marcelo Ricardo Leitner486bdee2016-04-12 18:11:31 -03008044 newsk->sk_rxhash = sk->sk_rxhash;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008045
8046 newinet = inet_sk(newsk);
8047
8048 /* Initialize sk's sport, dport, rcv_saddr and daddr for
8049 * getsockname() and getpeername()
8050 */
Eric Dumazetc720c7e2009-10-15 06:30:45 +00008051 newinet->inet_sport = inet->inet_sport;
8052 newinet->inet_saddr = inet->inet_saddr;
8053 newinet->inet_rcv_saddr = inet->inet_rcv_saddr;
8054 newinet->inet_dport = htons(asoc->peer.port);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008055 newinet->pmtudisc = inet->pmtudisc;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00008056 newinet->inet_id = asoc->next_tsn ^ jiffies;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008057
8058 newinet->uc_ttl = inet->uc_ttl;
8059 newinet->mc_loop = 1;
8060 newinet->mc_ttl = 1;
8061 newinet->mc_index = 0;
8062 newinet->mc_list = NULL;
Marcelo Ricardo Leitner01ce63c2015-12-04 15:14:04 -02008063
8064 if (newsk->sk_flags & SK_FLAGS_TIMESTAMP)
8065 net_enable_timestamp();
Marcelo Ricardo Leitner3538a5c2015-12-23 16:44:09 -02008066
8067 security_sk_clone(sk, newsk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008068}
8069
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03008070static inline void sctp_copy_descendant(struct sock *sk_to,
8071 const struct sock *sk_from)
8072{
8073 int ancestor_size = sizeof(struct inet_sock) +
8074 sizeof(struct sctp_sock) -
8075 offsetof(struct sctp_sock, auto_asconf_list);
8076
8077 if (sk_from->sk_family == PF_INET6)
8078 ancestor_size += sizeof(struct ipv6_pinfo);
8079
8080 __inet_sk_copy_descendant(sk_to, sk_from, ancestor_size);
8081}
8082
Linus Torvalds1da177e2005-04-16 15:20:36 -07008083/* Populate the fields of the newsk from the oldsk and migrate the assoc
8084 * and its messages to the newsk.
8085 */
8086static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
8087 struct sctp_association *assoc,
8088 sctp_socket_type_t type)
8089{
8090 struct sctp_sock *oldsp = sctp_sk(oldsk);
8091 struct sctp_sock *newsp = sctp_sk(newsk);
8092 struct sctp_bind_bucket *pp; /* hash list port iterator */
8093 struct sctp_endpoint *newep = newsp->ep;
8094 struct sk_buff *skb, *tmp;
8095 struct sctp_ulpevent *event;
Vlad Yasevichf26f7c42007-12-06 22:50:27 -08008096 struct sctp_bind_hashbucket *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008097
8098 /* Migrate socket buffer sizes and all the socket level options to the
8099 * new socket.
8100 */
8101 newsk->sk_sndbuf = oldsk->sk_sndbuf;
8102 newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
8103 /* Brute force copy old sctp opt. */
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03008104 sctp_copy_descendant(newsk, oldsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008105
8106 /* Restore the ep value that was overwritten with the above structure
8107 * copy.
8108 */
8109 newsp->ep = newep;
8110 newsp->hmac = NULL;
8111
8112 /* Hook this new socket in to the bind_hash list. */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008113 head = &sctp_port_hashtable[sctp_phashfn(sock_net(oldsk),
8114 inet_sk(oldsk)->inet_num)];
Nicholas Mc Guire489ce5f2016-03-13 11:48:24 +01008115 spin_lock_bh(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008116 pp = sctp_sk(oldsk)->bind_hash;
8117 sk_add_bind_node(newsk, &pp->owner);
8118 sctp_sk(newsk)->bind_hash = pp;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00008119 inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num;
Nicholas Mc Guire489ce5f2016-03-13 11:48:24 +01008120 spin_unlock_bh(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008121
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07008122 /* Copy the bind_addr list from the original endpoint to the new
8123 * endpoint so that we can handle restarts properly
8124 */
Vlad Yasevich8e71a112007-12-06 22:50:54 -08008125 sctp_bind_addr_dup(&newsp->ep->base.bind_addr,
8126 &oldsp->ep->base.bind_addr, GFP_KERNEL);
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07008127
Linus Torvalds1da177e2005-04-16 15:20:36 -07008128 /* Move any messages in the old socket's receive queue that are for the
8129 * peeled off association to the new socket's receive queue.
8130 */
8131 sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) {
8132 event = sctp_skb2event(skb);
8133 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07008134 __skb_unlink(skb, &oldsk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008135 __skb_queue_tail(&newsk->sk_receive_queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008136 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008137 }
8138 }
8139
8140 /* Clean up any messages pending delivery due to partial
8141 * delivery. Three cases:
8142 * 1) No partial deliver; no work.
8143 * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby.
8144 * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue.
8145 */
8146 skb_queue_head_init(&newsp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008147 atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008148
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008149 if (atomic_read(&sctp_sk(oldsk)->pd_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008150 struct sk_buff_head *queue;
8151
8152 /* Decide which queue to move pd_lobby skbs to. */
8153 if (assoc->ulpq.pd_mode) {
8154 queue = &newsp->pd_lobby;
8155 } else
8156 queue = &newsk->sk_receive_queue;
8157
8158 /* Walk through the pd_lobby, looking for skbs that
8159 * need moved to the new socket.
8160 */
8161 sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) {
8162 event = sctp_skb2event(skb);
8163 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07008164 __skb_unlink(skb, &oldsp->pd_lobby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008165 __skb_queue_tail(queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008166 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008167 }
8168 }
8169
8170 /* Clear up any skbs waiting for the partial
8171 * delivery to finish.
8172 */
8173 if (assoc->ulpq.pd_mode)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008174 sctp_clear_pd(oldsk, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008175
8176 }
8177
Wei Yongjun1bc4ee42009-07-05 19:45:48 +00008178 sctp_skb_for_each(skb, &assoc->ulpq.reasm, tmp)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008179 sctp_skb_set_owner_r_frag(skb, newsk);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008180
Wei Yongjun1bc4ee42009-07-05 19:45:48 +00008181 sctp_skb_for_each(skb, &assoc->ulpq.lobby, tmp)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008182 sctp_skb_set_owner_r_frag(skb, newsk);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008183
Linus Torvalds1da177e2005-04-16 15:20:36 -07008184 /* Set the type of socket to indicate that it is peeled off from the
8185 * original UDP-style socket or created with the accept() call on a
8186 * TCP-style socket..
8187 */
8188 newsp->type = type;
8189
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07008190 /* Mark the new socket "in-use" by the user so that any packets
8191 * that may arrive on the association after we've moved it are
8192 * queued to the backlog. This prevents a potential race between
8193 * backlog processing on the old socket and new-packet processing
8194 * on the new socket.
Zach Brown5131a182007-06-22 15:14:46 -07008195 *
8196 * The caller has just allocated newsk so we can guarantee that other
8197 * paths won't try to lock it and then oldsk.
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07008198 */
Zach Brown5131a182007-06-22 15:14:46 -07008199 lock_sock_nested(newsk, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008200 sctp_assoc_migrate(assoc, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008201
8202 /* If the association on the newsk is already closed before accept()
8203 * is called, set RCV_SHUTDOWN flag.
8204 */
Xin Longd46e4162016-06-09 22:48:18 +08008205 if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP)) {
Xin Long141ddef2016-06-16 01:15:06 +08008206 newsk->sk_state = SCTP_SS_CLOSED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008207 newsk->sk_shutdown |= RCV_SHUTDOWN;
Xin Longd46e4162016-06-09 22:48:18 +08008208 } else {
8209 newsk->sk_state = SCTP_SS_ESTABLISHED;
8210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008211
wangweidong048ed4b2014-01-21 15:44:11 +08008212 release_sock(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008213}
8214
Neil Horman4d93df02007-08-15 16:07:44 -07008215
Linus Torvalds1da177e2005-04-16 15:20:36 -07008216/* This proto struct describes the ULP interface for SCTP. */
8217struct proto sctp_prot = {
8218 .name = "SCTP",
8219 .owner = THIS_MODULE,
8220 .close = sctp_close,
8221 .connect = sctp_connect,
8222 .disconnect = sctp_disconnect,
8223 .accept = sctp_accept,
8224 .ioctl = sctp_ioctl,
8225 .init = sctp_init_sock,
8226 .destroy = sctp_destroy_sock,
8227 .shutdown = sctp_shutdown,
8228 .setsockopt = sctp_setsockopt,
8229 .getsockopt = sctp_getsockopt,
8230 .sendmsg = sctp_sendmsg,
8231 .recvmsg = sctp_recvmsg,
8232 .bind = sctp_bind,
8233 .backlog_rcv = sctp_backlog_rcv,
8234 .hash = sctp_hash,
8235 .unhash = sctp_unhash,
8236 .get_port = sctp_get_port,
8237 .obj_size = sizeof(struct sctp_sock),
Neil Horman4d93df02007-08-15 16:07:44 -07008238 .sysctl_mem = sysctl_sctp_mem,
8239 .sysctl_rmem = sysctl_sctp_rmem,
8240 .sysctl_wmem = sysctl_sctp_wmem,
8241 .memory_pressure = &sctp_memory_pressure,
8242 .enter_memory_pressure = sctp_enter_memory_pressure,
8243 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08008244 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008245};
8246
Eric Dumazetdfd56b82011-12-10 09:48:31 +00008247#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazet8295b6d2007-11-05 23:40:28 -08008248
Eric Dumazet602dd622015-12-01 07:20:07 -08008249#include <net/transp_v6.h>
8250static void sctp_v6_destroy_sock(struct sock *sk)
8251{
8252 sctp_destroy_sock(sk);
8253 inet6_destroy_sock(sk);
8254}
8255
Linus Torvalds1da177e2005-04-16 15:20:36 -07008256struct proto sctpv6_prot = {
8257 .name = "SCTPv6",
8258 .owner = THIS_MODULE,
8259 .close = sctp_close,
8260 .connect = sctp_connect,
8261 .disconnect = sctp_disconnect,
8262 .accept = sctp_accept,
8263 .ioctl = sctp_ioctl,
8264 .init = sctp_init_sock,
Eric Dumazet602dd622015-12-01 07:20:07 -08008265 .destroy = sctp_v6_destroy_sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008266 .shutdown = sctp_shutdown,
8267 .setsockopt = sctp_setsockopt,
8268 .getsockopt = sctp_getsockopt,
8269 .sendmsg = sctp_sendmsg,
8270 .recvmsg = sctp_recvmsg,
8271 .bind = sctp_bind,
8272 .backlog_rcv = sctp_backlog_rcv,
8273 .hash = sctp_hash,
8274 .unhash = sctp_unhash,
8275 .get_port = sctp_get_port,
8276 .obj_size = sizeof(struct sctp6_sock),
Neil Horman4d93df02007-08-15 16:07:44 -07008277 .sysctl_mem = sysctl_sctp_mem,
8278 .sysctl_rmem = sysctl_sctp_rmem,
8279 .sysctl_wmem = sysctl_sctp_wmem,
8280 .memory_pressure = &sctp_memory_pressure,
8281 .enter_memory_pressure = sctp_enter_memory_pressure,
8282 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08008283 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008284};
Eric Dumazetdfd56b82011-12-10 09:48:31 +00008285#endif /* IS_ENABLED(CONFIG_IPV6) */