blob: c2cccc9902d63fc855a9aeda13e7ed621782e6d1 [file] [log] [blame]
Vlad Yasevich60c778b2008-01-11 09:57:09 -05001/* SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999-2000 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 * Copyright (c) 2001-2003 Intel Corp.
6 * Copyright (c) 2001-2002 Nokia, Inc.
7 * Copyright (c) 2001 La Monte H.P. Yarroll
8 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05009 * This file is part of the SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * These functions interface with the sockets layer to implement the
12 * SCTP Extensions for the Sockets API.
13 *
14 * Note that the descriptions from the specification are USER level
15 * functions--this file is the functions which populate the struct proto
16 * for SCTP which is the BOTTOM of the sockets interface.
17 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050018 * This SCTP implementation is free software;
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * you can redistribute it and/or modify it under the terms of
20 * the GNU General Public License as published by
21 * the Free Software Foundation; either version 2, or (at your option)
22 * any later version.
23 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050024 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
26 * ************************
27 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
28 * See the GNU General Public License for more details.
29 *
30 * You should have received a copy of the GNU General Public License
Jeff Kirsher4b2f13a2013-12-06 06:28:48 -080031 * along with GNU CC; see the file COPYING. If not, see
32 * <http://www.gnu.org/licenses/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 *
34 * Please send any bug reports or fixes you make to the
35 * email address(es):
Daniel Borkmann91705c62013-07-23 14:51:47 +020036 * lksctp developers <linux-sctp@vger.kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * Written or modified by:
39 * La Monte H.P. Yarroll <piggy@acm.org>
40 * Narasimha Budihal <narsi@refcode.org>
41 * Karl Knutson <karl@athena.chicago.il.us>
42 * Jon Grimm <jgrimm@us.ibm.com>
43 * Xingang Guo <xingang.guo@intel.com>
44 * Daisy Chang <daisyc@us.ibm.com>
45 * Sridhar Samudrala <samudrala@us.ibm.com>
46 * Inaky Perez-Gonzalez <inaky.gonzalez@intel.com>
47 * Ardelle Fan <ardelle.fan@intel.com>
48 * Ryan Layer <rmlayer@us.ibm.com>
49 * Anup Pemmaiah <pemmaiah@cc.usu.edu>
50 * Kevin Gao <kevin.gao@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 */
52
Joe Perches145ce502010-08-24 13:21:08 +000053#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
54
Herbert Xu5821c762016-01-24 21:20:12 +080055#include <crypto/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <linux/types.h>
57#include <linux/kernel.h>
58#include <linux/wait.h>
59#include <linux/time.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010060#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/ip.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080062#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/fcntl.h>
64#include <linux/poll.h>
65#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090066#include <linux/slab.h>
Al Viro56b31d12012-08-18 00:25:51 -040067#include <linux/file.h>
Daniel Borkmannffd59392014-02-17 12:11:11 +010068#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70#include <net/ip.h>
71#include <net/icmp.h>
72#include <net/route.h>
73#include <net/ipv6.h>
74#include <net/inet_common.h>
Neil Horman8465a5f2014-04-17 15:26:51 -040075#include <net/busy_poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77#include <linux/socket.h> /* for sa_family_t */
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040078#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <net/sock.h>
80#include <net/sctp/sctp.h>
81#include <net/sctp/sm.h>
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -030082#include <net/sctp/stream_sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/* Forward declarations for internal helper functions. */
85static int sctp_writeable(struct sock *sk);
86static void sctp_wfree(struct sk_buff *skb);
Xin Longcea0cc82017-11-15 16:57:26 +080087static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
88 size_t msg_len, struct sock **orig_sk);
wangweidong26ac8e52013-12-23 12:16:51 +080089static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
91static int sctp_wait_for_accept(struct sock *sk, long timeo);
92static void sctp_wait_for_close(struct sock *sk, long timeo);
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +020093static void sctp_destruct_sock(struct sock *sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
95 union sctp_addr *addr, int len);
96static int sctp_bindx_add(struct sock *, struct sockaddr *, int);
97static int sctp_bindx_rem(struct sock *, struct sockaddr *, int);
98static int sctp_send_asconf_add_ip(struct sock *, struct sockaddr *, int);
99static int sctp_send_asconf_del_ip(struct sock *, struct sockaddr *, int);
100static int sctp_send_asconf(struct sctp_association *asoc,
101 struct sctp_chunk *chunk);
102static int sctp_do_bind(struct sock *, union sctp_addr *, int);
103static int sctp_autobind(struct sock *sk);
Xin Longb7ef2612017-08-11 10:23:50 +0800104static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
105 struct sctp_association *assoc,
106 enum sctp_socket_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Eric Dumazet06044752017-06-07 13:29:12 -0700108static unsigned long sctp_memory_pressure;
Eric Dumazet8d987e52010-11-09 23:24:26 +0000109static atomic_long_t sctp_memory_allocated;
Eric Dumazet17483762008-11-25 21:16:35 -0800110struct percpu_counter sctp_sockets_allocated;
Neil Horman4d93df02007-08-15 16:07:44 -0700111
Pavel Emelyanov5c52ba12008-07-16 20:28:10 -0700112static void sctp_enter_memory_pressure(struct sock *sk)
Neil Horman4d93df02007-08-15 16:07:44 -0700113{
114 sctp_memory_pressure = 1;
115}
116
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118/* Get the sndbuf space available at the time on the association. */
119static inline int sctp_wspace(struct sctp_association *asoc)
120{
Neil Horman4d93df02007-08-15 16:07:44 -0700121 int amt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Neil Horman4d93df02007-08-15 16:07:44 -0700123 if (asoc->ep->sndbuf_policy)
124 amt = asoc->sndbuf_used;
125 else
Eric Dumazet31e6d362009-06-17 19:05:41 -0700126 amt = sk_wmem_alloc_get(asoc->base.sk);
Neil Horman4d93df02007-08-15 16:07:44 -0700127
128 if (amt >= asoc->base.sk->sk_sndbuf) {
129 if (asoc->base.sk->sk_userlocks & SOCK_SNDBUF_LOCK)
130 amt = 0;
131 else {
132 amt = sk_stream_wspace(asoc->base.sk);
133 if (amt < 0)
134 amt = 0;
135 }
Neil Horman4eb701d2005-04-28 12:02:04 -0700136 } else {
Neil Horman4d93df02007-08-15 16:07:44 -0700137 amt = asoc->base.sk->sk_sndbuf - amt;
Neil Horman4eb701d2005-04-28 12:02:04 -0700138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return amt;
140}
141
142/* Increment the used sndbuf space count of the corresponding association by
143 * the size of the outgoing data chunk.
144 * Also, set the skb destructor for sndbuf accounting later.
145 *
146 * Since it is always 1-1 between chunk and skb, and also a new skb is always
147 * allocated for chunk bundling in sctp_packet_transmit(), we can use the
148 * destructor in the data chunk skb for the purpose of the sndbuf space
149 * tracking.
150 */
151static inline void sctp_set_owner_w(struct sctp_chunk *chunk)
152{
153 struct sctp_association *asoc = chunk->asoc;
154 struct sock *sk = asoc->base.sk;
155
156 /* The sndbuf space is tracked per association. */
157 sctp_association_hold(asoc);
158
Neil Horman4eb701d2005-04-28 12:02:04 -0700159 skb_set_owner_w(chunk->skb, sk);
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 chunk->skb->destructor = sctp_wfree;
162 /* Save the chunk pointer in skb for sctp_wfree to use later. */
Daniel Borkmannf869c912014-11-20 01:54:48 +0100163 skb_shinfo(chunk->skb)->destructor_arg = chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Neil Horman4eb701d2005-04-28 12:02:04 -0700165 asoc->sndbuf_used += SCTP_DATA_SNDSIZE(chunk) +
166 sizeof(struct sk_buff) +
167 sizeof(struct sctp_chunk);
168
Reshetova, Elena14afee42017-06-30 13:08:00 +0300169 refcount_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800170 sk->sk_wmem_queued += chunk->skb->truesize;
171 sk_mem_charge(sk, chunk->skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
Xin Longd04adf12017-10-28 02:13:29 +0800174static void sctp_clear_owner_w(struct sctp_chunk *chunk)
175{
176 skb_orphan(chunk->skb);
177}
178
179static void sctp_for_each_tx_datachunk(struct sctp_association *asoc,
180 void (*cb)(struct sctp_chunk *))
181
182{
183 struct sctp_outq *q = &asoc->outqueue;
184 struct sctp_transport *t;
185 struct sctp_chunk *chunk;
186
187 list_for_each_entry(t, &asoc->peer.transport_addr_list, transports)
188 list_for_each_entry(chunk, &t->transmitted, transmitted_list)
189 cb(chunk);
190
191 list_for_each_entry(chunk, &q->retransmit, list)
192 cb(chunk);
193
194 list_for_each_entry(chunk, &q->sacked, list)
195 cb(chunk);
196
197 list_for_each_entry(chunk, &q->abandoned, list)
198 cb(chunk);
199
200 list_for_each_entry(chunk, &q->out_chunk_list, list)
201 cb(chunk);
202}
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204/* Verify that this is a valid address. */
205static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr,
206 int len)
207{
208 struct sctp_af *af;
209
210 /* Verify basic sockaddr. */
211 af = sctp_sockaddr_af(sctp_sk(sk), addr, len);
212 if (!af)
213 return -EINVAL;
214
215 /* Is this a valid SCTP address? */
Vlad Yasevich5636bef2006-06-17 22:55:35 -0700216 if (!af->addr_valid(addr, sctp_sk(sk), NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return -EINVAL;
218
219 if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr)))
220 return -EINVAL;
221
222 return 0;
223}
224
225/* Look up the association by its id. If this is not a UDP-style
226 * socket, the ID field is always ignored.
227 */
228struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
229{
230 struct sctp_association *asoc = NULL;
231
232 /* If this is not a UDP-style socket, assoc id should be ignored. */
233 if (!sctp_style(sk, UDP)) {
234 /* Return NULL if the socket state is not ESTABLISHED. It
235 * could be a TCP-style listening socket or a socket which
236 * hasn't yet called connect() to establish an association.
237 */
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -0300238 if (!sctp_sstate(sk, ESTABLISHED) && !sctp_sstate(sk, CLOSING))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return NULL;
240
241 /* Get the first and the only association from the list. */
242 if (!list_empty(&sctp_sk(sk)->ep->asocs))
243 asoc = list_entry(sctp_sk(sk)->ep->asocs.next,
244 struct sctp_association, asocs);
245 return asoc;
246 }
247
248 /* Otherwise this is a UDP-style socket. */
249 if (!id || (id == (sctp_assoc_t)-1))
250 return NULL;
251
252 spin_lock_bh(&sctp_assocs_id_lock);
253 asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id);
254 spin_unlock_bh(&sctp_assocs_id_lock);
255
256 if (!asoc || (asoc->base.sk != sk) || asoc->base.dead)
257 return NULL;
258
259 return asoc;
260}
261
262/* Look up the transport from an address and an assoc id. If both address and
263 * id are specified, the associations matching the address and the id should be
264 * the same.
265 */
266static struct sctp_transport *sctp_addr_id2transport(struct sock *sk,
267 struct sockaddr_storage *addr,
268 sctp_assoc_t id)
269{
270 struct sctp_association *addr_asoc = NULL, *id_asoc = NULL;
Xin Long6f29a132017-01-24 14:01:53 +0800271 struct sctp_af *af = sctp_get_af_specific(addr->ss_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 union sctp_addr *laddr = (union sctp_addr *)addr;
Xin Long6f29a132017-01-24 14:01:53 +0800273 struct sctp_transport *transport;
274
Xin Long912964e2017-02-07 20:56:08 +0800275 if (!af || sctp_verify_addr(sk, laddr, af->sockaddr_len))
Xin Long6f29a132017-01-24 14:01:53 +0800276 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
Al Virocd4ff032006-11-20 17:11:33 -0800279 laddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 &transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 if (!addr_asoc)
283 return NULL;
284
285 id_asoc = sctp_id2assoc(sk, id);
286 if (id_asoc && (id_asoc != addr_asoc))
287 return NULL;
288
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600289 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 (union sctp_addr *)addr);
291
292 return transport;
293}
294
295/* API 3.1.2 bind() - UDP Style Syntax
296 * The syntax of bind() is,
297 *
298 * ret = bind(int sd, struct sockaddr *addr, int addrlen);
299 *
300 * sd - the socket descriptor returned by socket().
301 * addr - the address structure (struct sockaddr_in or struct
302 * sockaddr_in6 [RFC 2553]),
303 * addr_len - the size of the address structure.
304 */
Daniel Borkmanndda91922013-06-17 11:40:05 +0200305static int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
307 int retval = 0;
308
wangweidong048ed4b2014-01-21 15:44:11 +0800309 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Daniel Borkmannbb333812013-06-28 19:49:40 +0200311 pr_debug("%s: sk:%p, addr:%p, addr_len:%d\n", __func__, sk,
312 addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 /* Disallow binding twice. */
315 if (!sctp_sk(sk)->ep->base.bind_addr.port)
Frank Filz3f7a87d2005-06-20 13:14:57 -0700316 retval = sctp_do_bind(sk, (union sctp_addr *)addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 addr_len);
318 else
319 retval = -EINVAL;
320
wangweidong048ed4b2014-01-21 15:44:11 +0800321 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 return retval;
324}
325
326static long sctp_get_port_local(struct sock *, union sctp_addr *);
327
328/* Verify this is a valid sockaddr. */
329static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
330 union sctp_addr *addr, int len)
331{
332 struct sctp_af *af;
333
334 /* Check minimum size. */
335 if (len < sizeof (struct sockaddr))
336 return NULL;
337
Vlad Yasevich7dab83d2008-07-18 23:05:40 -0700338 /* V4 mapped address are really of AF_INET family */
339 if (addr->sa.sa_family == AF_INET6 &&
340 ipv6_addr_v4mapped(&addr->v6.sin6_addr)) {
341 if (!opt->pf->af_supported(AF_INET, opt))
342 return NULL;
343 } else {
344 /* Does this PF support this AF? */
345 if (!opt->pf->af_supported(addr->sa.sa_family, opt))
346 return NULL;
347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 /* If we get this far, af is valid. */
350 af = sctp_get_af_specific(addr->sa.sa_family);
351
352 if (len < af->sockaddr_len)
353 return NULL;
354
355 return af;
356}
357
358/* Bind a local address either to an endpoint or to an association. */
Daniel Borkmanndda91922013-06-17 11:40:05 +0200359static int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Eric W. Biederman35946982012-11-16 03:03:12 +0000361 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 struct sctp_sock *sp = sctp_sk(sk);
363 struct sctp_endpoint *ep = sp->ep;
364 struct sctp_bind_addr *bp = &ep->base.bind_addr;
365 struct sctp_af *af;
366 unsigned short snum;
367 int ret = 0;
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 /* Common sockaddr verification. */
370 af = sctp_sockaddr_af(sp, addr, len);
Frank Filz3f7a87d2005-06-20 13:14:57 -0700371 if (!af) {
Daniel Borkmannbb333812013-06-28 19:49:40 +0200372 pr_debug("%s: sk:%p, newaddr:%p, len:%d EINVAL\n",
373 __func__, sk, addr, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return -EINVAL;
Frank Filz3f7a87d2005-06-20 13:14:57 -0700375 }
376
377 snum = ntohs(addr->v4.sin_port);
378
Daniel Borkmannbb333812013-06-28 19:49:40 +0200379 pr_debug("%s: sk:%p, new addr:%pISc, port:%d, new port:%d, len:%d\n",
380 __func__, sk, &addr->sa, bp->port, snum, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 /* PF specific bind() address verification. */
383 if (!sp->pf->bind_verify(sp, addr))
384 return -EADDRNOTAVAIL;
385
Vlad Yasevich8b358052007-05-15 17:14:58 -0400386 /* We must either be unbound, or bind to the same port.
387 * It's OK to allow 0 ports if we are already bound.
388 * We'll just inhert an already bound port in this case
389 */
390 if (bp->port) {
391 if (!snum)
392 snum = bp->port;
393 else if (snum != bp->port) {
Daniel Borkmannbb333812013-06-28 19:49:40 +0200394 pr_debug("%s: new port %d doesn't match existing port "
395 "%d\n", __func__, snum, bp->port);
Vlad Yasevich8b358052007-05-15 17:14:58 -0400396 return -EINVAL;
397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
399
Krister Johansen4548b682017-01-20 17:49:11 -0800400 if (snum && snum < inet_prot_sock(net) &&
Eric W. Biederman35946982012-11-16 03:03:12 +0000401 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 return -EACCES;
403
Vlad Yasevich4e540642008-07-18 23:06:32 -0700404 /* See if the address matches any of the addresses we may have
405 * already bound before checking against other endpoints.
406 */
407 if (sctp_bind_addr_match(bp, addr, sp))
408 return -EINVAL;
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 /* Make sure we are allowed to bind here.
411 * The function sctp_get_port_local() does duplicate address
412 * detection.
413 */
Vlad Yasevich2772b492007-08-21 14:24:30 +0900414 addr->v4.sin_port = htons(snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if ((ret = sctp_get_port_local(sk, addr))) {
Vlad Yasevich4e540642008-07-18 23:06:32 -0700416 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
418
419 /* Refresh ephemeral port. */
420 if (!bp->port)
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000421 bp->port = inet_sk(sk)->inet_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Vlad Yasevich559cf712007-09-16 16:03:28 -0700423 /* Add the address to the bind address list.
424 * Use GFP_ATOMIC since BHs will be disabled.
425 */
Marcelo Ricardo Leitner133800d2016-03-08 10:34:28 -0300426 ret = sctp_add_bind_addr(bp, addr, af->sockaddr_len,
427 SCTP_ADDR_SRC, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 /* Copy back into socket for getsockname() use. */
430 if (!ret) {
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000431 inet_sk(sk)->inet_sport = htons(inet_sk(sk)->inet_num);
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600432 sp->pf->to_sk_saddr(addr, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
434
435 return ret;
436}
437
438 /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
439 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900440 * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 * at any one time. If a sender, after sending an ASCONF chunk, decides
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900442 * it needs to transfer another ASCONF Chunk, it MUST wait until the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900444 * subsequent ASCONF. Note this restriction binds each side, so at any
445 * time two ASCONF may be in-transit on any given association (one sent
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 * from each endpoint).
447 */
448static int sctp_send_asconf(struct sctp_association *asoc,
449 struct sctp_chunk *chunk)
450{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +0000451 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 int retval = 0;
453
454 /* If there is an outstanding ASCONF chunk, queue it for later
455 * transmission.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900456 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if (asoc->addip_last_asconf) {
David S. Miller79af02c2005-07-08 21:47:49 -0700458 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900459 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
461
462 /* Hold the chunk until an ASCONF_ACK is received. */
463 sctp_chunk_hold(chunk);
Eric W. Biederman55e26eb2012-08-07 07:25:24 +0000464 retval = sctp_primitive_ASCONF(net, asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (retval)
466 sctp_chunk_free(chunk);
467 else
468 asoc->addip_last_asconf = chunk;
469
470out:
471 return retval;
472}
473
474/* Add a list of addresses as bind addresses to local endpoint or
475 * association.
476 *
477 * Basically run through each address specified in the addrs/addrcnt
478 * array/length pair, determine if it is IPv6 or IPv4 and call
479 * sctp_do_bind() on it.
480 *
481 * If any of them fails, then the operation will be reversed and the
482 * ones that were added will be removed.
483 *
484 * Only sctp_setsockopt_bindx() is supposed to call this function.
485 */
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +0200486static int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
488 int cnt;
489 int retval = 0;
490 void *addr_buf;
491 struct sockaddr *sa_addr;
492 struct sctp_af *af;
493
Daniel Borkmannbb333812013-06-28 19:49:40 +0200494 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n", __func__, sk,
495 addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 addr_buf = addrs;
498 for (cnt = 0; cnt < addrcnt; cnt++) {
499 /* The list may contain either IPv4 or IPv6 address;
500 * determine the address length for walking thru the list.
501 */
Joe Perchesea110732011-06-13 16:21:26 +0000502 sa_addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 af = sctp_get_af_specific(sa_addr->sa_family);
504 if (!af) {
505 retval = -EINVAL;
506 goto err_bindx_add;
507 }
508
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900509 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 af->sockaddr_len);
511
512 addr_buf += af->sockaddr_len;
513
514err_bindx_add:
515 if (retval < 0) {
516 /* Failed. Cleanup the ones that have been added */
517 if (cnt > 0)
518 sctp_bindx_rem(sk, addrs, cnt);
519 return retval;
520 }
521 }
522
523 return retval;
524}
525
526/* Send an ASCONF chunk with Add IP address parameters to all the peers of the
527 * associations that are part of the endpoint indicating that a list of local
528 * addresses are added to the endpoint.
529 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900530 * If any of the addresses is already in the bind address list of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 * association, we do not send the chunk for that association. But it will not
532 * affect other associations.
533 *
534 * Only sctp_setsockopt_bindx() is supposed to call this function.
535 */
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900536static int sctp_send_asconf_add_ip(struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 struct sockaddr *addrs,
538 int addrcnt)
539{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000540 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 struct sctp_sock *sp;
542 struct sctp_endpoint *ep;
543 struct sctp_association *asoc;
544 struct sctp_bind_addr *bp;
545 struct sctp_chunk *chunk;
546 struct sctp_sockaddr_entry *laddr;
547 union sctp_addr *addr;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700548 union sctp_addr saveaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 void *addr_buf;
550 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 struct list_head *p;
552 int i;
553 int retval = 0;
554
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000555 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return retval;
557
558 sp = sctp_sk(sk);
559 ep = sp->ep;
560
Daniel Borkmannbb333812013-06-28 19:49:40 +0200561 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
562 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700564 list_for_each_entry(asoc, &ep->asocs, asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (!asoc->peer.asconf_capable)
566 continue;
567
568 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_ADD_IP)
569 continue;
570
571 if (!sctp_state(asoc, ESTABLISHED))
572 continue;
573
574 /* Check if any address in the packed array of addresses is
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900575 * in the bind address list of the association. If so,
576 * do not send the asconf chunk to its peer, but continue with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 * other associations.
578 */
579 addr_buf = addrs;
580 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000581 addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 af = sctp_get_af_specific(addr->v4.sin_family);
583 if (!af) {
584 retval = -EINVAL;
585 goto out;
586 }
587
588 if (sctp_assoc_lookup_laddr(asoc, addr))
589 break;
590
591 addr_buf += af->sockaddr_len;
592 }
593 if (i < addrcnt)
594 continue;
595
Vlad Yasevich559cf712007-09-16 16:03:28 -0700596 /* Use the first valid address in bind addr list of
597 * association as Address Parameter of ASCONF CHUNK.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 bp = &asoc->base.bind_addr;
600 p = bp->address_list.next;
601 laddr = list_entry(p, struct sctp_sockaddr_entry, list);
Al Viro5ae955c2006-11-20 17:22:08 -0800602 chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 addrcnt, SCTP_PARAM_ADD_IP);
604 if (!chunk) {
605 retval = -ENOMEM;
606 goto out;
607 }
608
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700609 /* Add the new addresses to the bind address list with
610 * use_as_src set to 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700612 addr_buf = addrs;
613 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000614 addr = addr_buf;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700615 af = sctp_get_af_specific(addr->v4.sin_family);
616 memcpy(&saveaddr, addr, af->sockaddr_len);
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800617 retval = sctp_add_bind_addr(bp, &saveaddr,
Marcelo Ricardo Leitner133800d2016-03-08 10:34:28 -0300618 sizeof(saveaddr),
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800619 SCTP_ADDR_NEW, GFP_ATOMIC);
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700620 addr_buf += af->sockaddr_len;
621 }
Michio Honda8a07eb02011-04-26 20:19:36 +0900622 if (asoc->src_out_of_asoc_ok) {
623 struct sctp_transport *trans;
624
625 list_for_each_entry(trans,
626 &asoc->peer.transport_addr_list, transports) {
627 /* Clear the source and route cache */
Julian Anastasovc86a7732017-02-06 23:14:13 +0200628 sctp_transport_dst_release(trans);
Michio Honda8a07eb02011-04-26 20:19:36 +0900629 trans->cwnd = min(4*asoc->pathmtu, max_t(__u32,
630 2*asoc->pathmtu, 4380));
631 trans->ssthresh = asoc->peer.i.a_rwnd;
632 trans->rto = asoc->rto_initial;
Michele Baldessari196d6752012-12-01 04:49:42 +0000633 sctp_max_rto(asoc, trans);
Michio Honda8a07eb02011-04-26 20:19:36 +0900634 trans->rtt = trans->srtt = trans->rttvar = 0;
635 sctp_transport_route(trans, NULL,
636 sctp_sk(asoc->base.sk));
637 }
638 }
639 retval = sctp_send_asconf(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
641
642out:
643 return retval;
644}
645
646/* Remove a list of addresses from bind addresses list. Do not remove the
647 * last address.
648 *
649 * Basically run through each address specified in the addrs/addrcnt
650 * array/length pair, determine if it is IPv6 or IPv4 and call
651 * sctp_del_bind() on it.
652 *
653 * If any of them fails, then the operation will be reversed and the
654 * ones that were removed will be added back.
655 *
656 * At least one address has to be left; if only one address is
657 * available, the operation will return -EBUSY.
658 *
659 * Only sctp_setsockopt_bindx() is supposed to call this function.
660 */
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +0200661static int sctp_bindx_rem(struct sock *sk, struct sockaddr *addrs, int addrcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
663 struct sctp_sock *sp = sctp_sk(sk);
664 struct sctp_endpoint *ep = sp->ep;
665 int cnt;
666 struct sctp_bind_addr *bp = &ep->base.bind_addr;
667 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 void *addr_buf;
Al Viroc9a08502006-11-20 17:07:48 -0800669 union sctp_addr *sa_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 struct sctp_af *af;
671
Daniel Borkmannbb333812013-06-28 19:49:40 +0200672 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
673 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 addr_buf = addrs;
676 for (cnt = 0; cnt < addrcnt; cnt++) {
677 /* If the bind address list is empty or if there is only one
678 * bind address, there is nothing more to be removed (we need
679 * at least one address here).
680 */
681 if (list_empty(&bp->address_list) ||
682 (sctp_list_single_entry(&bp->address_list))) {
683 retval = -EBUSY;
684 goto err_bindx_rem;
685 }
686
Joe Perchesea110732011-06-13 16:21:26 +0000687 sa_addr = addr_buf;
Al Viroc9a08502006-11-20 17:07:48 -0800688 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 if (!af) {
690 retval = -EINVAL;
691 goto err_bindx_rem;
692 }
Paolo Galtieri0304ff8a2007-04-17 12:52:36 -0700693
694 if (!af->addr_valid(sa_addr, sp, NULL)) {
695 retval = -EADDRNOTAVAIL;
696 goto err_bindx_rem;
697 }
698
Vlad Yasevichee9cbac2011-04-18 19:14:47 +0000699 if (sa_addr->v4.sin_port &&
700 sa_addr->v4.sin_port != htons(bp->port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 retval = -EINVAL;
702 goto err_bindx_rem;
703 }
704
Vlad Yasevichee9cbac2011-04-18 19:14:47 +0000705 if (!sa_addr->v4.sin_port)
706 sa_addr->v4.sin_port = htons(bp->port);
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 /* FIXME - There is probably a need to check if sk->sk_saddr and
709 * sk->sk_rcv_addr are currently set to one of the addresses to
710 * be removed. This is something which needs to be looked into
711 * when we are fixing the outstanding issues with multi-homing
712 * socket routing and failover schemes. Refer to comments in
713 * sctp_do_bind(). -daisy
714 */
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -0400715 retval = sctp_del_bind_addr(bp, sa_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 addr_buf += af->sockaddr_len;
718err_bindx_rem:
719 if (retval < 0) {
720 /* Failed. Add the ones that has been removed back */
721 if (cnt > 0)
722 sctp_bindx_add(sk, addrs, cnt);
723 return retval;
724 }
725 }
726
727 return retval;
728}
729
730/* Send an ASCONF chunk with Delete IP address parameters to all the peers of
731 * the associations that are part of the endpoint indicating that a list of
732 * local addresses are removed from the endpoint.
733 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900734 * If any of the addresses is already in the bind address list of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 * association, we do not send the chunk for that association. But it will not
736 * affect other associations.
737 *
738 * Only sctp_setsockopt_bindx() is supposed to call this function.
739 */
740static int sctp_send_asconf_del_ip(struct sock *sk,
741 struct sockaddr *addrs,
742 int addrcnt)
743{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000744 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 struct sctp_sock *sp;
746 struct sctp_endpoint *ep;
747 struct sctp_association *asoc;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700748 struct sctp_transport *transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 struct sctp_bind_addr *bp;
750 struct sctp_chunk *chunk;
751 union sctp_addr *laddr;
752 void *addr_buf;
753 struct sctp_af *af;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700754 struct sctp_sockaddr_entry *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 int i;
756 int retval = 0;
Michio Honda8a07eb02011-04-26 20:19:36 +0900757 int stored = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Michio Honda8a07eb02011-04-26 20:19:36 +0900759 chunk = NULL;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000760 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 return retval;
762
763 sp = sctp_sk(sk);
764 ep = sp->ep;
765
Daniel Borkmannbb333812013-06-28 19:49:40 +0200766 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
767 __func__, sk, addrs, addrcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700769 list_for_each_entry(asoc, &ep->asocs, asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 if (!asoc->peer.asconf_capable)
772 continue;
773
774 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_DEL_IP)
775 continue;
776
777 if (!sctp_state(asoc, ESTABLISHED))
778 continue;
779
780 /* Check if any address in the packed array of addresses is
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900781 * not present in the bind address list of the association.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 * If so, do not send the asconf chunk to its peer, but
783 * continue with other associations.
784 */
785 addr_buf = addrs;
786 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000787 laddr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 af = sctp_get_af_specific(laddr->v4.sin_family);
789 if (!af) {
790 retval = -EINVAL;
791 goto out;
792 }
793
794 if (!sctp_assoc_lookup_laddr(asoc, laddr))
795 break;
796
797 addr_buf += af->sockaddr_len;
798 }
799 if (i < addrcnt)
800 continue;
801
802 /* Find one address in the association's bind address list
803 * that is not in the packed array of addresses. This is to
804 * make sure that we do not delete all the addresses in the
805 * association.
806 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 bp = &asoc->base.bind_addr;
808 laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs,
809 addrcnt, sp);
Michio Honda8a07eb02011-04-26 20:19:36 +0900810 if ((laddr == NULL) && (addrcnt == 1)) {
811 if (asoc->asconf_addr_del_pending)
812 continue;
813 asoc->asconf_addr_del_pending =
814 kzalloc(sizeof(union sctp_addr), GFP_ATOMIC);
Michio Honda6d65e5e2011-06-10 16:42:14 +0900815 if (asoc->asconf_addr_del_pending == NULL) {
816 retval = -ENOMEM;
817 goto out;
818 }
Michio Honda8a07eb02011-04-26 20:19:36 +0900819 asoc->asconf_addr_del_pending->sa.sa_family =
820 addrs->sa_family;
821 asoc->asconf_addr_del_pending->v4.sin_port =
822 htons(bp->port);
823 if (addrs->sa_family == AF_INET) {
824 struct sockaddr_in *sin;
825
826 sin = (struct sockaddr_in *)addrs;
827 asoc->asconf_addr_del_pending->v4.sin_addr.s_addr = sin->sin_addr.s_addr;
828 } else if (addrs->sa_family == AF_INET6) {
829 struct sockaddr_in6 *sin6;
830
831 sin6 = (struct sockaddr_in6 *)addrs;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000832 asoc->asconf_addr_del_pending->v6.sin6_addr = sin6->sin6_addr;
Michio Honda8a07eb02011-04-26 20:19:36 +0900833 }
Daniel Borkmannbb333812013-06-28 19:49:40 +0200834
835 pr_debug("%s: keep the last address asoc:%p %pISc at %p\n",
836 __func__, asoc, &asoc->asconf_addr_del_pending->sa,
837 asoc->asconf_addr_del_pending);
838
Michio Honda8a07eb02011-04-26 20:19:36 +0900839 asoc->src_out_of_asoc_ok = 1;
840 stored = 1;
841 goto skip_mkasconf;
842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Daniel Borkmann88362ad2013-09-07 20:51:21 +0200844 if (laddr == NULL)
845 return -EINVAL;
846
Vlad Yasevich559cf712007-09-16 16:03:28 -0700847 /* We do not need RCU protection throughout this loop
848 * because this is done under a socket lock from the
849 * setsockopt call.
850 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 chunk = sctp_make_asconf_update_ip(asoc, laddr, addrs, addrcnt,
852 SCTP_PARAM_DEL_IP);
853 if (!chunk) {
854 retval = -ENOMEM;
855 goto out;
856 }
857
Michio Honda8a07eb02011-04-26 20:19:36 +0900858skip_mkasconf:
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700859 /* Reset use_as_src flag for the addresses in the bind address
860 * list that are to be deleted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 */
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700862 addr_buf = addrs;
863 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +0000864 laddr = addr_buf;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700865 af = sctp_get_af_specific(laddr->v4.sin_family);
Vlad Yasevich559cf712007-09-16 16:03:28 -0700866 list_for_each_entry(saddr, &bp->address_list, list) {
Al Viro5f242a12006-11-20 17:05:23 -0800867 if (sctp_cmp_addr_exact(&saddr->a, laddr))
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800868 saddr->state = SCTP_ADDR_DEL;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700869 }
870 addr_buf += af->sockaddr_len;
871 }
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700872
873 /* Update the route and saddr entries for all the transports
874 * as some of the addresses in the bind address list are
875 * about to be deleted and cannot be used as source addresses.
876 */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -0700877 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
878 transports) {
Julian Anastasovc86a7732017-02-06 23:14:13 +0200879 sctp_transport_dst_release(transport);
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700880 sctp_transport_route(transport, NULL,
881 sctp_sk(asoc->base.sk));
882 }
883
Michio Honda8a07eb02011-04-26 20:19:36 +0900884 if (stored)
885 /* We don't need to transmit ASCONF */
886 continue;
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700887 retval = sctp_send_asconf(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 }
889out:
890 return retval;
891}
892
Michio Honda9f7d6532011-04-26 19:32:51 +0900893/* set addr events to assocs in the endpoint. ep and addr_wq must be locked */
894int sctp_asconf_mgmt(struct sctp_sock *sp, struct sctp_sockaddr_entry *addrw)
895{
896 struct sock *sk = sctp_opt2sk(sp);
897 union sctp_addr *addr;
898 struct sctp_af *af;
899
900 /* It is safe to write port space in caller. */
901 addr = &addrw->a;
902 addr->v4.sin_port = htons(sp->ep->base.bind_addr.port);
903 af = sctp_get_af_specific(addr->sa.sa_family);
904 if (!af)
905 return -EINVAL;
906 if (sctp_verify_addr(sk, addr, af->sockaddr_len))
907 return -EINVAL;
908
909 if (addrw->state == SCTP_ADDR_NEW)
910 return sctp_send_asconf_add_ip(sk, (struct sockaddr *)addr, 1);
911 else
912 return sctp_send_asconf_del_ip(sk, (struct sockaddr *)addr, 1);
913}
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915/* Helper for tunneling sctp_bindx() requests through sctp_setsockopt()
916 *
917 * API 8.1
918 * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt,
919 * int flags);
920 *
921 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
922 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
923 * or IPv6 addresses.
924 *
925 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
926 * Section 3.1.2 for this usage.
927 *
928 * addrs is a pointer to an array of one or more socket addresses. Each
929 * address is contained in its appropriate structure (i.e. struct
930 * sockaddr_in or struct sockaddr_in6) the family of the address type
Ville Nuorvala23c435f2006-10-16 22:08:28 -0700931 * must be used to distinguish the address length (note that this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 * representation is termed a "packed array" of addresses). The caller
933 * specifies the number of addresses in the array with addrcnt.
934 *
935 * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns
936 * -1, and sets errno to the appropriate error code.
937 *
938 * For SCTP, the port given in each socket address must be the same, or
939 * sctp_bindx() will fail, setting errno to EINVAL.
940 *
941 * The flags parameter is formed from the bitwise OR of zero or more of
942 * the following currently defined flags:
943 *
944 * SCTP_BINDX_ADD_ADDR
945 *
946 * SCTP_BINDX_REM_ADDR
947 *
948 * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the
949 * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given
950 * addresses from the association. The two flags are mutually exclusive;
951 * if both are given, sctp_bindx() will fail with EINVAL. A caller may
952 * not remove all addresses from an association; sctp_bindx() will
953 * reject such an attempt with EINVAL.
954 *
955 * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate
956 * additional addresses with an endpoint after calling bind(). Or use
957 * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening
958 * socket is associated with so that no new association accepted will be
959 * associated with those addresses. If the endpoint supports dynamic
960 * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a
961 * endpoint to send the appropriate message to the peer to change the
962 * peers address lists.
963 *
964 * Adding and removing addresses from a connected association is
965 * optional functionality. Implementations that do not support this
966 * functionality should return EOPNOTSUPP.
967 *
968 * Basically do nothing but copying the addresses from user to kernel
969 * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk.
Frank Filz3f7a87d2005-06-20 13:14:57 -0700970 * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
971 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
974 * it.
975 *
976 * sk The sk of the socket
977 * addrs The pointer to the addresses in user land
978 * addrssize Size of the addrs buffer
979 * op Operation to perform (add or remove, see the flags of
980 * sctp_bindx)
981 *
982 * Returns 0 if ok, <0 errno code on error.
983 */
wangweidong26ac8e52013-12-23 12:16:51 +0800984static int sctp_setsockopt_bindx(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +0200985 struct sockaddr __user *addrs,
986 int addrs_size, int op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
988 struct sockaddr *kaddrs;
989 int err;
990 int addrcnt = 0;
991 int walk_size = 0;
992 struct sockaddr *sa_addr;
993 void *addr_buf;
994 struct sctp_af *af;
995
Daniel Borkmannbb333812013-06-28 19:49:40 +0200996 pr_debug("%s: sk:%p addrs:%p addrs_size:%d opt:%d\n",
997 __func__, sk, addrs, addrs_size, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 if (unlikely(addrs_size <= 0))
1000 return -EINVAL;
1001
Al Viroc981f252018-01-07 13:19:09 -05001002 kaddrs = vmemdup_user(addrs, addrs_size);
1003 if (unlikely(IS_ERR(kaddrs)))
1004 return PTR_ERR(kaddrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001006 /* Walk through the addrs buffer and count the number of addresses. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 addr_buf = kaddrs;
1008 while (walk_size < addrs_size) {
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001009 if (walk_size + sizeof(sa_family_t) > addrs_size) {
Al Viroc981f252018-01-07 13:19:09 -05001010 kvfree(kaddrs);
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001011 return -EINVAL;
1012 }
1013
Joe Perchesea110732011-06-13 16:21:26 +00001014 sa_addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 af = sctp_get_af_specific(sa_addr->sa_family);
1016
1017 /* If the address family is not supported or if this address
1018 * causes the address buffer to overflow return EINVAL.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001019 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
Al Viroc981f252018-01-07 13:19:09 -05001021 kvfree(kaddrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return -EINVAL;
1023 }
1024 addrcnt++;
1025 addr_buf += af->sockaddr_len;
1026 walk_size += af->sockaddr_len;
1027 }
1028
1029 /* Do the work. */
1030 switch (op) {
1031 case SCTP_BINDX_ADD_ADDR:
1032 err = sctp_bindx_add(sk, kaddrs, addrcnt);
1033 if (err)
1034 goto out;
1035 err = sctp_send_asconf_add_ip(sk, kaddrs, addrcnt);
1036 break;
1037
1038 case SCTP_BINDX_REM_ADDR:
1039 err = sctp_bindx_rem(sk, kaddrs, addrcnt);
1040 if (err)
1041 goto out;
1042 err = sctp_send_asconf_del_ip(sk, kaddrs, addrcnt);
1043 break;
1044
1045 default:
1046 err = -EINVAL;
1047 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050out:
Al Viroc981f252018-01-07 13:19:09 -05001051 kvfree(kaddrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 return err;
1054}
1055
Frank Filz3f7a87d2005-06-20 13:14:57 -07001056/* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size)
1057 *
1058 * Common routine for handling connect() and sctp_connectx().
1059 * Connect will come in with just a single address.
1060 */
wangweidong26ac8e52013-12-23 12:16:51 +08001061static int __sctp_connect(struct sock *sk,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001062 struct sockaddr *kaddrs,
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001063 int addrs_size,
1064 sctp_assoc_t *assoc_id)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001065{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001066 struct net *net = sock_net(sk);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001067 struct sctp_sock *sp;
1068 struct sctp_endpoint *ep;
1069 struct sctp_association *asoc = NULL;
1070 struct sctp_association *asoc2;
1071 struct sctp_transport *transport;
1072 union sctp_addr to;
Xin Long1c662012017-08-05 19:59:54 +08001073 enum sctp_scope scope;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001074 long timeo;
1075 int err = 0;
1076 int addrcnt = 0;
1077 int walk_size = 0;
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001078 union sctp_addr *sa_addr = NULL;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001079 void *addr_buf;
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001080 unsigned short port;
Vlad Yasevichf50f95c2007-07-03 12:47:40 -04001081 unsigned int f_flags = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001082
1083 sp = sctp_sk(sk);
1084 ep = sp->ep;
1085
1086 /* connect() cannot be done on a socket that is already in ESTABLISHED
1087 * state - UDP-style peeled off socket or a TCP-style socket that
1088 * is already connected.
1089 * It cannot be done even on a TCP-style listening socket.
1090 */
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -03001091 if (sctp_sstate(sk, ESTABLISHED) || sctp_sstate(sk, CLOSING) ||
Frank Filz3f7a87d2005-06-20 13:14:57 -07001092 (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))) {
1093 err = -EISCONN;
1094 goto out_free;
1095 }
1096
1097 /* Walk through the addrs buffer and count the number of addresses. */
1098 addr_buf = kaddrs;
1099 while (walk_size < addrs_size) {
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001100 struct sctp_af *af;
1101
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001102 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1103 err = -EINVAL;
1104 goto out_free;
1105 }
1106
Joe Perchesea110732011-06-13 16:21:26 +00001107 sa_addr = addr_buf;
Al Viro4bdf4b52006-11-20 17:10:20 -08001108 af = sctp_get_af_specific(sa_addr->sa.sa_family);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001109
1110 /* If the address family is not supported or if this address
1111 * causes the address buffer to overflow return EINVAL.
1112 */
1113 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1114 err = -EINVAL;
1115 goto out_free;
1116 }
1117
Dan Rosenbergd7e0d192010-10-01 11:16:58 +00001118 port = ntohs(sa_addr->v4.sin_port);
1119
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001120 /* Save current address so we can work with it */
1121 memcpy(&to, sa_addr, af->sockaddr_len);
1122
1123 err = sctp_verify_addr(sk, &to, af->sockaddr_len);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001124 if (err)
1125 goto out_free;
1126
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001127 /* Make sure the destination port is correctly set
1128 * in all addresses.
1129 */
Wei Yongjun524fba62013-04-03 03:02:28 +00001130 if (asoc && asoc->peer.port && asoc->peer.port != port) {
1131 err = -EINVAL;
Vlad Yasevich16d00fb2007-05-04 13:34:09 -07001132 goto out_free;
Wei Yongjun524fba62013-04-03 03:02:28 +00001133 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001134
1135 /* Check if there already is a matching association on the
1136 * endpoint (other than the one created here).
1137 */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001138 asoc2 = sctp_endpoint_lookup_assoc(ep, &to, &transport);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001139 if (asoc2 && asoc2 != asoc) {
1140 if (asoc2->state >= SCTP_STATE_ESTABLISHED)
1141 err = -EISCONN;
1142 else
1143 err = -EALREADY;
1144 goto out_free;
1145 }
1146
1147 /* If we could not find a matching association on the endpoint,
1148 * make sure that there is no peeled-off association matching
1149 * the peer address even on another socket.
1150 */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001151 if (sctp_endpoint_is_peeled_off(ep, &to)) {
Frank Filz3f7a87d2005-06-20 13:14:57 -07001152 err = -EADDRNOTAVAIL;
1153 goto out_free;
1154 }
1155
1156 if (!asoc) {
1157 /* If a bind() or sctp_bindx() is not called prior to
1158 * an sctp_connectx() call, the system picks an
1159 * ephemeral port and will choose an address set
1160 * equivalent to binding with a wildcard address.
1161 */
1162 if (!ep->base.bind_addr.port) {
1163 if (sctp_autobind(sk)) {
1164 err = -EAGAIN;
1165 goto out_free;
1166 }
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001167 } else {
1168 /*
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001169 * If an unprivileged user inherits a 1-many
1170 * style socket with open associations on a
1171 * privileged port, it MAY be permitted to
1172 * accept new associations, but it SHOULD NOT
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001173 * be permitted to open new associations.
1174 */
Krister Johansen4548b682017-01-20 17:49:11 -08001175 if (ep->base.bind_addr.port <
1176 inet_prot_sock(net) &&
1177 !ns_capable(net->user_ns,
1178 CAP_NET_BIND_SERVICE)) {
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001179 err = -EACCES;
1180 goto out_free;
1181 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001182 }
1183
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001184 scope = sctp_scope(&to);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001185 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1186 if (!asoc) {
1187 err = -ENOMEM;
1188 goto out_free;
1189 }
Vlad Yasevich409b95a2009-11-10 08:57:34 +00001190
1191 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope,
1192 GFP_KERNEL);
1193 if (err < 0) {
1194 goto out_free;
1195 }
1196
Frank Filz3f7a87d2005-06-20 13:14:57 -07001197 }
1198
1199 /* Prime the peer's transport structures. */
Vlad Yaseviche4d1fea2007-08-01 10:56:43 -04001200 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001201 SCTP_UNKNOWN);
1202 if (!transport) {
1203 err = -ENOMEM;
1204 goto out_free;
1205 }
1206
1207 addrcnt++;
1208 addr_buf += af->sockaddr_len;
1209 walk_size += af->sockaddr_len;
1210 }
1211
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001212 /* In case the user of sctp_connectx() wants an association
1213 * id back, assign one now.
1214 */
1215 if (assoc_id) {
1216 err = sctp_assoc_set_id(asoc, GFP_KERNEL);
1217 if (err < 0)
1218 goto out_free;
1219 }
1220
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001221 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001222 if (err < 0) {
1223 goto out_free;
1224 }
1225
1226 /* Initialize sk's dport and daddr for getpeername() */
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001227 inet_sk(sk)->inet_dport = htons(asoc->peer.port);
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001228 sp->pf->to_sk_daddr(sa_addr, sk);
Sridhar Samudrala8de8c872006-05-19 10:58:12 -07001229 sk->sk_err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001230
Vlad Yasevichf50f95c2007-07-03 12:47:40 -04001231 /* in-kernel sockets don't generally have a file allocated to them
1232 * if all they do is call sock_create_kern().
1233 */
1234 if (sk->sk_socket->file)
1235 f_flags = sk->sk_socket->file->f_flags;
1236
1237 timeo = sock_sndtimeo(sk, f_flags & O_NONBLOCK);
1238
Marcelo Ricardo Leitner7233bc82016-11-03 17:03:41 -02001239 if (assoc_id)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001240 *assoc_id = asoc->assoc_id;
Marcelo Ricardo Leitner7233bc82016-11-03 17:03:41 -02001241 err = sctp_wait_for_connect(asoc, &timeo);
1242 /* Note: the asoc may be freed after the return of
1243 * sctp_wait_for_connect.
1244 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07001245
1246 /* Don't free association on exit. */
1247 asoc = NULL;
1248
1249out_free:
Daniel Borkmannbb333812013-06-28 19:49:40 +02001250 pr_debug("%s: took out_free path with asoc:%p kaddrs:%p err:%d\n",
1251 __func__, asoc, kaddrs, err);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001252
Neil Horman2eebc1e2012-07-16 09:13:51 +00001253 if (asoc) {
1254 /* sctp_primitive_ASSOCIATE may have added this association
1255 * To the hash table, try to unhash it, just in case, its a noop
1256 * if it wasn't hashed so we're safe
1257 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07001258 sctp_association_free(asoc);
Neil Horman2eebc1e2012-07-16 09:13:51 +00001259 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07001260 return err;
1261}
1262
1263/* Helper for tunneling sctp_connectx() requests through sctp_setsockopt()
1264 *
1265 * API 8.9
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001266 * int sctp_connectx(int sd, struct sockaddr *addrs, int addrcnt,
1267 * sctp_assoc_t *asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001268 *
1269 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
1270 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
1271 * or IPv6 addresses.
1272 *
1273 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
1274 * Section 3.1.2 for this usage.
1275 *
1276 * addrs is a pointer to an array of one or more socket addresses. Each
1277 * address is contained in its appropriate structure (i.e. struct
1278 * sockaddr_in or struct sockaddr_in6) the family of the address type
1279 * must be used to distengish the address length (note that this
1280 * representation is termed a "packed array" of addresses). The caller
1281 * specifies the number of addresses in the array with addrcnt.
1282 *
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001283 * On success, sctp_connectx() returns 0. It also sets the assoc_id to
1284 * the association id of the new association. On failure, sctp_connectx()
1285 * returns -1, and sets errno to the appropriate error code. The assoc_id
1286 * is not touched by the kernel.
Frank Filz3f7a87d2005-06-20 13:14:57 -07001287 *
1288 * For SCTP, the port given in each socket address must be the same, or
1289 * sctp_connectx() will fail, setting errno to EINVAL.
1290 *
1291 * An application can use sctp_connectx to initiate an association with
1292 * an endpoint that is multi-homed. Much like sctp_bindx() this call
1293 * allows a caller to specify multiple addresses at which a peer can be
1294 * reached. The way the SCTP stack uses the list of addresses to set up
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001295 * the association is implementation dependent. This function only
Frank Filz3f7a87d2005-06-20 13:14:57 -07001296 * specifies that the stack will try to make use of all the addresses in
1297 * the list when needed.
1298 *
1299 * Note that the list of addresses passed in is only used for setting up
1300 * the association. It does not necessarily equal the set of addresses
1301 * the peer uses for the resulting association. If the caller wants to
1302 * find out the set of peer addresses, it must use sctp_getpaddrs() to
1303 * retrieve them after the association has been set up.
1304 *
1305 * Basically do nothing but copying the addresses from user to kernel
1306 * land and invoking either sctp_connectx(). This is used for tunneling
1307 * the sctp_connectx() request through sctp_setsockopt() from userspace.
1308 *
Frank Filz3f7a87d2005-06-20 13:14:57 -07001309 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
1310 * it.
1311 *
1312 * sk The sk of the socket
1313 * addrs The pointer to the addresses in user land
1314 * addrssize Size of the addrs buffer
1315 *
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001316 * Returns >=0 if ok, <0 errno code on error.
Frank Filz3f7a87d2005-06-20 13:14:57 -07001317 */
wangweidong26ac8e52013-12-23 12:16:51 +08001318static int __sctp_setsockopt_connectx(struct sock *sk,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001319 struct sockaddr __user *addrs,
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001320 int addrs_size,
1321 sctp_assoc_t *assoc_id)
Frank Filz3f7a87d2005-06-20 13:14:57 -07001322{
Frank Filz3f7a87d2005-06-20 13:14:57 -07001323 struct sockaddr *kaddrs;
Marcelo Ricardo Leitner9ba0b962015-12-23 16:28:40 -02001324 int err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07001325
Daniel Borkmannbb333812013-06-28 19:49:40 +02001326 pr_debug("%s: sk:%p addrs:%p addrs_size:%d\n",
1327 __func__, sk, addrs, addrs_size);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001328
1329 if (unlikely(addrs_size <= 0))
1330 return -EINVAL;
1331
Al Viroc981f252018-01-07 13:19:09 -05001332 kaddrs = vmemdup_user(addrs, addrs_size);
1333 if (unlikely(IS_ERR(kaddrs)))
1334 return PTR_ERR(kaddrs);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001335
Al Viroc981f252018-01-07 13:19:09 -05001336 err = __sctp_connect(sk, kaddrs, addrs_size, assoc_id);
1337 kvfree(kaddrs);
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001338
Frank Filz3f7a87d2005-06-20 13:14:57 -07001339 return err;
1340}
1341
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001342/*
1343 * This is an older interface. It's kept for backward compatibility
1344 * to the option that doesn't provide association id.
1345 */
wangweidong26ac8e52013-12-23 12:16:51 +08001346static int sctp_setsockopt_connectx_old(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001347 struct sockaddr __user *addrs,
1348 int addrs_size)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001349{
1350 return __sctp_setsockopt_connectx(sk, addrs, addrs_size, NULL);
1351}
1352
1353/*
1354 * New interface for the API. The since the API is done with a socket
1355 * option, to make it simple we feed back the association id is as a return
1356 * indication to the call. Error is always negative and association id is
1357 * always positive.
1358 */
wangweidong26ac8e52013-12-23 12:16:51 +08001359static int sctp_setsockopt_connectx(struct sock *sk,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001360 struct sockaddr __user *addrs,
1361 int addrs_size)
Vlad Yasevich88a0a942008-05-09 15:14:11 -07001362{
1363 sctp_assoc_t assoc_id = 0;
1364 int err = 0;
1365
1366 err = __sctp_setsockopt_connectx(sk, addrs, addrs_size, &assoc_id);
1367
1368 if (err)
1369 return err;
1370 else
1371 return assoc_id;
1372}
1373
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001374/*
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001375 * New (hopefully final) interface for the API.
1376 * We use the sctp_getaddrs_old structure so that use-space library
Daniel Borkmannffd59392014-02-17 12:11:11 +01001377 * can avoid any unnecessary allocations. The only different part
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001378 * is that we store the actual length of the address buffer into the
Daniel Borkmannffd59392014-02-17 12:11:11 +01001379 * addrs_num structure member. That way we can re-use the existing
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001380 * code.
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001381 */
Daniel Borkmannffd59392014-02-17 12:11:11 +01001382#ifdef CONFIG_COMPAT
1383struct compat_sctp_getaddrs_old {
1384 sctp_assoc_t assoc_id;
1385 s32 addr_num;
1386 compat_uptr_t addrs; /* struct sockaddr * */
1387};
1388#endif
1389
wangweidong26ac8e52013-12-23 12:16:51 +08001390static int sctp_getsockopt_connectx3(struct sock *sk, int len,
Daniel Borkmanndda91922013-06-17 11:40:05 +02001391 char __user *optval,
1392 int __user *optlen)
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001393{
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001394 struct sctp_getaddrs_old param;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001395 sctp_assoc_t assoc_id = 0;
1396 int err = 0;
1397
Daniel Borkmannffd59392014-02-17 12:11:11 +01001398#ifdef CONFIG_COMPAT
Andy Lutomirski96c0e0a2016-03-22 14:25:07 -07001399 if (in_compat_syscall()) {
Daniel Borkmannffd59392014-02-17 12:11:11 +01001400 struct compat_sctp_getaddrs_old param32;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001401
Daniel Borkmannffd59392014-02-17 12:11:11 +01001402 if (len < sizeof(param32))
1403 return -EINVAL;
1404 if (copy_from_user(&param32, optval, sizeof(param32)))
1405 return -EFAULT;
Vlad Yasevichf9c67812009-11-11 08:19:24 +00001406
Daniel Borkmannffd59392014-02-17 12:11:11 +01001407 param.assoc_id = param32.assoc_id;
1408 param.addr_num = param32.addr_num;
1409 param.addrs = compat_ptr(param32.addrs);
1410 } else
1411#endif
1412 {
1413 if (len < sizeof(param))
1414 return -EINVAL;
1415 if (copy_from_user(&param, optval, sizeof(param)))
1416 return -EFAULT;
1417 }
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001418
Daniel Borkmannffd59392014-02-17 12:11:11 +01001419 err = __sctp_setsockopt_connectx(sk, (struct sockaddr __user *)
1420 param.addrs, param.addr_num,
1421 &assoc_id);
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04001422 if (err == 0 || err == -EINPROGRESS) {
1423 if (copy_to_user(optval, &assoc_id, sizeof(assoc_id)))
1424 return -EFAULT;
1425 if (put_user(sizeof(assoc_id), optlen))
1426 return -EFAULT;
1427 }
1428
1429 return err;
1430}
1431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432/* API 3.1.4 close() - UDP Style Syntax
1433 * Applications use close() to perform graceful shutdown (as described in
1434 * Section 10.1 of [SCTP]) on ALL the associations currently represented
1435 * by a UDP-style socket.
1436 *
1437 * The syntax is
1438 *
1439 * ret = close(int sd);
1440 *
1441 * sd - the socket descriptor of the associations to be closed.
1442 *
1443 * To gracefully shutdown a specific association represented by the
1444 * UDP-style socket, an application should use the sendmsg() call,
1445 * passing no user data, but including the appropriate flag in the
1446 * ancillary data (see Section xxxx).
1447 *
1448 * If sd in the close() call is a branched-off socket representing only
1449 * one association, the shutdown is performed on that association only.
1450 *
1451 * 4.1.6 close() - TCP Style Syntax
1452 *
1453 * Applications use close() to gracefully close down an association.
1454 *
1455 * The syntax is:
1456 *
1457 * int close(int sd);
1458 *
1459 * sd - the socket descriptor of the association to be closed.
1460 *
1461 * After an application calls close() on a socket descriptor, no further
1462 * socket operations will succeed on that descriptor.
1463 *
1464 * API 7.1.4 SO_LINGER
1465 *
1466 * An application using the TCP-style socket can use this option to
1467 * perform the SCTP ABORT primitive. The linger option structure is:
1468 *
1469 * struct linger {
1470 * int l_onoff; // option on/off
1471 * int l_linger; // linger time
1472 * };
1473 *
1474 * To enable the option, set l_onoff to 1. If the l_linger value is set
1475 * to 0, calling close() is the same as the ABORT primitive. If the
1476 * value is set to a negative value, the setsockopt() call will return
1477 * an error. If the value is set to a positive value linger_time, the
1478 * close() can be blocked for at most linger_time ms. If the graceful
1479 * shutdown phase does not finish during this period, close() will
1480 * return but the graceful shutdown phase continues in the system.
1481 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02001482static void sctp_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001484 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 struct sctp_endpoint *ep;
1486 struct sctp_association *asoc;
1487 struct list_head *pos, *temp;
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001488 unsigned int data_was_unread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Daniel Borkmannbb333812013-06-28 19:49:40 +02001490 pr_debug("%s: sk:%p, timeout:%ld\n", __func__, sk, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Xin Long6dfe4b92017-06-10 14:56:56 +08001492 lock_sock_nested(sk, SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 sk->sk_shutdown = SHUTDOWN_MASK;
Vlad Yasevichbec96402009-07-30 18:08:28 -04001494 sk->sk_state = SCTP_SS_CLOSING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496 ep = sctp_sk(sk)->ep;
1497
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001498 /* Clean up any skbs sitting on the receive queue. */
1499 data_was_unread = sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1500 data_was_unread += sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1501
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07001502 /* Walk all associations on an endpoint. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 list_for_each_safe(pos, temp, &ep->asocs) {
1504 asoc = list_entry(pos, struct sctp_association, asocs);
1505
1506 if (sctp_style(sk, TCP)) {
1507 /* A closed association can still be in the list if
1508 * it belongs to a TCP-style listening socket that is
1509 * not yet accepted. If so, free it. If not, send an
1510 * ABORT or SHUTDOWN based on the linger options.
1511 */
1512 if (sctp_state(asoc, CLOSED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 sctp_association_free(asoc);
Vladislav Yasevichb89498a2006-05-19 14:32:06 -07001514 continue;
1515 }
1516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Thomas Grafcd4fcc72011-07-08 04:37:46 +00001518 if (data_was_unread || !skb_queue_empty(&asoc->ulpq.lobby) ||
1519 !skb_queue_empty(&asoc->ulpq.reasm) ||
1520 (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) {
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001521 struct sctp_chunk *chunk;
1522
1523 chunk = sctp_make_abort_user(asoc, NULL, 0);
Xin Long068d8bd2015-12-29 17:49:25 +08001524 sctp_primitive_ABORT(net, asoc, chunk);
Sridhar Samudralab9ac8672006-08-28 13:53:01 -07001525 } else
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001526 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 }
1528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 /* On a TCP-style socket, block for at most linger_time if set. */
1530 if (sctp_style(sk, TCP) && timeout)
1531 sctp_wait_for_close(sk, timeout);
1532
1533 /* This will run the backlog queue. */
wangweidong048ed4b2014-01-21 15:44:11 +08001534 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536 /* Supposedly, no process has access to the socket, but
1537 * the net layers still may.
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001538 * Also, sctp_destroy_sock() needs to be called with addr_wq_lock
1539 * held and that should be grabbed before socket lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 */
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001541 spin_lock_bh(&net->sctp.addr_wq_lock);
Xin Long6dfe4b92017-06-10 14:56:56 +08001542 bh_lock_sock_nested(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
1544 /* Hold the sock, since sk_common_release() will put sock_put()
1545 * and we have just a little more cleanup.
1546 */
1547 sock_hold(sk);
1548 sk_common_release(sk);
1549
wangweidong5bc1d1b2014-01-21 15:44:12 +08001550 bh_unlock_sock(sk);
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03001551 spin_unlock_bh(&net->sctp.addr_wq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
1553 sock_put(sk);
1554
1555 SCTP_DBG_OBJCNT_DEC(sock);
1556}
1557
1558/* Handle EPIPE error. */
1559static int sctp_error(struct sock *sk, int flags, int err)
1560{
1561 if (err == -EPIPE)
1562 err = sock_error(sk) ? : -EPIPE;
1563 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1564 send_sig(SIGPIPE, current, 0);
1565 return err;
1566}
1567
1568/* API 3.1.3 sendmsg() - UDP Style Syntax
1569 *
1570 * An application uses sendmsg() and recvmsg() calls to transmit data to
1571 * and receive data from its peer.
1572 *
1573 * ssize_t sendmsg(int socket, const struct msghdr *message,
1574 * int flags);
1575 *
1576 * socket - the socket descriptor of the endpoint.
1577 * message - pointer to the msghdr structure which contains a single
1578 * user message and possibly some ancillary data.
1579 *
1580 * See Section 5 for complete description of the data
1581 * structures.
1582 *
1583 * flags - flags sent or received with the user message, see Section
1584 * 5 for complete description of the flags.
1585 *
1586 * Note: This function could use a rewrite especially when explicit
1587 * connect support comes in.
1588 */
1589/* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */
1590
Xin Longa05437a2017-08-11 10:23:48 +08001591static int sctp_msghdr_parse(const struct msghdr *msg,
1592 struct sctp_cmsgs *cmsgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Ying Xue1b784142015-03-02 15:37:48 +08001594static int sctp_sendmsg(struct sock *sk, struct msghdr *msg, size_t msg_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001596 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 struct sctp_sock *sp;
1598 struct sctp_endpoint *ep;
wangweidongcb3f8372013-12-23 12:16:50 +08001599 struct sctp_association *new_asoc = NULL, *asoc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 struct sctp_transport *transport, *chunk_tp;
1601 struct sctp_chunk *chunk;
Al Virodce116a2006-11-20 17:25:15 -08001602 union sctp_addr to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 struct sockaddr *msg_name = NULL;
Joe Perches517aa0b2011-05-12 11:27:20 +00001604 struct sctp_sndrcvinfo default_sinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 struct sctp_sndrcvinfo *sinfo;
1606 struct sctp_initmsg *sinit;
1607 sctp_assoc_t associd = 0;
Xin Longa05437a2017-08-11 10:23:48 +08001608 struct sctp_cmsgs cmsgs = { NULL };
Xin Long1c662012017-08-05 19:59:54 +08001609 enum sctp_scope scope;
Daniel Borkmann2061dcd2015-01-15 16:34:35 +01001610 bool fill_sinfo_ttl = false, wait_connect = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 struct sctp_datamsg *datamsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 int msg_flags = msg->msg_flags;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02001613 __u16 sinfo_flags = 0;
1614 long timeo;
1615 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 err = 0;
1618 sp = sctp_sk(sk);
1619 ep = sp->ep;
1620
Daniel Borkmannbb333812013-06-28 19:49:40 +02001621 pr_debug("%s: sk:%p, msg:%p, msg_len:%zu ep:%p\n", __func__, sk,
1622 msg, msg_len, ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
1624 /* We cannot send a message over a TCP-style listening socket. */
1625 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING)) {
1626 err = -EPIPE;
1627 goto out_nounlock;
1628 }
1629
1630 /* Parse out the SCTP CMSGs. */
1631 err = sctp_msghdr_parse(msg, &cmsgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 if (err) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02001633 pr_debug("%s: msghdr parse err:%x\n", __func__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 goto out_nounlock;
1635 }
1636
1637 /* Fetch the destination address for this packet. This
1638 * address only selects the association--it is not necessarily
1639 * the address we will send to.
1640 * For a peeled-off socket, msg_name is ignored.
1641 */
1642 if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
1643 int msg_namelen = msg->msg_namelen;
1644
1645 err = sctp_verify_addr(sk, (union sctp_addr *)msg->msg_name,
1646 msg_namelen);
1647 if (err)
1648 return err;
1649
1650 if (msg_namelen > sizeof(to))
1651 msg_namelen = sizeof(to);
1652 memcpy(&to, msg->msg_name, msg_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 msg_name = msg->msg_name;
1654 }
1655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 sinit = cmsgs.init;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02001657 if (cmsgs.sinfo != NULL) {
1658 memset(&default_sinfo, 0, sizeof(default_sinfo));
1659 default_sinfo.sinfo_stream = cmsgs.sinfo->snd_sid;
1660 default_sinfo.sinfo_flags = cmsgs.sinfo->snd_flags;
1661 default_sinfo.sinfo_ppid = cmsgs.sinfo->snd_ppid;
1662 default_sinfo.sinfo_context = cmsgs.sinfo->snd_context;
1663 default_sinfo.sinfo_assoc_id = cmsgs.sinfo->snd_assoc_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02001665 sinfo = &default_sinfo;
1666 fill_sinfo_ttl = true;
1667 } else {
1668 sinfo = cmsgs.srinfo;
1669 }
1670 /* Did the user specify SNDINFO/SNDRCVINFO? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 if (sinfo) {
1672 sinfo_flags = sinfo->sinfo_flags;
1673 associd = sinfo->sinfo_assoc_id;
1674 }
1675
Daniel Borkmannbb333812013-06-28 19:49:40 +02001676 pr_debug("%s: msg_len:%zu, sinfo_flags:0x%x\n", __func__,
1677 msg_len, sinfo_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001679 /* SCTP_EOF or SCTP_ABORT cannot be set on a TCP-style socket. */
1680 if (sctp_style(sk, TCP) && (sinfo_flags & (SCTP_EOF | SCTP_ABORT))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 err = -EINVAL;
1682 goto out_nounlock;
1683 }
1684
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001685 /* If SCTP_EOF is set, no data can be sent. Disallow sending zero
1686 * length messages when SCTP_EOF|SCTP_ABORT is not set.
1687 * If SCTP_ABORT is set, the message length could be non zero with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 * the msg_iov set to the user abort reason.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001689 */
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001690 if (((sinfo_flags & SCTP_EOF) && (msg_len > 0)) ||
1691 (!(sinfo_flags & (SCTP_EOF|SCTP_ABORT)) && (msg_len == 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 err = -EINVAL;
1693 goto out_nounlock;
1694 }
1695
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001696 /* If SCTP_ADDR_OVER is set, there must be an address
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 * specified in msg_name.
1698 */
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001699 if ((sinfo_flags & SCTP_ADDR_OVER) && (!msg->msg_name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 err = -EINVAL;
1701 goto out_nounlock;
1702 }
1703
1704 transport = NULL;
1705
Daniel Borkmannbb333812013-06-28 19:49:40 +02001706 pr_debug("%s: about to look up association\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
wangweidong048ed4b2014-01-21 15:44:11 +08001708 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
1710 /* If a msg_name has been specified, assume this is to be used. */
1711 if (msg_name) {
1712 /* Look for a matching association on the endpoint. */
Al Virodce116a2006-11-20 17:25:15 -08001713 asoc = sctp_endpoint_lookup_assoc(ep, &to, &transport);
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -03001714
1715 /* If we could not find a matching association on the
1716 * endpoint, make sure that it is not a TCP-style
1717 * socket that already has an association or there is
1718 * no peeled-off association on another socket.
1719 */
1720 if (!asoc &&
1721 ((sctp_style(sk, TCP) &&
1722 (sctp_sstate(sk, ESTABLISHED) ||
1723 sctp_sstate(sk, CLOSING))) ||
1724 sctp_endpoint_is_peeled_off(ep, &to))) {
1725 err = -EADDRNOTAVAIL;
1726 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 }
1728 } else {
1729 asoc = sctp_id2assoc(sk, associd);
1730 if (!asoc) {
1731 err = -EPIPE;
1732 goto out_unlock;
1733 }
1734 }
1735
1736 if (asoc) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02001737 pr_debug("%s: just looked up association:%p\n", __func__, asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
1739 /* We cannot send a message on a TCP-style SCTP_SS_ESTABLISHED
1740 * socket that has an association in CLOSED state. This can
1741 * happen when an accepted socket has an association that is
1742 * already CLOSED.
1743 */
1744 if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP)) {
1745 err = -EPIPE;
1746 goto out_unlock;
1747 }
1748
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001749 if (sinfo_flags & SCTP_EOF) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02001750 pr_debug("%s: shutting down association:%p\n",
1751 __func__, asoc);
1752
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001753 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 err = 0;
1755 goto out_unlock;
1756 }
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001757 if (sinfo_flags & SCTP_ABORT) {
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001758
1759 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1760 if (!chunk) {
1761 err = -ENOMEM;
1762 goto out_unlock;
1763 }
1764
Daniel Borkmannbb333812013-06-28 19:49:40 +02001765 pr_debug("%s: aborting association:%p\n",
1766 __func__, asoc);
1767
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001768 sctp_primitive_ABORT(net, asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 err = 0;
1770 goto out_unlock;
1771 }
1772 }
1773
1774 /* Do we need to create the association? */
1775 if (!asoc) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02001776 pr_debug("%s: there is no association yet\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001778 if (sinfo_flags & (SCTP_EOF | SCTP_ABORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 err = -EINVAL;
1780 goto out_unlock;
1781 }
1782
1783 /* Check for invalid stream against the stream counts,
1784 * either the default or the user specified stream counts.
1785 */
1786 if (sinfo) {
Dan Carpenter0e864b22014-01-13 16:46:08 +03001787 if (!sinit || !sinit->sinit_num_ostreams) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 /* Check against the defaults. */
1789 if (sinfo->sinfo_stream >=
1790 sp->initmsg.sinit_num_ostreams) {
1791 err = -EINVAL;
1792 goto out_unlock;
1793 }
1794 } else {
1795 /* Check against the requested. */
1796 if (sinfo->sinfo_stream >=
1797 sinit->sinit_num_ostreams) {
1798 err = -EINVAL;
1799 goto out_unlock;
1800 }
1801 }
1802 }
1803
1804 /*
1805 * API 3.1.2 bind() - UDP Style Syntax
1806 * If a bind() or sctp_bindx() is not called prior to a
1807 * sendmsg() call that initiates a new association, the
1808 * system picks an ephemeral port and will choose an address
1809 * set equivalent to binding with a wildcard address.
1810 */
1811 if (!ep->base.bind_addr.port) {
1812 if (sctp_autobind(sk)) {
1813 err = -EAGAIN;
1814 goto out_unlock;
1815 }
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001816 } else {
1817 /*
1818 * If an unprivileged user inherits a one-to-many
1819 * style socket with open associations on a privileged
1820 * port, it MAY be permitted to accept new associations,
1821 * but it SHOULD NOT be permitted to open new
1822 * associations.
1823 */
Krister Johansen4548b682017-01-20 17:49:11 -08001824 if (ep->base.bind_addr.port < inet_prot_sock(net) &&
Eric W. Biederman35946982012-11-16 03:03:12 +00001825 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE)) {
Ivan Skytte Jorgensen64a0c1c2005-10-28 15:39:02 -07001826 err = -EACCES;
1827 goto out_unlock;
1828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 }
1830
1831 scope = sctp_scope(&to);
1832 new_asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1833 if (!new_asoc) {
1834 err = -ENOMEM;
1835 goto out_unlock;
1836 }
1837 asoc = new_asoc;
Vlad Yasevich409b95a2009-11-10 08:57:34 +00001838 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope, GFP_KERNEL);
1839 if (err < 0) {
1840 err = -ENOMEM;
1841 goto out_free;
1842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
1844 /* If the SCTP_INIT ancillary data is specified, set all
1845 * the association init values accordingly.
1846 */
1847 if (sinit) {
1848 if (sinit->sinit_num_ostreams) {
1849 asoc->c.sinit_num_ostreams =
1850 sinit->sinit_num_ostreams;
1851 }
1852 if (sinit->sinit_max_instreams) {
1853 asoc->c.sinit_max_instreams =
1854 sinit->sinit_max_instreams;
1855 }
1856 if (sinit->sinit_max_attempts) {
1857 asoc->max_init_attempts
1858 = sinit->sinit_max_attempts;
1859 }
1860 if (sinit->sinit_max_init_timeo) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001861 asoc->max_init_timeo =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 msecs_to_jiffies(sinit->sinit_max_init_timeo);
1863 }
1864 }
1865
1866 /* Prime the peer's transport structures. */
Al Virodce116a2006-11-20 17:25:15 -08001867 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL, SCTP_UNKNOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 if (!transport) {
1869 err = -ENOMEM;
1870 goto out_free;
1871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 }
1873
1874 /* ASSERT: we have a valid association at this point. */
Daniel Borkmannbb333812013-06-28 19:49:40 +02001875 pr_debug("%s: we have a valid association\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
1877 if (!sinfo) {
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02001878 /* If the user didn't specify SNDINFO/SNDRCVINFO, make up
1879 * one with some defaults.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 */
Joe Perches517aa0b2011-05-12 11:27:20 +00001881 memset(&default_sinfo, 0, sizeof(default_sinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 default_sinfo.sinfo_stream = asoc->default_stream;
1883 default_sinfo.sinfo_flags = asoc->default_flags;
1884 default_sinfo.sinfo_ppid = asoc->default_ppid;
1885 default_sinfo.sinfo_context = asoc->default_context;
1886 default_sinfo.sinfo_timetolive = asoc->default_timetolive;
1887 default_sinfo.sinfo_assoc_id = sctp_assoc2id(asoc);
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02001888
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 sinfo = &default_sinfo;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02001890 } else if (fill_sinfo_ttl) {
1891 /* In case SNDINFO was specified, we still need to fill
1892 * it with a default ttl from the assoc here.
1893 */
1894 sinfo->sinfo_timetolive = asoc->default_timetolive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 }
1896
1897 /* API 7.1.7, the sndbuf size per association bounds the
1898 * maximum size of data that can be sent in a single send call.
1899 */
1900 if (msg_len > sk->sk_sndbuf) {
1901 err = -EMSGSIZE;
1902 goto out_free;
1903 }
1904
Vlad Yasevich8a479492007-06-07 14:21:05 -04001905 if (asoc->pmtu_pending)
Xin Long3ebfdf02017-04-04 13:39:55 +08001906 sctp_assoc_pending_pmtu(asoc);
Vlad Yasevich8a479492007-06-07 14:21:05 -04001907
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 /* If fragmentation is disabled and the message length exceeds the
1909 * association fragmentation point, return EMSGSIZE. The I-D
1910 * does not specify what this error is, but this looks like
1911 * a great fit.
1912 */
1913 if (sctp_sk(sk)->disable_fragments && (msg_len > asoc->frag_point)) {
1914 err = -EMSGSIZE;
1915 goto out_free;
1916 }
1917
Joe Perchesafd76142011-05-12 09:19:10 +00001918 /* Check for invalid stream. */
Xin Longcee360a2017-05-31 16:36:31 +08001919 if (sinfo->sinfo_stream >= asoc->stream.outcnt) {
Joe Perchesafd76142011-05-12 09:19:10 +00001920 err = -EINVAL;
1921 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 }
1923
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03001924 /* Allocate sctp_stream_out_ext if not already done */
1925 if (unlikely(!asoc->stream.out[sinfo->sinfo_stream].ext)) {
1926 err = sctp_stream_init_ext(&asoc->stream, sinfo->sinfo_stream);
1927 if (err)
1928 goto out_free;
1929 }
1930
Xin Long8dbdf1f2016-07-09 19:47:45 +08001931 if (sctp_wspace(asoc) < msg_len)
1932 sctp_prsctp_prune(asoc, sinfo, msg_len - sctp_wspace(asoc));
1933
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1935 if (!sctp_wspace(asoc)) {
Xin Longcea0cc82017-11-15 16:57:26 +08001936 /* sk can be changed by peel off when waiting for buf. */
1937 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len, &sk);
Xin Longca3af4d2017-11-15 16:55:54 +08001938 if (err) {
1939 if (err == -ESRCH) {
1940 /* asoc is already dead. */
1941 new_asoc = NULL;
1942 err = -EPIPE;
1943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 goto out_free;
Xin Longca3af4d2017-11-15 16:55:54 +08001945 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 }
1947
1948 /* If an address is passed with the sendto/sendmsg call, it is used
1949 * to override the primary destination address in the TCP model, or
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001950 * when SCTP_ADDR_OVER flag is set in the UDP model.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 */
1952 if ((sctp_style(sk, TCP) && msg_name) ||
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07001953 (sinfo_flags & SCTP_ADDR_OVER)) {
Al Virodce116a2006-11-20 17:25:15 -08001954 chunk_tp = sctp_assoc_lookup_paddr(asoc, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 if (!chunk_tp) {
1956 err = -EINVAL;
1957 goto out_free;
1958 }
1959 } else
1960 chunk_tp = NULL;
1961
1962 /* Auto-connect, if we aren't connected already. */
1963 if (sctp_state(asoc, CLOSED)) {
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001964 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 if (err < 0)
1966 goto out_free;
Daniel Borkmannbb333812013-06-28 19:49:40 +02001967
Daniel Borkmann2061dcd2015-01-15 16:34:35 +01001968 wait_connect = true;
Daniel Borkmannbb333812013-06-28 19:49:40 +02001969 pr_debug("%s: we associated primitively\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 }
1971
1972 /* Break the message into multiple chunks of maximum size. */
Al Viroc0371da2014-11-24 10:42:55 -05001973 datamsg = sctp_datamsg_from_user(asoc, sinfo, &msg->msg_iter);
Tommi Rantala6e51fe72012-11-22 03:23:16 +00001974 if (IS_ERR(datamsg)) {
1975 err = PTR_ERR(datamsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 goto out_free;
1977 }
Xin Longf9ba3502017-03-27 00:21:15 +08001978 asoc->force_delay = !!(msg->msg_flags & MSG_MORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
1980 /* Now send the (possibly) fragmented message. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07001981 list_for_each_entry(chunk, &datamsg->chunks, frag_list) {
Xin Longb61c6542016-09-14 02:04:20 +08001982 sctp_chunk_hold(chunk);
1983
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 /* Do accounting for the write space. */
1985 sctp_set_owner_w(chunk);
1986
1987 chunk->transport = chunk_tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 }
1989
Vlad Yasevich9c5c62b2009-08-10 13:51:03 -04001990 /* Send it to the lower layers. Note: all chunks
1991 * must either fail or succeed. The lower layer
1992 * works that way today. Keep it that way or this
1993 * breaks.
1994 */
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00001995 err = sctp_primitive_SEND(net, asoc, datamsg);
Vlad Yasevich9c5c62b2009-08-10 13:51:03 -04001996 /* Did the lower layer accept the chunk? */
Xin Longb61c6542016-09-14 02:04:20 +08001997 if (err) {
1998 sctp_datamsg_free(datamsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 goto out_free;
Xin Longb61c6542016-09-14 02:04:20 +08002000 }
Daniel Borkmannbb333812013-06-28 19:49:40 +02002001
2002 pr_debug("%s: we sent primitively\n", __func__);
2003
Xin Longb61c6542016-09-14 02:04:20 +08002004 sctp_datamsg_put(datamsg);
Daniel Borkmannbb333812013-06-28 19:49:40 +02002005 err = msg_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Daniel Borkmann2061dcd2015-01-15 16:34:35 +01002007 if (unlikely(wait_connect)) {
2008 timeo = sock_sndtimeo(sk, msg_flags & MSG_DONTWAIT);
2009 sctp_wait_for_connect(asoc, &timeo);
2010 }
2011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 /* If we are already past ASSOCIATE, the lower
2013 * layers are responsible for association cleanup.
2014 */
2015 goto out_unlock;
2016
2017out_free:
Xin Longb5eff712015-12-30 23:50:49 +08002018 if (new_asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 sctp_association_free(asoc);
2020out_unlock:
wangweidong048ed4b2014-01-21 15:44:11 +08002021 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
2023out_nounlock:
2024 return sctp_error(sk, msg_flags, err);
2025
2026#if 0
2027do_sock_err:
2028 if (msg_len)
2029 err = msg_len;
2030 else
2031 err = sock_error(sk);
2032 goto out;
2033
2034do_interrupted:
2035 if (msg_len)
2036 err = msg_len;
2037 goto out;
2038#endif /* 0 */
2039}
2040
2041/* This is an extended version of skb_pull() that removes the data from the
2042 * start of a skb even when data is spread across the list of skb's in the
2043 * frag_list. len specifies the total amount of data that needs to be removed.
2044 * when 'len' bytes could be removed from the skb, it returns 0.
2045 * If 'len' exceeds the total skb length, it returns the no. of bytes that
2046 * could not be removed.
2047 */
2048static int sctp_skb_pull(struct sk_buff *skb, int len)
2049{
2050 struct sk_buff *list;
2051 int skb_len = skb_headlen(skb);
2052 int rlen;
2053
2054 if (len <= skb_len) {
2055 __skb_pull(skb, len);
2056 return 0;
2057 }
2058 len -= skb_len;
2059 __skb_pull(skb, skb_len);
2060
David S. Miller1b003be2009-06-09 00:22:35 -07002061 skb_walk_frags(skb, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 rlen = sctp_skb_pull(list, len);
2063 skb->len -= (len-rlen);
2064 skb->data_len -= (len-rlen);
2065
2066 if (!rlen)
2067 return 0;
2068
2069 len = rlen;
2070 }
2071
2072 return len;
2073}
2074
2075/* API 3.1.3 recvmsg() - UDP Style Syntax
2076 *
2077 * ssize_t recvmsg(int socket, struct msghdr *message,
2078 * int flags);
2079 *
2080 * socket - the socket descriptor of the endpoint.
2081 * message - pointer to the msghdr structure which contains a single
2082 * user message and possibly some ancillary data.
2083 *
2084 * See Section 5 for complete description of the data
2085 * structures.
2086 *
2087 * flags - flags sent or received with the user message, see Section
2088 * 5 for complete description of the flags.
2089 */
Ying Xue1b784142015-03-02 15:37:48 +08002090static int sctp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
2091 int noblock, int flags, int *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092{
2093 struct sctp_ulpevent *event = NULL;
2094 struct sctp_sock *sp = sctp_sk(sk);
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002095 struct sk_buff *skb, *head_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 int copied;
2097 int err = 0;
2098 int skb_len;
2099
Daniel Borkmannbb333812013-06-28 19:49:40 +02002100 pr_debug("%s: sk:%p, msghdr:%p, len:%zd, noblock:%d, flags:0x%x, "
2101 "addr_len:%p)\n", __func__, sk, msg, len, noblock, flags,
2102 addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
wangweidong048ed4b2014-01-21 15:44:11 +08002104 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
Marcelo Ricardo Leitnere5b13f32016-07-15 16:38:19 -03002106 if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED) &&
Xin Longe0878692016-07-30 14:14:41 +08002107 !sctp_sstate(sk, CLOSING) && !sctp_sstate(sk, CLOSED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 err = -ENOTCONN;
2109 goto out;
2110 }
2111
2112 skb = sctp_skb_recv_datagram(sk, flags, noblock, &err);
2113 if (!skb)
2114 goto out;
2115
2116 /* Get the total length of the skb including any skb's in the
2117 * frag_list.
2118 */
2119 skb_len = skb->len;
2120
2121 copied = skb_len;
2122 if (copied > len)
2123 copied = len;
2124
David S. Miller51f3d022014-11-05 16:46:40 -05002125 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127 event = sctp_skb2event(skb);
2128
2129 if (err)
2130 goto out_free;
2131
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002132 if (event->chunk && event->chunk->head_skb)
2133 head_skb = event->chunk->head_skb;
2134 else
2135 head_skb = skb;
2136 sock_recv_ts_and_drops(msg, sk, head_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 if (sctp_ulpevent_is_notification(event)) {
2138 msg->msg_flags |= MSG_NOTIFICATION;
2139 sp->pf->event_msgname(event, msg->msg_name, addr_len);
2140 } else {
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -03002141 sp->pf->skb_msgname(head_skb, msg->msg_name, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 }
2143
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02002144 /* Check if we allow SCTP_NXTINFO. */
2145 if (sp->recvnxtinfo)
2146 sctp_ulpevent_read_nxtinfo(event, msg, sk);
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02002147 /* Check if we allow SCTP_RCVINFO. */
2148 if (sp->recvrcvinfo)
2149 sctp_ulpevent_read_rcvinfo(event, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 /* Check if we allow SCTP_SNDRCVINFO. */
2151 if (sp->subscribe.sctp_data_io_event)
2152 sctp_ulpevent_read_sndrcvinfo(event, msg);
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02002153
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 err = copied;
2155
2156 /* If skb's length exceeds the user's buffer, update the skb and
2157 * push it back to the receive_queue so that the next call to
2158 * recvmsg() will return the remaining data. Don't set MSG_EOR.
2159 */
2160 if (skb_len > copied) {
2161 msg->msg_flags &= ~MSG_EOR;
2162 if (flags & MSG_PEEK)
2163 goto out_free;
2164 sctp_skb_pull(skb, copied);
2165 skb_queue_head(&sk->sk_receive_queue, skb);
2166
Daniel Borkmann362d5202014-04-14 21:45:17 +02002167 /* When only partial message is copied to the user, increase
2168 * rwnd by that amount. If all the data in the skb is read,
2169 * rwnd is updated when the event is freed.
2170 */
2171 if (!sctp_ulpevent_is_notification(event))
2172 sctp_assoc_rwnd_increase(event->asoc, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 goto out;
2174 } else if ((event->msg_flags & MSG_NOTIFICATION) ||
2175 (event->msg_flags & MSG_EOR))
2176 msg->msg_flags |= MSG_EOR;
2177 else
2178 msg->msg_flags &= ~MSG_EOR;
2179
2180out_free:
2181 if (flags & MSG_PEEK) {
2182 /* Release the skb reference acquired after peeking the skb in
2183 * sctp_skb_recv_datagram().
2184 */
2185 kfree_skb(skb);
2186 } else {
2187 /* Free the event which includes releasing the reference to
2188 * the owner of the skb, freeing the skb and updating the
2189 * rwnd.
2190 */
2191 sctp_ulpevent_free(event);
2192 }
2193out:
wangweidong048ed4b2014-01-21 15:44:11 +08002194 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 return err;
2196}
2197
2198/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
2199 *
2200 * This option is a on/off flag. If enabled no SCTP message
2201 * fragmentation will be performed. Instead if a message being sent
2202 * exceeds the current PMTU size, the message will NOT be sent and
2203 * instead a error will be indicated to the user.
2204 */
2205static int sctp_setsockopt_disable_fragments(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002206 char __user *optval,
2207 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208{
2209 int val;
2210
2211 if (optlen < sizeof(int))
2212 return -EINVAL;
2213
2214 if (get_user(val, (int __user *)optval))
2215 return -EFAULT;
2216
2217 sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1;
2218
2219 return 0;
2220}
2221
2222static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002223 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224{
Wei Yongjun94912302011-07-02 09:28:04 +00002225 struct sctp_association *asoc;
2226 struct sctp_ulpevent *event;
2227
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05002228 if (optlen > sizeof(struct sctp_event_subscribe))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 return -EINVAL;
2230 if (copy_from_user(&sctp_sk(sk)->subscribe, optval, optlen))
2231 return -EFAULT;
Wei Yongjun94912302011-07-02 09:28:04 +00002232
Daniel Borkmannbbbea412014-07-12 20:30:40 +02002233 /* At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT,
Wei Yongjun94912302011-07-02 09:28:04 +00002234 * if there is no data to be sent or retransmit, the stack will
2235 * immediately send up this notification.
2236 */
2237 if (sctp_ulpevent_type_enabled(SCTP_SENDER_DRY_EVENT,
2238 &sctp_sk(sk)->subscribe)) {
2239 asoc = sctp_id2assoc(sk, 0);
2240
2241 if (asoc && sctp_outq_is_empty(&asoc->outqueue)) {
2242 event = sctp_ulpevent_make_sender_dry_event(asoc,
2243 GFP_ATOMIC);
2244 if (!event)
2245 return -ENOMEM;
2246
2247 sctp_ulpq_tail_event(&asoc->ulpq, event);
2248 }
2249 }
2250
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 return 0;
2252}
2253
2254/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
2255 *
2256 * This socket option is applicable to the UDP-style socket only. When
2257 * set it will cause associations that are idle for more than the
2258 * specified number of seconds to automatically close. An association
2259 * being idle is defined an association that has NOT sent or received
2260 * user data. The special value of '0' indicates that no automatic
2261 * close of any associations should be performed. The option expects an
2262 * integer defining the number of seconds of idle time before an
2263 * association is closed.
2264 */
2265static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002266 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267{
2268 struct sctp_sock *sp = sctp_sk(sk);
Neil Horman9f70f462013-12-10 06:48:15 -05002269 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
2271 /* Applicable to UDP-style socket only */
2272 if (sctp_style(sk, TCP))
2273 return -EOPNOTSUPP;
2274 if (optlen != sizeof(int))
2275 return -EINVAL;
2276 if (copy_from_user(&sp->autoclose, optval, optlen))
2277 return -EFAULT;
2278
Neil Horman9f70f462013-12-10 06:48:15 -05002279 if (sp->autoclose > net->sctp.max_autoclose)
2280 sp->autoclose = net->sctp.max_autoclose;
2281
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 return 0;
2283}
2284
2285/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
2286 *
2287 * Applications can enable or disable heartbeats for any peer address of
2288 * an association, modify an address's heartbeat interval, force a
2289 * heartbeat to be sent immediately, and adjust the address's maximum
2290 * number of retransmissions sent before an address is considered
2291 * unreachable. The following structure is used to access and modify an
2292 * address's parameters:
2293 *
2294 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002295 * sctp_assoc_t spp_assoc_id;
2296 * struct sockaddr_storage spp_address;
2297 * uint32_t spp_hbinterval;
2298 * uint16_t spp_pathmaxrxt;
2299 * uint32_t spp_pathmtu;
2300 * uint32_t spp_sackdelay;
2301 * uint32_t spp_flags;
2302 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002304 * spp_assoc_id - (one-to-many style socket) This is filled in the
2305 * application, and identifies the association for
2306 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 * spp_address - This specifies which address is of interest.
2308 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08002309 * in milliseconds. If a value of zero
2310 * is present in this field then no changes are to
2311 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 * spp_pathmaxrxt - This contains the maximum number of
2313 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08002314 * considered unreachable. If a value of zero
2315 * is present in this field then no changes are to
2316 * be made to this parameter.
2317 * spp_pathmtu - When Path MTU discovery is disabled the value
2318 * specified here will be the "fixed" path mtu.
2319 * Note that if the spp_address field is empty
2320 * then all associations on this address will
2321 * have this fixed path mtu set upon them.
2322 *
2323 * spp_sackdelay - When delayed sack is enabled, this value specifies
2324 * the number of milliseconds that sacks will be delayed
2325 * for. This value will apply to all addresses of an
2326 * association if the spp_address field is empty. Note
2327 * also, that if delayed sack is enabled and this
2328 * value is set to 0, no change is made to the last
2329 * recorded delayed sack timer value.
2330 *
2331 * spp_flags - These flags are used to control various features
2332 * on an association. The flag field may contain
2333 * zero or more of the following options.
2334 *
2335 * SPP_HB_ENABLE - Enable heartbeats on the
2336 * specified address. Note that if the address
2337 * field is empty all addresses for the association
2338 * have heartbeats enabled upon them.
2339 *
2340 * SPP_HB_DISABLE - Disable heartbeats on the
2341 * speicifed address. Note that if the address
2342 * field is empty all addresses for the association
2343 * will have their heartbeats disabled. Note also
2344 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
2345 * mutually exclusive, only one of these two should
2346 * be specified. Enabling both fields will have
2347 * undetermined results.
2348 *
2349 * SPP_HB_DEMAND - Request a user initiated heartbeat
2350 * to be made immediately.
2351 *
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002352 * SPP_HB_TIME_IS_ZERO - Specify's that the time for
2353 * heartbeat delayis to be set to the value of 0
2354 * milliseconds.
2355 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08002356 * SPP_PMTUD_ENABLE - This field will enable PMTU
2357 * discovery upon the specified address. Note that
2358 * if the address feild is empty then all addresses
2359 * on the association are effected.
2360 *
2361 * SPP_PMTUD_DISABLE - This field will disable PMTU
2362 * discovery upon the specified address. Note that
2363 * if the address feild is empty then all addresses
2364 * on the association are effected. Not also that
2365 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2366 * exclusive. Enabling both will have undetermined
2367 * results.
2368 *
2369 * SPP_SACKDELAY_ENABLE - Setting this flag turns
2370 * on delayed sack. The time specified in spp_sackdelay
2371 * is used to specify the sack delay for this address. Note
2372 * that if spp_address is empty then all addresses will
2373 * enable delayed sack and take on the sack delay
2374 * value specified in spp_sackdelay.
2375 * SPP_SACKDELAY_DISABLE - Setting this flag turns
2376 * off delayed sack. If the spp_address field is blank then
2377 * delayed sack is disabled for the entire association. Note
2378 * also that this field is mutually exclusive to
2379 * SPP_SACKDELAY_ENABLE, setting both will have undefined
2380 * results.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 */
Adrian Bunk16164362006-09-18 00:40:38 -07002382static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2383 struct sctp_transport *trans,
2384 struct sctp_association *asoc,
2385 struct sctp_sock *sp,
2386 int hb_change,
2387 int pmtud_change,
2388 int sackdelay_change)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 int error;
2391
Frank Filz52ccb8e2005-12-22 11:36:46 -08002392 if (params->spp_flags & SPP_HB_DEMAND && trans) {
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00002393 struct net *net = sock_net(trans->asoc->base.sk);
2394
2395 error = sctp_primitive_REQUESTHEARTBEAT(net, trans->asoc, trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 if (error)
2397 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 }
2399
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002400 /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2401 * this field is ignored. Note also that a value of zero indicates
2402 * the current setting should be left unchanged.
2403 */
2404 if (params->spp_flags & SPP_HB_ENABLE) {
2405
2406 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2407 * set. This lets us use 0 value when this flag
2408 * is set.
2409 */
2410 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2411 params->spp_hbinterval = 0;
2412
2413 if (params->spp_hbinterval ||
2414 (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2415 if (trans) {
2416 trans->hbinterval =
2417 msecs_to_jiffies(params->spp_hbinterval);
2418 } else if (asoc) {
2419 asoc->hbinterval =
2420 msecs_to_jiffies(params->spp_hbinterval);
2421 } else {
2422 sp->hbinterval = params->spp_hbinterval;
2423 }
Frank Filz52ccb8e2005-12-22 11:36:46 -08002424 }
2425 }
2426
2427 if (hb_change) {
2428 if (trans) {
2429 trans->param_flags =
2430 (trans->param_flags & ~SPP_HB) | hb_change;
2431 } else if (asoc) {
2432 asoc->param_flags =
2433 (asoc->param_flags & ~SPP_HB) | hb_change;
2434 } else {
2435 sp->param_flags =
2436 (sp->param_flags & ~SPP_HB) | hb_change;
2437 }
2438 }
2439
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002440 /* When Path MTU discovery is disabled the value specified here will
2441 * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2442 * include the flag SPP_PMTUD_DISABLE for this field to have any
2443 * effect).
2444 */
2445 if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002446 if (trans) {
2447 trans->pathmtu = params->spp_pathmtu;
Xin Long3ebfdf02017-04-04 13:39:55 +08002448 sctp_assoc_sync_pmtu(asoc);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002449 } else if (asoc) {
2450 asoc->pathmtu = params->spp_pathmtu;
Frank Filz52ccb8e2005-12-22 11:36:46 -08002451 } else {
2452 sp->pathmtu = params->spp_pathmtu;
2453 }
2454 }
2455
2456 if (pmtud_change) {
2457 if (trans) {
2458 int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2459 (params->spp_flags & SPP_PMTUD_ENABLE);
2460 trans->param_flags =
2461 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2462 if (update) {
Vlad Yasevich9914ae32011-04-26 21:51:31 +00002463 sctp_transport_pmtu(trans, sctp_opt2sk(sp));
Xin Long3ebfdf02017-04-04 13:39:55 +08002464 sctp_assoc_sync_pmtu(asoc);
Frank Filz52ccb8e2005-12-22 11:36:46 -08002465 }
2466 } else if (asoc) {
2467 asoc->param_flags =
2468 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2469 } else {
2470 sp->param_flags =
2471 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2472 }
2473 }
2474
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002475 /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2476 * value of this field is ignored. Note also that a value of zero
2477 * indicates the current setting should be left unchanged.
2478 */
2479 if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002480 if (trans) {
2481 trans->sackdelay =
2482 msecs_to_jiffies(params->spp_sackdelay);
2483 } else if (asoc) {
2484 asoc->sackdelay =
2485 msecs_to_jiffies(params->spp_sackdelay);
2486 } else {
2487 sp->sackdelay = params->spp_sackdelay;
2488 }
2489 }
2490
2491 if (sackdelay_change) {
2492 if (trans) {
2493 trans->param_flags =
2494 (trans->param_flags & ~SPP_SACKDELAY) |
2495 sackdelay_change;
2496 } else if (asoc) {
2497 asoc->param_flags =
2498 (asoc->param_flags & ~SPP_SACKDELAY) |
2499 sackdelay_change;
2500 } else {
2501 sp->param_flags =
2502 (sp->param_flags & ~SPP_SACKDELAY) |
2503 sackdelay_change;
2504 }
2505 }
2506
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002507 /* Note that a value of zero indicates the current setting should be
2508 left unchanged.
Vlad Yasevichbdf30922007-03-23 11:33:12 -07002509 */
Andrei Pelinescu-Onciul37051f72009-11-23 15:53:57 -05002510 if (params->spp_pathmaxrxt) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002511 if (trans) {
2512 trans->pathmaxrxt = params->spp_pathmaxrxt;
2513 } else if (asoc) {
2514 asoc->pathmaxrxt = params->spp_pathmaxrxt;
2515 } else {
2516 sp->pathmaxrxt = params->spp_pathmaxrxt;
2517 }
2518 }
2519
2520 return 0;
2521}
2522
2523static int sctp_setsockopt_peer_addr_params(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002524 char __user *optval,
2525 unsigned int optlen)
Frank Filz52ccb8e2005-12-22 11:36:46 -08002526{
2527 struct sctp_paddrparams params;
2528 struct sctp_transport *trans = NULL;
2529 struct sctp_association *asoc = NULL;
2530 struct sctp_sock *sp = sctp_sk(sk);
2531 int error;
2532 int hb_change, pmtud_change, sackdelay_change;
2533
2534 if (optlen != sizeof(struct sctp_paddrparams))
wangweidongcb3f8372013-12-23 12:16:50 +08002535 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08002536
2537 if (copy_from_user(&params, optval, optlen))
2538 return -EFAULT;
2539
2540 /* Validate flags and value parameters. */
2541 hb_change = params.spp_flags & SPP_HB;
2542 pmtud_change = params.spp_flags & SPP_PMTUD;
2543 sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2544
2545 if (hb_change == SPP_HB ||
2546 pmtud_change == SPP_PMTUD ||
2547 sackdelay_change == SPP_SACKDELAY ||
2548 params.spp_sackdelay > 500 ||
Joe Perchesf64f9e72009-11-29 16:55:45 -08002549 (params.spp_pathmtu &&
2550 params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
Frank Filz52ccb8e2005-12-22 11:36:46 -08002551 return -EINVAL;
2552
2553 /* If an address other than INADDR_ANY is specified, and
2554 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 */
wangweidongcb3f8372013-12-23 12:16:50 +08002556 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002557 trans = sctp_addr_id2transport(sk, &params.spp_address,
2558 params.spp_assoc_id);
2559 if (!trans)
2560 return -EINVAL;
2561 }
2562
2563 /* Get association, if assoc_id != 0 and the socket is a one
2564 * to many style socket, and an association was not found, then
2565 * the id was invalid.
2566 */
2567 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
2568 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP))
2569 return -EINVAL;
2570
2571 /* Heartbeat demand can only be sent on a transport or
2572 * association, but not a socket.
2573 */
2574 if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2575 return -EINVAL;
2576
2577 /* Process parameters. */
2578 error = sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2579 hb_change, pmtud_change,
2580 sackdelay_change);
2581
2582 if (error)
2583 return error;
2584
2585 /* If changes are for association, also apply parameters to each
2586 * transport.
2587 */
2588 if (!trans && asoc) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002589 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2590 transports) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08002591 sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2592 hb_change, pmtud_change,
2593 sackdelay_change);
2594 }
2595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596
2597 return 0;
2598}
2599
wangweidong0ea5e4d2014-01-15 17:24:01 +08002600static inline __u32 sctp_spp_sackdelay_enable(__u32 param_flags)
2601{
2602 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_ENABLE;
2603}
2604
2605static inline __u32 sctp_spp_sackdelay_disable(__u32 param_flags)
2606{
2607 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_DISABLE;
2608}
2609
Wei Yongjund364d922008-05-09 15:13:26 -07002610/*
2611 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08002612 *
Wei Yongjund364d922008-05-09 15:13:26 -07002613 * This option will effect the way delayed acks are performed. This
2614 * option allows you to get or set the delayed ack time, in
2615 * milliseconds. It also allows changing the delayed ack frequency.
2616 * Changing the frequency to 1 disables the delayed sack algorithm. If
2617 * the assoc_id is 0, then this sets or gets the endpoints default
2618 * values. If the assoc_id field is non-zero, then the set or get
2619 * effects the specified association for the one to many model (the
2620 * assoc_id field is ignored by the one to one model). Note that if
2621 * sack_delay or sack_freq are 0 when setting this option, then the
2622 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08002623 *
Wei Yongjund364d922008-05-09 15:13:26 -07002624 * struct sctp_sack_info {
2625 * sctp_assoc_t sack_assoc_id;
2626 * uint32_t sack_delay;
2627 * uint32_t sack_freq;
2628 * };
Frank Filz77086102005-12-22 11:37:30 -08002629 *
Wei Yongjund364d922008-05-09 15:13:26 -07002630 * sack_assoc_id - This parameter, indicates which association the user
2631 * is performing an action upon. Note that if this field's value is
2632 * zero then the endpoints default value is changed (effecting future
2633 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08002634 *
Wei Yongjund364d922008-05-09 15:13:26 -07002635 * sack_delay - This parameter contains the number of milliseconds that
2636 * the user is requesting the delayed ACK timer be set to. Note that
2637 * this value is defined in the standard to be between 200 and 500
2638 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08002639 *
Wei Yongjund364d922008-05-09 15:13:26 -07002640 * sack_freq - This parameter contains the number of packets that must
2641 * be received before a sack is sent without waiting for the delay
2642 * timer to expire. The default value for this is 2, setting this
2643 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08002644 */
2645
Wei Yongjund364d922008-05-09 15:13:26 -07002646static int sctp_setsockopt_delayed_ack(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002647 char __user *optval, unsigned int optlen)
Frank Filz77086102005-12-22 11:37:30 -08002648{
Wei Yongjund364d922008-05-09 15:13:26 -07002649 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08002650 struct sctp_transport *trans = NULL;
2651 struct sctp_association *asoc = NULL;
2652 struct sctp_sock *sp = sctp_sk(sk);
2653
Wei Yongjund364d922008-05-09 15:13:26 -07002654 if (optlen == sizeof(struct sctp_sack_info)) {
2655 if (copy_from_user(&params, optval, optlen))
2656 return -EFAULT;
2657
2658 if (params.sack_delay == 0 && params.sack_freq == 0)
2659 return 0;
2660 } else if (optlen == sizeof(struct sctp_assoc_value)) {
Neil Horman94f65192013-12-23 08:29:43 -05002661 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05002662 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05002663 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05002664 "Use struct sctp_sack_info instead\n",
2665 current->comm, task_pid_nr(current));
Wei Yongjund364d922008-05-09 15:13:26 -07002666 if (copy_from_user(&params, optval, optlen))
2667 return -EFAULT;
2668
2669 if (params.sack_delay == 0)
2670 params.sack_freq = 1;
2671 else
2672 params.sack_freq = 0;
2673 } else
wangweidongcb3f8372013-12-23 12:16:50 +08002674 return -EINVAL;
Frank Filz77086102005-12-22 11:37:30 -08002675
Frank Filz77086102005-12-22 11:37:30 -08002676 /* Validate value parameter. */
Wei Yongjund364d922008-05-09 15:13:26 -07002677 if (params.sack_delay > 500)
Frank Filz77086102005-12-22 11:37:30 -08002678 return -EINVAL;
2679
Wei Yongjund364d922008-05-09 15:13:26 -07002680 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08002681 * to many style socket, and an association was not found, then
2682 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002683 */
Wei Yongjund364d922008-05-09 15:13:26 -07002684 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
2685 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08002686 return -EINVAL;
2687
Wei Yongjund364d922008-05-09 15:13:26 -07002688 if (params.sack_delay) {
Frank Filz77086102005-12-22 11:37:30 -08002689 if (asoc) {
2690 asoc->sackdelay =
Wei Yongjund364d922008-05-09 15:13:26 -07002691 msecs_to_jiffies(params.sack_delay);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002692 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002693 sctp_spp_sackdelay_enable(asoc->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002694 } else {
Wei Yongjund364d922008-05-09 15:13:26 -07002695 sp->sackdelay = params.sack_delay;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002696 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002697 sctp_spp_sackdelay_enable(sp->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002698 }
Wei Yongjund364d922008-05-09 15:13:26 -07002699 }
2700
2701 if (params.sack_freq == 1) {
Frank Filz77086102005-12-22 11:37:30 -08002702 if (asoc) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002703 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002704 sctp_spp_sackdelay_disable(asoc->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002705 } else {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002706 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002707 sctp_spp_sackdelay_disable(sp->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002708 }
Wei Yongjund364d922008-05-09 15:13:26 -07002709 } else if (params.sack_freq > 1) {
2710 if (asoc) {
2711 asoc->sackfreq = params.sack_freq;
2712 asoc->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002713 sctp_spp_sackdelay_enable(asoc->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002714 } else {
2715 sp->sackfreq = params.sack_freq;
2716 sp->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002717 sctp_spp_sackdelay_enable(sp->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002718 }
Frank Filz77086102005-12-22 11:37:30 -08002719 }
2720
2721 /* If change is for association, also apply to each transport. */
2722 if (asoc) {
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002723 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2724 transports) {
Wei Yongjund364d922008-05-09 15:13:26 -07002725 if (params.sack_delay) {
Frank Filz77086102005-12-22 11:37:30 -08002726 trans->sackdelay =
Wei Yongjund364d922008-05-09 15:13:26 -07002727 msecs_to_jiffies(params.sack_delay);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002728 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002729 sctp_spp_sackdelay_enable(trans->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002730 }
Vlad Yasevich7bfe8bdb2008-06-09 15:45:05 -07002731 if (params.sack_freq == 1) {
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002732 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002733 sctp_spp_sackdelay_disable(trans->param_flags);
Wei Yongjund364d922008-05-09 15:13:26 -07002734 } else if (params.sack_freq > 1) {
2735 trans->sackfreq = params.sack_freq;
2736 trans->param_flags =
wangweidong0ea5e4d2014-01-15 17:24:01 +08002737 sctp_spp_sackdelay_enable(trans->param_flags);
Frank Filz77086102005-12-22 11:37:30 -08002738 }
2739 }
2740 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002741
Frank Filz77086102005-12-22 11:37:30 -08002742 return 0;
2743}
2744
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2746 *
2747 * Applications can specify protocol parameters for the default association
2748 * initialization. The option name argument to setsockopt() and getsockopt()
2749 * is SCTP_INITMSG.
2750 *
2751 * Setting initialization parameters is effective only on an unconnected
2752 * socket (for UDP-style sockets only future associations are effected
2753 * by the change). With TCP-style sockets, this option is inherited by
2754 * sockets derived from a listener socket.
2755 */
David S. Millerb7058842009-09-30 16:12:20 -07002756static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757{
2758 struct sctp_initmsg sinit;
2759 struct sctp_sock *sp = sctp_sk(sk);
2760
2761 if (optlen != sizeof(struct sctp_initmsg))
2762 return -EINVAL;
2763 if (copy_from_user(&sinit, optval, optlen))
2764 return -EFAULT;
2765
2766 if (sinit.sinit_num_ostreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002767 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 if (sinit.sinit_max_instreams)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002769 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 if (sinit.sinit_max_attempts)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002771 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 if (sinit.sinit_max_init_timeo)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002773 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
2775 return 0;
2776}
2777
2778/*
2779 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2780 *
2781 * Applications that wish to use the sendto() system call may wish to
2782 * specify a default set of parameters that would normally be supplied
2783 * through the inclusion of ancillary data. This socket option allows
2784 * such an application to set the default sctp_sndrcvinfo structure.
2785 * The application that wishes to use this socket option simply passes
2786 * in to this call the sctp_sndrcvinfo structure defined in Section
2787 * 5.2.2) The input parameters accepted by this call include
2788 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2789 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
2790 * to this call if the caller is using the UDP model.
2791 */
2792static int sctp_setsockopt_default_send_param(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07002793 char __user *optval,
2794 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 struct sctp_sock *sp = sctp_sk(sk);
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002797 struct sctp_association *asoc;
2798 struct sctp_sndrcvinfo info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002800 if (optlen != sizeof(info))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 return -EINVAL;
2802 if (copy_from_user(&info, optval, optlen))
2803 return -EFAULT;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002804 if (info.sinfo_flags &
2805 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2806 SCTP_ABORT | SCTP_EOF))
2807 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808
2809 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
2810 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
2811 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 if (asoc) {
2813 asoc->default_stream = info.sinfo_stream;
2814 asoc->default_flags = info.sinfo_flags;
2815 asoc->default_ppid = info.sinfo_ppid;
2816 asoc->default_context = info.sinfo_context;
2817 asoc->default_timetolive = info.sinfo_timetolive;
2818 } else {
2819 sp->default_stream = info.sinfo_stream;
2820 sp->default_flags = info.sinfo_flags;
2821 sp->default_ppid = info.sinfo_ppid;
2822 sp->default_context = info.sinfo_context;
2823 sp->default_timetolive = info.sinfo_timetolive;
2824 }
2825
2826 return 0;
2827}
2828
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02002829/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
2830 * (SCTP_DEFAULT_SNDINFO)
2831 */
2832static int sctp_setsockopt_default_sndinfo(struct sock *sk,
2833 char __user *optval,
2834 unsigned int optlen)
2835{
2836 struct sctp_sock *sp = sctp_sk(sk);
2837 struct sctp_association *asoc;
2838 struct sctp_sndinfo info;
2839
2840 if (optlen != sizeof(info))
2841 return -EINVAL;
2842 if (copy_from_user(&info, optval, optlen))
2843 return -EFAULT;
2844 if (info.snd_flags &
2845 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2846 SCTP_ABORT | SCTP_EOF))
2847 return -EINVAL;
2848
2849 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
2850 if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
2851 return -EINVAL;
2852 if (asoc) {
2853 asoc->default_stream = info.snd_sid;
2854 asoc->default_flags = info.snd_flags;
2855 asoc->default_ppid = info.snd_ppid;
2856 asoc->default_context = info.snd_context;
2857 } else {
2858 sp->default_stream = info.snd_sid;
2859 sp->default_flags = info.snd_flags;
2860 sp->default_ppid = info.snd_ppid;
2861 sp->default_context = info.snd_context;
2862 }
2863
2864 return 0;
2865}
2866
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
2868 *
2869 * Requests that the local SCTP stack use the enclosed peer address as
2870 * the association primary. The enclosed address must be one of the
2871 * association peer's addresses.
2872 */
2873static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002874 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875{
2876 struct sctp_prim prim;
2877 struct sctp_transport *trans;
2878
2879 if (optlen != sizeof(struct sctp_prim))
2880 return -EINVAL;
2881
2882 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
2883 return -EFAULT;
2884
2885 trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
2886 if (!trans)
2887 return -EINVAL;
2888
2889 sctp_assoc_set_primary(trans->asoc, trans);
2890
2891 return 0;
2892}
2893
2894/*
2895 * 7.1.5 SCTP_NODELAY
2896 *
2897 * Turn on/off any Nagle-like algorithm. This means that packets are
2898 * generally sent as soon as possible and no unnecessary delays are
2899 * introduced, at the cost of more packets in the network. Expects an
2900 * integer boolean flag.
2901 */
2902static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002903 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904{
2905 int val;
2906
2907 if (optlen < sizeof(int))
2908 return -EINVAL;
2909 if (get_user(val, (int __user *)optval))
2910 return -EFAULT;
2911
2912 sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
2913 return 0;
2914}
2915
2916/*
2917 *
2918 * 7.1.1 SCTP_RTOINFO
2919 *
2920 * The protocol parameters used to initialize and bound retransmission
2921 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
2922 * and modify these parameters.
2923 * All parameters are time values, in milliseconds. A value of 0, when
2924 * modifying the parameters, indicates that the current value should not
2925 * be changed.
2926 *
2927 */
David S. Millerb7058842009-09-30 16:12:20 -07002928static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, unsigned int optlen)
2929{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 struct sctp_rtoinfo rtoinfo;
2931 struct sctp_association *asoc;
wangweidong85f935d2013-12-11 09:50:38 +08002932 unsigned long rto_min, rto_max;
2933 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
2935 if (optlen != sizeof (struct sctp_rtoinfo))
2936 return -EINVAL;
2937
2938 if (copy_from_user(&rtoinfo, optval, optlen))
2939 return -EFAULT;
2940
2941 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
2942
2943 /* Set the values to the specific association */
2944 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
2945 return -EINVAL;
2946
wangweidong85f935d2013-12-11 09:50:38 +08002947 rto_max = rtoinfo.srto_max;
2948 rto_min = rtoinfo.srto_min;
2949
2950 if (rto_max)
2951 rto_max = asoc ? msecs_to_jiffies(rto_max) : rto_max;
2952 else
2953 rto_max = asoc ? asoc->rto_max : sp->rtoinfo.srto_max;
2954
2955 if (rto_min)
2956 rto_min = asoc ? msecs_to_jiffies(rto_min) : rto_min;
2957 else
2958 rto_min = asoc ? asoc->rto_min : sp->rtoinfo.srto_min;
2959
2960 if (rto_min > rto_max)
2961 return -EINVAL;
2962
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 if (asoc) {
2964 if (rtoinfo.srto_initial != 0)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002965 asoc->rto_initial =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 msecs_to_jiffies(rtoinfo.srto_initial);
wangweidong85f935d2013-12-11 09:50:38 +08002967 asoc->rto_max = rto_max;
2968 asoc->rto_min = rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 } else {
2970 /* If there is no association or the association-id = 0
2971 * set the values to the endpoint.
2972 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 if (rtoinfo.srto_initial != 0)
2974 sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
wangweidong85f935d2013-12-11 09:50:38 +08002975 sp->rtoinfo.srto_max = rto_max;
2976 sp->rtoinfo.srto_min = rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 }
2978
2979 return 0;
2980}
2981
2982/*
2983 *
2984 * 7.1.2 SCTP_ASSOCINFO
2985 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02002986 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 * of the association.
2988 * Returns an error if the new association retransmission value is
2989 * greater than the sum of the retransmission value of the peer.
2990 * See [SCTP] for more information.
2991 *
2992 */
David S. Millerb7058842009-09-30 16:12:20 -07002993static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994{
2995
2996 struct sctp_assocparams assocparams;
2997 struct sctp_association *asoc;
2998
2999 if (optlen != sizeof(struct sctp_assocparams))
3000 return -EINVAL;
3001 if (copy_from_user(&assocparams, optval, optlen))
3002 return -EFAULT;
3003
3004 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
3005
3006 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
3007 return -EINVAL;
3008
3009 /* Set the values to the specific association */
3010 if (asoc) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003011 if (assocparams.sasoc_asocmaxrxt != 0) {
3012 __u32 path_sum = 0;
3013 int paths = 0;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003014 struct sctp_transport *peer_addr;
3015
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07003016 list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
3017 transports) {
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003018 path_sum += peer_addr->pathmaxrxt;
3019 paths++;
3020 }
3021
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003022 /* Only validate asocmaxrxt if we have more than
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003023 * one path/transport. We do this because path
3024 * retransmissions are only counted when we have more
3025 * then one path.
3026 */
3027 if (paths > 1 &&
3028 assocparams.sasoc_asocmaxrxt > path_sum)
3029 return -EINVAL;
3030
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
Vlad Yasevich402d68c2006-06-17 22:54:51 -07003032 }
3033
Daniel Borkmann52db8822013-06-25 18:17:27 +02003034 if (assocparams.sasoc_cookie_life != 0)
3035 asoc->cookie_life = ms_to_ktime(assocparams.sasoc_cookie_life);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 } else {
3037 /* Set the values to the endpoint */
3038 struct sctp_sock *sp = sctp_sk(sk);
3039
3040 if (assocparams.sasoc_asocmaxrxt != 0)
3041 sp->assocparams.sasoc_asocmaxrxt =
3042 assocparams.sasoc_asocmaxrxt;
3043 if (assocparams.sasoc_cookie_life != 0)
3044 sp->assocparams.sasoc_cookie_life =
3045 assocparams.sasoc_cookie_life;
3046 }
3047 return 0;
3048}
3049
3050/*
3051 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
3052 *
3053 * This socket option is a boolean flag which turns on or off mapped V4
3054 * addresses. If this option is turned on and the socket is type
3055 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
3056 * If this option is turned off, then no mapping will be done of V4
3057 * addresses and a user will receive both PF_INET6 and PF_INET type
3058 * addresses on the socket.
3059 */
David S. Millerb7058842009-09-30 16:12:20 -07003060static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061{
3062 int val;
3063 struct sctp_sock *sp = sctp_sk(sk);
3064
3065 if (optlen < sizeof(int))
3066 return -EINVAL;
3067 if (get_user(val, (int __user *)optval))
3068 return -EFAULT;
3069 if (val)
3070 sp->v4mapped = 1;
3071 else
3072 sp->v4mapped = 0;
3073
3074 return 0;
3075}
3076
3077/*
Wei Yongjune89c2092008-12-25 16:54:58 -08003078 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
3079 * This option will get or set the maximum size to put in any outgoing
3080 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 * fragmented by SCTP into the specified size. Note that the underlying
3082 * SCTP implementation may fragment into smaller sized chunks when the
3083 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08003084 * the user. The default value for this option is '0' which indicates
3085 * the user is NOT limiting fragmentation and only the PMTU will effect
3086 * SCTP's choice of DATA chunk size. Note also that values set larger
3087 * than the maximum size of an IP datagram will effectively let SCTP
3088 * control fragmentation (i.e. the same as setting this option to 0).
3089 *
3090 * The following structure is used to access and modify this parameter:
3091 *
3092 * struct sctp_assoc_value {
3093 * sctp_assoc_t assoc_id;
3094 * uint32_t assoc_value;
3095 * };
3096 *
3097 * assoc_id: This parameter is ignored for one-to-one style sockets.
3098 * For one-to-many style sockets this parameter indicates which
3099 * association the user is performing an action upon. Note that if
3100 * this field's value is zero then the endpoints default value is
3101 * changed (effecting future associations only).
3102 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 */
David S. Millerb7058842009-09-30 16:12:20 -07003104static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105{
Xin Longecca8f82017-11-17 14:11:11 +08003106 struct sctp_sock *sp = sctp_sk(sk);
Wei Yongjune89c2092008-12-25 16:54:58 -08003107 struct sctp_assoc_value params;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 int val;
3110
Wei Yongjune89c2092008-12-25 16:54:58 -08003111 if (optlen == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05003112 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05003113 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05003114 "Use of int in maxseg socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05003115 "Use struct sctp_assoc_value instead\n",
3116 current->comm, task_pid_nr(current));
Wei Yongjune89c2092008-12-25 16:54:58 -08003117 if (copy_from_user(&val, optval, optlen))
3118 return -EFAULT;
3119 params.assoc_id = 0;
3120 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3121 if (copy_from_user(&params, optval, optlen))
3122 return -EFAULT;
3123 val = params.assoc_value;
Xin Longecca8f82017-11-17 14:11:11 +08003124 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 return -EINVAL;
Xin Longecca8f82017-11-17 14:11:11 +08003126 }
Wei Yongjune89c2092008-12-25 16:54:58 -08003127
Xin Longecca8f82017-11-17 14:11:11 +08003128 if (val) {
3129 int min_len, max_len;
3130
3131 min_len = SCTP_DEFAULT_MINSEGMENT - sp->pf->af->net_header_len;
3132 min_len -= sizeof(struct sctphdr) +
3133 sizeof(struct sctp_data_chunk);
3134
3135 max_len = SCTP_MAX_CHUNK_LEN - sizeof(struct sctp_data_chunk);
3136
3137 if (val < min_len || val > max_len)
3138 return -EINVAL;
3139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140
Wei Yongjune89c2092008-12-25 16:54:58 -08003141 asoc = sctp_id2assoc(sk, params.assoc_id);
Wei Yongjune89c2092008-12-25 16:54:58 -08003142 if (asoc) {
3143 if (val == 0) {
Xin Longecca8f82017-11-17 14:11:11 +08003144 val = asoc->pathmtu - sp->pf->af->net_header_len;
Wei Yongjune89c2092008-12-25 16:54:58 -08003145 val -= sizeof(struct sctphdr) +
Xin Longecca8f82017-11-17 14:11:11 +08003146 sizeof(struct sctp_data_chunk);
Wei Yongjune89c2092008-12-25 16:54:58 -08003147 }
Vlad Yasevichf68b2e02009-09-04 18:21:00 -04003148 asoc->user_frag = val;
3149 asoc->frag_point = sctp_frag_point(asoc, asoc->pathmtu);
Wei Yongjune89c2092008-12-25 16:54:58 -08003150 } else {
Xin Longecca8f82017-11-17 14:11:11 +08003151 if (params.assoc_id && sctp_style(sk, UDP))
3152 return -EINVAL;
Wei Yongjune89c2092008-12-25 16:54:58 -08003153 sp->user_frag = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 }
3155
3156 return 0;
3157}
3158
3159
3160/*
3161 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3162 *
3163 * Requests that the peer mark the enclosed address as the association
3164 * primary. The enclosed address must be one of the association's
3165 * locally bound addresses. The following structure is used to make a
3166 * set primary request:
3167 */
3168static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003169 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003171 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 struct sctp_association *asoc = NULL;
3174 struct sctp_setpeerprim prim;
3175 struct sctp_chunk *chunk;
Wei Yongjun40a01032010-12-07 17:11:09 +00003176 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 int err;
3178
3179 sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00003181 if (!net->sctp.addip_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 return -EPERM;
3183
3184 if (optlen != sizeof(struct sctp_setpeerprim))
3185 return -EINVAL;
3186
3187 if (copy_from_user(&prim, optval, optlen))
3188 return -EFAULT;
3189
3190 asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003191 if (!asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 return -EINVAL;
3193
3194 if (!asoc->peer.asconf_capable)
3195 return -EPERM;
3196
3197 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
3198 return -EPERM;
3199
3200 if (!sctp_state(asoc, ESTABLISHED))
3201 return -ENOTCONN;
3202
Wei Yongjun40a01032010-12-07 17:11:09 +00003203 af = sctp_get_af_specific(prim.sspp_addr.ss_family);
3204 if (!af)
3205 return -EINVAL;
3206
3207 if (!af->addr_valid((union sctp_addr *)&prim.sspp_addr, sp, NULL))
3208 return -EADDRNOTAVAIL;
3209
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
3211 return -EADDRNOTAVAIL;
3212
3213 /* Create an ASCONF chunk with SET_PRIMARY parameter */
3214 chunk = sctp_make_asconf_set_prim(asoc,
3215 (union sctp_addr *)&prim.sspp_addr);
3216 if (!chunk)
3217 return -ENOMEM;
3218
3219 err = sctp_send_asconf(asoc, chunk);
3220
Daniel Borkmannbb333812013-06-28 19:49:40 +02003221 pr_debug("%s: we set peer primary addr primitively\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222
3223 return err;
3224}
3225
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003226static int sctp_setsockopt_adaptation_layer(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003227 unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003229 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003231 if (optlen != sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 return -EINVAL;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003233 if (copy_from_user(&adaptation, optval, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 return -EFAULT;
3235
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08003236 sctp_sk(sk)->adaptation_ind = adaptation.ssb_adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237
3238 return 0;
3239}
3240
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003241/*
3242 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
3243 *
3244 * The context field in the sctp_sndrcvinfo structure is normally only
3245 * used when a failed message is retrieved holding the value that was
3246 * sent down on the actual send call. This option allows the setting of
3247 * a default context on an association basis that will be received on
3248 * reading messages from the peer. This is especially helpful in the
3249 * one-2-many model for an application to keep some reference to an
3250 * internal state machine that is processing messages on the
3251 * association. Note that the setting of this value only effects
3252 * received messages from the peer and does not effect the value that is
3253 * saved with outbound messages.
3254 */
3255static int sctp_setsockopt_context(struct sock *sk, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003256 unsigned int optlen)
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08003257{
3258 struct sctp_assoc_value params;
3259 struct sctp_sock *sp;
3260 struct sctp_association *asoc;
3261
3262 if (optlen != sizeof(struct sctp_assoc_value))
3263 return -EINVAL;
3264 if (copy_from_user(&params, optval, optlen))
3265 return -EFAULT;
3266
3267 sp = sctp_sk(sk);
3268
3269 if (params.assoc_id != 0) {
3270 asoc = sctp_id2assoc(sk, params.assoc_id);
3271 if (!asoc)
3272 return -EINVAL;
3273 asoc->default_rcv_context = params.assoc_value;
3274 } else {
3275 sp->default_rcv_context = params.assoc_value;
3276 }
3277
3278 return 0;
3279}
3280
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003281/*
3282 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
3283 *
3284 * This options will at a minimum specify if the implementation is doing
3285 * fragmented interleave. Fragmented interleave, for a one to many
3286 * socket, is when subsequent calls to receive a message may return
3287 * parts of messages from different associations. Some implementations
3288 * may allow you to turn this value on or off. If so, when turned off,
3289 * no fragment interleave will occur (which will cause a head of line
3290 * blocking amongst multiple associations sharing the same one to many
3291 * socket). When this option is turned on, then each receive call may
3292 * come from a different association (thus the user must receive data
3293 * with the extended calls (e.g. sctp_recvmsg) to keep track of which
3294 * association each receive belongs to.
3295 *
3296 * This option takes a boolean value. A non-zero value indicates that
3297 * fragmented interleave is on. A value of zero indicates that
3298 * fragmented interleave is off.
3299 *
3300 * Note that it is important that an implementation that allows this
3301 * option to be turned on, have it off by default. Otherwise an unaware
3302 * application using the one to many model may become confused and act
3303 * incorrectly.
3304 */
3305static int sctp_setsockopt_fragment_interleave(struct sock *sk,
3306 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003307 unsigned int optlen)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07003308{
3309 int val;
3310
3311 if (optlen != sizeof(int))
3312 return -EINVAL;
3313 if (get_user(val, (int __user *)optval))
3314 return -EFAULT;
3315
3316 sctp_sk(sk)->frag_interleave = (val == 0) ? 0 : 1;
3317
3318 return 0;
3319}
3320
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003321/*
Wei Yongjun8510b932008-12-25 16:59:03 -08003322 * 8.1.21. Set or Get the SCTP Partial Delivery Point
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003323 * (SCTP_PARTIAL_DELIVERY_POINT)
Wei Yongjun8510b932008-12-25 16:59:03 -08003324 *
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003325 * This option will set or get the SCTP partial delivery point. This
3326 * point is the size of a message where the partial delivery API will be
3327 * invoked to help free up rwnd space for the peer. Setting this to a
Wei Yongjun8510b932008-12-25 16:59:03 -08003328 * lower value will cause partial deliveries to happen more often. The
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003329 * calls argument is an integer that sets or gets the partial delivery
Wei Yongjun8510b932008-12-25 16:59:03 -08003330 * point. Note also that the call will fail if the user attempts to set
3331 * this value larger than the socket receive buffer size.
3332 *
3333 * Note that any single message having a length smaller than or equal to
3334 * the SCTP partial delivery point will be delivered in one single read
3335 * call as long as the user provided buffer is large enough to hold the
3336 * message.
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003337 */
3338static int sctp_setsockopt_partial_delivery_point(struct sock *sk,
3339 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003340 unsigned int optlen)
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003341{
3342 u32 val;
3343
3344 if (optlen != sizeof(u32))
3345 return -EINVAL;
3346 if (get_user(val, (int __user *)optval))
3347 return -EFAULT;
3348
Wei Yongjun8510b932008-12-25 16:59:03 -08003349 /* Note: We double the receive buffer from what the user sets
3350 * it to be, also initial rwnd is based on rcvbuf/2.
3351 */
3352 if (val > (sk->sk_rcvbuf >> 1))
3353 return -EINVAL;
3354
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07003355 sctp_sk(sk)->pd_point = val;
3356
3357 return 0; /* is this the right error code? */
3358}
3359
Vlad Yasevich70331572007-03-23 11:34:36 -07003360/*
3361 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
3362 *
3363 * This option will allow a user to change the maximum burst of packets
3364 * that can be emitted by this association. Note that the default value
3365 * is 4, and some implementations may restrict this setting so that it
3366 * can only be lowered.
3367 *
3368 * NOTE: This text doesn't seem right. Do this on a socket basis with
3369 * future associations inheriting the socket value.
3370 */
3371static int sctp_setsockopt_maxburst(struct sock *sk,
3372 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003373 unsigned int optlen)
Vlad Yasevich70331572007-03-23 11:34:36 -07003374{
Neil Horman219b99a2008-03-05 13:44:46 -08003375 struct sctp_assoc_value params;
3376 struct sctp_sock *sp;
3377 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07003378 int val;
Neil Horman219b99a2008-03-05 13:44:46 -08003379 int assoc_id = 0;
Vlad Yasevich70331572007-03-23 11:34:36 -07003380
Neil Horman219b99a2008-03-05 13:44:46 -08003381 if (optlen == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05003382 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05003383 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05003384 "Use of int in max_burst socket option deprecated.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05003385 "Use struct sctp_assoc_value instead\n",
3386 current->comm, task_pid_nr(current));
Neil Horman219b99a2008-03-05 13:44:46 -08003387 if (copy_from_user(&val, optval, optlen))
3388 return -EFAULT;
3389 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3390 if (copy_from_user(&params, optval, optlen))
3391 return -EFAULT;
3392 val = params.assoc_value;
3393 assoc_id = params.assoc_id;
3394 } else
3395 return -EINVAL;
3396
3397 sp = sctp_sk(sk);
3398
3399 if (assoc_id != 0) {
3400 asoc = sctp_id2assoc(sk, assoc_id);
3401 if (!asoc)
3402 return -EINVAL;
3403 asoc->max_burst = val;
3404 } else
3405 sp->max_burst = val;
Vlad Yasevich70331572007-03-23 11:34:36 -07003406
3407 return 0;
3408}
3409
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003410/*
3411 * 7.1.18. Add a chunk that must be authenticated (SCTP_AUTH_CHUNK)
3412 *
3413 * This set option adds a chunk type that the user is requesting to be
3414 * received only in an authenticated way. Changes to the list of chunks
3415 * will only effect future associations on the socket.
3416 */
3417static int sctp_setsockopt_auth_chunk(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003418 char __user *optval,
3419 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003420{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003421 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003422 struct sctp_authchunk val;
3423
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003424 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003425 return -EACCES;
3426
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003427 if (optlen != sizeof(struct sctp_authchunk))
3428 return -EINVAL;
3429 if (copy_from_user(&val, optval, optlen))
3430 return -EFAULT;
3431
3432 switch (val.sauth_chunk) {
Joe Perches7fd71b12011-07-01 09:43:11 +00003433 case SCTP_CID_INIT:
3434 case SCTP_CID_INIT_ACK:
3435 case SCTP_CID_SHUTDOWN_COMPLETE:
3436 case SCTP_CID_AUTH:
3437 return -EINVAL;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003438 }
3439
3440 /* add this chunk id to the endpoint */
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003441 return sctp_auth_ep_add_chunkid(ep, val.sauth_chunk);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003442}
3443
3444/*
3445 * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
3446 *
3447 * This option gets or sets the list of HMAC algorithms that the local
3448 * endpoint requires the peer to use.
3449 */
3450static int sctp_setsockopt_hmac_ident(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003451 char __user *optval,
3452 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003453{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003454 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003455 struct sctp_hmacalgo *hmacs;
Vlad Yasevichd9724052008-08-27 16:09:49 -07003456 u32 idents;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003457 int err;
3458
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003459 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003460 return -EACCES;
3461
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003462 if (optlen < sizeof(struct sctp_hmacalgo))
3463 return -EINVAL;
3464
wangweidongcb3f8372013-12-23 12:16:50 +08003465 hmacs = memdup_user(optval, optlen);
Shan Wei934253a2011-04-18 19:13:18 +00003466 if (IS_ERR(hmacs))
3467 return PTR_ERR(hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003468
Vlad Yasevichd9724052008-08-27 16:09:49 -07003469 idents = hmacs->shmac_num_idents;
3470 if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS ||
3471 (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo))) {
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003472 err = -EINVAL;
3473 goto out;
3474 }
3475
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003476 err = sctp_auth_ep_set_hmacs(ep, hmacs);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003477out:
3478 kfree(hmacs);
3479 return err;
3480}
3481
3482/*
3483 * 7.1.20. Set a shared key (SCTP_AUTH_KEY)
3484 *
3485 * This option will set a shared secret key which is used to build an
3486 * association shared key.
3487 */
3488static int sctp_setsockopt_auth_key(struct sock *sk,
3489 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07003490 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003491{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003492 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003493 struct sctp_authkey *authkey;
3494 struct sctp_association *asoc;
3495 int ret;
3496
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003497 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003498 return -EACCES;
3499
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003500 if (optlen <= sizeof(struct sctp_authkey))
3501 return -EINVAL;
3502
wangweidongcb3f8372013-12-23 12:16:50 +08003503 authkey = memdup_user(optval, optlen);
Shan Wei934253a2011-04-18 19:13:18 +00003504 if (IS_ERR(authkey))
3505 return PTR_ERR(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003506
Vlad Yasevich328fc472008-08-27 16:08:54 -07003507 if (authkey->sca_keylength > optlen - sizeof(struct sctp_authkey)) {
Vlad Yasevich30c22352008-08-25 15:16:19 -07003508 ret = -EINVAL;
3509 goto out;
3510 }
3511
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003512 asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
3513 if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) {
3514 ret = -EINVAL;
3515 goto out;
3516 }
3517
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003518 ret = sctp_auth_set_key(ep, asoc, authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003519out:
Daniel Borkmann6ba542a2013-02-08 03:04:34 +00003520 kzfree(authkey);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003521 return ret;
3522}
3523
3524/*
3525 * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
3526 *
3527 * This option will get or set the active shared key to be used to build
3528 * the association shared key.
3529 */
3530static int sctp_setsockopt_active_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003531 char __user *optval,
3532 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003533{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003534 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003535 struct sctp_authkeyid val;
3536 struct sctp_association *asoc;
3537
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003538 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003539 return -EACCES;
3540
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003541 if (optlen != sizeof(struct sctp_authkeyid))
3542 return -EINVAL;
3543 if (copy_from_user(&val, optval, optlen))
3544 return -EFAULT;
3545
3546 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3547 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3548 return -EINVAL;
3549
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003550 return sctp_auth_set_active_key(ep, asoc, val.scact_keynumber);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003551}
3552
3553/*
3554 * 7.1.22. Delete a shared key (SCTP_AUTH_DELETE_KEY)
3555 *
3556 * This set option will delete a shared secret key from use.
3557 */
3558static int sctp_setsockopt_del_key(struct sock *sk,
David S. Millerb7058842009-09-30 16:12:20 -07003559 char __user *optval,
3560 unsigned int optlen)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003561{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003562 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003563 struct sctp_authkeyid val;
3564 struct sctp_association *asoc;
3565
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003566 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07003567 return -EACCES;
3568
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003569 if (optlen != sizeof(struct sctp_authkeyid))
3570 return -EINVAL;
3571 if (copy_from_user(&val, optval, optlen))
3572 return -EFAULT;
3573
3574 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3575 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3576 return -EINVAL;
3577
Vlad Yasevichb14878c2014-04-17 17:26:50 +02003578 return sctp_auth_del_key_id(ep, asoc, val.scact_keynumber);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07003579
3580}
3581
Michio Honda7dc04d72011-04-26 20:16:31 +09003582/*
3583 * 8.1.23 SCTP_AUTO_ASCONF
3584 *
3585 * This option will enable or disable the use of the automatic generation of
3586 * ASCONF chunks to add and delete addresses to an existing association. Note
3587 * that this option has two caveats namely: a) it only affects sockets that
3588 * are bound to all addresses available to the SCTP stack, and b) the system
3589 * administrator may have an overriding control that turns the ASCONF feature
3590 * off no matter what setting the socket option may have.
3591 * This option expects an integer boolean flag, where a non-zero value turns on
3592 * the option, and a zero value turns off the option.
3593 * Note. In this implementation, socket operation overrides default parameter
3594 * being set by sysctl as well as FreeBSD implementation
3595 */
3596static int sctp_setsockopt_auto_asconf(struct sock *sk, char __user *optval,
3597 unsigned int optlen)
3598{
3599 int val;
3600 struct sctp_sock *sp = sctp_sk(sk);
3601
3602 if (optlen < sizeof(int))
3603 return -EINVAL;
3604 if (get_user(val, (int __user *)optval))
3605 return -EFAULT;
3606 if (!sctp_is_ep_boundall(sk) && val)
3607 return -EINVAL;
3608 if ((val && sp->do_auto_asconf) || (!val && !sp->do_auto_asconf))
3609 return 0;
3610
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03003611 spin_lock_bh(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda7dc04d72011-04-26 20:16:31 +09003612 if (val == 0 && sp->do_auto_asconf) {
3613 list_del(&sp->auto_asconf_list);
3614 sp->do_auto_asconf = 0;
3615 } else if (val && !sp->do_auto_asconf) {
3616 list_add_tail(&sp->auto_asconf_list,
Eric W. Biederman4db67e82012-08-06 08:42:04 +00003617 &sock_net(sk)->sctp.auto_asconf_splist);
Michio Honda7dc04d72011-04-26 20:16:31 +09003618 sp->do_auto_asconf = 1;
3619 }
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03003620 spin_unlock_bh(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda7dc04d72011-04-26 20:16:31 +09003621 return 0;
3622}
3623
Neil Horman5aa93bc2012-07-21 07:56:07 +00003624/*
3625 * SCTP_PEER_ADDR_THLDS
3626 *
3627 * This option allows us to alter the partially failed threshold for one or all
3628 * transports in an association. See Section 6.1 of:
3629 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
3630 */
3631static int sctp_setsockopt_paddr_thresholds(struct sock *sk,
3632 char __user *optval,
3633 unsigned int optlen)
3634{
3635 struct sctp_paddrthlds val;
3636 struct sctp_transport *trans;
3637 struct sctp_association *asoc;
3638
3639 if (optlen < sizeof(struct sctp_paddrthlds))
3640 return -EINVAL;
3641 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval,
3642 sizeof(struct sctp_paddrthlds)))
3643 return -EFAULT;
3644
3645
3646 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
3647 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
3648 if (!asoc)
3649 return -ENOENT;
3650 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
3651 transports) {
3652 if (val.spt_pathmaxrxt)
3653 trans->pathmaxrxt = val.spt_pathmaxrxt;
3654 trans->pf_retrans = val.spt_pathpfthld;
3655 }
3656
3657 if (val.spt_pathmaxrxt)
3658 asoc->pathmaxrxt = val.spt_pathmaxrxt;
3659 asoc->pf_retrans = val.spt_pathpfthld;
3660 } else {
3661 trans = sctp_addr_id2transport(sk, &val.spt_address,
3662 val.spt_assoc_id);
3663 if (!trans)
3664 return -ENOENT;
3665
3666 if (val.spt_pathmaxrxt)
3667 trans->pathmaxrxt = val.spt_pathmaxrxt;
3668 trans->pf_retrans = val.spt_pathpfthld;
3669 }
3670
3671 return 0;
3672}
3673
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02003674static int sctp_setsockopt_recvrcvinfo(struct sock *sk,
3675 char __user *optval,
3676 unsigned int optlen)
3677{
3678 int val;
3679
3680 if (optlen < sizeof(int))
3681 return -EINVAL;
3682 if (get_user(val, (int __user *) optval))
3683 return -EFAULT;
3684
3685 sctp_sk(sk)->recvrcvinfo = (val == 0) ? 0 : 1;
3686
3687 return 0;
3688}
3689
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02003690static int sctp_setsockopt_recvnxtinfo(struct sock *sk,
3691 char __user *optval,
3692 unsigned int optlen)
3693{
3694 int val;
3695
3696 if (optlen < sizeof(int))
3697 return -EINVAL;
3698 if (get_user(val, (int __user *) optval))
3699 return -EFAULT;
3700
3701 sctp_sk(sk)->recvnxtinfo = (val == 0) ? 0 : 1;
3702
3703 return 0;
3704}
3705
Xin Long28aa4c22016-07-09 19:47:40 +08003706static int sctp_setsockopt_pr_supported(struct sock *sk,
3707 char __user *optval,
3708 unsigned int optlen)
3709{
3710 struct sctp_assoc_value params;
3711 struct sctp_association *asoc;
3712 int retval = -EINVAL;
3713
3714 if (optlen != sizeof(params))
3715 goto out;
3716
3717 if (copy_from_user(&params, optval, optlen)) {
3718 retval = -EFAULT;
3719 goto out;
3720 }
3721
3722 asoc = sctp_id2assoc(sk, params.assoc_id);
3723 if (asoc) {
3724 asoc->prsctp_enable = !!params.assoc_value;
3725 } else if (!params.assoc_id) {
3726 struct sctp_sock *sp = sctp_sk(sk);
3727
3728 sp->ep->prsctp_enable = !!params.assoc_value;
3729 } else {
3730 goto out;
3731 }
3732
3733 retval = 0;
3734
3735out:
3736 return retval;
3737}
3738
Xin Longf959fb42016-07-09 19:47:41 +08003739static int sctp_setsockopt_default_prinfo(struct sock *sk,
3740 char __user *optval,
3741 unsigned int optlen)
3742{
3743 struct sctp_default_prinfo info;
3744 struct sctp_association *asoc;
3745 int retval = -EINVAL;
3746
3747 if (optlen != sizeof(info))
3748 goto out;
3749
3750 if (copy_from_user(&info, optval, sizeof(info))) {
3751 retval = -EFAULT;
3752 goto out;
3753 }
3754
3755 if (info.pr_policy & ~SCTP_PR_SCTP_MASK)
3756 goto out;
3757
3758 if (info.pr_policy == SCTP_PR_SCTP_NONE)
3759 info.pr_value = 0;
3760
3761 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
3762 if (asoc) {
3763 SCTP_PR_SET_POLICY(asoc->default_flags, info.pr_policy);
3764 asoc->default_timetolive = info.pr_value;
3765 } else if (!info.pr_assoc_id) {
3766 struct sctp_sock *sp = sctp_sk(sk);
3767
3768 SCTP_PR_SET_POLICY(sp->default_flags, info.pr_policy);
3769 sp->default_timetolive = info.pr_value;
3770 } else {
3771 goto out;
3772 }
3773
3774 retval = 0;
3775
3776out:
3777 return retval;
3778}
3779
Xin Longc0d8bab2017-03-10 12:11:12 +08003780static int sctp_setsockopt_reconfig_supported(struct sock *sk,
3781 char __user *optval,
3782 unsigned int optlen)
3783{
3784 struct sctp_assoc_value params;
3785 struct sctp_association *asoc;
3786 int retval = -EINVAL;
3787
3788 if (optlen != sizeof(params))
3789 goto out;
3790
3791 if (copy_from_user(&params, optval, optlen)) {
3792 retval = -EFAULT;
3793 goto out;
3794 }
3795
3796 asoc = sctp_id2assoc(sk, params.assoc_id);
3797 if (asoc) {
3798 asoc->reconf_enable = !!params.assoc_value;
3799 } else if (!params.assoc_id) {
3800 struct sctp_sock *sp = sctp_sk(sk);
3801
3802 sp->ep->reconf_enable = !!params.assoc_value;
3803 } else {
3804 goto out;
3805 }
3806
3807 retval = 0;
3808
3809out:
3810 return retval;
3811}
3812
Xin Long9fb657a2017-01-18 00:44:46 +08003813static int sctp_setsockopt_enable_strreset(struct sock *sk,
3814 char __user *optval,
3815 unsigned int optlen)
3816{
3817 struct sctp_assoc_value params;
3818 struct sctp_association *asoc;
3819 int retval = -EINVAL;
3820
3821 if (optlen != sizeof(params))
3822 goto out;
3823
3824 if (copy_from_user(&params, optval, optlen)) {
3825 retval = -EFAULT;
3826 goto out;
3827 }
3828
3829 if (params.assoc_value & (~SCTP_ENABLE_STRRESET_MASK))
3830 goto out;
3831
3832 asoc = sctp_id2assoc(sk, params.assoc_id);
3833 if (asoc) {
3834 asoc->strreset_enable = params.assoc_value;
3835 } else if (!params.assoc_id) {
3836 struct sctp_sock *sp = sctp_sk(sk);
3837
3838 sp->ep->strreset_enable = params.assoc_value;
3839 } else {
3840 goto out;
3841 }
3842
3843 retval = 0;
3844
3845out:
3846 return retval;
3847}
3848
Xin Long7f9d68a2017-01-18 00:44:47 +08003849static int sctp_setsockopt_reset_streams(struct sock *sk,
3850 char __user *optval,
3851 unsigned int optlen)
3852{
3853 struct sctp_reset_streams *params;
3854 struct sctp_association *asoc;
3855 int retval = -EINVAL;
3856
3857 if (optlen < sizeof(struct sctp_reset_streams))
3858 return -EINVAL;
3859
3860 params = memdup_user(optval, optlen);
3861 if (IS_ERR(params))
3862 return PTR_ERR(params);
3863
3864 asoc = sctp_id2assoc(sk, params->srs_assoc_id);
3865 if (!asoc)
3866 goto out;
3867
3868 retval = sctp_send_reset_streams(asoc, params);
3869
3870out:
3871 kfree(params);
3872 return retval;
3873}
3874
Xin Longa92ce1a2017-02-09 01:18:18 +08003875static int sctp_setsockopt_reset_assoc(struct sock *sk,
3876 char __user *optval,
3877 unsigned int optlen)
3878{
3879 struct sctp_association *asoc;
3880 sctp_assoc_t associd;
3881 int retval = -EINVAL;
3882
3883 if (optlen != sizeof(associd))
3884 goto out;
3885
3886 if (copy_from_user(&associd, optval, optlen)) {
3887 retval = -EFAULT;
3888 goto out;
3889 }
3890
3891 asoc = sctp_id2assoc(sk, associd);
3892 if (!asoc)
3893 goto out;
3894
3895 retval = sctp_send_reset_assoc(asoc);
3896
3897out:
3898 return retval;
3899}
3900
Xin Long242bd2d2017-02-09 01:18:20 +08003901static int sctp_setsockopt_add_streams(struct sock *sk,
3902 char __user *optval,
3903 unsigned int optlen)
3904{
3905 struct sctp_association *asoc;
3906 struct sctp_add_streams params;
3907 int retval = -EINVAL;
3908
3909 if (optlen != sizeof(params))
3910 goto out;
3911
3912 if (copy_from_user(&params, optval, optlen)) {
3913 retval = -EFAULT;
3914 goto out;
3915 }
3916
3917 asoc = sctp_id2assoc(sk, params.sas_assoc_id);
3918 if (!asoc)
3919 goto out;
3920
3921 retval = sctp_send_add_streams(asoc, &params);
3922
3923out:
3924 return retval;
3925}
3926
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03003927static int sctp_setsockopt_scheduler(struct sock *sk,
3928 char __user *optval,
3929 unsigned int optlen)
3930{
3931 struct sctp_association *asoc;
3932 struct sctp_assoc_value params;
3933 int retval = -EINVAL;
3934
3935 if (optlen < sizeof(params))
3936 goto out;
3937
3938 optlen = sizeof(params);
3939 if (copy_from_user(&params, optval, optlen)) {
3940 retval = -EFAULT;
3941 goto out;
3942 }
3943
3944 if (params.assoc_value > SCTP_SS_MAX)
3945 goto out;
3946
3947 asoc = sctp_id2assoc(sk, params.assoc_id);
3948 if (!asoc)
3949 goto out;
3950
3951 retval = sctp_sched_set_sched(asoc, params.assoc_value);
3952
3953out:
3954 return retval;
3955}
3956
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03003957static int sctp_setsockopt_scheduler_value(struct sock *sk,
3958 char __user *optval,
3959 unsigned int optlen)
3960{
3961 struct sctp_association *asoc;
3962 struct sctp_stream_value params;
3963 int retval = -EINVAL;
3964
3965 if (optlen < sizeof(params))
3966 goto out;
3967
3968 optlen = sizeof(params);
3969 if (copy_from_user(&params, optval, optlen)) {
3970 retval = -EFAULT;
3971 goto out;
3972 }
3973
3974 asoc = sctp_id2assoc(sk, params.assoc_id);
3975 if (!asoc)
3976 goto out;
3977
3978 retval = sctp_sched_set_value(asoc, params.stream_id,
3979 params.stream_value, GFP_KERNEL);
3980
3981out:
3982 return retval;
3983}
3984
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985/* API 6.2 setsockopt(), getsockopt()
3986 *
3987 * Applications use setsockopt() and getsockopt() to set or retrieve
3988 * socket options. Socket options are used to change the default
3989 * behavior of sockets calls. They are described in Section 7.
3990 *
3991 * The syntax is:
3992 *
3993 * ret = getsockopt(int sd, int level, int optname, void __user *optval,
3994 * int __user *optlen);
3995 * ret = setsockopt(int sd, int level, int optname, const void __user *optval,
3996 * int optlen);
3997 *
3998 * sd - the socket descript.
3999 * level - set to IPPROTO_SCTP for all SCTP options.
4000 * optname - the option name.
4001 * optval - the buffer to store the value of the option.
4002 * optlen - the size of the buffer.
4003 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004004static int sctp_setsockopt(struct sock *sk, int level, int optname,
4005 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006{
4007 int retval = 0;
4008
Daniel Borkmannbb333812013-06-28 19:49:40 +02004009 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010
4011 /* I can hardly begin to describe how wrong this is. This is
4012 * so broken as to be worse than useless. The API draft
4013 * REALLY is NOT helpful here... I am not convinced that the
4014 * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
4015 * are at all well-founded.
4016 */
4017 if (level != SOL_SCTP) {
4018 struct sctp_af *af = sctp_sk(sk)->pf->af;
4019 retval = af->setsockopt(sk, level, optname, optval, optlen);
4020 goto out_nounlock;
4021 }
4022
wangweidong048ed4b2014-01-21 15:44:11 +08004023 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024
4025 switch (optname) {
4026 case SCTP_SOCKOPT_BINDX_ADD:
4027 /* 'optlen' is the size of the addresses buffer. */
4028 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
4029 optlen, SCTP_BINDX_ADD_ADDR);
4030 break;
4031
4032 case SCTP_SOCKOPT_BINDX_REM:
4033 /* 'optlen' is the size of the addresses buffer. */
4034 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
4035 optlen, SCTP_BINDX_REM_ADDR);
4036 break;
4037
Vlad Yasevich88a0a942008-05-09 15:14:11 -07004038 case SCTP_SOCKOPT_CONNECTX_OLD:
4039 /* 'optlen' is the size of the addresses buffer. */
4040 retval = sctp_setsockopt_connectx_old(sk,
4041 (struct sockaddr __user *)optval,
4042 optlen);
4043 break;
4044
Frank Filz3f7a87d2005-06-20 13:14:57 -07004045 case SCTP_SOCKOPT_CONNECTX:
4046 /* 'optlen' is the size of the addresses buffer. */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07004047 retval = sctp_setsockopt_connectx(sk,
4048 (struct sockaddr __user *)optval,
4049 optlen);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004050 break;
4051
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 case SCTP_DISABLE_FRAGMENTS:
4053 retval = sctp_setsockopt_disable_fragments(sk, optval, optlen);
4054 break;
4055
4056 case SCTP_EVENTS:
4057 retval = sctp_setsockopt_events(sk, optval, optlen);
4058 break;
4059
4060 case SCTP_AUTOCLOSE:
4061 retval = sctp_setsockopt_autoclose(sk, optval, optlen);
4062 break;
4063
4064 case SCTP_PEER_ADDR_PARAMS:
4065 retval = sctp_setsockopt_peer_addr_params(sk, optval, optlen);
4066 break;
4067
Shan Wei4580ccc2011-01-18 22:39:00 +00004068 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07004069 retval = sctp_setsockopt_delayed_ack(sk, optval, optlen);
Frank Filz77086102005-12-22 11:37:30 -08004070 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07004071 case SCTP_PARTIAL_DELIVERY_POINT:
4072 retval = sctp_setsockopt_partial_delivery_point(sk, optval, optlen);
4073 break;
Frank Filz77086102005-12-22 11:37:30 -08004074
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 case SCTP_INITMSG:
4076 retval = sctp_setsockopt_initmsg(sk, optval, optlen);
4077 break;
4078 case SCTP_DEFAULT_SEND_PARAM:
4079 retval = sctp_setsockopt_default_send_param(sk, optval,
4080 optlen);
4081 break;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02004082 case SCTP_DEFAULT_SNDINFO:
4083 retval = sctp_setsockopt_default_sndinfo(sk, optval, optlen);
4084 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 case SCTP_PRIMARY_ADDR:
4086 retval = sctp_setsockopt_primary_addr(sk, optval, optlen);
4087 break;
4088 case SCTP_SET_PEER_PRIMARY_ADDR:
4089 retval = sctp_setsockopt_peer_primary_addr(sk, optval, optlen);
4090 break;
4091 case SCTP_NODELAY:
4092 retval = sctp_setsockopt_nodelay(sk, optval, optlen);
4093 break;
4094 case SCTP_RTOINFO:
4095 retval = sctp_setsockopt_rtoinfo(sk, optval, optlen);
4096 break;
4097 case SCTP_ASSOCINFO:
4098 retval = sctp_setsockopt_associnfo(sk, optval, optlen);
4099 break;
4100 case SCTP_I_WANT_MAPPED_V4_ADDR:
4101 retval = sctp_setsockopt_mappedv4(sk, optval, optlen);
4102 break;
4103 case SCTP_MAXSEG:
4104 retval = sctp_setsockopt_maxseg(sk, optval, optlen);
4105 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004106 case SCTP_ADAPTATION_LAYER:
4107 retval = sctp_setsockopt_adaptation_layer(sk, optval, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004109 case SCTP_CONTEXT:
4110 retval = sctp_setsockopt_context(sk, optval, optlen);
4111 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004112 case SCTP_FRAGMENT_INTERLEAVE:
4113 retval = sctp_setsockopt_fragment_interleave(sk, optval, optlen);
4114 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07004115 case SCTP_MAX_BURST:
4116 retval = sctp_setsockopt_maxburst(sk, optval, optlen);
4117 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07004118 case SCTP_AUTH_CHUNK:
4119 retval = sctp_setsockopt_auth_chunk(sk, optval, optlen);
4120 break;
4121 case SCTP_HMAC_IDENT:
4122 retval = sctp_setsockopt_hmac_ident(sk, optval, optlen);
4123 break;
4124 case SCTP_AUTH_KEY:
4125 retval = sctp_setsockopt_auth_key(sk, optval, optlen);
4126 break;
4127 case SCTP_AUTH_ACTIVE_KEY:
4128 retval = sctp_setsockopt_active_key(sk, optval, optlen);
4129 break;
4130 case SCTP_AUTH_DELETE_KEY:
4131 retval = sctp_setsockopt_del_key(sk, optval, optlen);
4132 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09004133 case SCTP_AUTO_ASCONF:
4134 retval = sctp_setsockopt_auto_asconf(sk, optval, optlen);
4135 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00004136 case SCTP_PEER_ADDR_THLDS:
4137 retval = sctp_setsockopt_paddr_thresholds(sk, optval, optlen);
4138 break;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004139 case SCTP_RECVRCVINFO:
4140 retval = sctp_setsockopt_recvrcvinfo(sk, optval, optlen);
4141 break;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02004142 case SCTP_RECVNXTINFO:
4143 retval = sctp_setsockopt_recvnxtinfo(sk, optval, optlen);
4144 break;
Xin Long28aa4c22016-07-09 19:47:40 +08004145 case SCTP_PR_SUPPORTED:
4146 retval = sctp_setsockopt_pr_supported(sk, optval, optlen);
4147 break;
Xin Longf959fb42016-07-09 19:47:41 +08004148 case SCTP_DEFAULT_PRINFO:
4149 retval = sctp_setsockopt_default_prinfo(sk, optval, optlen);
4150 break;
Xin Longc0d8bab2017-03-10 12:11:12 +08004151 case SCTP_RECONFIG_SUPPORTED:
4152 retval = sctp_setsockopt_reconfig_supported(sk, optval, optlen);
4153 break;
Xin Long9fb657a2017-01-18 00:44:46 +08004154 case SCTP_ENABLE_STREAM_RESET:
4155 retval = sctp_setsockopt_enable_strreset(sk, optval, optlen);
4156 break;
Xin Long7f9d68a2017-01-18 00:44:47 +08004157 case SCTP_RESET_STREAMS:
4158 retval = sctp_setsockopt_reset_streams(sk, optval, optlen);
4159 break;
Xin Longa92ce1a2017-02-09 01:18:18 +08004160 case SCTP_RESET_ASSOC:
4161 retval = sctp_setsockopt_reset_assoc(sk, optval, optlen);
4162 break;
Xin Long242bd2d2017-02-09 01:18:20 +08004163 case SCTP_ADD_STREAMS:
4164 retval = sctp_setsockopt_add_streams(sk, optval, optlen);
4165 break;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03004166 case SCTP_STREAM_SCHEDULER:
4167 retval = sctp_setsockopt_scheduler(sk, optval, optlen);
4168 break;
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03004169 case SCTP_STREAM_SCHEDULER_VALUE:
4170 retval = sctp_setsockopt_scheduler_value(sk, optval, optlen);
4171 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 default:
4173 retval = -ENOPROTOOPT;
4174 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07004175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176
wangweidong048ed4b2014-01-21 15:44:11 +08004177 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178
4179out_nounlock:
4180 return retval;
4181}
4182
4183/* API 3.1.6 connect() - UDP Style Syntax
4184 *
4185 * An application may use the connect() call in the UDP model to initiate an
4186 * association without sending data.
4187 *
4188 * The syntax is:
4189 *
4190 * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
4191 *
4192 * sd: the socket descriptor to have a new association added to.
4193 *
4194 * nam: the address structure (either struct sockaddr_in or struct
4195 * sockaddr_in6 defined in RFC2553 [7]).
4196 *
4197 * len: the size of the address.
4198 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004199static int sctp_connect(struct sock *sk, struct sockaddr *addr,
4200 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 int err = 0;
Frank Filz3f7a87d2005-06-20 13:14:57 -07004203 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204
wangweidong048ed4b2014-01-21 15:44:11 +08004205 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206
Daniel Borkmannbb333812013-06-28 19:49:40 +02004207 pr_debug("%s: sk:%p, sockaddr:%p, addr_len:%d\n", __func__, sk,
4208 addr, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209
Frank Filz3f7a87d2005-06-20 13:14:57 -07004210 /* Validate addr_len before calling common connect/connectx routine. */
4211 af = sctp_get_af_specific(addr->sa_family);
4212 if (!af || addr_len < af->sockaddr_len) {
4213 err = -EINVAL;
4214 } else {
4215 /* Pass correct addr len to common routine (so it knows there
4216 * is only one address being passed.
4217 */
Vlad Yasevich88a0a942008-05-09 15:14:11 -07004218 err = __sctp_connect(sk, addr, af->sockaddr_len, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219 }
4220
wangweidong048ed4b2014-01-21 15:44:11 +08004221 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222 return err;
4223}
4224
4225/* FIXME: Write comments. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004226static int sctp_disconnect(struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227{
4228 return -EOPNOTSUPP; /* STUB */
4229}
4230
4231/* 4.1.4 accept() - TCP Style Syntax
4232 *
4233 * Applications use accept() call to remove an established SCTP
4234 * association from the accept queue of the endpoint. A new socket
4235 * descriptor will be returned from accept() to represent the newly
4236 * formed association.
4237 */
David Howellscdfbabf2017-03-09 08:09:05 +00004238static struct sock *sctp_accept(struct sock *sk, int flags, int *err, bool kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239{
4240 struct sctp_sock *sp;
4241 struct sctp_endpoint *ep;
4242 struct sock *newsk = NULL;
4243 struct sctp_association *asoc;
4244 long timeo;
4245 int error = 0;
4246
wangweidong048ed4b2014-01-21 15:44:11 +08004247 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248
4249 sp = sctp_sk(sk);
4250 ep = sp->ep;
4251
4252 if (!sctp_style(sk, TCP)) {
4253 error = -EOPNOTSUPP;
4254 goto out;
4255 }
4256
4257 if (!sctp_sstate(sk, LISTENING)) {
4258 error = -EINVAL;
4259 goto out;
4260 }
4261
Sridhar Samudrala8abfedd2006-08-22 00:24:09 -07004262 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263
4264 error = sctp_wait_for_accept(sk, timeo);
4265 if (error)
4266 goto out;
4267
4268 /* We treat the list of associations on the endpoint as the accept
4269 * queue and pick the first association on the list.
4270 */
4271 asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
4272
David Howellscdfbabf2017-03-09 08:09:05 +00004273 newsk = sp->pf->create_accept_sk(sk, asoc, kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274 if (!newsk) {
4275 error = -ENOMEM;
4276 goto out;
4277 }
4278
4279 /* Populate the fields of the newsk from the oldsk and migrate the
4280 * asoc to the newsk.
4281 */
4282 sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
4283
4284out:
wangweidong048ed4b2014-01-21 15:44:11 +08004285 release_sock(sk);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004286 *err = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287 return newsk;
4288}
4289
4290/* The SCTP ioctl handler. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004291static int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292{
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004293 int rc = -ENOTCONN;
4294
wangweidong048ed4b2014-01-21 15:44:11 +08004295 lock_sock(sk);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004296
4297 /*
4298 * SEQPACKET-style sockets in LISTENING state are valid, for
4299 * SCTP, so only discard TCP-style sockets in LISTENING state.
4300 */
4301 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
4302 goto out;
4303
4304 switch (cmd) {
4305 case SIOCINQ: {
4306 struct sk_buff *skb;
4307 unsigned int amount = 0;
4308
4309 skb = skb_peek(&sk->sk_receive_queue);
4310 if (skb != NULL) {
4311 /*
4312 * We will only return the amount of this packet since
4313 * that is all that will be read.
4314 */
4315 amount = skb->len;
4316 }
4317 rc = put_user(amount, (int __user *)arg);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004318 break;
David S. Miller9a7241c2010-10-03 22:14:37 -07004319 }
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004320 default:
4321 rc = -ENOIOCTLCMD;
4322 break;
4323 }
4324out:
wangweidong048ed4b2014-01-21 15:44:11 +08004325 release_sock(sk);
Diego Elio 'Flameeyes' Pettenò65040c32010-09-03 03:47:03 +00004326 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327}
4328
4329/* This is the function which gets called during socket creation to
4330 * initialized the SCTP-specific portion of the sock.
4331 * The sock structure should already be zero-filled memory.
4332 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004333static int sctp_init_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004335 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 struct sctp_sock *sp;
4337
Daniel Borkmannbb333812013-06-28 19:49:40 +02004338 pr_debug("%s: sk:%p\n", __func__, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339
4340 sp = sctp_sk(sk);
4341
4342 /* Initialize the SCTP per socket area. */
4343 switch (sk->sk_type) {
4344 case SOCK_SEQPACKET:
4345 sp->type = SCTP_SOCKET_UDP;
4346 break;
4347 case SOCK_STREAM:
4348 sp->type = SCTP_SOCKET_TCP;
4349 break;
4350 default:
4351 return -ESOCKTNOSUPPORT;
4352 }
4353
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -03004354 sk->sk_gso_type = SKB_GSO_SCTP;
4355
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 /* Initialize default send parameters. These parameters can be
4357 * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
4358 */
4359 sp->default_stream = 0;
4360 sp->default_ppid = 0;
4361 sp->default_flags = 0;
4362 sp->default_context = 0;
4363 sp->default_timetolive = 0;
4364
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004365 sp->default_rcv_context = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004366 sp->max_burst = net->sctp.max_burst;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08004367
Neil Horman3c681982012-10-24 09:20:03 +00004368 sp->sctp_hmac_alg = net->sctp.sctp_hmac_alg;
4369
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370 /* Initialize default setup parameters. These parameters
4371 * can be modified with the SCTP_INITMSG socket option or
4372 * overridden by the SCTP_INIT CMSG.
4373 */
4374 sp->initmsg.sinit_num_ostreams = sctp_max_outstreams;
4375 sp->initmsg.sinit_max_instreams = sctp_max_instreams;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004376 sp->initmsg.sinit_max_attempts = net->sctp.max_retrans_init;
4377 sp->initmsg.sinit_max_init_timeo = net->sctp.rto_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378
4379 /* Initialize default RTO related parameters. These parameters can
4380 * be modified for with the SCTP_RTOINFO socket option.
4381 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004382 sp->rtoinfo.srto_initial = net->sctp.rto_initial;
4383 sp->rtoinfo.srto_max = net->sctp.rto_max;
4384 sp->rtoinfo.srto_min = net->sctp.rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385
4386 /* Initialize default association related parameters. These parameters
4387 * can be modified with the SCTP_ASSOCINFO socket option.
4388 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004389 sp->assocparams.sasoc_asocmaxrxt = net->sctp.max_retrans_association;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390 sp->assocparams.sasoc_number_peer_destinations = 0;
4391 sp->assocparams.sasoc_peer_rwnd = 0;
4392 sp->assocparams.sasoc_local_rwnd = 0;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004393 sp->assocparams.sasoc_cookie_life = net->sctp.valid_cookie_life;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394
4395 /* Initialize default event subscriptions. By default, all the
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004396 * options are off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397 */
4398 memset(&sp->subscribe, 0, sizeof(struct sctp_event_subscribe));
4399
4400 /* Default Peer Address Parameters. These defaults can
4401 * be modified via SCTP_PEER_ADDR_PARAMS
4402 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004403 sp->hbinterval = net->sctp.hb_interval;
4404 sp->pathmaxrxt = net->sctp.max_retrans_path;
wangweidong4e2d52b2013-12-23 12:16:54 +08004405 sp->pathmtu = 0; /* allow default discovery */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004406 sp->sackdelay = net->sctp.sack_timeout;
Vlad Yasevich7bfe8bdb2008-06-09 15:45:05 -07004407 sp->sackfreq = 2;
Frank Filz52ccb8e2005-12-22 11:36:46 -08004408 sp->param_flags = SPP_HB_ENABLE |
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09004409 SPP_PMTUD_ENABLE |
4410 SPP_SACKDELAY_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411
4412 /* If enabled no SCTP message fragmentation will be performed.
4413 * Configure through SCTP_DISABLE_FRAGMENTS socket option.
4414 */
4415 sp->disable_fragments = 0;
4416
Sridhar Samudrala208edef2006-09-29 17:08:01 -07004417 /* Enable Nagle algorithm by default. */
4418 sp->nodelay = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004420 sp->recvrcvinfo = 0;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02004421 sp->recvnxtinfo = 0;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02004422
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423 /* Enable by default. */
4424 sp->v4mapped = 1;
4425
4426 /* Auto-close idle associations after the configured
4427 * number of seconds. A value of 0 disables this
4428 * feature. Configure through the SCTP_AUTOCLOSE socket option,
4429 * for UDP-style sockets only.
4430 */
4431 sp->autoclose = 0;
4432
4433 /* User specified fragmentation limit. */
4434 sp->user_frag = 0;
4435
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08004436 sp->adaptation_ind = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437
4438 sp->pf = sctp_get_pf_specific(sk->sk_family);
4439
4440 /* Control variables for partial data delivery. */
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004441 atomic_set(&sp->pd_mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 skb_queue_head_init(&sp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07004443 sp->frag_interleave = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444
4445 /* Create a per socket endpoint structure. Even if we
4446 * change the data structure relationships, this may still
4447 * be useful for storing pre-connect address information.
4448 */
Daniel Borkmannc164b832013-06-14 18:24:06 +02004449 sp->ep = sctp_endpoint_new(sk, GFP_KERNEL);
4450 if (!sp->ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 return -ENOMEM;
4452
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 sp->hmac = NULL;
4454
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004455 sk->sk_destruct = sctp_destruct_sock;
4456
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457 SCTP_DBG_OBJCNT_INC(sock);
David S. Miller6f756a82008-11-23 17:34:03 -08004458
4459 local_bh_disable();
Vlad Yasevich81419d82010-04-28 08:47:20 +00004460 percpu_counter_inc(&sctp_sockets_allocated);
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004461 sock_prot_inuse_add(net, sk->sk_prot, 1);
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004462
4463 /* Nothing can fail after this block, otherwise
4464 * sctp_destroy_sock() will be called without addr_wq_lock held
4465 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004466 if (net->sctp.default_auto_asconf) {
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004467 spin_lock(&sock_net(sk)->sctp.addr_wq_lock);
Michio Honda9f7d6532011-04-26 19:32:51 +09004468 list_add_tail(&sp->auto_asconf_list,
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00004469 &net->sctp.auto_asconf_splist);
Michio Honda9f7d6532011-04-26 19:32:51 +09004470 sp->do_auto_asconf = 1;
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004471 spin_unlock(&sock_net(sk)->sctp.addr_wq_lock);
4472 } else {
Michio Honda9f7d6532011-04-26 19:32:51 +09004473 sp->do_auto_asconf = 0;
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004474 }
4475
David S. Miller6f756a82008-11-23 17:34:03 -08004476 local_bh_enable();
4477
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478 return 0;
4479}
4480
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03004481/* Cleanup any SCTP per socket resources. Must be called with
4482 * sock_net(sk)->sctp.addr_wq_lock held if sp->do_auto_asconf is true
4483 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004484static void sctp_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485{
Michio Honda9f7d6532011-04-26 19:32:51 +09004486 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487
Daniel Borkmannbb333812013-06-28 19:49:40 +02004488 pr_debug("%s: sk:%p\n", __func__, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489
4490 /* Release our hold on the endpoint. */
Michio Honda9f7d6532011-04-26 19:32:51 +09004491 sp = sctp_sk(sk);
Daniel Borkmann1abd1652013-06-06 15:53:47 +02004492 /* This could happen during socket init, thus we bail out
4493 * early, since the rest of the below is not setup either.
4494 */
4495 if (sp->ep == NULL)
4496 return;
4497
Michio Honda9f7d6532011-04-26 19:32:51 +09004498 if (sp->do_auto_asconf) {
4499 sp->do_auto_asconf = 0;
4500 list_del(&sp->auto_asconf_list);
4501 }
4502 sctp_endpoint_free(sp->ep);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004503 local_bh_disable();
Vlad Yasevich81419d82010-04-28 08:47:20 +00004504 percpu_counter_dec(&sctp_sockets_allocated);
Eric Dumazet9a57f7f2008-11-17 02:41:00 -08004505 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
Eric Dumazet5bc0b3b2008-11-25 13:53:27 -08004506 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507}
4508
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004509/* Triggered when there are no references on the socket anymore */
4510static void sctp_destruct_sock(struct sock *sk)
4511{
4512 struct sctp_sock *sp = sctp_sk(sk);
4513
4514 /* Free up the HMAC transform. */
Herbert Xu5821c762016-01-24 21:20:12 +08004515 crypto_free_shash(sp->hmac);
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02004516
4517 inet_sock_destruct(sk);
4518}
4519
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520/* API 4.1.7 shutdown() - TCP Style Syntax
4521 * int shutdown(int socket, int how);
4522 *
4523 * sd - the socket descriptor of the association to be closed.
4524 * how - Specifies the type of shutdown. The values are
4525 * as follows:
4526 * SHUT_RD
4527 * Disables further receive operations. No SCTP
4528 * protocol action is taken.
4529 * SHUT_WR
4530 * Disables further send operations, and initiates
4531 * the SCTP shutdown sequence.
4532 * SHUT_RDWR
4533 * Disables further send and receive operations
4534 * and initiates the SCTP shutdown sequence.
4535 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02004536static void sctp_shutdown(struct sock *sk, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537{
Eric W. Biederman55e26eb2012-08-07 07:25:24 +00004538 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539 struct sctp_endpoint *ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540
4541 if (!sctp_style(sk, TCP))
4542 return;
4543
Xin Long5bf35dd2016-11-13 21:44:37 +08004544 ep = sctp_sk(sk)->ep;
4545 if (how & SEND_SHUTDOWN && !list_empty(&ep->asocs)) {
4546 struct sctp_association *asoc;
4547
Xin Longd46e4162016-06-09 22:48:18 +08004548 sk->sk_state = SCTP_SS_CLOSING;
Xin Long5bf35dd2016-11-13 21:44:37 +08004549 asoc = list_entry(ep->asocs.next,
4550 struct sctp_association, asocs);
4551 sctp_primitive_SHUTDOWN(net, asoc, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552 }
4553}
4554
Xin Long52c52a62016-04-14 15:35:30 +08004555int sctp_get_sctp_info(struct sock *sk, struct sctp_association *asoc,
4556 struct sctp_info *info)
4557{
4558 struct sctp_transport *prim;
4559 struct list_head *pos;
4560 int mask;
4561
4562 memset(info, 0, sizeof(*info));
4563 if (!asoc) {
4564 struct sctp_sock *sp = sctp_sk(sk);
4565
4566 info->sctpi_s_autoclose = sp->autoclose;
4567 info->sctpi_s_adaptation_ind = sp->adaptation_ind;
4568 info->sctpi_s_pd_point = sp->pd_point;
4569 info->sctpi_s_nodelay = sp->nodelay;
4570 info->sctpi_s_disable_fragments = sp->disable_fragments;
4571 info->sctpi_s_v4mapped = sp->v4mapped;
4572 info->sctpi_s_frag_interleave = sp->frag_interleave;
Xin Long40eb90e92016-05-29 17:42:13 +08004573 info->sctpi_s_type = sp->type;
Xin Long52c52a62016-04-14 15:35:30 +08004574
4575 return 0;
4576 }
4577
4578 info->sctpi_tag = asoc->c.my_vtag;
4579 info->sctpi_state = asoc->state;
4580 info->sctpi_rwnd = asoc->a_rwnd;
4581 info->sctpi_unackdata = asoc->unack_data;
4582 info->sctpi_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
Xin Longcee360a2017-05-31 16:36:31 +08004583 info->sctpi_instrms = asoc->stream.incnt;
4584 info->sctpi_outstrms = asoc->stream.outcnt;
Xin Long52c52a62016-04-14 15:35:30 +08004585 list_for_each(pos, &asoc->base.inqueue.in_chunk_list)
4586 info->sctpi_inqueue++;
4587 list_for_each(pos, &asoc->outqueue.out_chunk_list)
4588 info->sctpi_outqueue++;
4589 info->sctpi_overall_error = asoc->overall_error_count;
4590 info->sctpi_max_burst = asoc->max_burst;
4591 info->sctpi_maxseg = asoc->frag_point;
4592 info->sctpi_peer_rwnd = asoc->peer.rwnd;
4593 info->sctpi_peer_tag = asoc->c.peer_vtag;
4594
4595 mask = asoc->peer.ecn_capable << 1;
4596 mask = (mask | asoc->peer.ipv4_address) << 1;
4597 mask = (mask | asoc->peer.ipv6_address) << 1;
4598 mask = (mask | asoc->peer.hostname_address) << 1;
4599 mask = (mask | asoc->peer.asconf_capable) << 1;
4600 mask = (mask | asoc->peer.prsctp_capable) << 1;
4601 mask = (mask | asoc->peer.auth_capable);
4602 info->sctpi_peer_capable = mask;
4603 mask = asoc->peer.sack_needed << 1;
4604 mask = (mask | asoc->peer.sack_generation) << 1;
4605 mask = (mask | asoc->peer.zero_window_announced);
4606 info->sctpi_peer_sack = mask;
4607
4608 info->sctpi_isacks = asoc->stats.isacks;
4609 info->sctpi_osacks = asoc->stats.osacks;
4610 info->sctpi_opackets = asoc->stats.opackets;
4611 info->sctpi_ipackets = asoc->stats.ipackets;
4612 info->sctpi_rtxchunks = asoc->stats.rtxchunks;
4613 info->sctpi_outofseqtsns = asoc->stats.outofseqtsns;
4614 info->sctpi_idupchunks = asoc->stats.idupchunks;
4615 info->sctpi_gapcnt = asoc->stats.gapcnt;
4616 info->sctpi_ouodchunks = asoc->stats.ouodchunks;
4617 info->sctpi_iuodchunks = asoc->stats.iuodchunks;
4618 info->sctpi_oodchunks = asoc->stats.oodchunks;
4619 info->sctpi_iodchunks = asoc->stats.iodchunks;
4620 info->sctpi_octrlchunks = asoc->stats.octrlchunks;
4621 info->sctpi_ictrlchunks = asoc->stats.ictrlchunks;
4622
4623 prim = asoc->peer.primary_path;
Stefano Brivioee6c88b2017-08-23 13:27:13 +02004624 memcpy(&info->sctpi_p_address, &prim->ipaddr, sizeof(prim->ipaddr));
Xin Long52c52a62016-04-14 15:35:30 +08004625 info->sctpi_p_state = prim->state;
4626 info->sctpi_p_cwnd = prim->cwnd;
4627 info->sctpi_p_srtt = prim->srtt;
4628 info->sctpi_p_rto = jiffies_to_msecs(prim->rto);
4629 info->sctpi_p_hbinterval = prim->hbinterval;
4630 info->sctpi_p_pathmaxrxt = prim->pathmaxrxt;
4631 info->sctpi_p_sackdelay = jiffies_to_msecs(prim->sackdelay);
4632 info->sctpi_p_ssthresh = prim->ssthresh;
4633 info->sctpi_p_partial_bytes_acked = prim->partial_bytes_acked;
4634 info->sctpi_p_flight_size = prim->flight_size;
4635 info->sctpi_p_error = prim->error_count;
4636
4637 return 0;
4638}
4639EXPORT_SYMBOL_GPL(sctp_get_sctp_info);
4640
Xin Long626d16f2016-04-14 15:35:31 +08004641/* use callback to avoid exporting the core structure */
4642int sctp_transport_walk_start(struct rhashtable_iter *iter)
4643{
4644 int err;
4645
Xin Long7fda702f2016-11-15 23:23:11 +08004646 rhltable_walk_enter(&sctp_transport_hashtable, iter);
Xin Long626d16f2016-04-14 15:35:31 +08004647
4648 err = rhashtable_walk_start(iter);
Xin Long53fa1032016-04-14 15:35:35 +08004649 if (err && err != -EAGAIN) {
Vegard Nossum5fc382d2016-07-23 09:42:35 +02004650 rhashtable_walk_stop(iter);
Xin Long53fa1032016-04-14 15:35:35 +08004651 rhashtable_walk_exit(iter);
4652 return err;
4653 }
Xin Long626d16f2016-04-14 15:35:31 +08004654
Xin Long53fa1032016-04-14 15:35:35 +08004655 return 0;
Xin Long626d16f2016-04-14 15:35:31 +08004656}
4657
4658void sctp_transport_walk_stop(struct rhashtable_iter *iter)
4659{
4660 rhashtable_walk_stop(iter);
4661 rhashtable_walk_exit(iter);
4662}
4663
4664struct sctp_transport *sctp_transport_get_next(struct net *net,
4665 struct rhashtable_iter *iter)
4666{
4667 struct sctp_transport *t;
4668
4669 t = rhashtable_walk_next(iter);
4670 for (; t; t = rhashtable_walk_next(iter)) {
4671 if (IS_ERR(t)) {
4672 if (PTR_ERR(t) == -EAGAIN)
4673 continue;
4674 break;
4675 }
4676
4677 if (net_eq(sock_net(t->asoc->base.sk), net) &&
4678 t->asoc->peer.primary_path == t)
4679 break;
4680 }
4681
4682 return t;
4683}
4684
4685struct sctp_transport *sctp_transport_get_idx(struct net *net,
4686 struct rhashtable_iter *iter,
4687 int pos)
4688{
4689 void *obj = SEQ_START_TOKEN;
4690
4691 while (pos && (obj = sctp_transport_get_next(net, iter)) &&
4692 !IS_ERR(obj))
4693 pos--;
4694
4695 return obj;
4696}
4697
4698int sctp_for_each_endpoint(int (*cb)(struct sctp_endpoint *, void *),
4699 void *p) {
4700 int err = 0;
4701 int hash = 0;
4702 struct sctp_ep_common *epb;
4703 struct sctp_hashbucket *head;
4704
4705 for (head = sctp_ep_hashtable; hash < sctp_ep_hashsize;
4706 hash++, head++) {
Xin Long581409d2017-06-10 14:48:14 +08004707 read_lock_bh(&head->lock);
Xin Long626d16f2016-04-14 15:35:31 +08004708 sctp_for_each_hentry(epb, &head->chain) {
4709 err = cb(sctp_ep(epb), p);
4710 if (err)
4711 break;
4712 }
Xin Long581409d2017-06-10 14:48:14 +08004713 read_unlock_bh(&head->lock);
Xin Long626d16f2016-04-14 15:35:31 +08004714 }
4715
4716 return err;
4717}
4718EXPORT_SYMBOL_GPL(sctp_for_each_endpoint);
4719
4720int sctp_transport_lookup_process(int (*cb)(struct sctp_transport *, void *),
4721 struct net *net,
4722 const union sctp_addr *laddr,
4723 const union sctp_addr *paddr, void *p)
4724{
4725 struct sctp_transport *transport;
Xin Long08abb792016-12-15 23:05:52 +08004726 int err;
Xin Long626d16f2016-04-14 15:35:31 +08004727
4728 rcu_read_lock();
4729 transport = sctp_addrs_lookup_transport(net, laddr, paddr);
Xin Long626d16f2016-04-14 15:35:31 +08004730 rcu_read_unlock();
Xin Long08abb792016-12-15 23:05:52 +08004731 if (!transport)
4732 return -ENOENT;
4733
Xin Long1cceda782016-09-29 02:55:44 +08004734 err = cb(transport, p);
Xin Longcd26da42016-10-31 20:32:31 +08004735 sctp_transport_put(transport);
Xin Long1cceda782016-09-29 02:55:44 +08004736
Xin Long626d16f2016-04-14 15:35:31 +08004737 return err;
4738}
4739EXPORT_SYMBOL_GPL(sctp_transport_lookup_process);
4740
4741int sctp_for_each_transport(int (*cb)(struct sctp_transport *, void *),
Xin Longd25adbe2017-09-15 11:02:21 +08004742 int (*cb_done)(struct sctp_transport *, void *),
4743 struct net *net, int *pos, void *p) {
Xin Long626d16f2016-04-14 15:35:31 +08004744 struct rhashtable_iter hti;
Xin Longd25adbe2017-09-15 11:02:21 +08004745 struct sctp_transport *tsp;
4746 int ret;
Xin Long626d16f2016-04-14 15:35:31 +08004747
Xin Longd25adbe2017-09-15 11:02:21 +08004748again:
4749 ret = sctp_transport_walk_start(&hti);
4750 if (ret)
4751 return ret;
Xin Long626d16f2016-04-14 15:35:31 +08004752
Xin Longd25adbe2017-09-15 11:02:21 +08004753 tsp = sctp_transport_get_idx(net, &hti, *pos + 1);
4754 for (; !IS_ERR_OR_NULL(tsp); tsp = sctp_transport_get_next(net, &hti)) {
4755 if (!sctp_transport_hold(tsp))
Xin Long626d16f2016-04-14 15:35:31 +08004756 continue;
Xin Longd25adbe2017-09-15 11:02:21 +08004757 ret = cb(tsp, p);
4758 if (ret)
Xin Long626d16f2016-04-14 15:35:31 +08004759 break;
Xin Longd25adbe2017-09-15 11:02:21 +08004760 (*pos)++;
4761 sctp_transport_put(tsp);
Xin Long626d16f2016-04-14 15:35:31 +08004762 }
Xin Long626d16f2016-04-14 15:35:31 +08004763 sctp_transport_walk_stop(&hti);
Xin Long53fa1032016-04-14 15:35:35 +08004764
Xin Longd25adbe2017-09-15 11:02:21 +08004765 if (ret) {
4766 if (cb_done && !cb_done(tsp, p)) {
4767 (*pos)++;
4768 sctp_transport_put(tsp);
4769 goto again;
4770 }
4771 sctp_transport_put(tsp);
4772 }
4773
4774 return ret;
Xin Long626d16f2016-04-14 15:35:31 +08004775}
4776EXPORT_SYMBOL_GPL(sctp_for_each_transport);
4777
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778/* 7.2.1 Association Status (SCTP_STATUS)
4779
4780 * Applications can retrieve current status information about an
4781 * association, including association state, peer receiver window size,
4782 * number of unacked data chunks, and number of data chunks pending
4783 * receipt. This information is read-only.
4784 */
4785static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
4786 char __user *optval,
4787 int __user *optlen)
4788{
4789 struct sctp_status status;
4790 struct sctp_association *asoc = NULL;
4791 struct sctp_transport *transport;
4792 sctp_assoc_t associd;
4793 int retval = 0;
4794
Neil Horman408f22e2007-06-16 14:03:45 -04004795 if (len < sizeof(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796 retval = -EINVAL;
4797 goto out;
4798 }
4799
Neil Horman408f22e2007-06-16 14:03:45 -04004800 len = sizeof(status);
4801 if (copy_from_user(&status, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802 retval = -EFAULT;
4803 goto out;
4804 }
4805
4806 associd = status.sstat_assoc_id;
4807 asoc = sctp_id2assoc(sk, associd);
4808 if (!asoc) {
4809 retval = -EINVAL;
4810 goto out;
4811 }
4812
4813 transport = asoc->peer.primary_path;
4814
4815 status.sstat_assoc_id = sctp_assoc2id(asoc);
Daniel Borkmann38ab1fa2014-08-28 15:28:26 +02004816 status.sstat_state = sctp_assoc_to_state(asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817 status.sstat_rwnd = asoc->peer.rwnd;
4818 status.sstat_unackdata = asoc->unack_data;
4819
4820 status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
Xin Longcee360a2017-05-31 16:36:31 +08004821 status.sstat_instrms = asoc->stream.incnt;
4822 status.sstat_outstrms = asoc->stream.outcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823 status.sstat_fragmentation_point = asoc->frag_point;
4824 status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Al Viro8cec6b82006-11-20 17:23:01 -08004825 memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
4826 transport->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827 /* Map ipv4 address into v4-mapped-on-v6 address. */
Jason Gunthorpe299ee122014-07-30 12:40:53 -06004828 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 (union sctp_addr *)&status.sstat_primary.spinfo_address);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004830 status.sstat_primary.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831 status.sstat_primary.spinfo_cwnd = transport->cwnd;
4832 status.sstat_primary.spinfo_srtt = transport->srtt;
4833 status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08004834 status.sstat_primary.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835
Frank Filz3f7a87d2005-06-20 13:14:57 -07004836 if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
4837 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
4838
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839 if (put_user(len, optlen)) {
4840 retval = -EFAULT;
4841 goto out;
4842 }
4843
Daniel Borkmannbb333812013-06-28 19:49:40 +02004844 pr_debug("%s: len:%d, state:%d, rwnd:%d, assoc_id:%d\n",
4845 __func__, len, status.sstat_state, status.sstat_rwnd,
4846 status.sstat_assoc_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847
4848 if (copy_to_user(optval, &status, len)) {
4849 retval = -EFAULT;
4850 goto out;
4851 }
4852
4853out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00004854 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855}
4856
4857
4858/* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
4859 *
4860 * Applications can retrieve information about a specific peer address
4861 * of an association, including its reachability state, congestion
4862 * window, and retransmission timer values. This information is
4863 * read-only.
4864 */
4865static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
4866 char __user *optval,
4867 int __user *optlen)
4868{
4869 struct sctp_paddrinfo pinfo;
4870 struct sctp_transport *transport;
4871 int retval = 0;
4872
Neil Horman408f22e2007-06-16 14:03:45 -04004873 if (len < sizeof(pinfo)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874 retval = -EINVAL;
4875 goto out;
4876 }
4877
Neil Horman408f22e2007-06-16 14:03:45 -04004878 len = sizeof(pinfo);
4879 if (copy_from_user(&pinfo, optval, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880 retval = -EFAULT;
4881 goto out;
4882 }
4883
4884 transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
4885 pinfo.spinfo_assoc_id);
4886 if (!transport)
4887 return -EINVAL;
4888
4889 pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
Frank Filz3f7a87d2005-06-20 13:14:57 -07004890 pinfo.spinfo_state = transport->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891 pinfo.spinfo_cwnd = transport->cwnd;
4892 pinfo.spinfo_srtt = transport->srtt;
4893 pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
Frank Filz52ccb8e2005-12-22 11:36:46 -08004894 pinfo.spinfo_mtu = transport->pathmtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895
Frank Filz3f7a87d2005-06-20 13:14:57 -07004896 if (pinfo.spinfo_state == SCTP_UNKNOWN)
4897 pinfo.spinfo_state = SCTP_ACTIVE;
4898
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899 if (put_user(len, optlen)) {
4900 retval = -EFAULT;
4901 goto out;
4902 }
4903
4904 if (copy_to_user(optval, &pinfo, len)) {
4905 retval = -EFAULT;
4906 goto out;
4907 }
4908
4909out:
Eric Dumazeta02cec22010-09-22 20:43:57 +00004910 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911}
4912
4913/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
4914 *
4915 * This option is a on/off flag. If enabled no SCTP message
4916 * fragmentation will be performed. Instead if a message being sent
4917 * exceeds the current PMTU size, the message will NOT be sent and
4918 * instead a error will be indicated to the user.
4919 */
4920static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
4921 char __user *optval, int __user *optlen)
4922{
4923 int val;
4924
4925 if (len < sizeof(int))
4926 return -EINVAL;
4927
4928 len = sizeof(int);
4929 val = (sctp_sk(sk)->disable_fragments == 1);
4930 if (put_user(len, optlen))
4931 return -EFAULT;
4932 if (copy_to_user(optval, &val, len))
4933 return -EFAULT;
4934 return 0;
4935}
4936
4937/* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
4938 *
4939 * This socket option is used to specify various notifications and
4940 * ancillary data the user wishes to receive.
4941 */
4942static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
4943 int __user *optlen)
4944{
Jiri Slabya4b8e712016-10-21 14:13:24 +02004945 if (len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946 return -EINVAL;
Thomas Grafacdd5982012-04-03 22:17:53 +00004947 if (len > sizeof(struct sctp_event_subscribe))
4948 len = sizeof(struct sctp_event_subscribe);
Neil Horman408f22e2007-06-16 14:03:45 -04004949 if (put_user(len, optlen))
4950 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951 if (copy_to_user(optval, &sctp_sk(sk)->subscribe, len))
4952 return -EFAULT;
4953 return 0;
4954}
4955
4956/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
4957 *
4958 * This socket option is applicable to the UDP-style socket only. When
4959 * set it will cause associations that are idle for more than the
4960 * specified number of seconds to automatically close. An association
4961 * being idle is defined an association that has NOT sent or received
4962 * user data. The special value of '0' indicates that no automatic
4963 * close of any associations should be performed. The option expects an
4964 * integer defining the number of seconds of idle time before an
4965 * association is closed.
4966 */
4967static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
4968{
4969 /* Applicable to UDP-style socket only */
4970 if (sctp_style(sk, TCP))
4971 return -EOPNOTSUPP;
Neil Horman408f22e2007-06-16 14:03:45 -04004972 if (len < sizeof(int))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04004974 len = sizeof(int);
4975 if (put_user(len, optlen))
4976 return -EFAULT;
4977 if (copy_to_user(optval, &sctp_sk(sk)->autoclose, sizeof(int)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978 return -EFAULT;
4979 return 0;
4980}
4981
4982/* Helper routine to branch off an association to a new socket. */
Benjamin Poirier0343c552012-03-08 05:55:58 +00004983int sctp_do_peeloff(struct sock *sk, sctp_assoc_t id, struct socket **sockp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984{
Benjamin Poirier0343c552012-03-08 05:55:58 +00004985 struct sctp_association *asoc = sctp_id2assoc(sk, id);
Jason Gunthorpe299ee122014-07-30 12:40:53 -06004986 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987 struct socket *sock;
4988 int err = 0;
4989
Xin Longdf80cd92017-10-17 23:26:10 +08004990 /* Do not peel off from one netns to another one. */
4991 if (!net_eq(current->nsproxy->net_ns, sock_net(sk)))
4992 return -EINVAL;
4993
Benjamin Poirier0343c552012-03-08 05:55:58 +00004994 if (!asoc)
4995 return -EINVAL;
4996
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997 /* An association cannot be branched off from an already peeled-off
4998 * socket, nor is this supported for tcp style sockets.
4999 */
5000 if (!sctp_style(sk, UDP))
5001 return -EINVAL;
5002
5003 /* Create a new socket. */
5004 err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
5005 if (err < 0)
5006 return err;
5007
Vlad Yasevich914e1c82009-02-13 08:33:44 +00005008 sctp_copy_sock(sock->sk, sk, asoc);
Vlad Yasevich4f444302006-10-30 18:54:32 -08005009
5010 /* Make peeled-off sockets more like 1-1 accepted sockets.
5011 * Set the daddr and initialize id to something more random
5012 */
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005013 sp->pf->to_sk_daddr(&asoc->peer.primary_addr, sk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00005014
5015 /* Populate the fields of the newsk from the oldsk and migrate the
5016 * asoc to the newsk.
5017 */
5018 sctp_sock_migrate(sk, sock->sk, asoc, SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
Vlad Yasevich4f444302006-10-30 18:54:32 -08005019
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020 *sockp = sock;
5021
5022 return err;
5023}
Benjamin Poirier0343c552012-03-08 05:55:58 +00005024EXPORT_SYMBOL(sctp_do_peeloff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005026static int sctp_getsockopt_peeloff_common(struct sock *sk, sctp_peeloff_arg_t *peeloff,
5027 struct file **newfile, unsigned flags)
5028{
5029 struct socket *newsock;
5030 int retval;
5031
5032 retval = sctp_do_peeloff(sk, peeloff->associd, &newsock);
5033 if (retval < 0)
5034 goto out;
5035
5036 /* Map the socket to an unused fd that can be returned to the user. */
5037 retval = get_unused_fd_flags(flags & SOCK_CLOEXEC);
5038 if (retval < 0) {
5039 sock_release(newsock);
5040 goto out;
5041 }
5042
5043 *newfile = sock_alloc_file(newsock, 0, NULL);
5044 if (IS_ERR(*newfile)) {
5045 put_unused_fd(retval);
5046 sock_release(newsock);
5047 retval = PTR_ERR(*newfile);
5048 *newfile = NULL;
5049 return retval;
5050 }
5051
5052 pr_debug("%s: sk:%p, newsk:%p, sd:%d\n", __func__, sk, newsock->sk,
5053 retval);
5054
5055 peeloff->sd = retval;
5056
5057 if (flags & SOCK_NONBLOCK)
5058 (*newfile)->f_flags |= O_NONBLOCK;
5059out:
5060 return retval;
5061}
5062
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
5064{
5065 sctp_peeloff_arg_t peeloff;
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005066 struct file *newfile = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068
Neil Horman408f22e2007-06-16 14:03:45 -04005069 if (len < sizeof(sctp_peeloff_arg_t))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005070 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005071 len = sizeof(sctp_peeloff_arg_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072 if (copy_from_user(&peeloff, optval, len))
5073 return -EFAULT;
5074
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005075 retval = sctp_getsockopt_peeloff_common(sk, &peeloff, &newfile, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076 if (retval < 0)
5077 goto out;
5078
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079 /* Return the fd mapped to the new socket. */
Al Viro56b31d12012-08-18 00:25:51 -04005080 if (put_user(len, optlen)) {
5081 fput(newfile);
5082 put_unused_fd(retval);
Neil Horman408f22e2007-06-16 14:03:45 -04005083 return -EFAULT;
Al Viro56b31d12012-08-18 00:25:51 -04005084 }
Neil Horman2cb5c8e2017-06-30 13:32:57 -04005085
5086 if (copy_to_user(optval, &peeloff, len)) {
5087 fput(newfile);
5088 put_unused_fd(retval);
5089 return -EFAULT;
5090 }
5091 fd_install(retval, newfile);
5092out:
5093 return retval;
5094}
5095
5096static int sctp_getsockopt_peeloff_flags(struct sock *sk, int len,
5097 char __user *optval, int __user *optlen)
5098{
5099 sctp_peeloff_flags_arg_t peeloff;
5100 struct file *newfile = NULL;
5101 int retval = 0;
5102
5103 if (len < sizeof(sctp_peeloff_flags_arg_t))
5104 return -EINVAL;
5105 len = sizeof(sctp_peeloff_flags_arg_t);
5106 if (copy_from_user(&peeloff, optval, len))
5107 return -EFAULT;
5108
5109 retval = sctp_getsockopt_peeloff_common(sk, &peeloff.p_arg,
5110 &newfile, peeloff.flags);
5111 if (retval < 0)
5112 goto out;
5113
5114 /* Return the fd mapped to the new socket. */
5115 if (put_user(len, optlen)) {
5116 fput(newfile);
5117 put_unused_fd(retval);
5118 return -EFAULT;
5119 }
5120
Al Viro56b31d12012-08-18 00:25:51 -04005121 if (copy_to_user(optval, &peeloff, len)) {
5122 fput(newfile);
5123 put_unused_fd(retval);
5124 return -EFAULT;
5125 }
5126 fd_install(retval, newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127out:
5128 return retval;
5129}
5130
5131/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
5132 *
5133 * Applications can enable or disable heartbeats for any peer address of
5134 * an association, modify an address's heartbeat interval, force a
5135 * heartbeat to be sent immediately, and adjust the address's maximum
5136 * number of retransmissions sent before an address is considered
5137 * unreachable. The following structure is used to access and modify an
5138 * address's parameters:
5139 *
5140 * struct sctp_paddrparams {
Frank Filz52ccb8e2005-12-22 11:36:46 -08005141 * sctp_assoc_t spp_assoc_id;
5142 * struct sockaddr_storage spp_address;
5143 * uint32_t spp_hbinterval;
5144 * uint16_t spp_pathmaxrxt;
5145 * uint32_t spp_pathmtu;
5146 * uint32_t spp_sackdelay;
5147 * uint32_t spp_flags;
5148 * };
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149 *
Frank Filz52ccb8e2005-12-22 11:36:46 -08005150 * spp_assoc_id - (one-to-many style socket) This is filled in the
5151 * application, and identifies the association for
5152 * this query.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153 * spp_address - This specifies which address is of interest.
5154 * spp_hbinterval - This contains the value of the heartbeat interval,
Frank Filz52ccb8e2005-12-22 11:36:46 -08005155 * in milliseconds. If a value of zero
5156 * is present in this field then no changes are to
5157 * be made to this parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158 * spp_pathmaxrxt - This contains the maximum number of
5159 * retransmissions before this address shall be
Frank Filz52ccb8e2005-12-22 11:36:46 -08005160 * considered unreachable. If a value of zero
5161 * is present in this field then no changes are to
5162 * be made to this parameter.
5163 * spp_pathmtu - When Path MTU discovery is disabled the value
5164 * specified here will be the "fixed" path mtu.
5165 * Note that if the spp_address field is empty
5166 * then all associations on this address will
5167 * have this fixed path mtu set upon them.
5168 *
5169 * spp_sackdelay - When delayed sack is enabled, this value specifies
5170 * the number of milliseconds that sacks will be delayed
5171 * for. This value will apply to all addresses of an
5172 * association if the spp_address field is empty. Note
5173 * also, that if delayed sack is enabled and this
5174 * value is set to 0, no change is made to the last
5175 * recorded delayed sack timer value.
5176 *
5177 * spp_flags - These flags are used to control various features
5178 * on an association. The flag field may contain
5179 * zero or more of the following options.
5180 *
5181 * SPP_HB_ENABLE - Enable heartbeats on the
5182 * specified address. Note that if the address
5183 * field is empty all addresses for the association
5184 * have heartbeats enabled upon them.
5185 *
5186 * SPP_HB_DISABLE - Disable heartbeats on the
5187 * speicifed address. Note that if the address
5188 * field is empty all addresses for the association
5189 * will have their heartbeats disabled. Note also
5190 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
5191 * mutually exclusive, only one of these two should
5192 * be specified. Enabling both fields will have
5193 * undetermined results.
5194 *
5195 * SPP_HB_DEMAND - Request a user initiated heartbeat
5196 * to be made immediately.
5197 *
5198 * SPP_PMTUD_ENABLE - This field will enable PMTU
5199 * discovery upon the specified address. Note that
5200 * if the address feild is empty then all addresses
5201 * on the association are effected.
5202 *
5203 * SPP_PMTUD_DISABLE - This field will disable PMTU
5204 * discovery upon the specified address. Note that
5205 * if the address feild is empty then all addresses
5206 * on the association are effected. Not also that
5207 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
5208 * exclusive. Enabling both will have undetermined
5209 * results.
5210 *
5211 * SPP_SACKDELAY_ENABLE - Setting this flag turns
5212 * on delayed sack. The time specified in spp_sackdelay
5213 * is used to specify the sack delay for this address. Note
5214 * that if spp_address is empty then all addresses will
5215 * enable delayed sack and take on the sack delay
5216 * value specified in spp_sackdelay.
5217 * SPP_SACKDELAY_DISABLE - Setting this flag turns
5218 * off delayed sack. If the spp_address field is blank then
5219 * delayed sack is disabled for the entire association. Note
5220 * also that this field is mutually exclusive to
5221 * SPP_SACKDELAY_ENABLE, setting both will have undefined
5222 * results.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223 */
5224static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
Frank Filz52ccb8e2005-12-22 11:36:46 -08005225 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226{
Frank Filz52ccb8e2005-12-22 11:36:46 -08005227 struct sctp_paddrparams params;
5228 struct sctp_transport *trans = NULL;
5229 struct sctp_association *asoc = NULL;
5230 struct sctp_sock *sp = sctp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231
Neil Horman408f22e2007-06-16 14:03:45 -04005232 if (len < sizeof(struct sctp_paddrparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005234 len = sizeof(struct sctp_paddrparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005235 if (copy_from_user(&params, optval, len))
5236 return -EFAULT;
5237
Frank Filz52ccb8e2005-12-22 11:36:46 -08005238 /* If an address other than INADDR_ANY is specified, and
5239 * no transport is found, then the request is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240 */
wangweidongcb3f8372013-12-23 12:16:50 +08005241 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
Frank Filz52ccb8e2005-12-22 11:36:46 -08005242 trans = sctp_addr_id2transport(sk, &params.spp_address,
5243 params.spp_assoc_id);
5244 if (!trans) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02005245 pr_debug("%s: failed no transport\n", __func__);
Frank Filz52ccb8e2005-12-22 11:36:46 -08005246 return -EINVAL;
5247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248 }
5249
Frank Filz52ccb8e2005-12-22 11:36:46 -08005250 /* Get association, if assoc_id != 0 and the socket is a one
5251 * to many style socket, and an association was not found, then
5252 * the id was invalid.
5253 */
5254 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
5255 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP)) {
Daniel Borkmannbb333812013-06-28 19:49:40 +02005256 pr_debug("%s: failed no association\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257 return -EINVAL;
Frank Filz52ccb8e2005-12-22 11:36:46 -08005258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259
Frank Filz52ccb8e2005-12-22 11:36:46 -08005260 if (trans) {
5261 /* Fetch transport values. */
5262 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
5263 params.spp_pathmtu = trans->pathmtu;
5264 params.spp_pathmaxrxt = trans->pathmaxrxt;
5265 params.spp_sackdelay = jiffies_to_msecs(trans->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266
Frank Filz52ccb8e2005-12-22 11:36:46 -08005267 /*draft-11 doesn't say what to return in spp_flags*/
5268 params.spp_flags = trans->param_flags;
5269 } else if (asoc) {
5270 /* Fetch association values. */
5271 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
5272 params.spp_pathmtu = asoc->pathmtu;
5273 params.spp_pathmaxrxt = asoc->pathmaxrxt;
5274 params.spp_sackdelay = jiffies_to_msecs(asoc->sackdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275
Frank Filz52ccb8e2005-12-22 11:36:46 -08005276 /*draft-11 doesn't say what to return in spp_flags*/
5277 params.spp_flags = asoc->param_flags;
5278 } else {
5279 /* Fetch socket values. */
5280 params.spp_hbinterval = sp->hbinterval;
5281 params.spp_pathmtu = sp->pathmtu;
5282 params.spp_sackdelay = sp->sackdelay;
5283 params.spp_pathmaxrxt = sp->pathmaxrxt;
5284
5285 /*draft-11 doesn't say what to return in spp_flags*/
5286 params.spp_flags = sp->param_flags;
5287 }
5288
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289 if (copy_to_user(optval, &params, len))
5290 return -EFAULT;
5291
5292 if (put_user(len, optlen))
5293 return -EFAULT;
5294
5295 return 0;
5296}
5297
Wei Yongjund364d922008-05-09 15:13:26 -07005298/*
5299 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
Frank Filz77086102005-12-22 11:37:30 -08005300 *
Wei Yongjund364d922008-05-09 15:13:26 -07005301 * This option will effect the way delayed acks are performed. This
5302 * option allows you to get or set the delayed ack time, in
5303 * milliseconds. It also allows changing the delayed ack frequency.
5304 * Changing the frequency to 1 disables the delayed sack algorithm. If
5305 * the assoc_id is 0, then this sets or gets the endpoints default
5306 * values. If the assoc_id field is non-zero, then the set or get
5307 * effects the specified association for the one to many model (the
5308 * assoc_id field is ignored by the one to one model). Note that if
5309 * sack_delay or sack_freq are 0 when setting this option, then the
5310 * current values will remain unchanged.
Frank Filz77086102005-12-22 11:37:30 -08005311 *
Wei Yongjund364d922008-05-09 15:13:26 -07005312 * struct sctp_sack_info {
5313 * sctp_assoc_t sack_assoc_id;
5314 * uint32_t sack_delay;
5315 * uint32_t sack_freq;
5316 * };
Frank Filz77086102005-12-22 11:37:30 -08005317 *
Wei Yongjund364d922008-05-09 15:13:26 -07005318 * sack_assoc_id - This parameter, indicates which association the user
5319 * is performing an action upon. Note that if this field's value is
5320 * zero then the endpoints default value is changed (effecting future
5321 * associations only).
Frank Filz77086102005-12-22 11:37:30 -08005322 *
Wei Yongjund364d922008-05-09 15:13:26 -07005323 * sack_delay - This parameter contains the number of milliseconds that
5324 * the user is requesting the delayed ACK timer be set to. Note that
5325 * this value is defined in the standard to be between 200 and 500
5326 * milliseconds.
Frank Filz77086102005-12-22 11:37:30 -08005327 *
Wei Yongjund364d922008-05-09 15:13:26 -07005328 * sack_freq - This parameter contains the number of packets that must
5329 * be received before a sack is sent without waiting for the delay
5330 * timer to expire. The default value for this is 2, setting this
5331 * value to 1 will disable the delayed sack algorithm.
Frank Filz77086102005-12-22 11:37:30 -08005332 */
Wei Yongjund364d922008-05-09 15:13:26 -07005333static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
Frank Filz77086102005-12-22 11:37:30 -08005334 char __user *optval,
5335 int __user *optlen)
5336{
Wei Yongjund364d922008-05-09 15:13:26 -07005337 struct sctp_sack_info params;
Frank Filz77086102005-12-22 11:37:30 -08005338 struct sctp_association *asoc = NULL;
5339 struct sctp_sock *sp = sctp_sk(sk);
5340
Wei Yongjund364d922008-05-09 15:13:26 -07005341 if (len >= sizeof(struct sctp_sack_info)) {
5342 len = sizeof(struct sctp_sack_info);
5343
5344 if (copy_from_user(&params, optval, len))
5345 return -EFAULT;
5346 } else if (len == sizeof(struct sctp_assoc_value)) {
Neil Horman94f65192013-12-23 08:29:43 -05005347 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05005348 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05005349 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05005350 "Use struct sctp_sack_info instead\n",
5351 current->comm, task_pid_nr(current));
Wei Yongjund364d922008-05-09 15:13:26 -07005352 if (copy_from_user(&params, optval, len))
5353 return -EFAULT;
5354 } else
wangweidongcb3f8372013-12-23 12:16:50 +08005355 return -EINVAL;
Frank Filz77086102005-12-22 11:37:30 -08005356
Wei Yongjund364d922008-05-09 15:13:26 -07005357 /* Get association, if sack_assoc_id != 0 and the socket is a one
Frank Filz77086102005-12-22 11:37:30 -08005358 * to many style socket, and an association was not found, then
5359 * the id was invalid.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005360 */
Wei Yongjund364d922008-05-09 15:13:26 -07005361 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
5362 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
Frank Filz77086102005-12-22 11:37:30 -08005363 return -EINVAL;
5364
5365 if (asoc) {
5366 /* Fetch association values. */
Wei Yongjund364d922008-05-09 15:13:26 -07005367 if (asoc->param_flags & SPP_SACKDELAY_ENABLE) {
5368 params.sack_delay = jiffies_to_msecs(
Frank Filz77086102005-12-22 11:37:30 -08005369 asoc->sackdelay);
Wei Yongjund364d922008-05-09 15:13:26 -07005370 params.sack_freq = asoc->sackfreq;
5371
5372 } else {
5373 params.sack_delay = 0;
5374 params.sack_freq = 1;
5375 }
Frank Filz77086102005-12-22 11:37:30 -08005376 } else {
5377 /* Fetch socket values. */
Wei Yongjund364d922008-05-09 15:13:26 -07005378 if (sp->param_flags & SPP_SACKDELAY_ENABLE) {
5379 params.sack_delay = sp->sackdelay;
5380 params.sack_freq = sp->sackfreq;
5381 } else {
5382 params.sack_delay = 0;
5383 params.sack_freq = 1;
5384 }
Frank Filz77086102005-12-22 11:37:30 -08005385 }
5386
5387 if (copy_to_user(optval, &params, len))
5388 return -EFAULT;
5389
5390 if (put_user(len, optlen))
5391 return -EFAULT;
5392
5393 return 0;
5394}
5395
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
5397 *
5398 * Applications can specify protocol parameters for the default association
5399 * initialization. The option name argument to setsockopt() and getsockopt()
5400 * is SCTP_INITMSG.
5401 *
5402 * Setting initialization parameters is effective only on an unconnected
5403 * socket (for UDP-style sockets only future associations are effected
5404 * by the change). With TCP-style sockets, this option is inherited by
5405 * sockets derived from a listener socket.
5406 */
5407static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
5408{
Neil Horman408f22e2007-06-16 14:03:45 -04005409 if (len < sizeof(struct sctp_initmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005410 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005411 len = sizeof(struct sctp_initmsg);
5412 if (put_user(len, optlen))
5413 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414 if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
5415 return -EFAULT;
5416 return 0;
5417}
5418
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005420static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
5421 char __user *optval, int __user *optlen)
5422{
5423 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005424 int cnt = 0;
5425 struct sctp_getaddrs getaddrs;
5426 struct sctp_transport *from;
5427 void __user *to;
5428 union sctp_addr temp;
5429 struct sctp_sock *sp = sctp_sk(sk);
5430 int addrlen;
5431 size_t space_left;
5432 int bytes_copied;
5433
5434 if (len < sizeof(struct sctp_getaddrs))
5435 return -EINVAL;
5436
5437 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
5438 return -EFAULT;
5439
5440 /* For UDP-style sockets, id specifies the association to query. */
5441 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
5442 if (!asoc)
5443 return -EINVAL;
5444
wangweidongcb3f8372013-12-23 12:16:50 +08005445 to = optval + offsetof(struct sctp_getaddrs, addrs);
5446 space_left = len - offsetof(struct sctp_getaddrs, addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005447
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07005448 list_for_each_entry(from, &asoc->peer.transport_addr_list,
5449 transports) {
Al Virob3f5b3b2006-11-20 17:22:43 -08005450 memcpy(&temp, &from->ipaddr, sizeof(temp));
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005451 addrlen = sctp_get_pf_specific(sk->sk_family)
5452 ->addr_to_user(sp, &temp);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005453 if (space_left < addrlen)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005454 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005455 if (copy_to_user(to, &temp, addrlen))
5456 return -EFAULT;
5457 to += addrlen;
5458 cnt++;
5459 space_left -= addrlen;
5460 }
5461
5462 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
5463 return -EFAULT;
5464 bytes_copied = ((char __user *)to) - optval;
5465 if (put_user(bytes_copied, optlen))
5466 return -EFAULT;
5467
5468 return 0;
5469}
5470
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005471static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to,
5472 size_t space_left, int *bytes_copied)
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005473{
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005474 struct sctp_sockaddr_entry *addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005475 union sctp_addr temp;
5476 int cnt = 0;
5477 int addrlen;
Eric W. Biederman4db67e82012-08-06 08:42:04 +00005478 struct net *net = sock_net(sk);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005479
Vlad Yasevich29303542007-09-16 16:02:12 -07005480 rcu_read_lock();
Eric W. Biederman4db67e82012-08-06 08:42:04 +00005481 list_for_each_entry_rcu(addr, &net->sctp.local_addr_list, list) {
Vlad Yasevich29303542007-09-16 16:02:12 -07005482 if (!addr->valid)
5483 continue;
5484
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005485 if ((PF_INET == sk->sk_family) &&
Al Viro6244be42006-11-20 17:21:44 -08005486 (AF_INET6 == addr->a.sa.sa_family))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005487 continue;
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07005488 if ((PF_INET6 == sk->sk_family) &&
5489 inet_v6_ipv6only(sk) &&
5490 (AF_INET == addr->a.sa.sa_family))
5491 continue;
Al Viro6244be42006-11-20 17:21:44 -08005492 memcpy(&temp, &addr->a, sizeof(temp));
Vlad Yasevichb46ae362008-01-28 14:25:36 -05005493 if (!temp.v4.sin_port)
5494 temp.v4.sin_port = htons(port);
5495
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005496 addrlen = sctp_get_pf_specific(sk->sk_family)
5497 ->addr_to_user(sctp_sk(sk), &temp);
5498
Vlad Yasevich29303542007-09-16 16:02:12 -07005499 if (space_left < addrlen) {
5500 cnt = -ENOMEM;
5501 break;
5502 }
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005503 memcpy(to, &temp, addrlen);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -08005504
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005505 to += addrlen;
wangweidongcb3f8372013-12-23 12:16:50 +08005506 cnt++;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005507 space_left -= addrlen;
Vlad Yasevich3663c302007-07-03 12:43:12 -04005508 *bytes_copied += addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005509 }
Vlad Yasevich29303542007-09-16 16:02:12 -07005510 rcu_read_unlock();
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005511
5512 return cnt;
5513}
5514
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005516static int sctp_getsockopt_local_addrs(struct sock *sk, int len,
5517 char __user *optval, int __user *optlen)
5518{
5519 struct sctp_bind_addr *bp;
5520 struct sctp_association *asoc;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005521 int cnt = 0;
5522 struct sctp_getaddrs getaddrs;
5523 struct sctp_sockaddr_entry *addr;
5524 void __user *to;
5525 union sctp_addr temp;
5526 struct sctp_sock *sp = sctp_sk(sk);
5527 int addrlen;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005528 int err = 0;
5529 size_t space_left;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005530 int bytes_copied = 0;
5531 void *addrs;
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005532 void *buf;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005533
Neil Horman408f22e2007-06-16 14:03:45 -04005534 if (len < sizeof(struct sctp_getaddrs))
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005535 return -EINVAL;
5536
5537 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
5538 return -EFAULT;
5539
5540 /*
5541 * For UDP-style sockets, id specifies the association to query.
5542 * If the id field is set to the value '0' then the locally bound
5543 * addresses are returned without regard to any particular
5544 * association.
5545 */
5546 if (0 == getaddrs.assoc_id) {
5547 bp = &sctp_sk(sk)->ep->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005548 } else {
5549 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
5550 if (!asoc)
5551 return -EINVAL;
5552 bp = &asoc->base.bind_addr;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005553 }
5554
wangweidongcb3f8372013-12-23 12:16:50 +08005555 to = optval + offsetof(struct sctp_getaddrs, addrs);
5556 space_left = len - offsetof(struct sctp_getaddrs, addrs);
Neil Horman186e2342007-06-18 19:59:16 -04005557
Marcelo Ricardo Leitnercacc0622015-11-30 14:32:54 -02005558 addrs = kmalloc(space_left, GFP_USER | __GFP_NOWARN);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005559 if (!addrs)
5560 return -ENOMEM;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005561
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005562 /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
5563 * addresses from the global local address list.
5564 */
5565 if (sctp_list_single_entry(&bp->address_list)) {
5566 addr = list_entry(bp->address_list.next,
5567 struct sctp_sockaddr_entry, list);
Vlad Yasevich52cae8f2008-08-18 10:34:34 -04005568 if (sctp_is_any(sk, &addr->a)) {
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005569 cnt = sctp_copy_laddrs(sk, bp->port, addrs,
5570 space_left, &bytes_copied);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005571 if (cnt < 0) {
5572 err = cnt;
Vlad Yasevich559cf712007-09-16 16:03:28 -07005573 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005574 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005575 goto copy_getaddrs;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005576 }
5577 }
5578
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005579 buf = addrs;
Vlad Yasevich559cf712007-09-16 16:03:28 -07005580 /* Protection on the bound address list is not needed since
5581 * in the socket option context we hold a socket lock and
5582 * thus the bound address list can't change.
5583 */
5584 list_for_each_entry(addr, &bp->address_list, list) {
Al Viro6244be42006-11-20 17:21:44 -08005585 memcpy(&temp, &addr->a, sizeof(temp));
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005586 addrlen = sctp_get_pf_specific(sk->sk_family)
5587 ->addr_to_user(sp, &temp);
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005588 if (space_left < addrlen) {
5589 err = -ENOMEM; /*fixme: right error?*/
Vlad Yasevich559cf712007-09-16 16:03:28 -07005590 goto out;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005591 }
Vlad Yasevich70b57b82007-05-09 13:51:31 -07005592 memcpy(buf, &temp, addrlen);
5593 buf += addrlen;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005594 bytes_copied += addrlen;
wangweidongcb3f8372013-12-23 12:16:50 +08005595 cnt++;
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005596 space_left -= addrlen;
5597 }
5598
5599copy_getaddrs:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005600 if (copy_to_user(to, addrs, bytes_copied)) {
5601 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02005602 goto out;
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005603 }
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04005604 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num)) {
5605 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02005606 goto out;
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04005607 }
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005608 if (put_user(bytes_copied, optlen))
Vlad Yasevichfe979ac2007-05-23 11:11:37 -04005609 err = -EFAULT;
Sebastian Siewiord6f9fda2007-07-27 22:55:59 +02005610out:
Vlad Yasevichaad97f32007-04-28 21:09:04 -07005611 kfree(addrs);
Ivan Skytte Jørgensen5fe467e2005-10-06 21:36:17 -07005612 return err;
5613}
5614
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
5616 *
5617 * Requests that the local SCTP stack use the enclosed peer address as
5618 * the association primary. The enclosed address must be one of the
5619 * association peer's addresses.
5620 */
5621static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
5622 char __user *optval, int __user *optlen)
5623{
5624 struct sctp_prim prim;
5625 struct sctp_association *asoc;
5626 struct sctp_sock *sp = sctp_sk(sk);
5627
Neil Horman408f22e2007-06-16 14:03:45 -04005628 if (len < sizeof(struct sctp_prim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005629 return -EINVAL;
5630
Neil Horman408f22e2007-06-16 14:03:45 -04005631 len = sizeof(struct sctp_prim);
5632
5633 if (copy_from_user(&prim, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634 return -EFAULT;
5635
5636 asoc = sctp_id2assoc(sk, prim.ssp_assoc_id);
5637 if (!asoc)
5638 return -EINVAL;
5639
5640 if (!asoc->peer.primary_path)
5641 return -ENOTCONN;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09005642
Al Viro8cec6b82006-11-20 17:23:01 -08005643 memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr,
5644 asoc->peer.primary_path->af_specific->sockaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645
Jason Gunthorpe299ee122014-07-30 12:40:53 -06005646 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647 (union sctp_addr *)&prim.ssp_addr);
5648
Neil Horman408f22e2007-06-16 14:03:45 -04005649 if (put_user(len, optlen))
5650 return -EFAULT;
5651 if (copy_to_user(optval, &prim, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652 return -EFAULT;
5653
5654 return 0;
5655}
5656
5657/*
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005658 * 7.1.11 Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659 *
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005660 * Requests that the local endpoint set the specified Adaptation Layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661 * Indication parameter for all future INIT and INIT-ACK exchanges.
5662 */
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005663static int sctp_getsockopt_adaptation_layer(struct sock *sk, int len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664 char __user *optval, int __user *optlen)
5665{
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005666 struct sctp_setadaptation adaptation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667
Neil Horman408f22e2007-06-16 14:03:45 -04005668 if (len < sizeof(struct sctp_setadaptation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005669 return -EINVAL;
5670
Neil Horman408f22e2007-06-16 14:03:45 -04005671 len = sizeof(struct sctp_setadaptation);
5672
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005673 adaptation.ssb_adaptation_ind = sctp_sk(sk)->adaptation_ind;
Neil Horman408f22e2007-06-16 14:03:45 -04005674
5675 if (put_user(len, optlen))
5676 return -EFAULT;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08005677 if (copy_to_user(optval, &adaptation, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678 return -EFAULT;
Ivan Skytte Jorgensena1ab3582005-10-28 15:33:24 -07005679
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680 return 0;
5681}
5682
5683/*
5684 *
5685 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
5686 *
5687 * Applications that wish to use the sendto() system call may wish to
5688 * specify a default set of parameters that would normally be supplied
5689 * through the inclusion of ancillary data. This socket option allows
5690 * such an application to set the default sctp_sndrcvinfo structure.
5691
5692
5693 * The application that wishes to use this socket option simply passes
5694 * in to this call the sctp_sndrcvinfo structure defined in Section
5695 * 5.2.2) The input parameters accepted by this call include
5696 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
5697 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
5698 * to this call if the caller is using the UDP model.
5699 *
5700 * For getsockopt, it get the default sctp_sndrcvinfo structure.
5701 */
5702static int sctp_getsockopt_default_send_param(struct sock *sk,
5703 int len, char __user *optval,
5704 int __user *optlen)
5705{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706 struct sctp_sock *sp = sctp_sk(sk);
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005707 struct sctp_association *asoc;
5708 struct sctp_sndrcvinfo info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005710 if (len < sizeof(info))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005711 return -EINVAL;
Neil Horman408f22e2007-06-16 14:03:45 -04005712
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005713 len = sizeof(info);
Neil Horman408f22e2007-06-16 14:03:45 -04005714
5715 if (copy_from_user(&info, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716 return -EFAULT;
5717
5718 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
5719 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
5720 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721 if (asoc) {
5722 info.sinfo_stream = asoc->default_stream;
5723 info.sinfo_flags = asoc->default_flags;
5724 info.sinfo_ppid = asoc->default_ppid;
5725 info.sinfo_context = asoc->default_context;
5726 info.sinfo_timetolive = asoc->default_timetolive;
5727 } else {
5728 info.sinfo_stream = sp->default_stream;
5729 info.sinfo_flags = sp->default_flags;
5730 info.sinfo_ppid = sp->default_ppid;
5731 info.sinfo_context = sp->default_context;
5732 info.sinfo_timetolive = sp->default_timetolive;
5733 }
5734
Neil Horman408f22e2007-06-16 14:03:45 -04005735 if (put_user(len, optlen))
5736 return -EFAULT;
5737 if (copy_to_user(optval, &info, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005738 return -EFAULT;
5739
5740 return 0;
5741}
5742
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02005743/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
5744 * (SCTP_DEFAULT_SNDINFO)
5745 */
5746static int sctp_getsockopt_default_sndinfo(struct sock *sk, int len,
5747 char __user *optval,
5748 int __user *optlen)
5749{
5750 struct sctp_sock *sp = sctp_sk(sk);
5751 struct sctp_association *asoc;
5752 struct sctp_sndinfo info;
5753
5754 if (len < sizeof(info))
5755 return -EINVAL;
5756
5757 len = sizeof(info);
5758
5759 if (copy_from_user(&info, optval, len))
5760 return -EFAULT;
5761
5762 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
5763 if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
5764 return -EINVAL;
5765 if (asoc) {
5766 info.snd_sid = asoc->default_stream;
5767 info.snd_flags = asoc->default_flags;
5768 info.snd_ppid = asoc->default_ppid;
5769 info.snd_context = asoc->default_context;
5770 } else {
5771 info.snd_sid = sp->default_stream;
5772 info.snd_flags = sp->default_flags;
5773 info.snd_ppid = sp->default_ppid;
5774 info.snd_context = sp->default_context;
5775 }
5776
5777 if (put_user(len, optlen))
5778 return -EFAULT;
5779 if (copy_to_user(optval, &info, len))
5780 return -EFAULT;
5781
5782 return 0;
5783}
5784
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785/*
5786 *
5787 * 7.1.5 SCTP_NODELAY
5788 *
5789 * Turn on/off any Nagle-like algorithm. This means that packets are
5790 * generally sent as soon as possible and no unnecessary delays are
5791 * introduced, at the cost of more packets in the network. Expects an
5792 * integer boolean flag.
5793 */
5794
5795static int sctp_getsockopt_nodelay(struct sock *sk, int len,
5796 char __user *optval, int __user *optlen)
5797{
5798 int val;
5799
5800 if (len < sizeof(int))
5801 return -EINVAL;
5802
5803 len = sizeof(int);
5804 val = (sctp_sk(sk)->nodelay == 1);
5805 if (put_user(len, optlen))
5806 return -EFAULT;
5807 if (copy_to_user(optval, &val, len))
5808 return -EFAULT;
5809 return 0;
5810}
5811
5812/*
5813 *
5814 * 7.1.1 SCTP_RTOINFO
5815 *
5816 * The protocol parameters used to initialize and bound retransmission
5817 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
5818 * and modify these parameters.
5819 * All parameters are time values, in milliseconds. A value of 0, when
5820 * modifying the parameters, indicates that the current value should not
5821 * be changed.
5822 *
5823 */
5824static int sctp_getsockopt_rtoinfo(struct sock *sk, int len,
5825 char __user *optval,
5826 int __user *optlen) {
5827 struct sctp_rtoinfo rtoinfo;
5828 struct sctp_association *asoc;
5829
Neil Horman408f22e2007-06-16 14:03:45 -04005830 if (len < sizeof (struct sctp_rtoinfo))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831 return -EINVAL;
5832
Neil Horman408f22e2007-06-16 14:03:45 -04005833 len = sizeof(struct sctp_rtoinfo);
5834
5835 if (copy_from_user(&rtoinfo, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836 return -EFAULT;
5837
5838 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
5839
5840 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
5841 return -EINVAL;
5842
5843 /* Values corresponding to the specific association. */
5844 if (asoc) {
5845 rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial);
5846 rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max);
5847 rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min);
5848 } else {
5849 /* Values corresponding to the endpoint. */
5850 struct sctp_sock *sp = sctp_sk(sk);
5851
5852 rtoinfo.srto_initial = sp->rtoinfo.srto_initial;
5853 rtoinfo.srto_max = sp->rtoinfo.srto_max;
5854 rtoinfo.srto_min = sp->rtoinfo.srto_min;
5855 }
5856
5857 if (put_user(len, optlen))
5858 return -EFAULT;
5859
5860 if (copy_to_user(optval, &rtoinfo, len))
5861 return -EFAULT;
5862
5863 return 0;
5864}
5865
5866/*
5867 *
5868 * 7.1.2 SCTP_ASSOCINFO
5869 *
Michael Opdenacker59c51592007-05-09 08:57:56 +02005870 * This option is used to tune the maximum retransmission attempts
Linus Torvalds1da177e2005-04-16 15:20:36 -07005871 * of the association.
5872 * Returns an error if the new association retransmission value is
5873 * greater than the sum of the retransmission value of the peer.
5874 * See [SCTP] for more information.
5875 *
5876 */
5877static int sctp_getsockopt_associnfo(struct sock *sk, int len,
5878 char __user *optval,
5879 int __user *optlen)
5880{
5881
5882 struct sctp_assocparams assocparams;
5883 struct sctp_association *asoc;
5884 struct list_head *pos;
5885 int cnt = 0;
5886
Neil Horman408f22e2007-06-16 14:03:45 -04005887 if (len < sizeof (struct sctp_assocparams))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888 return -EINVAL;
5889
Neil Horman408f22e2007-06-16 14:03:45 -04005890 len = sizeof(struct sctp_assocparams);
5891
5892 if (copy_from_user(&assocparams, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005893 return -EFAULT;
5894
5895 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
5896
5897 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
5898 return -EINVAL;
5899
5900 /* Values correspoinding to the specific association */
Vladislav Yasevich17337212005-04-28 11:57:54 -07005901 if (asoc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005902 assocparams.sasoc_asocmaxrxt = asoc->max_retrans;
5903 assocparams.sasoc_peer_rwnd = asoc->peer.rwnd;
5904 assocparams.sasoc_local_rwnd = asoc->a_rwnd;
Daniel Borkmann52db8822013-06-25 18:17:27 +02005905 assocparams.sasoc_cookie_life = ktime_to_ms(asoc->cookie_life);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906
5907 list_for_each(pos, &asoc->peer.transport_addr_list) {
wangweidongcb3f8372013-12-23 12:16:50 +08005908 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909 }
5910
5911 assocparams.sasoc_number_peer_destinations = cnt;
5912 } else {
5913 /* Values corresponding to the endpoint */
5914 struct sctp_sock *sp = sctp_sk(sk);
5915
5916 assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt;
5917 assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd;
5918 assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd;
5919 assocparams.sasoc_cookie_life =
5920 sp->assocparams.sasoc_cookie_life;
5921 assocparams.sasoc_number_peer_destinations =
5922 sp->assocparams.
5923 sasoc_number_peer_destinations;
5924 }
5925
5926 if (put_user(len, optlen))
5927 return -EFAULT;
5928
5929 if (copy_to_user(optval, &assocparams, len))
5930 return -EFAULT;
5931
5932 return 0;
5933}
5934
5935/*
5936 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
5937 *
5938 * This socket option is a boolean flag which turns on or off mapped V4
5939 * addresses. If this option is turned on and the socket is type
5940 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
5941 * If this option is turned off, then no mapping will be done of V4
5942 * addresses and a user will receive both PF_INET6 and PF_INET type
5943 * addresses on the socket.
5944 */
5945static int sctp_getsockopt_mappedv4(struct sock *sk, int len,
5946 char __user *optval, int __user *optlen)
5947{
5948 int val;
5949 struct sctp_sock *sp = sctp_sk(sk);
5950
5951 if (len < sizeof(int))
5952 return -EINVAL;
5953
5954 len = sizeof(int);
5955 val = sp->v4mapped;
5956 if (put_user(len, optlen))
5957 return -EFAULT;
5958 if (copy_to_user(optval, &val, len))
5959 return -EFAULT;
5960
5961 return 0;
5962}
5963
5964/*
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005965 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
5966 * (chapter and verse is quoted at sctp_setsockopt_context())
5967 */
5968static int sctp_getsockopt_context(struct sock *sk, int len,
5969 char __user *optval, int __user *optlen)
5970{
5971 struct sctp_assoc_value params;
5972 struct sctp_sock *sp;
5973 struct sctp_association *asoc;
5974
Neil Horman408f22e2007-06-16 14:03:45 -04005975 if (len < sizeof(struct sctp_assoc_value))
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005976 return -EINVAL;
5977
Neil Horman408f22e2007-06-16 14:03:45 -04005978 len = sizeof(struct sctp_assoc_value);
5979
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08005980 if (copy_from_user(&params, optval, len))
5981 return -EFAULT;
5982
5983 sp = sctp_sk(sk);
5984
5985 if (params.assoc_id != 0) {
5986 asoc = sctp_id2assoc(sk, params.assoc_id);
5987 if (!asoc)
5988 return -EINVAL;
5989 params.assoc_value = asoc->default_rcv_context;
5990 } else {
5991 params.assoc_value = sp->default_rcv_context;
5992 }
5993
5994 if (put_user(len, optlen))
5995 return -EFAULT;
5996 if (copy_to_user(optval, &params, len))
5997 return -EFAULT;
5998
5999 return 0;
6000}
6001
6002/*
Wei Yongjune89c2092008-12-25 16:54:58 -08006003 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
6004 * This option will get or set the maximum size to put in any outgoing
6005 * SCTP DATA chunk. If a message is larger than this size it will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006 * fragmented by SCTP into the specified size. Note that the underlying
6007 * SCTP implementation may fragment into smaller sized chunks when the
6008 * PMTU of the underlying association is smaller than the value set by
Wei Yongjune89c2092008-12-25 16:54:58 -08006009 * the user. The default value for this option is '0' which indicates
6010 * the user is NOT limiting fragmentation and only the PMTU will effect
6011 * SCTP's choice of DATA chunk size. Note also that values set larger
6012 * than the maximum size of an IP datagram will effectively let SCTP
6013 * control fragmentation (i.e. the same as setting this option to 0).
6014 *
6015 * The following structure is used to access and modify this parameter:
6016 *
6017 * struct sctp_assoc_value {
6018 * sctp_assoc_t assoc_id;
6019 * uint32_t assoc_value;
6020 * };
6021 *
6022 * assoc_id: This parameter is ignored for one-to-one style sockets.
6023 * For one-to-many style sockets this parameter indicates which
6024 * association the user is performing an action upon. Note that if
6025 * this field's value is zero then the endpoints default value is
6026 * changed (effecting future associations only).
6027 * assoc_value: This parameter specifies the maximum size in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006028 */
6029static int sctp_getsockopt_maxseg(struct sock *sk, int len,
6030 char __user *optval, int __user *optlen)
6031{
Wei Yongjune89c2092008-12-25 16:54:58 -08006032 struct sctp_assoc_value params;
6033 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034
Wei Yongjune89c2092008-12-25 16:54:58 -08006035 if (len == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05006036 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05006037 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05006038 "Use of int in maxseg socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05006039 "Use struct sctp_assoc_value instead\n",
6040 current->comm, task_pid_nr(current));
Wei Yongjune89c2092008-12-25 16:54:58 -08006041 params.assoc_id = 0;
6042 } else if (len >= sizeof(struct sctp_assoc_value)) {
6043 len = sizeof(struct sctp_assoc_value);
6044 if (copy_from_user(&params, optval, sizeof(params)))
6045 return -EFAULT;
6046 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047 return -EINVAL;
6048
Wei Yongjune89c2092008-12-25 16:54:58 -08006049 asoc = sctp_id2assoc(sk, params.assoc_id);
6050 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
6051 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052
Wei Yongjune89c2092008-12-25 16:54:58 -08006053 if (asoc)
6054 params.assoc_value = asoc->frag_point;
6055 else
6056 params.assoc_value = sctp_sk(sk)->user_frag;
6057
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058 if (put_user(len, optlen))
6059 return -EFAULT;
Wei Yongjune89c2092008-12-25 16:54:58 -08006060 if (len == sizeof(int)) {
6061 if (copy_to_user(optval, &params.assoc_value, len))
6062 return -EFAULT;
6063 } else {
6064 if (copy_to_user(optval, &params, len))
6065 return -EFAULT;
6066 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067
6068 return 0;
6069}
6070
Vlad Yasevichb6e13312007-04-20 12:23:15 -07006071/*
6072 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
6073 * (chapter and verse is quoted at sctp_setsockopt_fragment_interleave())
6074 */
6075static int sctp_getsockopt_fragment_interleave(struct sock *sk, int len,
6076 char __user *optval, int __user *optlen)
6077{
6078 int val;
6079
6080 if (len < sizeof(int))
6081 return -EINVAL;
6082
6083 len = sizeof(int);
6084
6085 val = sctp_sk(sk)->frag_interleave;
6086 if (put_user(len, optlen))
6087 return -EFAULT;
6088 if (copy_to_user(optval, &val, len))
6089 return -EFAULT;
6090
6091 return 0;
6092}
6093
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006094/*
6095 * 7.1.25. Set or Get the sctp partial delivery point
6096 * (chapter and verse is quoted at sctp_setsockopt_partial_delivery_point())
6097 */
6098static int sctp_getsockopt_partial_delivery_point(struct sock *sk, int len,
6099 char __user *optval,
6100 int __user *optlen)
6101{
YOSHIFUJI Hideaki9cbcbf42007-07-19 10:44:50 +09006102 u32 val;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006103
6104 if (len < sizeof(u32))
6105 return -EINVAL;
6106
6107 len = sizeof(u32);
6108
6109 val = sctp_sk(sk)->pd_point;
6110 if (put_user(len, optlen))
6111 return -EFAULT;
6112 if (copy_to_user(optval, &val, len))
6113 return -EFAULT;
6114
Wei Yongjun7d743b72010-12-14 16:10:41 +00006115 return 0;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07006116}
6117
Vlad Yasevich70331572007-03-23 11:34:36 -07006118/*
6119 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
6120 * (chapter and verse is quoted at sctp_setsockopt_maxburst())
6121 */
6122static int sctp_getsockopt_maxburst(struct sock *sk, int len,
6123 char __user *optval,
6124 int __user *optlen)
6125{
Neil Horman219b99a2008-03-05 13:44:46 -08006126 struct sctp_assoc_value params;
6127 struct sctp_sock *sp;
6128 struct sctp_association *asoc;
Vlad Yasevich70331572007-03-23 11:34:36 -07006129
Neil Horman219b99a2008-03-05 13:44:46 -08006130 if (len == sizeof(int)) {
Neil Horman94f65192013-12-23 08:29:43 -05006131 pr_warn_ratelimited(DEPRECATED
Neil Hormanf916ec92014-01-02 12:54:27 -05006132 "%s (pid %d) "
Neil Horman94f65192013-12-23 08:29:43 -05006133 "Use of int in max_burst socket option.\n"
Neil Hormanf916ec92014-01-02 12:54:27 -05006134 "Use struct sctp_assoc_value instead\n",
6135 current->comm, task_pid_nr(current));
Neil Horman219b99a2008-03-05 13:44:46 -08006136 params.assoc_id = 0;
Wei Yongjunc6db93a2009-03-02 09:46:12 +00006137 } else if (len >= sizeof(struct sctp_assoc_value)) {
6138 len = sizeof(struct sctp_assoc_value);
Neil Horman219b99a2008-03-05 13:44:46 -08006139 if (copy_from_user(&params, optval, len))
6140 return -EFAULT;
6141 } else
6142 return -EINVAL;
Vlad Yasevich70331572007-03-23 11:34:36 -07006143
Neil Horman219b99a2008-03-05 13:44:46 -08006144 sp = sctp_sk(sk);
Vlad Yasevich70331572007-03-23 11:34:36 -07006145
Neil Horman219b99a2008-03-05 13:44:46 -08006146 if (params.assoc_id != 0) {
6147 asoc = sctp_id2assoc(sk, params.assoc_id);
6148 if (!asoc)
6149 return -EINVAL;
6150 params.assoc_value = asoc->max_burst;
6151 } else
6152 params.assoc_value = sp->max_burst;
6153
6154 if (len == sizeof(int)) {
6155 if (copy_to_user(optval, &params.assoc_value, len))
6156 return -EFAULT;
6157 } else {
6158 if (copy_to_user(optval, &params, len))
6159 return -EFAULT;
6160 }
6161
6162 return 0;
6163
Vlad Yasevich70331572007-03-23 11:34:36 -07006164}
6165
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006166static int sctp_getsockopt_hmac_ident(struct sock *sk, int len,
6167 char __user *optval, int __user *optlen)
6168{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006169 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006170 struct sctp_hmacalgo __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006171 struct sctp_hmac_algo_param *hmacs;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006172 __u16 data_len = 0;
6173 u32 num_idents;
Xin Long7a84bd42016-02-03 23:33:30 +08006174 int i;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006175
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006176 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006177 return -EACCES;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006178
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006179 hmacs = ep->auth_hmacs_list;
Xin Long3c918702017-06-30 11:52:16 +08006180 data_len = ntohs(hmacs->param_hdr.length) -
6181 sizeof(struct sctp_paramhdr);
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006182
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006183 if (len < sizeof(struct sctp_hmacalgo) + data_len)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006184 return -EINVAL;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006185
6186 len = sizeof(struct sctp_hmacalgo) + data_len;
6187 num_idents = data_len / sizeof(u16);
6188
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006189 if (put_user(len, optlen))
6190 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006191 if (put_user(num_idents, &p->shmac_num_idents))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006192 return -EFAULT;
Xin Long7a84bd42016-02-03 23:33:30 +08006193 for (i = 0; i < num_idents; i++) {
6194 __u16 hmacid = ntohs(hmacs->hmac_ids[i]);
6195
6196 if (copy_to_user(&p->shmac_idents[i], &hmacid, sizeof(__u16)))
6197 return -EFAULT;
6198 }
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006199 return 0;
6200}
6201
6202static int sctp_getsockopt_active_key(struct sock *sk, int len,
6203 char __user *optval, int __user *optlen)
6204{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006205 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006206 struct sctp_authkeyid val;
6207 struct sctp_association *asoc;
6208
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006209 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006210 return -EACCES;
6211
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006212 if (len < sizeof(struct sctp_authkeyid))
6213 return -EINVAL;
6214 if (copy_from_user(&val, optval, sizeof(struct sctp_authkeyid)))
6215 return -EFAULT;
6216
6217 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
6218 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
6219 return -EINVAL;
6220
6221 if (asoc)
6222 val.scact_keynumber = asoc->active_key_id;
6223 else
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006224 val.scact_keynumber = ep->active_key_id;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006225
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006226 len = sizeof(struct sctp_authkeyid);
6227 if (put_user(len, optlen))
6228 return -EFAULT;
6229 if (copy_to_user(optval, &val, len))
6230 return -EFAULT;
6231
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006232 return 0;
6233}
6234
6235static int sctp_getsockopt_peer_auth_chunks(struct sock *sk, int len,
6236 char __user *optval, int __user *optlen)
6237{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006238 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Al Viro411223c2007-10-14 19:21:20 +01006239 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006240 struct sctp_authchunks val;
6241 struct sctp_association *asoc;
6242 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006243 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006244 char __user *to;
6245
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006246 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006247 return -EACCES;
6248
6249 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006250 return -EINVAL;
6251
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006252 if (copy_from_user(&val, optval, sizeof(struct sctp_authchunks)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006253 return -EFAULT;
6254
Al Viro411223c2007-10-14 19:21:20 +01006255 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006256 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6257 if (!asoc)
6258 return -EINVAL;
6259
6260 ch = asoc->peer.peer_chunks;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006261 if (!ch)
6262 goto num;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006263
6264 /* See if the user provided enough room for all the data */
Xin Long3c918702017-06-30 11:52:16 +08006265 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
Vlad Yasevichb40db682008-02-27 14:40:37 -05006266 if (len < num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006267 return -EINVAL;
6268
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006269 if (copy_to_user(to, ch->chunks, num_chunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006270 return -EFAULT;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006271num:
6272 len = sizeof(struct sctp_authchunks) + num_chunks;
wangweidong8d726512013-12-23 12:16:53 +08006273 if (put_user(len, optlen))
6274 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05006275 if (put_user(num_chunks, &p->gauth_number_of_chunks))
6276 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006277 return 0;
6278}
6279
6280static int sctp_getsockopt_local_auth_chunks(struct sock *sk, int len,
6281 char __user *optval, int __user *optlen)
6282{
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006283 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
Al Viro411223c2007-10-14 19:21:20 +01006284 struct sctp_authchunks __user *p = (void __user *)optval;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006285 struct sctp_authchunks val;
6286 struct sctp_association *asoc;
6287 struct sctp_chunks_param *ch;
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006288 u32 num_chunks = 0;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006289 char __user *to;
6290
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006291 if (!ep->auth_enable)
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006292 return -EACCES;
6293
6294 if (len < sizeof(struct sctp_authchunks))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006295 return -EINVAL;
6296
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006297 if (copy_from_user(&val, optval, sizeof(struct sctp_authchunks)))
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006298 return -EFAULT;
6299
Al Viro411223c2007-10-14 19:21:20 +01006300 to = p->gauth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006301 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6302 if (!asoc && val.gauth_assoc_id && sctp_style(sk, UDP))
6303 return -EINVAL;
6304
6305 if (asoc)
wangweidong26ac8e52013-12-23 12:16:51 +08006306 ch = (struct sctp_chunks_param *)asoc->c.auth_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006307 else
Vlad Yasevichb14878c2014-04-17 17:26:50 +02006308 ch = ep->auth_chunk_list;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006309
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006310 if (!ch)
6311 goto num;
6312
Xin Long3c918702017-06-30 11:52:16 +08006313 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006314 if (len < sizeof(struct sctp_authchunks) + num_chunks)
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006315 return -EINVAL;
6316
Vlad Yasevich5e739d12008-08-21 03:34:25 -07006317 if (copy_to_user(to, ch->chunks, num_chunks))
6318 return -EFAULT;
6319num:
6320 len = sizeof(struct sctp_authchunks) + num_chunks;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006321 if (put_user(len, optlen))
6322 return -EFAULT;
Vlad Yasevich7e8616d2008-02-27 16:04:52 -05006323 if (put_user(num_chunks, &p->gauth_number_of_chunks))
6324 return -EFAULT;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07006325
6326 return 0;
6327}
6328
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08006329/*
6330 * 8.2.5. Get the Current Number of Associations (SCTP_GET_ASSOC_NUMBER)
6331 * This option gets the current number of associations that are attached
6332 * to a one-to-many style socket. The option value is an uint32_t.
6333 */
6334static int sctp_getsockopt_assoc_number(struct sock *sk, int len,
6335 char __user *optval, int __user *optlen)
6336{
6337 struct sctp_sock *sp = sctp_sk(sk);
6338 struct sctp_association *asoc;
6339 u32 val = 0;
6340
6341 if (sctp_style(sk, TCP))
6342 return -EOPNOTSUPP;
6343
6344 if (len < sizeof(u32))
6345 return -EINVAL;
6346
6347 len = sizeof(u32);
6348
6349 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6350 val++;
6351 }
6352
6353 if (put_user(len, optlen))
6354 return -EFAULT;
6355 if (copy_to_user(optval, &val, len))
6356 return -EFAULT;
6357
6358 return 0;
6359}
6360
Wei Yongjun209ba422011-04-17 17:27:08 +00006361/*
Michio Honda7dc04d72011-04-26 20:16:31 +09006362 * 8.1.23 SCTP_AUTO_ASCONF
6363 * See the corresponding setsockopt entry as description
6364 */
6365static int sctp_getsockopt_auto_asconf(struct sock *sk, int len,
6366 char __user *optval, int __user *optlen)
6367{
6368 int val = 0;
6369
6370 if (len < sizeof(int))
6371 return -EINVAL;
6372
6373 len = sizeof(int);
6374 if (sctp_sk(sk)->do_auto_asconf && sctp_is_ep_boundall(sk))
6375 val = 1;
6376 if (put_user(len, optlen))
6377 return -EFAULT;
6378 if (copy_to_user(optval, &val, len))
6379 return -EFAULT;
6380 return 0;
6381}
6382
6383/*
Wei Yongjun209ba422011-04-17 17:27:08 +00006384 * 8.2.6. Get the Current Identifiers of Associations
6385 * (SCTP_GET_ASSOC_ID_LIST)
6386 *
6387 * This option gets the current list of SCTP association identifiers of
6388 * the SCTP associations handled by a one-to-many style socket.
6389 */
6390static int sctp_getsockopt_assoc_ids(struct sock *sk, int len,
6391 char __user *optval, int __user *optlen)
6392{
6393 struct sctp_sock *sp = sctp_sk(sk);
6394 struct sctp_association *asoc;
6395 struct sctp_assoc_ids *ids;
6396 u32 num = 0;
6397
6398 if (sctp_style(sk, TCP))
6399 return -EOPNOTSUPP;
6400
6401 if (len < sizeof(struct sctp_assoc_ids))
6402 return -EINVAL;
6403
6404 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6405 num++;
6406 }
6407
6408 if (len < sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num)
6409 return -EINVAL;
6410
6411 len = sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num;
6412
Marcelo Ricardo Leitner9ba0b962015-12-23 16:28:40 -02006413 ids = kmalloc(len, GFP_USER | __GFP_NOWARN);
Wei Yongjun209ba422011-04-17 17:27:08 +00006414 if (unlikely(!ids))
6415 return -ENOMEM;
6416
6417 ids->gaids_number_of_ids = num;
6418 num = 0;
6419 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6420 ids->gaids_assoc_id[num++] = asoc->assoc_id;
6421 }
6422
6423 if (put_user(len, optlen) || copy_to_user(optval, ids, len)) {
6424 kfree(ids);
6425 return -EFAULT;
6426 }
6427
6428 kfree(ids);
6429 return 0;
6430}
6431
Neil Horman5aa93bc2012-07-21 07:56:07 +00006432/*
6433 * SCTP_PEER_ADDR_THLDS
6434 *
6435 * This option allows us to fetch the partially failed threshold for one or all
6436 * transports in an association. See Section 6.1 of:
6437 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
6438 */
6439static int sctp_getsockopt_paddr_thresholds(struct sock *sk,
6440 char __user *optval,
6441 int len,
6442 int __user *optlen)
6443{
6444 struct sctp_paddrthlds val;
6445 struct sctp_transport *trans;
6446 struct sctp_association *asoc;
6447
6448 if (len < sizeof(struct sctp_paddrthlds))
6449 return -EINVAL;
6450 len = sizeof(struct sctp_paddrthlds);
6451 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval, len))
6452 return -EFAULT;
6453
6454 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
6455 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
6456 if (!asoc)
6457 return -ENOENT;
6458
6459 val.spt_pathpfthld = asoc->pf_retrans;
6460 val.spt_pathmaxrxt = asoc->pathmaxrxt;
6461 } else {
6462 trans = sctp_addr_id2transport(sk, &val.spt_address,
6463 val.spt_assoc_id);
6464 if (!trans)
6465 return -ENOENT;
6466
6467 val.spt_pathmaxrxt = trans->pathmaxrxt;
6468 val.spt_pathpfthld = trans->pf_retrans;
6469 }
6470
6471 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
6472 return -EFAULT;
6473
6474 return 0;
6475}
6476
Michele Baldessari196d6752012-12-01 04:49:42 +00006477/*
6478 * SCTP_GET_ASSOC_STATS
6479 *
6480 * This option retrieves local per endpoint statistics. It is modeled
6481 * after OpenSolaris' implementation
6482 */
6483static int sctp_getsockopt_assoc_stats(struct sock *sk, int len,
6484 char __user *optval,
6485 int __user *optlen)
6486{
6487 struct sctp_assoc_stats sas;
6488 struct sctp_association *asoc = NULL;
6489
6490 /* User must provide at least the assoc id */
6491 if (len < sizeof(sctp_assoc_t))
6492 return -EINVAL;
6493
Guenter Roeck726bc6b2013-02-27 10:57:31 +00006494 /* Allow the struct to grow and fill in as much as possible */
6495 len = min_t(size_t, len, sizeof(sas));
6496
Michele Baldessari196d6752012-12-01 04:49:42 +00006497 if (copy_from_user(&sas, optval, len))
6498 return -EFAULT;
6499
6500 asoc = sctp_id2assoc(sk, sas.sas_assoc_id);
6501 if (!asoc)
6502 return -EINVAL;
6503
6504 sas.sas_rtxchunks = asoc->stats.rtxchunks;
6505 sas.sas_gapcnt = asoc->stats.gapcnt;
6506 sas.sas_outofseqtsns = asoc->stats.outofseqtsns;
6507 sas.sas_osacks = asoc->stats.osacks;
6508 sas.sas_isacks = asoc->stats.isacks;
6509 sas.sas_octrlchunks = asoc->stats.octrlchunks;
6510 sas.sas_ictrlchunks = asoc->stats.ictrlchunks;
6511 sas.sas_oodchunks = asoc->stats.oodchunks;
6512 sas.sas_iodchunks = asoc->stats.iodchunks;
6513 sas.sas_ouodchunks = asoc->stats.ouodchunks;
6514 sas.sas_iuodchunks = asoc->stats.iuodchunks;
6515 sas.sas_idupchunks = asoc->stats.idupchunks;
6516 sas.sas_opackets = asoc->stats.opackets;
6517 sas.sas_ipackets = asoc->stats.ipackets;
6518
6519 /* New high max rto observed, will return 0 if not a single
6520 * RTO update took place. obs_rto_ipaddr will be bogus
6521 * in such a case
6522 */
6523 sas.sas_maxrto = asoc->stats.max_obs_rto;
6524 memcpy(&sas.sas_obs_rto_ipaddr, &asoc->stats.obs_rto_ipaddr,
6525 sizeof(struct sockaddr_storage));
6526
6527 /* Mark beginning of a new observation period */
6528 asoc->stats.max_obs_rto = asoc->rto_min;
6529
Michele Baldessari196d6752012-12-01 04:49:42 +00006530 if (put_user(len, optlen))
6531 return -EFAULT;
6532
Daniel Borkmannbb333812013-06-28 19:49:40 +02006533 pr_debug("%s: len:%d, assoc_id:%d\n", __func__, len, sas.sas_assoc_id);
Michele Baldessari196d6752012-12-01 04:49:42 +00006534
6535 if (copy_to_user(optval, &sas, len))
6536 return -EFAULT;
6537
6538 return 0;
6539}
6540
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02006541static int sctp_getsockopt_recvrcvinfo(struct sock *sk, int len,
6542 char __user *optval,
6543 int __user *optlen)
6544{
6545 int val = 0;
6546
6547 if (len < sizeof(int))
6548 return -EINVAL;
6549
6550 len = sizeof(int);
6551 if (sctp_sk(sk)->recvrcvinfo)
6552 val = 1;
6553 if (put_user(len, optlen))
6554 return -EFAULT;
6555 if (copy_to_user(optval, &val, len))
6556 return -EFAULT;
6557
6558 return 0;
6559}
6560
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02006561static int sctp_getsockopt_recvnxtinfo(struct sock *sk, int len,
6562 char __user *optval,
6563 int __user *optlen)
6564{
6565 int val = 0;
6566
6567 if (len < sizeof(int))
6568 return -EINVAL;
6569
6570 len = sizeof(int);
6571 if (sctp_sk(sk)->recvnxtinfo)
6572 val = 1;
6573 if (put_user(len, optlen))
6574 return -EFAULT;
6575 if (copy_to_user(optval, &val, len))
6576 return -EFAULT;
6577
6578 return 0;
6579}
6580
Xin Long28aa4c22016-07-09 19:47:40 +08006581static int sctp_getsockopt_pr_supported(struct sock *sk, int len,
6582 char __user *optval,
6583 int __user *optlen)
6584{
6585 struct sctp_assoc_value params;
6586 struct sctp_association *asoc;
6587 int retval = -EFAULT;
6588
6589 if (len < sizeof(params)) {
6590 retval = -EINVAL;
6591 goto out;
6592 }
6593
6594 len = sizeof(params);
6595 if (copy_from_user(&params, optval, len))
6596 goto out;
6597
6598 asoc = sctp_id2assoc(sk, params.assoc_id);
6599 if (asoc) {
6600 params.assoc_value = asoc->prsctp_enable;
6601 } else if (!params.assoc_id) {
6602 struct sctp_sock *sp = sctp_sk(sk);
6603
6604 params.assoc_value = sp->ep->prsctp_enable;
6605 } else {
6606 retval = -EINVAL;
6607 goto out;
6608 }
6609
6610 if (put_user(len, optlen))
6611 goto out;
6612
6613 if (copy_to_user(optval, &params, len))
6614 goto out;
6615
6616 retval = 0;
6617
6618out:
6619 return retval;
6620}
6621
Xin Longf959fb42016-07-09 19:47:41 +08006622static int sctp_getsockopt_default_prinfo(struct sock *sk, int len,
6623 char __user *optval,
6624 int __user *optlen)
6625{
6626 struct sctp_default_prinfo info;
6627 struct sctp_association *asoc;
6628 int retval = -EFAULT;
6629
6630 if (len < sizeof(info)) {
6631 retval = -EINVAL;
6632 goto out;
6633 }
6634
6635 len = sizeof(info);
6636 if (copy_from_user(&info, optval, len))
6637 goto out;
6638
6639 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
6640 if (asoc) {
6641 info.pr_policy = SCTP_PR_POLICY(asoc->default_flags);
6642 info.pr_value = asoc->default_timetolive;
6643 } else if (!info.pr_assoc_id) {
6644 struct sctp_sock *sp = sctp_sk(sk);
6645
6646 info.pr_policy = SCTP_PR_POLICY(sp->default_flags);
6647 info.pr_value = sp->default_timetolive;
6648 } else {
6649 retval = -EINVAL;
6650 goto out;
6651 }
6652
6653 if (put_user(len, optlen))
6654 goto out;
6655
6656 if (copy_to_user(optval, &info, len))
6657 goto out;
6658
6659 retval = 0;
6660
6661out:
6662 return retval;
6663}
6664
Xin Long826d2532016-07-09 19:47:42 +08006665static int sctp_getsockopt_pr_assocstatus(struct sock *sk, int len,
6666 char __user *optval,
6667 int __user *optlen)
6668{
6669 struct sctp_prstatus params;
6670 struct sctp_association *asoc;
6671 int policy;
6672 int retval = -EINVAL;
6673
6674 if (len < sizeof(params))
6675 goto out;
6676
6677 len = sizeof(params);
6678 if (copy_from_user(&params, optval, len)) {
6679 retval = -EFAULT;
6680 goto out;
6681 }
6682
6683 policy = params.sprstat_policy;
6684 if (policy & ~SCTP_PR_SCTP_MASK)
6685 goto out;
6686
6687 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
6688 if (!asoc)
6689 goto out;
6690
6691 if (policy == SCTP_PR_SCTP_NONE) {
6692 params.sprstat_abandoned_unsent = 0;
6693 params.sprstat_abandoned_sent = 0;
6694 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
6695 params.sprstat_abandoned_unsent +=
6696 asoc->abandoned_unsent[policy];
6697 params.sprstat_abandoned_sent +=
6698 asoc->abandoned_sent[policy];
6699 }
6700 } else {
6701 params.sprstat_abandoned_unsent =
6702 asoc->abandoned_unsent[__SCTP_PR_INDEX(policy)];
6703 params.sprstat_abandoned_sent =
6704 asoc->abandoned_sent[__SCTP_PR_INDEX(policy)];
6705 }
6706
6707 if (put_user(len, optlen)) {
6708 retval = -EFAULT;
6709 goto out;
6710 }
6711
6712 if (copy_to_user(optval, &params, len)) {
6713 retval = -EFAULT;
6714 goto out;
6715 }
6716
6717 retval = 0;
6718
6719out:
6720 return retval;
6721}
6722
Xin Longd229d482017-04-01 17:07:46 +08006723static int sctp_getsockopt_pr_streamstatus(struct sock *sk, int len,
6724 char __user *optval,
6725 int __user *optlen)
6726{
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03006727 struct sctp_stream_out_ext *streamoute;
Xin Longd229d482017-04-01 17:07:46 +08006728 struct sctp_association *asoc;
6729 struct sctp_prstatus params;
6730 int retval = -EINVAL;
6731 int policy;
6732
6733 if (len < sizeof(params))
6734 goto out;
6735
6736 len = sizeof(params);
6737 if (copy_from_user(&params, optval, len)) {
6738 retval = -EFAULT;
6739 goto out;
6740 }
6741
6742 policy = params.sprstat_policy;
6743 if (policy & ~SCTP_PR_SCTP_MASK)
6744 goto out;
6745
6746 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
Xin Longcee360a2017-05-31 16:36:31 +08006747 if (!asoc || params.sprstat_sid >= asoc->stream.outcnt)
Xin Longd229d482017-04-01 17:07:46 +08006748 goto out;
6749
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03006750 streamoute = asoc->stream.out[params.sprstat_sid].ext;
6751 if (!streamoute) {
6752 /* Not allocated yet, means all stats are 0 */
6753 params.sprstat_abandoned_unsent = 0;
6754 params.sprstat_abandoned_sent = 0;
6755 retval = 0;
6756 goto out;
6757 }
6758
Xin Longd229d482017-04-01 17:07:46 +08006759 if (policy == SCTP_PR_SCTP_NONE) {
6760 params.sprstat_abandoned_unsent = 0;
6761 params.sprstat_abandoned_sent = 0;
6762 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
6763 params.sprstat_abandoned_unsent +=
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03006764 streamoute->abandoned_unsent[policy];
Xin Longd229d482017-04-01 17:07:46 +08006765 params.sprstat_abandoned_sent +=
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03006766 streamoute->abandoned_sent[policy];
Xin Longd229d482017-04-01 17:07:46 +08006767 }
6768 } else {
6769 params.sprstat_abandoned_unsent =
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03006770 streamoute->abandoned_unsent[__SCTP_PR_INDEX(policy)];
Xin Longd229d482017-04-01 17:07:46 +08006771 params.sprstat_abandoned_sent =
Marcelo Ricardo Leitnerf952be72017-10-03 19:20:11 -03006772 streamoute->abandoned_sent[__SCTP_PR_INDEX(policy)];
Xin Longd229d482017-04-01 17:07:46 +08006773 }
6774
6775 if (put_user(len, optlen) || copy_to_user(optval, &params, len)) {
6776 retval = -EFAULT;
6777 goto out;
6778 }
6779
6780 retval = 0;
6781
6782out:
6783 return retval;
6784}
6785
Xin Longc0d8bab2017-03-10 12:11:12 +08006786static int sctp_getsockopt_reconfig_supported(struct sock *sk, int len,
6787 char __user *optval,
6788 int __user *optlen)
6789{
6790 struct sctp_assoc_value params;
6791 struct sctp_association *asoc;
6792 int retval = -EFAULT;
6793
6794 if (len < sizeof(params)) {
6795 retval = -EINVAL;
6796 goto out;
6797 }
6798
6799 len = sizeof(params);
6800 if (copy_from_user(&params, optval, len))
6801 goto out;
6802
6803 asoc = sctp_id2assoc(sk, params.assoc_id);
6804 if (asoc) {
6805 params.assoc_value = asoc->reconf_enable;
6806 } else if (!params.assoc_id) {
6807 struct sctp_sock *sp = sctp_sk(sk);
6808
6809 params.assoc_value = sp->ep->reconf_enable;
6810 } else {
6811 retval = -EINVAL;
6812 goto out;
6813 }
6814
6815 if (put_user(len, optlen))
6816 goto out;
6817
6818 if (copy_to_user(optval, &params, len))
6819 goto out;
6820
6821 retval = 0;
6822
6823out:
6824 return retval;
6825}
6826
Xin Long9fb657a2017-01-18 00:44:46 +08006827static int sctp_getsockopt_enable_strreset(struct sock *sk, int len,
6828 char __user *optval,
6829 int __user *optlen)
6830{
6831 struct sctp_assoc_value params;
6832 struct sctp_association *asoc;
6833 int retval = -EFAULT;
6834
6835 if (len < sizeof(params)) {
6836 retval = -EINVAL;
6837 goto out;
6838 }
6839
6840 len = sizeof(params);
6841 if (copy_from_user(&params, optval, len))
6842 goto out;
6843
6844 asoc = sctp_id2assoc(sk, params.assoc_id);
6845 if (asoc) {
6846 params.assoc_value = asoc->strreset_enable;
6847 } else if (!params.assoc_id) {
6848 struct sctp_sock *sp = sctp_sk(sk);
6849
6850 params.assoc_value = sp->ep->strreset_enable;
6851 } else {
6852 retval = -EINVAL;
6853 goto out;
6854 }
6855
6856 if (put_user(len, optlen))
6857 goto out;
6858
6859 if (copy_to_user(optval, &params, len))
6860 goto out;
6861
6862 retval = 0;
6863
6864out:
6865 return retval;
6866}
6867
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03006868static int sctp_getsockopt_scheduler(struct sock *sk, int len,
6869 char __user *optval,
6870 int __user *optlen)
6871{
6872 struct sctp_assoc_value params;
6873 struct sctp_association *asoc;
6874 int retval = -EFAULT;
6875
6876 if (len < sizeof(params)) {
6877 retval = -EINVAL;
6878 goto out;
6879 }
6880
6881 len = sizeof(params);
6882 if (copy_from_user(&params, optval, len))
6883 goto out;
6884
6885 asoc = sctp_id2assoc(sk, params.assoc_id);
6886 if (!asoc) {
6887 retval = -EINVAL;
6888 goto out;
6889 }
6890
6891 params.assoc_value = sctp_sched_get_sched(asoc);
6892
6893 if (put_user(len, optlen))
6894 goto out;
6895
6896 if (copy_to_user(optval, &params, len))
6897 goto out;
6898
6899 retval = 0;
6900
6901out:
6902 return retval;
6903}
6904
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03006905static int sctp_getsockopt_scheduler_value(struct sock *sk, int len,
6906 char __user *optval,
6907 int __user *optlen)
6908{
6909 struct sctp_stream_value params;
6910 struct sctp_association *asoc;
6911 int retval = -EFAULT;
6912
6913 if (len < sizeof(params)) {
6914 retval = -EINVAL;
6915 goto out;
6916 }
6917
6918 len = sizeof(params);
6919 if (copy_from_user(&params, optval, len))
6920 goto out;
6921
6922 asoc = sctp_id2assoc(sk, params.assoc_id);
6923 if (!asoc) {
6924 retval = -EINVAL;
6925 goto out;
6926 }
6927
6928 retval = sctp_sched_get_value(asoc, params.stream_id,
6929 &params.stream_value);
6930 if (retval)
6931 goto out;
6932
6933 if (put_user(len, optlen)) {
6934 retval = -EFAULT;
6935 goto out;
6936 }
6937
6938 if (copy_to_user(optval, &params, len)) {
6939 retval = -EFAULT;
6940 goto out;
6941 }
6942
6943out:
6944 return retval;
6945}
6946
Daniel Borkmanndda91922013-06-17 11:40:05 +02006947static int sctp_getsockopt(struct sock *sk, int level, int optname,
6948 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006949{
6950 int retval = 0;
6951 int len;
6952
Daniel Borkmannbb333812013-06-28 19:49:40 +02006953 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006954
6955 /* I can hardly begin to describe how wrong this is. This is
6956 * so broken as to be worse than useless. The API draft
6957 * REALLY is NOT helpful here... I am not convinced that the
6958 * semantics of getsockopt() with a level OTHER THAN SOL_SCTP
6959 * are at all well-founded.
6960 */
6961 if (level != SOL_SCTP) {
6962 struct sctp_af *af = sctp_sk(sk)->pf->af;
6963
6964 retval = af->getsockopt(sk, level, optname, optval, optlen);
6965 return retval;
6966 }
6967
6968 if (get_user(len, optlen))
6969 return -EFAULT;
6970
Jiri Slabya4b8e712016-10-21 14:13:24 +02006971 if (len < 0)
6972 return -EINVAL;
6973
wangweidong048ed4b2014-01-21 15:44:11 +08006974 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975
6976 switch (optname) {
6977 case SCTP_STATUS:
6978 retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen);
6979 break;
6980 case SCTP_DISABLE_FRAGMENTS:
6981 retval = sctp_getsockopt_disable_fragments(sk, len, optval,
6982 optlen);
6983 break;
6984 case SCTP_EVENTS:
6985 retval = sctp_getsockopt_events(sk, len, optval, optlen);
6986 break;
6987 case SCTP_AUTOCLOSE:
6988 retval = sctp_getsockopt_autoclose(sk, len, optval, optlen);
6989 break;
6990 case SCTP_SOCKOPT_PEELOFF:
6991 retval = sctp_getsockopt_peeloff(sk, len, optval, optlen);
6992 break;
Neil Horman2cb5c8e2017-06-30 13:32:57 -04006993 case SCTP_SOCKOPT_PEELOFF_FLAGS:
6994 retval = sctp_getsockopt_peeloff_flags(sk, len, optval, optlen);
6995 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006996 case SCTP_PEER_ADDR_PARAMS:
6997 retval = sctp_getsockopt_peer_addr_params(sk, len, optval,
6998 optlen);
6999 break;
Shan Wei4580ccc2011-01-18 22:39:00 +00007000 case SCTP_DELAYED_SACK:
Wei Yongjund364d922008-05-09 15:13:26 -07007001 retval = sctp_getsockopt_delayed_ack(sk, len, optval,
Frank Filz77086102005-12-22 11:37:30 -08007002 optlen);
7003 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007004 case SCTP_INITMSG:
7005 retval = sctp_getsockopt_initmsg(sk, len, optval, optlen);
7006 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007007 case SCTP_GET_PEER_ADDRS:
7008 retval = sctp_getsockopt_peer_addrs(sk, len, optval,
7009 optlen);
7010 break;
7011 case SCTP_GET_LOCAL_ADDRS:
7012 retval = sctp_getsockopt_local_addrs(sk, len, optval,
7013 optlen);
7014 break;
Vlad Yasevichc6ba68a2009-06-01 12:41:15 -04007015 case SCTP_SOCKOPT_CONNECTX3:
7016 retval = sctp_getsockopt_connectx3(sk, len, optval, optlen);
7017 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007018 case SCTP_DEFAULT_SEND_PARAM:
7019 retval = sctp_getsockopt_default_send_param(sk, len,
7020 optval, optlen);
7021 break;
Geir Ola Vaagland6b3fd5f2014-07-12 20:30:39 +02007022 case SCTP_DEFAULT_SNDINFO:
7023 retval = sctp_getsockopt_default_sndinfo(sk, len,
7024 optval, optlen);
7025 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007026 case SCTP_PRIMARY_ADDR:
7027 retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen);
7028 break;
7029 case SCTP_NODELAY:
7030 retval = sctp_getsockopt_nodelay(sk, len, optval, optlen);
7031 break;
7032 case SCTP_RTOINFO:
7033 retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen);
7034 break;
7035 case SCTP_ASSOCINFO:
7036 retval = sctp_getsockopt_associnfo(sk, len, optval, optlen);
7037 break;
7038 case SCTP_I_WANT_MAPPED_V4_ADDR:
7039 retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen);
7040 break;
7041 case SCTP_MAXSEG:
7042 retval = sctp_getsockopt_maxseg(sk, len, optval, optlen);
7043 break;
7044 case SCTP_GET_PEER_ADDR_INFO:
7045 retval = sctp_getsockopt_peer_addr_info(sk, len, optval,
7046 optlen);
7047 break;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08007048 case SCTP_ADAPTATION_LAYER:
7049 retval = sctp_getsockopt_adaptation_layer(sk, len, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007050 optlen);
7051 break;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08007052 case SCTP_CONTEXT:
7053 retval = sctp_getsockopt_context(sk, len, optval, optlen);
7054 break;
Vlad Yasevichb6e13312007-04-20 12:23:15 -07007055 case SCTP_FRAGMENT_INTERLEAVE:
7056 retval = sctp_getsockopt_fragment_interleave(sk, len, optval,
7057 optlen);
7058 break;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -07007059 case SCTP_PARTIAL_DELIVERY_POINT:
7060 retval = sctp_getsockopt_partial_delivery_point(sk, len, optval,
7061 optlen);
7062 break;
Vlad Yasevich70331572007-03-23 11:34:36 -07007063 case SCTP_MAX_BURST:
7064 retval = sctp_getsockopt_maxburst(sk, len, optval, optlen);
7065 break;
Vlad Yasevich65b07e52007-09-16 19:34:00 -07007066 case SCTP_AUTH_KEY:
7067 case SCTP_AUTH_CHUNK:
7068 case SCTP_AUTH_DELETE_KEY:
7069 retval = -EOPNOTSUPP;
7070 break;
7071 case SCTP_HMAC_IDENT:
7072 retval = sctp_getsockopt_hmac_ident(sk, len, optval, optlen);
7073 break;
7074 case SCTP_AUTH_ACTIVE_KEY:
7075 retval = sctp_getsockopt_active_key(sk, len, optval, optlen);
7076 break;
7077 case SCTP_PEER_AUTH_CHUNKS:
7078 retval = sctp_getsockopt_peer_auth_chunks(sk, len, optval,
7079 optlen);
7080 break;
7081 case SCTP_LOCAL_AUTH_CHUNKS:
7082 retval = sctp_getsockopt_local_auth_chunks(sk, len, optval,
7083 optlen);
7084 break;
Wei Yongjunaea3c5c2008-12-25 16:57:24 -08007085 case SCTP_GET_ASSOC_NUMBER:
7086 retval = sctp_getsockopt_assoc_number(sk, len, optval, optlen);
7087 break;
Wei Yongjun209ba422011-04-17 17:27:08 +00007088 case SCTP_GET_ASSOC_ID_LIST:
7089 retval = sctp_getsockopt_assoc_ids(sk, len, optval, optlen);
7090 break;
Michio Honda7dc04d72011-04-26 20:16:31 +09007091 case SCTP_AUTO_ASCONF:
7092 retval = sctp_getsockopt_auto_asconf(sk, len, optval, optlen);
7093 break;
Neil Horman5aa93bc2012-07-21 07:56:07 +00007094 case SCTP_PEER_ADDR_THLDS:
7095 retval = sctp_getsockopt_paddr_thresholds(sk, optval, len, optlen);
7096 break;
Michele Baldessari196d6752012-12-01 04:49:42 +00007097 case SCTP_GET_ASSOC_STATS:
7098 retval = sctp_getsockopt_assoc_stats(sk, len, optval, optlen);
7099 break;
Geir Ola Vaagland0d3a4212014-07-12 20:30:37 +02007100 case SCTP_RECVRCVINFO:
7101 retval = sctp_getsockopt_recvrcvinfo(sk, len, optval, optlen);
7102 break;
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02007103 case SCTP_RECVNXTINFO:
7104 retval = sctp_getsockopt_recvnxtinfo(sk, len, optval, optlen);
7105 break;
Xin Long28aa4c22016-07-09 19:47:40 +08007106 case SCTP_PR_SUPPORTED:
7107 retval = sctp_getsockopt_pr_supported(sk, len, optval, optlen);
7108 break;
Xin Longf959fb42016-07-09 19:47:41 +08007109 case SCTP_DEFAULT_PRINFO:
7110 retval = sctp_getsockopt_default_prinfo(sk, len, optval,
7111 optlen);
7112 break;
Xin Long826d2532016-07-09 19:47:42 +08007113 case SCTP_PR_ASSOC_STATUS:
7114 retval = sctp_getsockopt_pr_assocstatus(sk, len, optval,
7115 optlen);
7116 break;
Xin Longd229d482017-04-01 17:07:46 +08007117 case SCTP_PR_STREAM_STATUS:
7118 retval = sctp_getsockopt_pr_streamstatus(sk, len, optval,
7119 optlen);
7120 break;
Xin Longc0d8bab2017-03-10 12:11:12 +08007121 case SCTP_RECONFIG_SUPPORTED:
7122 retval = sctp_getsockopt_reconfig_supported(sk, len, optval,
7123 optlen);
7124 break;
Xin Long9fb657a2017-01-18 00:44:46 +08007125 case SCTP_ENABLE_STREAM_RESET:
7126 retval = sctp_getsockopt_enable_strreset(sk, len, optval,
7127 optlen);
7128 break;
Marcelo Ricardo Leitner13aa8772017-10-03 19:20:14 -03007129 case SCTP_STREAM_SCHEDULER:
7130 retval = sctp_getsockopt_scheduler(sk, len, optval,
7131 optlen);
7132 break;
Marcelo Ricardo Leitner0ccdf3c2017-10-03 19:20:15 -03007133 case SCTP_STREAM_SCHEDULER_VALUE:
7134 retval = sctp_getsockopt_scheduler_value(sk, len, optval,
7135 optlen);
7136 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007137 default:
7138 retval = -ENOPROTOOPT;
7139 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07007140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007141
wangweidong048ed4b2014-01-21 15:44:11 +08007142 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007143 return retval;
7144}
7145
Craig Gallek086c6532016-02-10 11:50:35 -05007146static int sctp_hash(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007147{
7148 /* STUB */
Craig Gallek086c6532016-02-10 11:50:35 -05007149 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007150}
7151
7152static void sctp_unhash(struct sock *sk)
7153{
7154 /* STUB */
7155}
7156
7157/* Check if port is acceptable. Possibly find first available port.
7158 *
7159 * The port hash table (contained in the 'global' SCTP protocol storage
7160 * returned by struct sctp_protocol *sctp_get_protocol()). The hash
7161 * table is an array of 4096 lists (sctp_bind_hashbucket). Each
7162 * list (the list number is the port number hashed out, so as you
7163 * would expect from a hash function, all the ports in a given list have
7164 * such a number that hashes out to the same list number; you were
7165 * expecting that, right?); so each list has a set of ports, with a
7166 * link to the socket (struct sock) that uses it, the port number and
7167 * a fastreuse flag (FIXME: NPI ipg).
7168 */
7169static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007170 struct sctp_bind_hashbucket *head, struct net *, unsigned short snum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007171
7172static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
7173{
7174 struct sctp_bind_hashbucket *head; /* hash list */
Sasha Levinb67bfe02013-02-27 17:06:00 -08007175 struct sctp_bind_bucket *pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007176 unsigned short snum;
7177 int ret;
7178
Al Viro04afd8b2006-11-20 17:02:01 -08007179 snum = ntohs(addr->v4.sin_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007180
Daniel Borkmannbb333812013-06-28 19:49:40 +02007181 pr_debug("%s: begins, snum:%d\n", __func__, snum);
7182
wangweidong79b91132014-01-21 15:44:07 +08007183 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007184
7185 if (snum == 0) {
Stephen Hemminger06393002007-10-10 17:30:18 -07007186 /* Search for an available port. */
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007187 int low, high, remaining, index;
7188 unsigned int rover;
WANG Cong122ff242014-05-12 16:04:53 -07007189 struct net *net = sock_net(sk);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007190
WANG Cong122ff242014-05-12 16:04:53 -07007191 inet_get_local_port_range(net, &low, &high);
Stephen Hemminger227b60f2007-10-10 17:30:46 -07007192 remaining = (high - low) + 1;
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05007193 rover = prandom_u32() % remaining + low;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007194
Linus Torvalds1da177e2005-04-16 15:20:36 -07007195 do {
7196 rover++;
7197 if ((rover < low) || (rover > high))
7198 rover = low;
WANG Cong122ff242014-05-12 16:04:53 -07007199 if (inet_is_local_reserved_port(net, rover))
Amerigo Wange3826f12010-05-05 00:27:06 +00007200 continue;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007201 index = sctp_phashfn(sock_net(sk), rover);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007202 head = &sctp_port_hashtable[index];
wangweidong3c8e43b2014-01-21 15:44:08 +08007203 spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08007204 sctp_for_each_hentry(pp, &head->chain)
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007205 if ((pp->port == rover) &&
7206 net_eq(sock_net(sk), pp->net))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007207 goto next;
7208 break;
7209 next:
wangweidong3c8e43b2014-01-21 15:44:08 +08007210 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007211 } while (--remaining > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007212
7213 /* Exhausted local port range during search? */
7214 ret = 1;
7215 if (remaining <= 0)
7216 goto fail;
7217
7218 /* OK, here is the one we will use. HEAD (the port
7219 * hash table list entry) is non-NULL and we hold it's
7220 * mutex.
7221 */
7222 snum = rover;
7223 } else {
7224 /* We are given an specific port number; we verify
7225 * that it is not being used. If it is used, we will
7226 * exahust the search in the hash list corresponding
7227 * to the port number (snum) - we detect that with the
7228 * port iterator, pp being NULL.
7229 */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007230 head = &sctp_port_hashtable[sctp_phashfn(sock_net(sk), snum)];
wangweidong3c8e43b2014-01-21 15:44:08 +08007231 spin_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08007232 sctp_for_each_hentry(pp, &head->chain) {
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007233 if ((pp->port == snum) && net_eq(pp->net, sock_net(sk)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007234 goto pp_found;
7235 }
7236 }
7237 pp = NULL;
7238 goto pp_not_found;
7239pp_found:
7240 if (!hlist_empty(&pp->owner)) {
7241 /* We had a port hash table hit - there is an
7242 * available port (pp != NULL) and it is being
7243 * used by other socket (pp->owner not empty); that other
7244 * socket is going to be sk2.
7245 */
7246 int reuse = sk->sk_reuse;
7247 struct sock *sk2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007248
Daniel Borkmannbb333812013-06-28 19:49:40 +02007249 pr_debug("%s: found a possible match\n", __func__);
7250
Vlad Yasevichce5325c2007-05-04 13:34:49 -07007251 if (pp->fastreuse && sk->sk_reuse &&
7252 sk->sk_state != SCTP_SS_LISTENING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007253 goto success;
7254
7255 /* Run through the list of sockets bound to the port
7256 * (pp->port) [via the pointers bind_next and
7257 * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one,
7258 * we get the endpoint they describe and run through
7259 * the endpoint's list of IP (v4 or v6) addresses,
7260 * comparing each of the addresses with the address of
7261 * the socket sk. If we find a match, then that means
7262 * that this port/socket (sk) combination are already
7263 * in an endpoint.
7264 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08007265 sk_for_each_bound(sk2, &pp->owner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007266 struct sctp_endpoint *ep2;
7267 ep2 = sctp_sk(sk2)->ep;
7268
Vlad Yasevich4e540642008-07-18 23:06:32 -07007269 if (sk == sk2 ||
7270 (reuse && sk2->sk_reuse &&
7271 sk2->sk_state != SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007272 continue;
7273
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07007274 if (sctp_bind_addr_conflict(&ep2->base.bind_addr, addr,
7275 sctp_sk(sk2), sctp_sk(sk))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007276 ret = (long)sk2;
7277 goto fail_unlock;
7278 }
7279 }
Daniel Borkmannbb333812013-06-28 19:49:40 +02007280
7281 pr_debug("%s: found a match\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007282 }
7283pp_not_found:
7284 /* If there was a hash table miss, create a new port. */
7285 ret = 1;
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007286 if (!pp && !(pp = sctp_bucket_create(head, sock_net(sk), snum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007287 goto fail_unlock;
7288
7289 /* In either case (hit or miss), make sure fastreuse is 1 only
7290 * if sk->sk_reuse is too (that is, if the caller requested
7291 * SO_REUSEADDR on this socket -sk-).
7292 */
Vlad Yasevichce5325c2007-05-04 13:34:49 -07007293 if (hlist_empty(&pp->owner)) {
7294 if (sk->sk_reuse && sk->sk_state != SCTP_SS_LISTENING)
7295 pp->fastreuse = 1;
7296 else
7297 pp->fastreuse = 0;
7298 } else if (pp->fastreuse &&
7299 (!sk->sk_reuse || sk->sk_state == SCTP_SS_LISTENING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007300 pp->fastreuse = 0;
7301
7302 /* We are set, so fill up all the data in the hash table
7303 * entry, tie the socket list information with the rest of the
7304 * sockets FIXME: Blurry, NPI (ipg).
7305 */
7306success:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007307 if (!sctp_sk(sk)->bind_hash) {
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007308 inet_sk(sk)->inet_num = snum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007309 sk_add_bind_node(sk, &pp->owner);
7310 sctp_sk(sk)->bind_hash = pp;
7311 }
7312 ret = 0;
7313
7314fail_unlock:
wangweidong3c8e43b2014-01-21 15:44:08 +08007315 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007316
7317fail:
wangweidong79b91132014-01-21 15:44:07 +08007318 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007319 return ret;
7320}
7321
7322/* Assign a 'snum' port to the socket. If snum == 0, an ephemeral
7323 * port is requested.
7324 */
7325static int sctp_get_port(struct sock *sk, unsigned short snum)
7326{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007327 union sctp_addr addr;
7328 struct sctp_af *af = sctp_sk(sk)->pf->af;
7329
7330 /* Set up a dummy address struct from the sk. */
7331 af->from_sk(&addr, sk);
7332 addr.v4.sin_port = htons(snum);
7333
7334 /* Note: sk->sk_num gets filled in if ephemeral port request. */
Daniel Borkmann62208f12013-06-25 18:17:30 +02007335 return !!sctp_get_port_local(sk, &addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336}
7337
7338/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007339 * Move a socket to LISTENING state.
7340 */
Daniel Borkmanndda91922013-06-17 11:40:05 +02007341static int sctp_listen_start(struct sock *sk, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007342{
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007343 struct sctp_sock *sp = sctp_sk(sk);
7344 struct sctp_endpoint *ep = sp->ep;
Herbert Xu5821c762016-01-24 21:20:12 +08007345 struct crypto_shash *tfm = NULL;
Neil Horman3c681982012-10-24 09:20:03 +00007346 char alg[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007347
7348 /* Allocate HMAC for generating cookie. */
Neil Horman3c681982012-10-24 09:20:03 +00007349 if (!sp->hmac && sp->sctp_hmac_alg) {
7350 sprintf(alg, "hmac(%s)", sp->sctp_hmac_alg);
Herbert Xu5821c762016-01-24 21:20:12 +08007351 tfm = crypto_alloc_shash(alg, 0, 0);
Vlad Yasevich8dc49842007-05-09 13:50:20 -07007352 if (IS_ERR(tfm)) {
Joe Perchese87cc472012-05-13 21:56:26 +00007353 net_info_ratelimited("failed to load transform for %s: %ld\n",
Neil Horman3c681982012-10-24 09:20:03 +00007354 sp->sctp_hmac_alg, PTR_ERR(tfm));
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007355 return -ENOSYS;
7356 }
7357 sctp_sk(sk)->hmac = tfm;
7358 }
7359
7360 /*
7361 * If a bind() or sctp_bindx() is not called prior to a listen()
7362 * call that allows new associations to be accepted, the system
7363 * picks an ephemeral port and will choose an address set equivalent
7364 * to binding with a wildcard address.
7365 *
7366 * This is not currently spelled out in the SCTP sockets
7367 * extensions draft, but follows the practice as seen in TCP
7368 * sockets.
7369 *
7370 */
7371 sk->sk_state = SCTP_SS_LISTENING;
7372 if (!ep->base.bind_addr.port) {
7373 if (sctp_autobind(sk))
7374 return -EAGAIN;
7375 } else {
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007376 if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007377 sk->sk_state = SCTP_SS_CLOSED;
7378 return -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007379 }
7380 }
7381
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007382 sk->sk_max_ack_backlog = backlog;
7383 sctp_hash_endpoint(ep);
7384 return 0;
7385}
7386
7387/*
7388 * 4.1.3 / 5.1.3 listen()
7389 *
7390 * By default, new associations are not accepted for UDP style sockets.
7391 * An application uses listen() to mark a socket as being able to
7392 * accept new associations.
7393 *
7394 * On TCP style sockets, applications use listen() to ready the SCTP
7395 * endpoint for accepting inbound associations.
7396 *
7397 * On both types of endpoints a backlog of '0' disables listening.
7398 *
7399 * Move a socket to LISTENING state.
7400 */
7401int sctp_inet_listen(struct socket *sock, int backlog)
7402{
7403 struct sock *sk = sock->sk;
7404 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
7405 int err = -EINVAL;
7406
7407 if (unlikely(backlog < 0))
7408 return err;
7409
wangweidong048ed4b2014-01-21 15:44:11 +08007410 lock_sock(sk);
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007411
7412 /* Peeled-off sockets are not allowed to listen(). */
7413 if (sctp_style(sk, UDP_HIGH_BANDWIDTH))
7414 goto out;
7415
7416 if (sock->state != SS_UNCONNECTED)
7417 goto out;
7418
Xin Long34b27892017-04-06 13:10:52 +08007419 if (!sctp_sstate(sk, LISTENING) && !sctp_sstate(sk, CLOSED))
7420 goto out;
7421
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007422 /* If backlog is zero, disable listening. */
7423 if (!backlog) {
7424 if (sctp_sstate(sk, CLOSED))
7425 goto out;
7426
7427 err = 0;
7428 sctp_unhash_endpoint(ep);
7429 sk->sk_state = SCTP_SS_CLOSED;
7430 if (sk->sk_reuse)
7431 sctp_sk(sk)->bind_hash->fastreuse = 1;
7432 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07007433 }
7434
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007435 /* If we are already listening, just update the backlog */
7436 if (sctp_sstate(sk, LISTENING))
7437 sk->sk_max_ack_backlog = backlog;
7438 else {
7439 err = sctp_listen_start(sk, backlog);
7440 if (err)
7441 goto out;
7442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007443
Vlad Yasevich5e8f3f72009-03-12 09:49:17 +00007444 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007445out:
wangweidong048ed4b2014-01-21 15:44:11 +08007446 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007448}
7449
7450/*
7451 * This function is done by modeling the current datagram_poll() and the
7452 * tcp_poll(). Note that, based on these implementations, we don't
7453 * lock the socket in this function, even though it seems that,
7454 * ideally, locking or some other mechanisms can be used to ensure
Neil Horman9bffc4a2005-12-19 14:24:40 -08007455 * the integrity of the counters (sndbuf and wmem_alloc) used
Linus Torvalds1da177e2005-04-16 15:20:36 -07007456 * in this place. We assume that we don't need locks either until proven
7457 * otherwise.
7458 *
7459 * Another thing to note is that we include the Async I/O support
7460 * here, again, by modeling the current TCP/UDP code. We don't have
7461 * a good way to test with it yet.
7462 */
7463unsigned int sctp_poll(struct file *file, struct socket *sock, poll_table *wait)
7464{
7465 struct sock *sk = sock->sk;
7466 struct sctp_sock *sp = sctp_sk(sk);
7467 unsigned int mask;
7468
Eric Dumazetaa395142010-04-20 13:03:51 +00007469 poll_wait(file, sk_sleep(sk), wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007470
Marcelo Ricardo Leitner486bdee2016-04-12 18:11:31 -03007471 sock_rps_record_flow(sk);
7472
Linus Torvalds1da177e2005-04-16 15:20:36 -07007473 /* A TCP-style listening socket becomes readable when the accept queue
7474 * is not empty.
7475 */
7476 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
7477 return (!list_empty(&sp->ep->asocs)) ?
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09007478 (POLLIN | POLLRDNORM) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007479
7480 mask = 0;
7481
7482 /* Is there any exceptional events? */
7483 if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
Keller, Jacob E7d4c04f2013-03-28 11:19:25 +00007484 mask |= POLLERR |
Daniel Borkmanna0fb05d2013-09-07 16:44:59 +02007485 (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? POLLPRI : 0);
Davide Libenzif348d702006-03-25 03:07:39 -08007486 if (sk->sk_shutdown & RCV_SHUTDOWN)
Eric Dumazetdb409802010-09-06 11:13:50 +00007487 mask |= POLLRDHUP | POLLIN | POLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007488 if (sk->sk_shutdown == SHUTDOWN_MASK)
7489 mask |= POLLHUP;
7490
7491 /* Is it readable? Reconsider this code with TCP-style support. */
Eric Dumazetdb409802010-09-06 11:13:50 +00007492 if (!skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007493 mask |= POLLIN | POLLRDNORM;
7494
7495 /* The association is either gone or not ready. */
7496 if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED))
7497 return mask;
7498
7499 /* Is it writable? */
7500 if (sctp_writeable(sk)) {
7501 mask |= POLLOUT | POLLWRNORM;
7502 } else {
Eric Dumazet9cd3e072015-11-29 20:03:10 -08007503 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007504 /*
7505 * Since the socket is not locked, the buffer
7506 * might be made available after the writeable check and
7507 * before the bit is set. This could cause a lost I/O
7508 * signal. tcp_poll() has a race breaker for this race
7509 * condition. Based on their implementation, we put
7510 * in the following code to cover it as well.
7511 */
7512 if (sctp_writeable(sk))
7513 mask |= POLLOUT | POLLWRNORM;
7514 }
7515 return mask;
7516}
7517
7518/********************************************************************
7519 * 2nd Level Abstractions
7520 ********************************************************************/
7521
7522static struct sctp_bind_bucket *sctp_bucket_create(
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007523 struct sctp_bind_hashbucket *head, struct net *net, unsigned short snum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007524{
7525 struct sctp_bind_bucket *pp;
7526
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08007527 pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007528 if (pp) {
Li Zefan935a7f62008-04-10 01:58:06 -07007529 SCTP_DBG_OBJCNT_INC(bind_bucket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007530 pp->port = snum;
7531 pp->fastreuse = 0;
7532 INIT_HLIST_HEAD(&pp->owner);
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007533 pp->net = net;
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05007534 hlist_add_head(&pp->node, &head->chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007535 }
7536 return pp;
7537}
7538
7539/* Caller must hold hashbucket lock for this tb with local BH disabled */
7540static void sctp_bucket_destroy(struct sctp_bind_bucket *pp)
7541{
Sridhar Samudrala37fa6872006-07-21 14:45:47 -07007542 if (pp && hlist_empty(&pp->owner)) {
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05007543 __hlist_del(&pp->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007544 kmem_cache_free(sctp_bucket_cachep, pp);
7545 SCTP_DBG_OBJCNT_DEC(bind_bucket);
7546 }
7547}
7548
7549/* Release this socket's reference to a local port. */
7550static inline void __sctp_put_port(struct sock *sk)
7551{
7552 struct sctp_bind_hashbucket *head =
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00007553 &sctp_port_hashtable[sctp_phashfn(sock_net(sk),
7554 inet_sk(sk)->inet_num)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007555 struct sctp_bind_bucket *pp;
7556
wangweidong3c8e43b2014-01-21 15:44:08 +08007557 spin_lock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007558 pp = sctp_sk(sk)->bind_hash;
7559 __sk_del_bind_node(sk);
7560 sctp_sk(sk)->bind_hash = NULL;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007561 inet_sk(sk)->inet_num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007562 sctp_bucket_destroy(pp);
wangweidong3c8e43b2014-01-21 15:44:08 +08007563 spin_unlock(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007564}
7565
7566void sctp_put_port(struct sock *sk)
7567{
wangweidong79b91132014-01-21 15:44:07 +08007568 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007569 __sctp_put_port(sk);
wangweidong79b91132014-01-21 15:44:07 +08007570 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007571}
7572
7573/*
7574 * The system picks an ephemeral port and choose an address set equivalent
7575 * to binding with a wildcard address.
7576 * One of those addresses will be the primary address for the association.
7577 * This automatically enables the multihoming capability of SCTP.
7578 */
7579static int sctp_autobind(struct sock *sk)
7580{
7581 union sctp_addr autoaddr;
7582 struct sctp_af *af;
Al Viro6fbfa9f2006-11-20 17:24:53 -08007583 __be16 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007584
7585 /* Initialize a local sockaddr structure to INADDR_ANY. */
7586 af = sctp_sk(sk)->pf->af;
7587
Eric Dumazetc720c7e82009-10-15 06:30:45 +00007588 port = htons(inet_sk(sk)->inet_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007589 af->inaddr_any(&autoaddr, port);
7590
7591 return sctp_do_bind(sk, &autoaddr, af->sockaddr_len);
7592}
7593
7594/* Parse out IPPROTO_SCTP CMSG headers. Perform only minimal validation.
7595 *
7596 * From RFC 2292
7597 * 4.2 The cmsghdr Structure *
7598 *
7599 * When ancillary data is sent or received, any number of ancillary data
7600 * objects can be specified by the msg_control and msg_controllen members of
7601 * the msghdr structure, because each object is preceded by
7602 * a cmsghdr structure defining the object's length (the cmsg_len member).
7603 * Historically Berkeley-derived implementations have passed only one object
7604 * at a time, but this API allows multiple objects to be
7605 * passed in a single call to sendmsg() or recvmsg(). The following example
7606 * shows two ancillary data objects in a control buffer.
7607 *
7608 * |<--------------------------- msg_controllen -------------------------->|
7609 * | |
7610 *
7611 * |<----- ancillary data object ----->|<----- ancillary data object ----->|
7612 *
7613 * |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->|
7614 * | | |
7615 *
7616 * |<---------- cmsg_len ---------->| |<--------- cmsg_len ----------->| |
7617 *
7618 * |<--------- CMSG_LEN() --------->| |<-------- CMSG_LEN() ---------->| |
7619 * | | | | |
7620 *
7621 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
7622 * |cmsg_|cmsg_|cmsg_|XX| |XX|cmsg_|cmsg_|cmsg_|XX| |XX|
7623 *
7624 * |len |level|type |XX|cmsg_data[]|XX|len |level|type |XX|cmsg_data[]|XX|
7625 *
7626 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
7627 * ^
7628 * |
7629 *
7630 * msg_control
7631 * points here
7632 */
Xin Longa05437a2017-08-11 10:23:48 +08007633static int sctp_msghdr_parse(const struct msghdr *msg, struct sctp_cmsgs *cmsgs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007634{
Vlad Yasevichab38fb02008-04-12 18:40:06 -07007635 struct msghdr *my_msg = (struct msghdr *)msg;
Xin Longa05437a2017-08-11 10:23:48 +08007636 struct cmsghdr *cmsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007637
Gu Zhengf95b4142014-12-11 11:22:04 +08007638 for_each_cmsghdr(cmsg, my_msg) {
Vlad Yasevichab38fb02008-04-12 18:40:06 -07007639 if (!CMSG_OK(my_msg, cmsg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007640 return -EINVAL;
7641
7642 /* Should we parse this header or ignore? */
7643 if (cmsg->cmsg_level != IPPROTO_SCTP)
7644 continue;
7645
7646 /* Strictly check lengths following example in SCM code. */
7647 switch (cmsg->cmsg_type) {
7648 case SCTP_INIT:
7649 /* SCTP Socket API Extension
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007650 * 5.3.1 SCTP Initiation Structure (SCTP_INIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007651 *
7652 * This cmsghdr structure provides information for
7653 * initializing new SCTP associations with sendmsg().
7654 * The SCTP_INITMSG socket option uses this same data
7655 * structure. This structure is not used for
7656 * recvmsg().
7657 *
7658 * cmsg_level cmsg_type cmsg_data[]
7659 * ------------ ------------ ----------------------
7660 * IPPROTO_SCTP SCTP_INIT struct sctp_initmsg
7661 */
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007662 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_initmsg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007663 return -EINVAL;
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007664
7665 cmsgs->init = CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007666 break;
7667
7668 case SCTP_SNDRCV:
7669 /* SCTP Socket API Extension
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007670 * 5.3.2 SCTP Header Information Structure(SCTP_SNDRCV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007671 *
7672 * This cmsghdr structure specifies SCTP options for
7673 * sendmsg() and describes SCTP header information
7674 * about a received message through recvmsg().
7675 *
7676 * cmsg_level cmsg_type cmsg_data[]
7677 * ------------ ------------ ----------------------
7678 * IPPROTO_SCTP SCTP_SNDRCV struct sctp_sndrcvinfo
7679 */
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007680 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndrcvinfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007681 return -EINVAL;
7682
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007683 cmsgs->srinfo = CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007684
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007685 if (cmsgs->srinfo->sinfo_flags &
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07007686 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
Xin Longa6c2f792016-07-09 19:47:43 +08007687 SCTP_SACK_IMMEDIATELY | SCTP_PR_SCTP_MASK |
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -07007688 SCTP_ABORT | SCTP_EOF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007689 return -EINVAL;
7690 break;
7691
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007692 case SCTP_SNDINFO:
7693 /* SCTP Socket API Extension
7694 * 5.3.4 SCTP Send Information Structure (SCTP_SNDINFO)
7695 *
7696 * This cmsghdr structure specifies SCTP options for
7697 * sendmsg(). This structure and SCTP_RCVINFO replaces
7698 * SCTP_SNDRCV which has been deprecated.
7699 *
7700 * cmsg_level cmsg_type cmsg_data[]
7701 * ------------ ------------ ---------------------
7702 * IPPROTO_SCTP SCTP_SNDINFO struct sctp_sndinfo
7703 */
7704 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndinfo)))
7705 return -EINVAL;
7706
7707 cmsgs->sinfo = CMSG_DATA(cmsg);
7708
7709 if (cmsgs->sinfo->snd_flags &
7710 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
Xin Longa6c2f792016-07-09 19:47:43 +08007711 SCTP_SACK_IMMEDIATELY | SCTP_PR_SCTP_MASK |
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007712 SCTP_ABORT | SCTP_EOF))
7713 return -EINVAL;
7714 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007715 default:
7716 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07007717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007718 }
Geir Ola Vaagland63b94932014-07-12 20:30:36 +02007719
Linus Torvalds1da177e2005-04-16 15:20:36 -07007720 return 0;
7721}
7722
7723/*
7724 * Wait for a packet..
7725 * Note: This function is the same function as in core/datagram.c
7726 * with a few modifications to make lksctp work.
7727 */
wangweidong26ac8e52013-12-23 12:16:51 +08007728static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007729{
7730 int error;
7731 DEFINE_WAIT(wait);
7732
Eric Dumazetaa395142010-04-20 13:03:51 +00007733 prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007734
7735 /* Socket errors? */
7736 error = sock_error(sk);
7737 if (error)
7738 goto out;
7739
7740 if (!skb_queue_empty(&sk->sk_receive_queue))
7741 goto ready;
7742
7743 /* Socket shut down? */
7744 if (sk->sk_shutdown & RCV_SHUTDOWN)
7745 goto out;
7746
7747 /* Sequenced packets can come disconnected. If so we report the
7748 * problem.
7749 */
7750 error = -ENOTCONN;
7751
7752 /* Is there a good reason to think that we may receive some data? */
7753 if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING))
7754 goto out;
7755
7756 /* Handle signals. */
7757 if (signal_pending(current))
7758 goto interrupted;
7759
7760 /* Let another process have a go. Since we are going to sleep
7761 * anyway. Note: This may cause odd behaviors if the message
7762 * does not fit in the user's buffer, but this seems to be the
7763 * only way to honor MSG_DONTWAIT realistically.
7764 */
wangweidong048ed4b2014-01-21 15:44:11 +08007765 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007766 *timeo_p = schedule_timeout(*timeo_p);
wangweidong048ed4b2014-01-21 15:44:11 +08007767 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007768
7769ready:
Eric Dumazetaa395142010-04-20 13:03:51 +00007770 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007771 return 0;
7772
7773interrupted:
7774 error = sock_intr_errno(*timeo_p);
7775
7776out:
Eric Dumazetaa395142010-04-20 13:03:51 +00007777 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007778 *err = error;
7779 return error;
7780}
7781
7782/* Receive a datagram.
7783 * Note: This is pretty much the same routine as in core/datagram.c
7784 * with a few changes to make lksctp work.
7785 */
Geir Ola Vaagland2347c802014-07-12 20:30:38 +02007786struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags,
7787 int noblock, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007788{
7789 int error;
7790 struct sk_buff *skb;
7791 long timeo;
7792
Linus Torvalds1da177e2005-04-16 15:20:36 -07007793 timeo = sock_rcvtimeo(sk, noblock);
7794
Daniel Borkmannbb333812013-06-28 19:49:40 +02007795 pr_debug("%s: timeo:%ld, max:%ld\n", __func__, timeo,
7796 MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007797
7798 do {
7799 /* Again only user level code calls this function,
7800 * so nothing interrupt level
7801 * will suddenly eat the receive_queue.
7802 *
7803 * Look at current nfs client by the way...
David Shwatrz8917a3c2010-12-02 09:01:55 +00007804 * However, this function was correct in any case. 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007805 */
7806 if (flags & MSG_PEEK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007807 skb = skb_peek(&sk->sk_receive_queue);
7808 if (skb)
Reshetova, Elena63354792017-06-30 13:07:58 +03007809 refcount_inc(&skb->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007810 } else {
Marcelo Ricardo Leitner311b2172016-04-13 19:12:29 -03007811 skb = __skb_dequeue(&sk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007812 }
7813
7814 if (skb)
7815 return skb;
7816
Neil Horman6736dc32005-12-02 20:30:06 -08007817 /* Caller is allowed not to check sk->sk_err before calling. */
7818 error = sock_error(sk);
7819 if (error)
7820 goto no_packet;
7821
Linus Torvalds1da177e2005-04-16 15:20:36 -07007822 if (sk->sk_shutdown & RCV_SHUTDOWN)
7823 break;
7824
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07007825 if (sk_can_busy_loop(sk)) {
7826 sk_busy_loop(sk, noblock);
7827
7828 if (!skb_queue_empty(&sk->sk_receive_queue))
7829 continue;
7830 }
Neil Horman8465a5f2014-04-17 15:26:51 -04007831
Linus Torvalds1da177e2005-04-16 15:20:36 -07007832 /* User doesn't want to wait. */
7833 error = -EAGAIN;
7834 if (!timeo)
7835 goto no_packet;
7836 } while (sctp_wait_for_packet(sk, err, &timeo) == 0);
7837
7838 return NULL;
7839
7840no_packet:
7841 *err = error;
7842 return NULL;
7843}
7844
7845/* If sndbuf has changed, wake up per association sndbuf waiters. */
7846static void __sctp_write_space(struct sctp_association *asoc)
7847{
7848 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007849
Eric Dumazetceb5d582015-11-29 20:03:11 -08007850 if (sctp_wspace(asoc) <= 0)
7851 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007852
Eric Dumazetceb5d582015-11-29 20:03:11 -08007853 if (waitqueue_active(&asoc->wait))
7854 wake_up_interruptible(&asoc->wait);
Eric Dumazeteaefd112011-02-18 03:26:36 +00007855
Eric Dumazetceb5d582015-11-29 20:03:11 -08007856 if (sctp_writeable(sk)) {
7857 struct socket_wq *wq;
7858
7859 rcu_read_lock();
7860 wq = rcu_dereference(sk->sk_wq);
7861 if (wq) {
7862 if (waitqueue_active(&wq->wait))
7863 wake_up_interruptible(&wq->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007864
7865 /* Note that we try to include the Async I/O support
7866 * here by modeling from the current TCP/UDP code.
7867 * We have not tested with it yet.
7868 */
Eric Dumazeteaefd112011-02-18 03:26:36 +00007869 if (!(sk->sk_shutdown & SEND_SHUTDOWN))
Eric Dumazetceb5d582015-11-29 20:03:11 -08007870 sock_wake_async(wq, SOCK_WAKE_SPACE, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007871 }
Eric Dumazetceb5d582015-11-29 20:03:11 -08007872 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007873 }
7874}
7875
Daniel Borkmann52c35be2014-04-08 17:26:13 +02007876static void sctp_wake_up_waiters(struct sock *sk,
7877 struct sctp_association *asoc)
7878{
7879 struct sctp_association *tmp = asoc;
7880
7881 /* We do accounting for the sndbuf space per association,
7882 * so we only need to wake our own association.
7883 */
7884 if (asoc->ep->sndbuf_policy)
7885 return __sctp_write_space(asoc);
7886
Daniel Borkmann1e1cdf82014-04-09 16:10:20 +02007887 /* If association goes down and is just flushing its
7888 * outq, then just normally notify others.
7889 */
7890 if (asoc->base.dead)
7891 return sctp_write_space(sk);
7892
Daniel Borkmann52c35be2014-04-08 17:26:13 +02007893 /* Accounting for the sndbuf space is per socket, so we
7894 * need to wake up others, try to be fair and in case of
7895 * other associations, let them have a go first instead
7896 * of just doing a sctp_write_space() call.
7897 *
7898 * Note that we reach sctp_wake_up_waiters() only when
7899 * associations free up queued chunks, thus we are under
7900 * lock and the list of associations on a socket is
7901 * guaranteed not to change.
7902 */
7903 for (tmp = list_next_entry(tmp, asocs); 1;
7904 tmp = list_next_entry(tmp, asocs)) {
7905 /* Manually skip the head element. */
7906 if (&tmp->asocs == &((sctp_sk(sk))->ep->asocs))
7907 continue;
7908 /* Wake up association. */
7909 __sctp_write_space(tmp);
7910 /* We've reached the end. */
7911 if (tmp == asoc)
7912 break;
7913 }
7914}
7915
Linus Torvalds1da177e2005-04-16 15:20:36 -07007916/* Do accounting for the sndbuf space.
7917 * Decrement the used sndbuf space of the corresponding association by the
7918 * data size which was just transmitted(freed).
7919 */
7920static void sctp_wfree(struct sk_buff *skb)
7921{
Daniel Borkmannf869c912014-11-20 01:54:48 +01007922 struct sctp_chunk *chunk = skb_shinfo(skb)->destructor_arg;
7923 struct sctp_association *asoc = chunk->asoc;
7924 struct sock *sk = asoc->base.sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007925
Neil Horman4eb701d2005-04-28 12:02:04 -07007926 asoc->sndbuf_used -= SCTP_DATA_SNDSIZE(chunk) +
7927 sizeof(struct sk_buff) +
7928 sizeof(struct sctp_chunk);
7929
Reshetova, Elena14afee42017-06-30 13:08:00 +03007930 WARN_ON(refcount_sub_and_test(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc));
Neil Horman4eb701d2005-04-28 12:02:04 -07007931
Neil Horman4d93df02007-08-15 16:07:44 -07007932 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08007933 * This undoes what is done via sctp_set_owner_w and sk_mem_charge
Neil Horman4d93df02007-08-15 16:07:44 -07007934 */
7935 sk->sk_wmem_queued -= skb->truesize;
Hideo Aoki3ab224b2007-12-31 00:11:19 -08007936 sk_mem_uncharge(sk, skb->truesize);
Neil Horman4d93df02007-08-15 16:07:44 -07007937
Neil Horman4eb701d2005-04-28 12:02:04 -07007938 sock_wfree(skb);
Daniel Borkmann52c35be2014-04-08 17:26:13 +02007939 sctp_wake_up_waiters(sk, asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007940
7941 sctp_association_put(asoc);
7942}
7943
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07007944/* Do accounting for the receive space on the socket.
7945 * Accounting for the association is done in ulpevent.c
7946 * We set this as a destructor for the cloned data skbs so that
7947 * accounting is done at the correct time.
7948 */
7949void sctp_sock_rfree(struct sk_buff *skb)
7950{
7951 struct sock *sk = skb->sk;
7952 struct sctp_ulpevent *event = sctp_skb2event(skb);
7953
7954 atomic_sub(event->rmem_len, &sk->sk_rmem_alloc);
Neil Horman4d93df02007-08-15 16:07:44 -07007955
7956 /*
Hideo Aoki3ab224b2007-12-31 00:11:19 -08007957 * Mimic the behavior of sock_rfree
Neil Horman4d93df02007-08-15 16:07:44 -07007958 */
Hideo Aoki3ab224b2007-12-31 00:11:19 -08007959 sk_mem_uncharge(sk, event->rmem_len);
Vlad Yasevich331c4ee2006-10-09 21:34:04 -07007960}
7961
7962
Linus Torvalds1da177e2005-04-16 15:20:36 -07007963/* Helper function to wait for space in the sndbuf. */
7964static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
Xin Longcea0cc82017-11-15 16:57:26 +08007965 size_t msg_len, struct sock **orig_sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007966{
7967 struct sock *sk = asoc->base.sk;
7968 int err = 0;
7969 long current_timeo = *timeo_p;
7970 DEFINE_WAIT(wait);
7971
Daniel Borkmannbb333812013-06-28 19:49:40 +02007972 pr_debug("%s: asoc:%p, timeo:%ld, msg_len:%zu\n", __func__, asoc,
7973 *timeo_p, msg_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007974
7975 /* Increment the association's refcnt. */
7976 sctp_association_hold(asoc);
7977
7978 /* Wait on the association specific sndbuf space. */
7979 for (;;) {
7980 prepare_to_wait_exclusive(&asoc->wait, &wait,
7981 TASK_INTERRUPTIBLE);
Xin Longca3af4d2017-11-15 16:55:54 +08007982 if (asoc->base.dead)
7983 goto do_dead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007984 if (!*timeo_p)
7985 goto do_nonblock;
Xin Longca3af4d2017-11-15 16:55:54 +08007986 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007987 goto do_error;
7988 if (signal_pending(current))
7989 goto do_interrupted;
7990 if (msg_len <= sctp_wspace(asoc))
7991 break;
7992
7993 /* Let another process have a go. Since we are going
7994 * to sleep anyway.
7995 */
wangweidong048ed4b2014-01-21 15:44:11 +08007996 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007997 current_timeo = schedule_timeout(current_timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08007998 lock_sock(sk);
Xin Longcea0cc82017-11-15 16:57:26 +08007999 if (sk != asoc->base.sk) {
8000 release_sock(sk);
8001 sk = asoc->base.sk;
8002 lock_sock(sk);
8003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008004
8005 *timeo_p = current_timeo;
8006 }
8007
8008out:
Xin Longcea0cc82017-11-15 16:57:26 +08008009 *orig_sk = sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008010 finish_wait(&asoc->wait, &wait);
8011
8012 /* Release the association's refcnt. */
8013 sctp_association_put(asoc);
8014
8015 return err;
8016
Xin Longca3af4d2017-11-15 16:55:54 +08008017do_dead:
8018 err = -ESRCH;
8019 goto out;
8020
Linus Torvalds1da177e2005-04-16 15:20:36 -07008021do_error:
8022 err = -EPIPE;
8023 goto out;
8024
8025do_interrupted:
8026 err = sock_intr_errno(*timeo_p);
8027 goto out;
8028
8029do_nonblock:
8030 err = -EAGAIN;
8031 goto out;
8032}
8033
David S. Miller676d2362014-04-11 16:15:36 -04008034void sctp_data_ready(struct sock *sk)
Wei Yongjun561b1732010-04-28 08:47:18 +00008035{
David S. Miller7ef52732010-05-02 21:43:40 -07008036 struct socket_wq *wq;
8037
8038 rcu_read_lock();
8039 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +08008040 if (skwq_has_sleeper(wq))
David S. Miller7ef52732010-05-02 21:43:40 -07008041 wake_up_interruptible_sync_poll(&wq->wait, POLLIN |
Wei Yongjun561b1732010-04-28 08:47:18 +00008042 POLLRDNORM | POLLRDBAND);
8043 sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
David S. Miller7ef52732010-05-02 21:43:40 -07008044 rcu_read_unlock();
Wei Yongjun561b1732010-04-28 08:47:18 +00008045}
8046
Linus Torvalds1da177e2005-04-16 15:20:36 -07008047/* If socket sndbuf has changed, wake up all per association waiters. */
8048void sctp_write_space(struct sock *sk)
8049{
8050 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008051
8052 /* Wake up the tasks in each wait queue. */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07008053 list_for_each_entry(asoc, &((sctp_sk(sk))->ep->asocs), asocs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008054 __sctp_write_space(asoc);
8055 }
8056}
8057
8058/* Is there any sndbuf space available on the socket?
8059 *
Neil Horman9bffc4a2005-12-19 14:24:40 -08008060 * Note that sk_wmem_alloc is the sum of the send buffers on all of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07008061 * associations on the same socket. For a UDP-style socket with
8062 * multiple associations, it is possible for it to be "unwriteable"
8063 * prematurely. I assume that this is acceptable because
8064 * a premature "unwriteable" is better than an accidental "writeable" which
8065 * would cause an unwanted block under certain circumstances. For the 1-1
8066 * UDP-style sockets or TCP-style sockets, this code should work.
8067 * - Daisy
8068 */
8069static int sctp_writeable(struct sock *sk)
8070{
8071 int amt = 0;
8072
Eric Dumazet31e6d362009-06-17 19:05:41 -07008073 amt = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008074 if (amt < 0)
8075 amt = 0;
8076 return amt;
8077}
8078
8079/* Wait for an association to go into ESTABLISHED state. If timeout is 0,
8080 * returns immediately with EINPROGRESS.
8081 */
8082static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p)
8083{
8084 struct sock *sk = asoc->base.sk;
8085 int err = 0;
8086 long current_timeo = *timeo_p;
8087 DEFINE_WAIT(wait);
8088
Daniel Borkmannbb333812013-06-28 19:49:40 +02008089 pr_debug("%s: asoc:%p, timeo:%ld\n", __func__, asoc, *timeo_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008090
8091 /* Increment the association's refcnt. */
8092 sctp_association_hold(asoc);
8093
8094 for (;;) {
8095 prepare_to_wait_exclusive(&asoc->wait, &wait,
8096 TASK_INTERRUPTIBLE);
8097 if (!*timeo_p)
8098 goto do_nonblock;
8099 if (sk->sk_shutdown & RCV_SHUTDOWN)
8100 break;
8101 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
8102 asoc->base.dead)
8103 goto do_error;
8104 if (signal_pending(current))
8105 goto do_interrupted;
8106
8107 if (sctp_state(asoc, ESTABLISHED))
8108 break;
8109
8110 /* Let another process have a go. Since we are going
8111 * to sleep anyway.
8112 */
wangweidong048ed4b2014-01-21 15:44:11 +08008113 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008114 current_timeo = schedule_timeout(current_timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08008115 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008116
8117 *timeo_p = current_timeo;
8118 }
8119
8120out:
8121 finish_wait(&asoc->wait, &wait);
8122
8123 /* Release the association's refcnt. */
8124 sctp_association_put(asoc);
8125
8126 return err;
8127
8128do_error:
Vlad Yasevich81845c22006-01-30 15:59:54 -08008129 if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008130 err = -ETIMEDOUT;
8131 else
8132 err = -ECONNREFUSED;
8133 goto out;
8134
8135do_interrupted:
8136 err = sock_intr_errno(*timeo_p);
8137 goto out;
8138
8139do_nonblock:
8140 err = -EINPROGRESS;
8141 goto out;
8142}
8143
8144static int sctp_wait_for_accept(struct sock *sk, long timeo)
8145{
8146 struct sctp_endpoint *ep;
8147 int err = 0;
8148 DEFINE_WAIT(wait);
8149
8150 ep = sctp_sk(sk)->ep;
8151
8152
8153 for (;;) {
Eric Dumazetaa395142010-04-20 13:03:51 +00008154 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008155 TASK_INTERRUPTIBLE);
8156
8157 if (list_empty(&ep->asocs)) {
wangweidong048ed4b2014-01-21 15:44:11 +08008158 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008159 timeo = schedule_timeout(timeo);
wangweidong048ed4b2014-01-21 15:44:11 +08008160 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008161 }
8162
8163 err = -EINVAL;
8164 if (!sctp_sstate(sk, LISTENING))
8165 break;
8166
8167 err = 0;
8168 if (!list_empty(&ep->asocs))
8169 break;
8170
8171 err = sock_intr_errno(timeo);
8172 if (signal_pending(current))
8173 break;
8174
8175 err = -EAGAIN;
8176 if (!timeo)
8177 break;
8178 }
8179
Eric Dumazetaa395142010-04-20 13:03:51 +00008180 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008181
8182 return err;
8183}
8184
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +02008185static void sctp_wait_for_close(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008186{
8187 DEFINE_WAIT(wait);
8188
8189 do {
Eric Dumazetaa395142010-04-20 13:03:51 +00008190 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008191 if (list_empty(&sctp_sk(sk)->ep->asocs))
8192 break;
wangweidong048ed4b2014-01-21 15:44:11 +08008193 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008194 timeout = schedule_timeout(timeout);
wangweidong048ed4b2014-01-21 15:44:11 +08008195 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008196 } while (!signal_pending(current) && timeout);
8197
Eric Dumazetaa395142010-04-20 13:03:51 +00008198 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008199}
8200
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008201static void sctp_skb_set_owner_r_frag(struct sk_buff *skb, struct sock *sk)
8202{
8203 struct sk_buff *frag;
8204
8205 if (!skb->data_len)
8206 goto done;
8207
8208 /* Don't forget the fragments. */
David S. Miller1b003be2009-06-09 00:22:35 -07008209 skb_walk_frags(skb, frag)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008210 sctp_skb_set_owner_r_frag(frag, sk);
8211
8212done:
8213 sctp_skb_set_owner_r(skb, sk);
8214}
8215
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008216void sctp_copy_sock(struct sock *newsk, struct sock *sk,
8217 struct sctp_association *asoc)
8218{
8219 struct inet_sock *inet = inet_sk(sk);
Julia Lawall09cb47a2010-01-21 02:43:20 -08008220 struct inet_sock *newinet;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008221
8222 newsk->sk_type = sk->sk_type;
8223 newsk->sk_bound_dev_if = sk->sk_bound_dev_if;
8224 newsk->sk_flags = sk->sk_flags;
Marcelo Ricardo Leitner50a5ffb2015-12-04 15:14:05 -02008225 newsk->sk_tsflags = sk->sk_tsflags;
Tom Herbert28448b82014-05-23 08:47:19 -07008226 newsk->sk_no_check_tx = sk->sk_no_check_tx;
8227 newsk->sk_no_check_rx = sk->sk_no_check_rx;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008228 newsk->sk_reuse = sk->sk_reuse;
8229
8230 newsk->sk_shutdown = sk->sk_shutdown;
Daniel Borkmann0a2fbac2013-06-25 18:17:29 +02008231 newsk->sk_destruct = sctp_destruct_sock;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008232 newsk->sk_family = sk->sk_family;
8233 newsk->sk_protocol = IPPROTO_SCTP;
8234 newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
8235 newsk->sk_sndbuf = sk->sk_sndbuf;
8236 newsk->sk_rcvbuf = sk->sk_rcvbuf;
8237 newsk->sk_lingertime = sk->sk_lingertime;
8238 newsk->sk_rcvtimeo = sk->sk_rcvtimeo;
8239 newsk->sk_sndtimeo = sk->sk_sndtimeo;
Marcelo Ricardo Leitner486bdee2016-04-12 18:11:31 -03008240 newsk->sk_rxhash = sk->sk_rxhash;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008241
8242 newinet = inet_sk(newsk);
8243
8244 /* Initialize sk's sport, dport, rcv_saddr and daddr for
8245 * getsockname() and getpeername()
8246 */
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008247 newinet->inet_sport = inet->inet_sport;
8248 newinet->inet_saddr = inet->inet_saddr;
8249 newinet->inet_rcv_saddr = inet->inet_rcv_saddr;
8250 newinet->inet_dport = htons(asoc->peer.port);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008251 newinet->pmtudisc = inet->pmtudisc;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008252 newinet->inet_id = asoc->next_tsn ^ jiffies;
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008253
8254 newinet->uc_ttl = inet->uc_ttl;
8255 newinet->mc_loop = 1;
8256 newinet->mc_ttl = 1;
8257 newinet->mc_index = 0;
8258 newinet->mc_list = NULL;
Marcelo Ricardo Leitner01ce63c2015-12-04 15:14:04 -02008259
8260 if (newsk->sk_flags & SK_FLAGS_TIMESTAMP)
8261 net_enable_timestamp();
Marcelo Ricardo Leitner3538a5c2015-12-23 16:44:09 -02008262
8263 security_sk_clone(sk, newsk);
Vlad Yasevich914e1c82009-02-13 08:33:44 +00008264}
8265
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03008266static inline void sctp_copy_descendant(struct sock *sk_to,
8267 const struct sock *sk_from)
8268{
8269 int ancestor_size = sizeof(struct inet_sock) +
8270 sizeof(struct sctp_sock) -
8271 offsetof(struct sctp_sock, auto_asconf_list);
8272
8273 if (sk_from->sk_family == PF_INET6)
8274 ancestor_size += sizeof(struct ipv6_pinfo);
8275
8276 __inet_sk_copy_descendant(sk_to, sk_from, ancestor_size);
8277}
8278
Linus Torvalds1da177e2005-04-16 15:20:36 -07008279/* Populate the fields of the newsk from the oldsk and migrate the assoc
8280 * and its messages to the newsk.
8281 */
8282static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
8283 struct sctp_association *assoc,
Xin Longb7ef2612017-08-11 10:23:50 +08008284 enum sctp_socket_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008285{
8286 struct sctp_sock *oldsp = sctp_sk(oldsk);
8287 struct sctp_sock *newsp = sctp_sk(newsk);
8288 struct sctp_bind_bucket *pp; /* hash list port iterator */
8289 struct sctp_endpoint *newep = newsp->ep;
8290 struct sk_buff *skb, *tmp;
8291 struct sctp_ulpevent *event;
Vlad Yasevichf26f7c42007-12-06 22:50:27 -08008292 struct sctp_bind_hashbucket *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008293
8294 /* Migrate socket buffer sizes and all the socket level options to the
8295 * new socket.
8296 */
8297 newsk->sk_sndbuf = oldsk->sk_sndbuf;
8298 newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
8299 /* Brute force copy old sctp opt. */
Marcelo Ricardo Leitner2d45a022015-06-12 10:16:41 -03008300 sctp_copy_descendant(newsk, oldsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008301
8302 /* Restore the ep value that was overwritten with the above structure
8303 * copy.
8304 */
8305 newsp->ep = newep;
8306 newsp->hmac = NULL;
8307
8308 /* Hook this new socket in to the bind_hash list. */
Eric W. Biedermanf1f43762012-08-06 08:39:38 +00008309 head = &sctp_port_hashtable[sctp_phashfn(sock_net(oldsk),
8310 inet_sk(oldsk)->inet_num)];
Nicholas Mc Guire489ce5f2016-03-13 11:48:24 +01008311 spin_lock_bh(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008312 pp = sctp_sk(oldsk)->bind_hash;
8313 sk_add_bind_node(newsk, &pp->owner);
8314 sctp_sk(newsk)->bind_hash = pp;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00008315 inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num;
Nicholas Mc Guire489ce5f2016-03-13 11:48:24 +01008316 spin_unlock_bh(&head->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008317
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07008318 /* Copy the bind_addr list from the original endpoint to the new
8319 * endpoint so that we can handle restarts properly
8320 */
Vlad Yasevich8e71a112007-12-06 22:50:54 -08008321 sctp_bind_addr_dup(&newsp->ep->base.bind_addr,
8322 &oldsp->ep->base.bind_addr, GFP_KERNEL);
Vladislav Yasevich4243cac2005-06-13 15:10:49 -07008323
Linus Torvalds1da177e2005-04-16 15:20:36 -07008324 /* Move any messages in the old socket's receive queue that are for the
8325 * peeled off association to the new socket's receive queue.
8326 */
8327 sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) {
8328 event = sctp_skb2event(skb);
8329 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07008330 __skb_unlink(skb, &oldsk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008331 __skb_queue_tail(&newsk->sk_receive_queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008332 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008333 }
8334 }
8335
8336 /* Clean up any messages pending delivery due to partial
8337 * delivery. Three cases:
8338 * 1) No partial deliver; no work.
8339 * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby.
8340 * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue.
8341 */
8342 skb_queue_head_init(&newsp->pd_lobby);
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008343 atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008344
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008345 if (atomic_read(&sctp_sk(oldsk)->pd_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008346 struct sk_buff_head *queue;
8347
8348 /* Decide which queue to move pd_lobby skbs to. */
8349 if (assoc->ulpq.pd_mode) {
8350 queue = &newsp->pd_lobby;
8351 } else
8352 queue = &newsk->sk_receive_queue;
8353
8354 /* Walk through the pd_lobby, looking for skbs that
8355 * need moved to the new socket.
8356 */
8357 sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) {
8358 event = sctp_skb2event(skb);
8359 if (event->asoc == assoc) {
David S. Miller8728b832005-08-09 19:25:21 -07008360 __skb_unlink(skb, &oldsp->pd_lobby);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008361 __skb_queue_tail(queue, skb);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008362 sctp_skb_set_owner_r_frag(skb, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008363 }
8364 }
8365
8366 /* Clear up any skbs waiting for the partial
8367 * delivery to finish.
8368 */
8369 if (assoc->ulpq.pd_mode)
Vlad Yasevichb6e13312007-04-20 12:23:15 -07008370 sctp_clear_pd(oldsk, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008371
8372 }
8373
Wei Yongjun1bc4ee42009-07-05 19:45:48 +00008374 sctp_skb_for_each(skb, &assoc->ulpq.reasm, tmp)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008375 sctp_skb_set_owner_r_frag(skb, newsk);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008376
Wei Yongjun1bc4ee42009-07-05 19:45:48 +00008377 sctp_skb_for_each(skb, &assoc->ulpq.lobby, tmp)
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008378 sctp_skb_set_owner_r_frag(skb, newsk);
Tsutomu Fujiiea2bc482007-04-17 12:49:53 -07008379
Linus Torvalds1da177e2005-04-16 15:20:36 -07008380 /* Set the type of socket to indicate that it is peeled off from the
8381 * original UDP-style socket or created with the accept() call on a
8382 * TCP-style socket..
8383 */
8384 newsp->type = type;
8385
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07008386 /* Mark the new socket "in-use" by the user so that any packets
8387 * that may arrive on the association after we've moved it are
8388 * queued to the backlog. This prevents a potential race between
8389 * backlog processing on the old socket and new-packet processing
8390 * on the new socket.
Zach Brown5131a182007-06-22 15:14:46 -07008391 *
8392 * The caller has just allocated newsk so we can guarantee that other
8393 * paths won't try to lock it and then oldsk.
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -07008394 */
Zach Brown5131a182007-06-22 15:14:46 -07008395 lock_sock_nested(newsk, SINGLE_DEPTH_NESTING);
Xin Longd04adf12017-10-28 02:13:29 +08008396 sctp_for_each_tx_datachunk(assoc, sctp_clear_owner_w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008397 sctp_assoc_migrate(assoc, newsk);
Xin Longd04adf12017-10-28 02:13:29 +08008398 sctp_for_each_tx_datachunk(assoc, sctp_set_owner_w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008399
8400 /* If the association on the newsk is already closed before accept()
8401 * is called, set RCV_SHUTDOWN flag.
8402 */
Xin Longd46e4162016-06-09 22:48:18 +08008403 if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP)) {
Xin Long141ddef2016-06-16 01:15:06 +08008404 newsk->sk_state = SCTP_SS_CLOSED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008405 newsk->sk_shutdown |= RCV_SHUTDOWN;
Xin Longd46e4162016-06-09 22:48:18 +08008406 } else {
8407 newsk->sk_state = SCTP_SS_ESTABLISHED;
8408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008409
wangweidong048ed4b2014-01-21 15:44:11 +08008410 release_sock(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008411}
8412
Neil Horman4d93df02007-08-15 16:07:44 -07008413
Linus Torvalds1da177e2005-04-16 15:20:36 -07008414/* This proto struct describes the ULP interface for SCTP. */
8415struct proto sctp_prot = {
8416 .name = "SCTP",
8417 .owner = THIS_MODULE,
8418 .close = sctp_close,
8419 .connect = sctp_connect,
8420 .disconnect = sctp_disconnect,
8421 .accept = sctp_accept,
8422 .ioctl = sctp_ioctl,
8423 .init = sctp_init_sock,
8424 .destroy = sctp_destroy_sock,
8425 .shutdown = sctp_shutdown,
8426 .setsockopt = sctp_setsockopt,
8427 .getsockopt = sctp_getsockopt,
8428 .sendmsg = sctp_sendmsg,
8429 .recvmsg = sctp_recvmsg,
8430 .bind = sctp_bind,
8431 .backlog_rcv = sctp_backlog_rcv,
8432 .hash = sctp_hash,
8433 .unhash = sctp_unhash,
8434 .get_port = sctp_get_port,
8435 .obj_size = sizeof(struct sctp_sock),
Neil Horman4d93df02007-08-15 16:07:44 -07008436 .sysctl_mem = sysctl_sctp_mem,
8437 .sysctl_rmem = sysctl_sctp_rmem,
8438 .sysctl_wmem = sysctl_sctp_wmem,
8439 .memory_pressure = &sctp_memory_pressure,
8440 .enter_memory_pressure = sctp_enter_memory_pressure,
8441 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08008442 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008443};
8444
Eric Dumazetdfd56b82011-12-10 09:48:31 +00008445#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazet8295b6d2007-11-05 23:40:28 -08008446
Eric Dumazet602dd622015-12-01 07:20:07 -08008447#include <net/transp_v6.h>
8448static void sctp_v6_destroy_sock(struct sock *sk)
8449{
8450 sctp_destroy_sock(sk);
8451 inet6_destroy_sock(sk);
8452}
8453
Linus Torvalds1da177e2005-04-16 15:20:36 -07008454struct proto sctpv6_prot = {
8455 .name = "SCTPv6",
8456 .owner = THIS_MODULE,
8457 .close = sctp_close,
8458 .connect = sctp_connect,
8459 .disconnect = sctp_disconnect,
8460 .accept = sctp_accept,
8461 .ioctl = sctp_ioctl,
8462 .init = sctp_init_sock,
Eric Dumazet602dd622015-12-01 07:20:07 -08008463 .destroy = sctp_v6_destroy_sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008464 .shutdown = sctp_shutdown,
8465 .setsockopt = sctp_setsockopt,
8466 .getsockopt = sctp_getsockopt,
8467 .sendmsg = sctp_sendmsg,
8468 .recvmsg = sctp_recvmsg,
8469 .bind = sctp_bind,
8470 .backlog_rcv = sctp_backlog_rcv,
8471 .hash = sctp_hash,
8472 .unhash = sctp_unhash,
8473 .get_port = sctp_get_port,
8474 .obj_size = sizeof(struct sctp6_sock),
Neil Horman4d93df02007-08-15 16:07:44 -07008475 .sysctl_mem = sysctl_sctp_mem,
8476 .sysctl_rmem = sysctl_sctp_rmem,
8477 .sysctl_wmem = sysctl_sctp_wmem,
8478 .memory_pressure = &sctp_memory_pressure,
8479 .enter_memory_pressure = sctp_enter_memory_pressure,
8480 .memory_allocated = &sctp_memory_allocated,
Pavel Emelyanov5f318862008-02-20 00:23:01 -08008481 .sockets_allocated = &sctp_sockets_allocated,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008482};
Eric Dumazetdfd56b82011-12-10 09:48:31 +00008483#endif /* IS_ENABLED(CONFIG_IPV6) */