Mention branches and keyring.
[releases.git] / sctp / socket.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* SCTP kernel implementation
3  * (C) Copyright IBM Corp. 2001, 2004
4  * Copyright (c) 1999-2000 Cisco, Inc.
5  * Copyright (c) 1999-2001 Motorola, Inc.
6  * Copyright (c) 2001-2003 Intel Corp.
7  * Copyright (c) 2001-2002 Nokia, Inc.
8  * Copyright (c) 2001 La Monte H.P. Yarroll
9  *
10  * This file is part of the SCTP kernel implementation
11  *
12  * These functions interface with the sockets layer to implement the
13  * SCTP Extensions for the Sockets API.
14  *
15  * Note that the descriptions from the specification are USER level
16  * functions--this file is the functions which populate the struct proto
17  * for SCTP which is the BOTTOM of the sockets interface.
18  *
19  * Please send any bug reports or fixes you make to the
20  * email address(es):
21  *    lksctp developers <linux-sctp@vger.kernel.org>
22  *
23  * Written or modified by:
24  *    La Monte H.P. Yarroll <piggy@acm.org>
25  *    Narasimha Budihal     <narsi@refcode.org>
26  *    Karl Knutson          <karl@athena.chicago.il.us>
27  *    Jon Grimm             <jgrimm@us.ibm.com>
28  *    Xingang Guo           <xingang.guo@intel.com>
29  *    Daisy Chang           <daisyc@us.ibm.com>
30  *    Sridhar Samudrala     <samudrala@us.ibm.com>
31  *    Inaky Perez-Gonzalez  <inaky.gonzalez@intel.com>
32  *    Ardelle Fan           <ardelle.fan@intel.com>
33  *    Ryan Layer            <rmlayer@us.ibm.com>
34  *    Anup Pemmaiah         <pemmaiah@cc.usu.edu>
35  *    Kevin Gao             <kevin.gao@intel.com>
36  */
37
38 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
39
40 #include <crypto/hash.h>
41 #include <linux/types.h>
42 #include <linux/kernel.h>
43 #include <linux/wait.h>
44 #include <linux/time.h>
45 #include <linux/sched/signal.h>
46 #include <linux/ip.h>
47 #include <linux/capability.h>
48 #include <linux/fcntl.h>
49 #include <linux/poll.h>
50 #include <linux/init.h>
51 #include <linux/slab.h>
52 #include <linux/file.h>
53 #include <linux/compat.h>
54 #include <linux/rhashtable.h>
55
56 #include <net/ip.h>
57 #include <net/icmp.h>
58 #include <net/route.h>
59 #include <net/ipv6.h>
60 #include <net/inet_common.h>
61 #include <net/busy_poll.h>
62
63 #include <linux/socket.h> /* for sa_family_t */
64 #include <linux/export.h>
65 #include <net/sock.h>
66 #include <net/sctp/sctp.h>
67 #include <net/sctp/sm.h>
68 #include <net/sctp/stream_sched.h>
69
70 /* Forward declarations for internal helper functions. */
71 static bool sctp_writeable(const struct sock *sk);
72 static void sctp_wfree(struct sk_buff *skb);
73 static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
74                                 size_t msg_len);
75 static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p);
76 static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
77 static int sctp_wait_for_accept(struct sock *sk, long timeo);
78 static void sctp_wait_for_close(struct sock *sk, long timeo);
79 static void sctp_destruct_sock(struct sock *sk);
80 static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
81                                         union sctp_addr *addr, int len);
82 static int sctp_bindx_add(struct sock *, struct sockaddr *, int);
83 static int sctp_bindx_rem(struct sock *, struct sockaddr *, int);
84 static int sctp_send_asconf_add_ip(struct sock *, struct sockaddr *, int);
85 static int sctp_send_asconf_del_ip(struct sock *, struct sockaddr *, int);
86 static int sctp_send_asconf(struct sctp_association *asoc,
87                             struct sctp_chunk *chunk);
88 static int sctp_do_bind(struct sock *, union sctp_addr *, int);
89 static int sctp_autobind(struct sock *sk);
90 static int sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
91                              struct sctp_association *assoc,
92                              enum sctp_socket_type type);
93
94 static unsigned long sctp_memory_pressure;
95 static atomic_long_t sctp_memory_allocated;
96 struct percpu_counter sctp_sockets_allocated;
97
98 static void sctp_enter_memory_pressure(struct sock *sk)
99 {
100         WRITE_ONCE(sctp_memory_pressure, 1);
101 }
102
103
104 /* Get the sndbuf space available at the time on the association.  */
105 static inline int sctp_wspace(struct sctp_association *asoc)
106 {
107         struct sock *sk = asoc->base.sk;
108
109         return asoc->ep->sndbuf_policy ? sk->sk_sndbuf - asoc->sndbuf_used
110                                        : sk_stream_wspace(sk);
111 }
112
113 /* Increment the used sndbuf space count of the corresponding association by
114  * the size of the outgoing data chunk.
115  * Also, set the skb destructor for sndbuf accounting later.
116  *
117  * Since it is always 1-1 between chunk and skb, and also a new skb is always
118  * allocated for chunk bundling in sctp_packet_transmit(), we can use the
119  * destructor in the data chunk skb for the purpose of the sndbuf space
120  * tracking.
121  */
122 static inline void sctp_set_owner_w(struct sctp_chunk *chunk)
123 {
124         struct sctp_association *asoc = chunk->asoc;
125         struct sock *sk = asoc->base.sk;
126
127         /* The sndbuf space is tracked per association.  */
128         sctp_association_hold(asoc);
129
130         if (chunk->shkey)
131                 sctp_auth_shkey_hold(chunk->shkey);
132
133         skb_set_owner_w(chunk->skb, sk);
134
135         chunk->skb->destructor = sctp_wfree;
136         /* Save the chunk pointer in skb for sctp_wfree to use later.  */
137         skb_shinfo(chunk->skb)->destructor_arg = chunk;
138
139         refcount_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
140         asoc->sndbuf_used += chunk->skb->truesize + sizeof(struct sctp_chunk);
141         sk_wmem_queued_add(sk, chunk->skb->truesize + sizeof(struct sctp_chunk));
142         sk_mem_charge(sk, chunk->skb->truesize);
143 }
144
145 static void sctp_clear_owner_w(struct sctp_chunk *chunk)
146 {
147         skb_orphan(chunk->skb);
148 }
149
150 #define traverse_and_process()  \
151 do {                            \
152         msg = chunk->msg;       \
153         if (msg == prev_msg)    \
154                 continue;       \
155         list_for_each_entry(c, &msg->chunks, frag_list) {       \
156                 if ((clear && asoc->base.sk == c->skb->sk) ||   \
157                     (!clear && asoc->base.sk != c->skb->sk))    \
158                         cb(c);  \
159         }                       \
160         prev_msg = msg;         \
161 } while (0)
162
163 static void sctp_for_each_tx_datachunk(struct sctp_association *asoc,
164                                        bool clear,
165                                        void (*cb)(struct sctp_chunk *))
166
167 {
168         struct sctp_datamsg *msg, *prev_msg = NULL;
169         struct sctp_outq *q = &asoc->outqueue;
170         struct sctp_chunk *chunk, *c;
171         struct sctp_transport *t;
172
173         list_for_each_entry(t, &asoc->peer.transport_addr_list, transports)
174                 list_for_each_entry(chunk, &t->transmitted, transmitted_list)
175                         traverse_and_process();
176
177         list_for_each_entry(chunk, &q->retransmit, transmitted_list)
178                 traverse_and_process();
179
180         list_for_each_entry(chunk, &q->sacked, transmitted_list)
181                 traverse_and_process();
182
183         list_for_each_entry(chunk, &q->abandoned, transmitted_list)
184                 traverse_and_process();
185
186         list_for_each_entry(chunk, &q->out_chunk_list, list)
187                 traverse_and_process();
188 }
189
190 static void sctp_for_each_rx_skb(struct sctp_association *asoc, struct sock *sk,
191                                  void (*cb)(struct sk_buff *, struct sock *))
192
193 {
194         struct sk_buff *skb, *tmp;
195
196         sctp_skb_for_each(skb, &asoc->ulpq.lobby, tmp)
197                 cb(skb, sk);
198
199         sctp_skb_for_each(skb, &asoc->ulpq.reasm, tmp)
200                 cb(skb, sk);
201
202         sctp_skb_for_each(skb, &asoc->ulpq.reasm_uo, tmp)
203                 cb(skb, sk);
204 }
205
206 /* Verify that this is a valid address. */
207 static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr,
208                                    int len)
209 {
210         struct sctp_af *af;
211
212         /* Verify basic sockaddr. */
213         af = sctp_sockaddr_af(sctp_sk(sk), addr, len);
214         if (!af)
215                 return -EINVAL;
216
217         /* Is this a valid SCTP address?  */
218         if (!af->addr_valid(addr, sctp_sk(sk), NULL))
219                 return -EINVAL;
220
221         if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr)))
222                 return -EINVAL;
223
224         return 0;
225 }
226
227 /* Look up the association by its id.  If this is not a UDP-style
228  * socket, the ID field is always ignored.
229  */
230 struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
231 {
232         struct sctp_association *asoc = NULL;
233
234         /* If this is not a UDP-style socket, assoc id should be ignored. */
235         if (!sctp_style(sk, UDP)) {
236                 /* Return NULL if the socket state is not ESTABLISHED. It
237                  * could be a TCP-style listening socket or a socket which
238                  * hasn't yet called connect() to establish an association.
239                  */
240                 if (!sctp_sstate(sk, ESTABLISHED) && !sctp_sstate(sk, CLOSING))
241                         return NULL;
242
243                 /* Get the first and the only association from the list. */
244                 if (!list_empty(&sctp_sk(sk)->ep->asocs))
245                         asoc = list_entry(sctp_sk(sk)->ep->asocs.next,
246                                           struct sctp_association, asocs);
247                 return asoc;
248         }
249
250         /* Otherwise this is a UDP-style socket. */
251         if (id <= SCTP_ALL_ASSOC)
252                 return NULL;
253
254         spin_lock_bh(&sctp_assocs_id_lock);
255         asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id);
256         if (asoc && (asoc->base.sk != sk || asoc->base.dead))
257                 asoc = NULL;
258         spin_unlock_bh(&sctp_assocs_id_lock);
259
260         return asoc;
261 }
262
263 /* Look up the transport from an address and an assoc id. If both address and
264  * id are specified, the associations matching the address and the id should be
265  * the same.
266  */
267 static struct sctp_transport *sctp_addr_id2transport(struct sock *sk,
268                                               struct sockaddr_storage *addr,
269                                               sctp_assoc_t id)
270 {
271         struct sctp_association *addr_asoc = NULL, *id_asoc = NULL;
272         struct sctp_af *af = sctp_get_af_specific(addr->ss_family);
273         union sctp_addr *laddr = (union sctp_addr *)addr;
274         struct sctp_transport *transport;
275
276         if (!af || sctp_verify_addr(sk, laddr, af->sockaddr_len))
277                 return NULL;
278
279         addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
280                                                laddr,
281                                                &transport);
282
283         if (!addr_asoc)
284                 return NULL;
285
286         id_asoc = sctp_id2assoc(sk, id);
287         if (id_asoc && (id_asoc != addr_asoc))
288                 return NULL;
289
290         sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
291                                                 (union sctp_addr *)addr);
292
293         return transport;
294 }
295
296 /* API 3.1.2 bind() - UDP Style Syntax
297  * The syntax of bind() is,
298  *
299  *   ret = bind(int sd, struct sockaddr *addr, int addrlen);
300  *
301  *   sd      - the socket descriptor returned by socket().
302  *   addr    - the address structure (struct sockaddr_in or struct
303  *             sockaddr_in6 [RFC 2553]),
304  *   addr_len - the size of the address structure.
305  */
306 static int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len)
307 {
308         int retval = 0;
309
310         lock_sock(sk);
311
312         pr_debug("%s: sk:%p, addr:%p, addr_len:%d\n", __func__, sk,
313                  addr, addr_len);
314
315         /* Disallow binding twice. */
316         if (!sctp_sk(sk)->ep->base.bind_addr.port)
317                 retval = sctp_do_bind(sk, (union sctp_addr *)addr,
318                                       addr_len);
319         else
320                 retval = -EINVAL;
321
322         release_sock(sk);
323
324         return retval;
325 }
326
327 static int sctp_get_port_local(struct sock *, union sctp_addr *);
328
329 /* Verify this is a valid sockaddr. */
330 static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
331                                         union sctp_addr *addr, int len)
332 {
333         struct sctp_af *af;
334
335         /* Check minimum size.  */
336         if (len < sizeof (struct sockaddr))
337                 return NULL;
338
339         if (!opt->pf->af_supported(addr->sa.sa_family, opt))
340                 return NULL;
341
342         if (addr->sa.sa_family == AF_INET6) {
343                 if (len < SIN6_LEN_RFC2133)
344                         return NULL;
345                 /* V4 mapped address are really of AF_INET family */
346                 if (ipv6_addr_v4mapped(&addr->v6.sin6_addr) &&
347                     !opt->pf->af_supported(AF_INET, opt))
348                         return NULL;
349         }
350
351         /* If we get this far, af is valid. */
352         af = sctp_get_af_specific(addr->sa.sa_family);
353
354         if (len < af->sockaddr_len)
355                 return NULL;
356
357         return af;
358 }
359
360 static void sctp_auto_asconf_init(struct sctp_sock *sp)
361 {
362         struct net *net = sock_net(&sp->inet.sk);
363
364         if (net->sctp.default_auto_asconf) {
365                 spin_lock_bh(&net->sctp.addr_wq_lock);
366                 list_add_tail(&sp->auto_asconf_list, &net->sctp.auto_asconf_splist);
367                 spin_unlock_bh(&net->sctp.addr_wq_lock);
368                 sp->do_auto_asconf = 1;
369         }
370 }
371
372 /* Bind a local address either to an endpoint or to an association.  */
373 static int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
374 {
375         struct net *net = sock_net(sk);
376         struct sctp_sock *sp = sctp_sk(sk);
377         struct sctp_endpoint *ep = sp->ep;
378         struct sctp_bind_addr *bp = &ep->base.bind_addr;
379         struct sctp_af *af;
380         unsigned short snum;
381         int ret = 0;
382
383         /* Common sockaddr verification. */
384         af = sctp_sockaddr_af(sp, addr, len);
385         if (!af) {
386                 pr_debug("%s: sk:%p, newaddr:%p, len:%d EINVAL\n",
387                          __func__, sk, addr, len);
388                 return -EINVAL;
389         }
390
391         snum = ntohs(addr->v4.sin_port);
392
393         pr_debug("%s: sk:%p, new addr:%pISc, port:%d, new port:%d, len:%d\n",
394                  __func__, sk, &addr->sa, bp->port, snum, len);
395
396         /* PF specific bind() address verification. */
397         if (!sp->pf->bind_verify(sp, addr))
398                 return -EADDRNOTAVAIL;
399
400         /* We must either be unbound, or bind to the same port.
401          * It's OK to allow 0 ports if we are already bound.
402          * We'll just inhert an already bound port in this case
403          */
404         if (bp->port) {
405                 if (!snum)
406                         snum = bp->port;
407                 else if (snum != bp->port) {
408                         pr_debug("%s: new port %d doesn't match existing port "
409                                  "%d\n", __func__, snum, bp->port);
410                         return -EINVAL;
411                 }
412         }
413
414         if (snum && inet_port_requires_bind_service(net, snum) &&
415             !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
416                 return -EACCES;
417
418         /* See if the address matches any of the addresses we may have
419          * already bound before checking against other endpoints.
420          */
421         if (sctp_bind_addr_match(bp, addr, sp))
422                 return -EINVAL;
423
424         /* Make sure we are allowed to bind here.
425          * The function sctp_get_port_local() does duplicate address
426          * detection.
427          */
428         addr->v4.sin_port = htons(snum);
429         if (sctp_get_port_local(sk, addr))
430                 return -EADDRINUSE;
431
432         /* Refresh ephemeral port.  */
433         if (!bp->port) {
434                 bp->port = inet_sk(sk)->inet_num;
435                 sctp_auto_asconf_init(sp);
436         }
437
438         /* Add the address to the bind address list.
439          * Use GFP_ATOMIC since BHs will be disabled.
440          */
441         ret = sctp_add_bind_addr(bp, addr, af->sockaddr_len,
442                                  SCTP_ADDR_SRC, GFP_ATOMIC);
443
444         if (ret) {
445                 sctp_put_port(sk);
446                 return ret;
447         }
448         /* Copy back into socket for getsockname() use. */
449         inet_sk(sk)->inet_sport = htons(inet_sk(sk)->inet_num);
450         sp->pf->to_sk_saddr(addr, sk);
451
452         return ret;
453 }
454
455  /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
456  *
457  * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
458  * at any one time.  If a sender, after sending an ASCONF chunk, decides
459  * it needs to transfer another ASCONF Chunk, it MUST wait until the
460  * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
461  * subsequent ASCONF. Note this restriction binds each side, so at any
462  * time two ASCONF may be in-transit on any given association (one sent
463  * from each endpoint).
464  */
465 static int sctp_send_asconf(struct sctp_association *asoc,
466                             struct sctp_chunk *chunk)
467 {
468         int retval = 0;
469
470         /* If there is an outstanding ASCONF chunk, queue it for later
471          * transmission.
472          */
473         if (asoc->addip_last_asconf) {
474                 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
475                 goto out;
476         }
477
478         /* Hold the chunk until an ASCONF_ACK is received. */
479         sctp_chunk_hold(chunk);
480         retval = sctp_primitive_ASCONF(asoc->base.net, asoc, chunk);
481         if (retval)
482                 sctp_chunk_free(chunk);
483         else
484                 asoc->addip_last_asconf = chunk;
485
486 out:
487         return retval;
488 }
489
490 /* Add a list of addresses as bind addresses to local endpoint or
491  * association.
492  *
493  * Basically run through each address specified in the addrs/addrcnt
494  * array/length pair, determine if it is IPv6 or IPv4 and call
495  * sctp_do_bind() on it.
496  *
497  * If any of them fails, then the operation will be reversed and the
498  * ones that were added will be removed.
499  *
500  * Only sctp_setsockopt_bindx() is supposed to call this function.
501  */
502 static int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt)
503 {
504         int cnt;
505         int retval = 0;
506         void *addr_buf;
507         struct sockaddr *sa_addr;
508         struct sctp_af *af;
509
510         pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n", __func__, sk,
511                  addrs, addrcnt);
512
513         addr_buf = addrs;
514         for (cnt = 0; cnt < addrcnt; cnt++) {
515                 /* The list may contain either IPv4 or IPv6 address;
516                  * determine the address length for walking thru the list.
517                  */
518                 sa_addr = addr_buf;
519                 af = sctp_get_af_specific(sa_addr->sa_family);
520                 if (!af) {
521                         retval = -EINVAL;
522                         goto err_bindx_add;
523                 }
524
525                 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
526                                       af->sockaddr_len);
527
528                 addr_buf += af->sockaddr_len;
529
530 err_bindx_add:
531                 if (retval < 0) {
532                         /* Failed. Cleanup the ones that have been added */
533                         if (cnt > 0)
534                                 sctp_bindx_rem(sk, addrs, cnt);
535                         return retval;
536                 }
537         }
538
539         return retval;
540 }
541
542 /* Send an ASCONF chunk with Add IP address parameters to all the peers of the
543  * associations that are part of the endpoint indicating that a list of local
544  * addresses are added to the endpoint.
545  *
546  * If any of the addresses is already in the bind address list of the
547  * association, we do not send the chunk for that association.  But it will not
548  * affect other associations.
549  *
550  * Only sctp_setsockopt_bindx() is supposed to call this function.
551  */
552 static int sctp_send_asconf_add_ip(struct sock          *sk,
553                                    struct sockaddr      *addrs,
554                                    int                  addrcnt)
555 {
556         struct sctp_sock                *sp;
557         struct sctp_endpoint            *ep;
558         struct sctp_association         *asoc;
559         struct sctp_bind_addr           *bp;
560         struct sctp_chunk               *chunk;
561         struct sctp_sockaddr_entry      *laddr;
562         union sctp_addr                 *addr;
563         union sctp_addr                 saveaddr;
564         void                            *addr_buf;
565         struct sctp_af                  *af;
566         struct list_head                *p;
567         int                             i;
568         int                             retval = 0;
569
570         sp = sctp_sk(sk);
571         ep = sp->ep;
572
573         if (!ep->asconf_enable)
574                 return retval;
575
576         pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
577                  __func__, sk, addrs, addrcnt);
578
579         list_for_each_entry(asoc, &ep->asocs, asocs) {
580                 if (!asoc->peer.asconf_capable)
581                         continue;
582
583                 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_ADD_IP)
584                         continue;
585
586                 if (!sctp_state(asoc, ESTABLISHED))
587                         continue;
588
589                 /* Check if any address in the packed array of addresses is
590                  * in the bind address list of the association. If so,
591                  * do not send the asconf chunk to its peer, but continue with
592                  * other associations.
593                  */
594                 addr_buf = addrs;
595                 for (i = 0; i < addrcnt; i++) {
596                         addr = addr_buf;
597                         af = sctp_get_af_specific(addr->v4.sin_family);
598                         if (!af) {
599                                 retval = -EINVAL;
600                                 goto out;
601                         }
602
603                         if (sctp_assoc_lookup_laddr(asoc, addr))
604                                 break;
605
606                         addr_buf += af->sockaddr_len;
607                 }
608                 if (i < addrcnt)
609                         continue;
610
611                 /* Use the first valid address in bind addr list of
612                  * association as Address Parameter of ASCONF CHUNK.
613                  */
614                 bp = &asoc->base.bind_addr;
615                 p = bp->address_list.next;
616                 laddr = list_entry(p, struct sctp_sockaddr_entry, list);
617                 chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs,
618                                                    addrcnt, SCTP_PARAM_ADD_IP);
619                 if (!chunk) {
620                         retval = -ENOMEM;
621                         goto out;
622                 }
623
624                 /* Add the new addresses to the bind address list with
625                  * use_as_src set to 0.
626                  */
627                 addr_buf = addrs;
628                 for (i = 0; i < addrcnt; i++) {
629                         addr = addr_buf;
630                         af = sctp_get_af_specific(addr->v4.sin_family);
631                         memcpy(&saveaddr, addr, af->sockaddr_len);
632                         retval = sctp_add_bind_addr(bp, &saveaddr,
633                                                     sizeof(saveaddr),
634                                                     SCTP_ADDR_NEW, GFP_ATOMIC);
635                         addr_buf += af->sockaddr_len;
636                 }
637                 if (asoc->src_out_of_asoc_ok) {
638                         struct sctp_transport *trans;
639
640                         list_for_each_entry(trans,
641                             &asoc->peer.transport_addr_list, transports) {
642                                 trans->cwnd = min(4*asoc->pathmtu, max_t(__u32,
643                                     2*asoc->pathmtu, 4380));
644                                 trans->ssthresh = asoc->peer.i.a_rwnd;
645                                 trans->rto = asoc->rto_initial;
646                                 sctp_max_rto(asoc, trans);
647                                 trans->rtt = trans->srtt = trans->rttvar = 0;
648                                 /* Clear the source and route cache */
649                                 sctp_transport_route(trans, NULL,
650                                                      sctp_sk(asoc->base.sk));
651                         }
652                 }
653                 retval = sctp_send_asconf(asoc, chunk);
654         }
655
656 out:
657         return retval;
658 }
659
660 /* Remove a list of addresses from bind addresses list.  Do not remove the
661  * last address.
662  *
663  * Basically run through each address specified in the addrs/addrcnt
664  * array/length pair, determine if it is IPv6 or IPv4 and call
665  * sctp_del_bind() on it.
666  *
667  * If any of them fails, then the operation will be reversed and the
668  * ones that were removed will be added back.
669  *
670  * At least one address has to be left; if only one address is
671  * available, the operation will return -EBUSY.
672  *
673  * Only sctp_setsockopt_bindx() is supposed to call this function.
674  */
675 static int sctp_bindx_rem(struct sock *sk, struct sockaddr *addrs, int addrcnt)
676 {
677         struct sctp_sock *sp = sctp_sk(sk);
678         struct sctp_endpoint *ep = sp->ep;
679         int cnt;
680         struct sctp_bind_addr *bp = &ep->base.bind_addr;
681         int retval = 0;
682         void *addr_buf;
683         union sctp_addr *sa_addr;
684         struct sctp_af *af;
685
686         pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
687                  __func__, sk, addrs, addrcnt);
688
689         addr_buf = addrs;
690         for (cnt = 0; cnt < addrcnt; cnt++) {
691                 /* If the bind address list is empty or if there is only one
692                  * bind address, there is nothing more to be removed (we need
693                  * at least one address here).
694                  */
695                 if (list_empty(&bp->address_list) ||
696                     (sctp_list_single_entry(&bp->address_list))) {
697                         retval = -EBUSY;
698                         goto err_bindx_rem;
699                 }
700
701                 sa_addr = addr_buf;
702                 af = sctp_get_af_specific(sa_addr->sa.sa_family);
703                 if (!af) {
704                         retval = -EINVAL;
705                         goto err_bindx_rem;
706                 }
707
708                 if (!af->addr_valid(sa_addr, sp, NULL)) {
709                         retval = -EADDRNOTAVAIL;
710                         goto err_bindx_rem;
711                 }
712
713                 if (sa_addr->v4.sin_port &&
714                     sa_addr->v4.sin_port != htons(bp->port)) {
715                         retval = -EINVAL;
716                         goto err_bindx_rem;
717                 }
718
719                 if (!sa_addr->v4.sin_port)
720                         sa_addr->v4.sin_port = htons(bp->port);
721
722                 /* FIXME - There is probably a need to check if sk->sk_saddr and
723                  * sk->sk_rcv_addr are currently set to one of the addresses to
724                  * be removed. This is something which needs to be looked into
725                  * when we are fixing the outstanding issues with multi-homing
726                  * socket routing and failover schemes. Refer to comments in
727                  * sctp_do_bind(). -daisy
728                  */
729                 retval = sctp_del_bind_addr(bp, sa_addr);
730
731                 addr_buf += af->sockaddr_len;
732 err_bindx_rem:
733                 if (retval < 0) {
734                         /* Failed. Add the ones that has been removed back */
735                         if (cnt > 0)
736                                 sctp_bindx_add(sk, addrs, cnt);
737                         return retval;
738                 }
739         }
740
741         return retval;
742 }
743
744 /* Send an ASCONF chunk with Delete IP address parameters to all the peers of
745  * the associations that are part of the endpoint indicating that a list of
746  * local addresses are removed from the endpoint.
747  *
748  * If any of the addresses is already in the bind address list of the
749  * association, we do not send the chunk for that association.  But it will not
750  * affect other associations.
751  *
752  * Only sctp_setsockopt_bindx() is supposed to call this function.
753  */
754 static int sctp_send_asconf_del_ip(struct sock          *sk,
755                                    struct sockaddr      *addrs,
756                                    int                  addrcnt)
757 {
758         struct sctp_sock        *sp;
759         struct sctp_endpoint    *ep;
760         struct sctp_association *asoc;
761         struct sctp_transport   *transport;
762         struct sctp_bind_addr   *bp;
763         struct sctp_chunk       *chunk;
764         union sctp_addr         *laddr;
765         void                    *addr_buf;
766         struct sctp_af          *af;
767         struct sctp_sockaddr_entry *saddr;
768         int                     i;
769         int                     retval = 0;
770         int                     stored = 0;
771
772         chunk = NULL;
773         sp = sctp_sk(sk);
774         ep = sp->ep;
775
776         if (!ep->asconf_enable)
777                 return retval;
778
779         pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
780                  __func__, sk, addrs, addrcnt);
781
782         list_for_each_entry(asoc, &ep->asocs, asocs) {
783
784                 if (!asoc->peer.asconf_capable)
785                         continue;
786
787                 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_DEL_IP)
788                         continue;
789
790                 if (!sctp_state(asoc, ESTABLISHED))
791                         continue;
792
793                 /* Check if any address in the packed array of addresses is
794                  * not present in the bind address list of the association.
795                  * If so, do not send the asconf chunk to its peer, but
796                  * continue with other associations.
797                  */
798                 addr_buf = addrs;
799                 for (i = 0; i < addrcnt; i++) {
800                         laddr = addr_buf;
801                         af = sctp_get_af_specific(laddr->v4.sin_family);
802                         if (!af) {
803                                 retval = -EINVAL;
804                                 goto out;
805                         }
806
807                         if (!sctp_assoc_lookup_laddr(asoc, laddr))
808                                 break;
809
810                         addr_buf += af->sockaddr_len;
811                 }
812                 if (i < addrcnt)
813                         continue;
814
815                 /* Find one address in the association's bind address list
816                  * that is not in the packed array of addresses. This is to
817                  * make sure that we do not delete all the addresses in the
818                  * association.
819                  */
820                 bp = &asoc->base.bind_addr;
821                 laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs,
822                                                addrcnt, sp);
823                 if ((laddr == NULL) && (addrcnt == 1)) {
824                         if (asoc->asconf_addr_del_pending)
825                                 continue;
826                         asoc->asconf_addr_del_pending =
827                             kzalloc(sizeof(union sctp_addr), GFP_ATOMIC);
828                         if (asoc->asconf_addr_del_pending == NULL) {
829                                 retval = -ENOMEM;
830                                 goto out;
831                         }
832                         asoc->asconf_addr_del_pending->sa.sa_family =
833                                     addrs->sa_family;
834                         asoc->asconf_addr_del_pending->v4.sin_port =
835                                     htons(bp->port);
836                         if (addrs->sa_family == AF_INET) {
837                                 struct sockaddr_in *sin;
838
839                                 sin = (struct sockaddr_in *)addrs;
840                                 asoc->asconf_addr_del_pending->v4.sin_addr.s_addr = sin->sin_addr.s_addr;
841                         } else if (addrs->sa_family == AF_INET6) {
842                                 struct sockaddr_in6 *sin6;
843
844                                 sin6 = (struct sockaddr_in6 *)addrs;
845                                 asoc->asconf_addr_del_pending->v6.sin6_addr = sin6->sin6_addr;
846                         }
847
848                         pr_debug("%s: keep the last address asoc:%p %pISc at %p\n",
849                                  __func__, asoc, &asoc->asconf_addr_del_pending->sa,
850                                  asoc->asconf_addr_del_pending);
851
852                         asoc->src_out_of_asoc_ok = 1;
853                         stored = 1;
854                         goto skip_mkasconf;
855                 }
856
857                 if (laddr == NULL)
858                         return -EINVAL;
859
860                 /* We do not need RCU protection throughout this loop
861                  * because this is done under a socket lock from the
862                  * setsockopt call.
863                  */
864                 chunk = sctp_make_asconf_update_ip(asoc, laddr, addrs, addrcnt,
865                                                    SCTP_PARAM_DEL_IP);
866                 if (!chunk) {
867                         retval = -ENOMEM;
868                         goto out;
869                 }
870
871 skip_mkasconf:
872                 /* Reset use_as_src flag for the addresses in the bind address
873                  * list that are to be deleted.
874                  */
875                 addr_buf = addrs;
876                 for (i = 0; i < addrcnt; i++) {
877                         laddr = addr_buf;
878                         af = sctp_get_af_specific(laddr->v4.sin_family);
879                         list_for_each_entry(saddr, &bp->address_list, list) {
880                                 if (sctp_cmp_addr_exact(&saddr->a, laddr))
881                                         saddr->state = SCTP_ADDR_DEL;
882                         }
883                         addr_buf += af->sockaddr_len;
884                 }
885
886                 /* Update the route and saddr entries for all the transports
887                  * as some of the addresses in the bind address list are
888                  * about to be deleted and cannot be used as source addresses.
889                  */
890                 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
891                                         transports) {
892                         sctp_transport_route(transport, NULL,
893                                              sctp_sk(asoc->base.sk));
894                 }
895
896                 if (stored)
897                         /* We don't need to transmit ASCONF */
898                         continue;
899                 retval = sctp_send_asconf(asoc, chunk);
900         }
901 out:
902         return retval;
903 }
904
905 /* set addr events to assocs in the endpoint.  ep and addr_wq must be locked */
906 int sctp_asconf_mgmt(struct sctp_sock *sp, struct sctp_sockaddr_entry *addrw)
907 {
908         struct sock *sk = sctp_opt2sk(sp);
909         union sctp_addr *addr;
910         struct sctp_af *af;
911
912         /* It is safe to write port space in caller. */
913         addr = &addrw->a;
914         addr->v4.sin_port = htons(sp->ep->base.bind_addr.port);
915         af = sctp_get_af_specific(addr->sa.sa_family);
916         if (!af)
917                 return -EINVAL;
918         if (sctp_verify_addr(sk, addr, af->sockaddr_len))
919                 return -EINVAL;
920
921         if (addrw->state == SCTP_ADDR_NEW)
922                 return sctp_send_asconf_add_ip(sk, (struct sockaddr *)addr, 1);
923         else
924                 return sctp_send_asconf_del_ip(sk, (struct sockaddr *)addr, 1);
925 }
926
927 /* Helper for tunneling sctp_bindx() requests through sctp_setsockopt()
928  *
929  * API 8.1
930  * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt,
931  *                int flags);
932  *
933  * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
934  * If the sd is an IPv6 socket, the addresses passed can either be IPv4
935  * or IPv6 addresses.
936  *
937  * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
938  * Section 3.1.2 for this usage.
939  *
940  * addrs is a pointer to an array of one or more socket addresses. Each
941  * address is contained in its appropriate structure (i.e. struct
942  * sockaddr_in or struct sockaddr_in6) the family of the address type
943  * must be used to distinguish the address length (note that this
944  * representation is termed a "packed array" of addresses). The caller
945  * specifies the number of addresses in the array with addrcnt.
946  *
947  * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns
948  * -1, and sets errno to the appropriate error code.
949  *
950  * For SCTP, the port given in each socket address must be the same, or
951  * sctp_bindx() will fail, setting errno to EINVAL.
952  *
953  * The flags parameter is formed from the bitwise OR of zero or more of
954  * the following currently defined flags:
955  *
956  * SCTP_BINDX_ADD_ADDR
957  *
958  * SCTP_BINDX_REM_ADDR
959  *
960  * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the
961  * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given
962  * addresses from the association. The two flags are mutually exclusive;
963  * if both are given, sctp_bindx() will fail with EINVAL. A caller may
964  * not remove all addresses from an association; sctp_bindx() will
965  * reject such an attempt with EINVAL.
966  *
967  * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate
968  * additional addresses with an endpoint after calling bind().  Or use
969  * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening
970  * socket is associated with so that no new association accepted will be
971  * associated with those addresses. If the endpoint supports dynamic
972  * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a
973  * endpoint to send the appropriate message to the peer to change the
974  * peers address lists.
975  *
976  * Adding and removing addresses from a connected association is
977  * optional functionality. Implementations that do not support this
978  * functionality should return EOPNOTSUPP.
979  *
980  * Basically do nothing but copying the addresses from user to kernel
981  * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk.
982  * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
983  * from userspace.
984  *
985  * On exit there is no need to do sockfd_put(), sys_setsockopt() does
986  * it.
987  *
988  * sk        The sk of the socket
989  * addrs     The pointer to the addresses
990  * addrssize Size of the addrs buffer
991  * op        Operation to perform (add or remove, see the flags of
992  *           sctp_bindx)
993  *
994  * Returns 0 if ok, <0 errno code on error.
995  */
996 static int sctp_setsockopt_bindx(struct sock *sk, struct sockaddr *addrs,
997                                  int addrs_size, int op)
998 {
999         int err;
1000         int addrcnt = 0;
1001         int walk_size = 0;
1002         struct sockaddr *sa_addr;
1003         void *addr_buf = addrs;
1004         struct sctp_af *af;
1005
1006         pr_debug("%s: sk:%p addrs:%p addrs_size:%d opt:%d\n",
1007                  __func__, sk, addr_buf, addrs_size, op);
1008
1009         if (unlikely(addrs_size <= 0))
1010                 return -EINVAL;
1011
1012         /* Walk through the addrs buffer and count the number of addresses. */
1013         while (walk_size < addrs_size) {
1014                 if (walk_size + sizeof(sa_family_t) > addrs_size)
1015                         return -EINVAL;
1016
1017                 sa_addr = addr_buf;
1018                 af = sctp_get_af_specific(sa_addr->sa_family);
1019
1020                 /* If the address family is not supported or if this address
1021                  * causes the address buffer to overflow return EINVAL.
1022                  */
1023                 if (!af || (walk_size + af->sockaddr_len) > addrs_size)
1024                         return -EINVAL;
1025                 addrcnt++;
1026                 addr_buf += af->sockaddr_len;
1027                 walk_size += af->sockaddr_len;
1028         }
1029
1030         /* Do the work. */
1031         switch (op) {
1032         case SCTP_BINDX_ADD_ADDR:
1033                 /* Allow security module to validate bindx addresses. */
1034                 err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_BINDX_ADD,
1035                                                  addrs, addrs_size);
1036                 if (err)
1037                         return err;
1038                 err = sctp_bindx_add(sk, addrs, addrcnt);
1039                 if (err)
1040                         return err;
1041                 return sctp_send_asconf_add_ip(sk, addrs, addrcnt);
1042         case SCTP_BINDX_REM_ADDR:
1043                 err = sctp_bindx_rem(sk, addrs, addrcnt);
1044                 if (err)
1045                         return err;
1046                 return sctp_send_asconf_del_ip(sk, addrs, addrcnt);
1047
1048         default:
1049                 return -EINVAL;
1050         }
1051 }
1052
1053 static int sctp_bind_add(struct sock *sk, struct sockaddr *addrs,
1054                 int addrlen)
1055 {
1056         int err;
1057
1058         lock_sock(sk);
1059         err = sctp_setsockopt_bindx(sk, addrs, addrlen, SCTP_BINDX_ADD_ADDR);
1060         release_sock(sk);
1061         return err;
1062 }
1063
1064 static int sctp_connect_new_asoc(struct sctp_endpoint *ep,
1065                                  const union sctp_addr *daddr,
1066                                  const struct sctp_initmsg *init,
1067                                  struct sctp_transport **tp)
1068 {
1069         struct sctp_association *asoc;
1070         struct sock *sk = ep->base.sk;
1071         struct net *net = sock_net(sk);
1072         enum sctp_scope scope;
1073         int err;
1074
1075         if (sctp_endpoint_is_peeled_off(ep, daddr))
1076                 return -EADDRNOTAVAIL;
1077
1078         if (!ep->base.bind_addr.port) {
1079                 if (sctp_autobind(sk))
1080                         return -EAGAIN;
1081         } else {
1082                 if (inet_port_requires_bind_service(net, ep->base.bind_addr.port) &&
1083                     !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
1084                         return -EACCES;
1085         }
1086
1087         scope = sctp_scope(daddr);
1088         asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1089         if (!asoc)
1090                 return -ENOMEM;
1091
1092         err = sctp_assoc_set_bind_addr_from_ep(asoc, scope, GFP_KERNEL);
1093         if (err < 0)
1094                 goto free;
1095
1096         *tp = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL, SCTP_UNKNOWN);
1097         if (!*tp) {
1098                 err = -ENOMEM;
1099                 goto free;
1100         }
1101
1102         if (!init)
1103                 return 0;
1104
1105         if (init->sinit_num_ostreams) {
1106                 __u16 outcnt = init->sinit_num_ostreams;
1107
1108                 asoc->c.sinit_num_ostreams = outcnt;
1109                 /* outcnt has been changed, need to re-init stream */
1110                 err = sctp_stream_init(&asoc->stream, outcnt, 0, GFP_KERNEL);
1111                 if (err)
1112                         goto free;
1113         }
1114
1115         if (init->sinit_max_instreams)
1116                 asoc->c.sinit_max_instreams = init->sinit_max_instreams;
1117
1118         if (init->sinit_max_attempts)
1119                 asoc->max_init_attempts = init->sinit_max_attempts;
1120
1121         if (init->sinit_max_init_timeo)
1122                 asoc->max_init_timeo =
1123                         msecs_to_jiffies(init->sinit_max_init_timeo);
1124
1125         return 0;
1126 free:
1127         sctp_association_free(asoc);
1128         return err;
1129 }
1130
1131 static int sctp_connect_add_peer(struct sctp_association *asoc,
1132                                  union sctp_addr *daddr, int addr_len)
1133 {
1134         struct sctp_endpoint *ep = asoc->ep;
1135         struct sctp_association *old;
1136         struct sctp_transport *t;
1137         int err;
1138
1139         err = sctp_verify_addr(ep->base.sk, daddr, addr_len);
1140         if (err)
1141                 return err;
1142
1143         old = sctp_endpoint_lookup_assoc(ep, daddr, &t);
1144         if (old && old != asoc)
1145                 return old->state >= SCTP_STATE_ESTABLISHED ? -EISCONN
1146                                                             : -EALREADY;
1147
1148         if (sctp_endpoint_is_peeled_off(ep, daddr))
1149                 return -EADDRNOTAVAIL;
1150
1151         t = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL, SCTP_UNKNOWN);
1152         if (!t)
1153                 return -ENOMEM;
1154
1155         return 0;
1156 }
1157
1158 /* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size)
1159  *
1160  * Common routine for handling connect() and sctp_connectx().
1161  * Connect will come in with just a single address.
1162  */
1163 static int __sctp_connect(struct sock *sk, struct sockaddr *kaddrs,
1164                           int addrs_size, int flags, sctp_assoc_t *assoc_id)
1165 {
1166         struct sctp_sock *sp = sctp_sk(sk);
1167         struct sctp_endpoint *ep = sp->ep;
1168         struct sctp_transport *transport;
1169         struct sctp_association *asoc;
1170         void *addr_buf = kaddrs;
1171         union sctp_addr *daddr;
1172         struct sctp_af *af;
1173         int walk_size, err;
1174         long timeo;
1175
1176         if (sctp_sstate(sk, ESTABLISHED) || sctp_sstate(sk, CLOSING) ||
1177             (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING)))
1178                 return -EISCONN;
1179
1180         daddr = addr_buf;
1181         af = sctp_get_af_specific(daddr->sa.sa_family);
1182         if (!af || af->sockaddr_len > addrs_size)
1183                 return -EINVAL;
1184
1185         err = sctp_verify_addr(sk, daddr, af->sockaddr_len);
1186         if (err)
1187                 return err;
1188
1189         asoc = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
1190         if (asoc)
1191                 return asoc->state >= SCTP_STATE_ESTABLISHED ? -EISCONN
1192                                                              : -EALREADY;
1193
1194         err = sctp_connect_new_asoc(ep, daddr, NULL, &transport);
1195         if (err)
1196                 return err;
1197         asoc = transport->asoc;
1198
1199         addr_buf += af->sockaddr_len;
1200         walk_size = af->sockaddr_len;
1201         while (walk_size < addrs_size) {
1202                 err = -EINVAL;
1203                 if (walk_size + sizeof(sa_family_t) > addrs_size)
1204                         goto out_free;
1205
1206                 daddr = addr_buf;
1207                 af = sctp_get_af_specific(daddr->sa.sa_family);
1208                 if (!af || af->sockaddr_len + walk_size > addrs_size)
1209                         goto out_free;
1210
1211                 if (asoc->peer.port != ntohs(daddr->v4.sin_port))
1212                         goto out_free;
1213
1214                 err = sctp_connect_add_peer(asoc, daddr, af->sockaddr_len);
1215                 if (err)
1216                         goto out_free;
1217
1218                 addr_buf  += af->sockaddr_len;
1219                 walk_size += af->sockaddr_len;
1220         }
1221
1222         /* In case the user of sctp_connectx() wants an association
1223          * id back, assign one now.
1224          */
1225         if (assoc_id) {
1226                 err = sctp_assoc_set_id(asoc, GFP_KERNEL);
1227                 if (err < 0)
1228                         goto out_free;
1229         }
1230
1231         err = sctp_primitive_ASSOCIATE(sock_net(sk), asoc, NULL);
1232         if (err < 0)
1233                 goto out_free;
1234
1235         /* Initialize sk's dport and daddr for getpeername() */
1236         inet_sk(sk)->inet_dport = htons(asoc->peer.port);
1237         sp->pf->to_sk_daddr(daddr, sk);
1238         sk->sk_err = 0;
1239
1240         if (assoc_id)
1241                 *assoc_id = asoc->assoc_id;
1242
1243         timeo = sock_sndtimeo(sk, flags & O_NONBLOCK);
1244         return sctp_wait_for_connect(asoc, &timeo);
1245
1246 out_free:
1247         pr_debug("%s: took out_free path with asoc:%p kaddrs:%p err:%d\n",
1248                  __func__, asoc, kaddrs, err);
1249         sctp_association_free(asoc);
1250         return err;
1251 }
1252
1253 /* Helper for tunneling sctp_connectx() requests through sctp_setsockopt()
1254  *
1255  * API 8.9
1256  * int sctp_connectx(int sd, struct sockaddr *addrs, int addrcnt,
1257  *                      sctp_assoc_t *asoc);
1258  *
1259  * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
1260  * If the sd is an IPv6 socket, the addresses passed can either be IPv4
1261  * or IPv6 addresses.
1262  *
1263  * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
1264  * Section 3.1.2 for this usage.
1265  *
1266  * addrs is a pointer to an array of one or more socket addresses. Each
1267  * address is contained in its appropriate structure (i.e. struct
1268  * sockaddr_in or struct sockaddr_in6) the family of the address type
1269  * must be used to distengish the address length (note that this
1270  * representation is termed a "packed array" of addresses). The caller
1271  * specifies the number of addresses in the array with addrcnt.
1272  *
1273  * On success, sctp_connectx() returns 0. It also sets the assoc_id to
1274  * the association id of the new association.  On failure, sctp_connectx()
1275  * returns -1, and sets errno to the appropriate error code.  The assoc_id
1276  * is not touched by the kernel.
1277  *
1278  * For SCTP, the port given in each socket address must be the same, or
1279  * sctp_connectx() will fail, setting errno to EINVAL.
1280  *
1281  * An application can use sctp_connectx to initiate an association with
1282  * an endpoint that is multi-homed.  Much like sctp_bindx() this call
1283  * allows a caller to specify multiple addresses at which a peer can be
1284  * reached.  The way the SCTP stack uses the list of addresses to set up
1285  * the association is implementation dependent.  This function only
1286  * specifies that the stack will try to make use of all the addresses in
1287  * the list when needed.
1288  *
1289  * Note that the list of addresses passed in is only used for setting up
1290  * the association.  It does not necessarily equal the set of addresses
1291  * the peer uses for the resulting association.  If the caller wants to
1292  * find out the set of peer addresses, it must use sctp_getpaddrs() to
1293  * retrieve them after the association has been set up.
1294  *
1295  * Basically do nothing but copying the addresses from user to kernel
1296  * land and invoking either sctp_connectx(). This is used for tunneling
1297  * the sctp_connectx() request through sctp_setsockopt() from userspace.
1298  *
1299  * On exit there is no need to do sockfd_put(), sys_setsockopt() does
1300  * it.
1301  *
1302  * sk        The sk of the socket
1303  * addrs     The pointer to the addresses
1304  * addrssize Size of the addrs buffer
1305  *
1306  * Returns >=0 if ok, <0 errno code on error.
1307  */
1308 static int __sctp_setsockopt_connectx(struct sock *sk, struct sockaddr *kaddrs,
1309                                       int addrs_size, sctp_assoc_t *assoc_id)
1310 {
1311         int err = 0, flags = 0;
1312
1313         pr_debug("%s: sk:%p addrs:%p addrs_size:%d\n",
1314                  __func__, sk, kaddrs, addrs_size);
1315
1316         /* make sure the 1st addr's sa_family is accessible later */
1317         if (unlikely(addrs_size < sizeof(sa_family_t)))
1318                 return -EINVAL;
1319
1320         /* Allow security module to validate connectx addresses. */
1321         err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_CONNECTX,
1322                                          (struct sockaddr *)kaddrs,
1323                                           addrs_size);
1324         if (err)
1325                 return err;
1326
1327         /* in-kernel sockets don't generally have a file allocated to them
1328          * if all they do is call sock_create_kern().
1329          */
1330         if (sk->sk_socket->file)
1331                 flags = sk->sk_socket->file->f_flags;
1332
1333         return __sctp_connect(sk, kaddrs, addrs_size, flags, assoc_id);
1334 }
1335
1336 /*
1337  * This is an older interface.  It's kept for backward compatibility
1338  * to the option that doesn't provide association id.
1339  */
1340 static int sctp_setsockopt_connectx_old(struct sock *sk,
1341                                         struct sockaddr *kaddrs,
1342                                         int addrs_size)
1343 {
1344         return __sctp_setsockopt_connectx(sk, kaddrs, addrs_size, NULL);
1345 }
1346
1347 /*
1348  * New interface for the API.  The since the API is done with a socket
1349  * option, to make it simple we feed back the association id is as a return
1350  * indication to the call.  Error is always negative and association id is
1351  * always positive.
1352  */
1353 static int sctp_setsockopt_connectx(struct sock *sk,
1354                                     struct sockaddr *kaddrs,
1355                                     int addrs_size)
1356 {
1357         sctp_assoc_t assoc_id = 0;
1358         int err = 0;
1359
1360         err = __sctp_setsockopt_connectx(sk, kaddrs, addrs_size, &assoc_id);
1361
1362         if (err)
1363                 return err;
1364         else
1365                 return assoc_id;
1366 }
1367
1368 /*
1369  * New (hopefully final) interface for the API.
1370  * We use the sctp_getaddrs_old structure so that use-space library
1371  * can avoid any unnecessary allocations. The only different part
1372  * is that we store the actual length of the address buffer into the
1373  * addrs_num structure member. That way we can re-use the existing
1374  * code.
1375  */
1376 #ifdef CONFIG_COMPAT
1377 struct compat_sctp_getaddrs_old {
1378         sctp_assoc_t    assoc_id;
1379         s32             addr_num;
1380         compat_uptr_t   addrs;          /* struct sockaddr * */
1381 };
1382 #endif
1383
1384 static int sctp_getsockopt_connectx3(struct sock *sk, int len,
1385                                      char __user *optval,
1386                                      int __user *optlen)
1387 {
1388         struct sctp_getaddrs_old param;
1389         sctp_assoc_t assoc_id = 0;
1390         struct sockaddr *kaddrs;
1391         int err = 0;
1392
1393 #ifdef CONFIG_COMPAT
1394         if (in_compat_syscall()) {
1395                 struct compat_sctp_getaddrs_old param32;
1396
1397                 if (len < sizeof(param32))
1398                         return -EINVAL;
1399                 if (copy_from_user(&param32, optval, sizeof(param32)))
1400                         return -EFAULT;
1401
1402                 param.assoc_id = param32.assoc_id;
1403                 param.addr_num = param32.addr_num;
1404                 param.addrs = compat_ptr(param32.addrs);
1405         } else
1406 #endif
1407         {
1408                 if (len < sizeof(param))
1409                         return -EINVAL;
1410                 if (copy_from_user(&param, optval, sizeof(param)))
1411                         return -EFAULT;
1412         }
1413
1414         kaddrs = memdup_user(param.addrs, param.addr_num);
1415         if (IS_ERR(kaddrs))
1416                 return PTR_ERR(kaddrs);
1417
1418         err = __sctp_setsockopt_connectx(sk, kaddrs, param.addr_num, &assoc_id);
1419         kfree(kaddrs);
1420         if (err == 0 || err == -EINPROGRESS) {
1421                 if (copy_to_user(optval, &assoc_id, sizeof(assoc_id)))
1422                         return -EFAULT;
1423                 if (put_user(sizeof(assoc_id), optlen))
1424                         return -EFAULT;
1425         }
1426
1427         return err;
1428 }
1429
1430 /* API 3.1.4 close() - UDP Style Syntax
1431  * Applications use close() to perform graceful shutdown (as described in
1432  * Section 10.1 of [SCTP]) on ALL the associations currently represented
1433  * by a UDP-style socket.
1434  *
1435  * The syntax is
1436  *
1437  *   ret = close(int sd);
1438  *
1439  *   sd      - the socket descriptor of the associations to be closed.
1440  *
1441  * To gracefully shutdown a specific association represented by the
1442  * UDP-style socket, an application should use the sendmsg() call,
1443  * passing no user data, but including the appropriate flag in the
1444  * ancillary data (see Section xxxx).
1445  *
1446  * If sd in the close() call is a branched-off socket representing only
1447  * one association, the shutdown is performed on that association only.
1448  *
1449  * 4.1.6 close() - TCP Style Syntax
1450  *
1451  * Applications use close() to gracefully close down an association.
1452  *
1453  * The syntax is:
1454  *
1455  *    int close(int sd);
1456  *
1457  *      sd      - the socket descriptor of the association to be closed.
1458  *
1459  * After an application calls close() on a socket descriptor, no further
1460  * socket operations will succeed on that descriptor.
1461  *
1462  * API 7.1.4 SO_LINGER
1463  *
1464  * An application using the TCP-style socket can use this option to
1465  * perform the SCTP ABORT primitive.  The linger option structure is:
1466  *
1467  *  struct  linger {
1468  *     int     l_onoff;                // option on/off
1469  *     int     l_linger;               // linger time
1470  * };
1471  *
1472  * To enable the option, set l_onoff to 1.  If the l_linger value is set
1473  * to 0, calling close() is the same as the ABORT primitive.  If the
1474  * value is set to a negative value, the setsockopt() call will return
1475  * an error.  If the value is set to a positive value linger_time, the
1476  * close() can be blocked for at most linger_time ms.  If the graceful
1477  * shutdown phase does not finish during this period, close() will
1478  * return but the graceful shutdown phase continues in the system.
1479  */
1480 static void sctp_close(struct sock *sk, long timeout)
1481 {
1482         struct net *net = sock_net(sk);
1483         struct sctp_endpoint *ep;
1484         struct sctp_association *asoc;
1485         struct list_head *pos, *temp;
1486         unsigned int data_was_unread;
1487
1488         pr_debug("%s: sk:%p, timeout:%ld\n", __func__, sk, timeout);
1489
1490         lock_sock_nested(sk, SINGLE_DEPTH_NESTING);
1491         sk->sk_shutdown = SHUTDOWN_MASK;
1492         inet_sk_set_state(sk, SCTP_SS_CLOSING);
1493
1494         ep = sctp_sk(sk)->ep;
1495
1496         /* Clean up any skbs sitting on the receive queue.  */
1497         data_was_unread = sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1498         data_was_unread += sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1499
1500         /* Walk all associations on an endpoint.  */
1501         list_for_each_safe(pos, temp, &ep->asocs) {
1502                 asoc = list_entry(pos, struct sctp_association, asocs);
1503
1504                 if (sctp_style(sk, TCP)) {
1505                         /* A closed association can still be in the list if
1506                          * it belongs to a TCP-style listening socket that is
1507                          * not yet accepted. If so, free it. If not, send an
1508                          * ABORT or SHUTDOWN based on the linger options.
1509                          */
1510                         if (sctp_state(asoc, CLOSED)) {
1511                                 sctp_association_free(asoc);
1512                                 continue;
1513                         }
1514                 }
1515
1516                 if (data_was_unread || !skb_queue_empty(&asoc->ulpq.lobby) ||
1517                     !skb_queue_empty(&asoc->ulpq.reasm) ||
1518                     !skb_queue_empty(&asoc->ulpq.reasm_uo) ||
1519                     (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) {
1520                         struct sctp_chunk *chunk;
1521
1522                         chunk = sctp_make_abort_user(asoc, NULL, 0);
1523                         sctp_primitive_ABORT(net, asoc, chunk);
1524                 } else
1525                         sctp_primitive_SHUTDOWN(net, asoc, NULL);
1526         }
1527
1528         /* On a TCP-style socket, block for at most linger_time if set. */
1529         if (sctp_style(sk, TCP) && timeout)
1530                 sctp_wait_for_close(sk, timeout);
1531
1532         /* This will run the backlog queue.  */
1533         release_sock(sk);
1534
1535         /* Supposedly, no process has access to the socket, but
1536          * the net layers still may.
1537          * Also, sctp_destroy_sock() needs to be called with addr_wq_lock
1538          * held and that should be grabbed before socket lock.
1539          */
1540         spin_lock_bh(&net->sctp.addr_wq_lock);
1541         bh_lock_sock_nested(sk);
1542
1543         /* Hold the sock, since sk_common_release() will put sock_put()
1544          * and we have just a little more cleanup.
1545          */
1546         sock_hold(sk);
1547         sk_common_release(sk);
1548
1549         bh_unlock_sock(sk);
1550         spin_unlock_bh(&net->sctp.addr_wq_lock);
1551
1552         sock_put(sk);
1553
1554         SCTP_DBG_OBJCNT_DEC(sock);
1555 }
1556
1557 /* Handle EPIPE error. */
1558 static int sctp_error(struct sock *sk, int flags, int err)
1559 {
1560         if (err == -EPIPE)
1561                 err = sock_error(sk) ? : -EPIPE;
1562         if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1563                 send_sig(SIGPIPE, current, 0);
1564         return err;
1565 }
1566
1567 /* API 3.1.3 sendmsg() - UDP Style Syntax
1568  *
1569  * An application uses sendmsg() and recvmsg() calls to transmit data to
1570  * and receive data from its peer.
1571  *
1572  *  ssize_t sendmsg(int socket, const struct msghdr *message,
1573  *                  int flags);
1574  *
1575  *  socket  - the socket descriptor of the endpoint.
1576  *  message - pointer to the msghdr structure which contains a single
1577  *            user message and possibly some ancillary data.
1578  *
1579  *            See Section 5 for complete description of the data
1580  *            structures.
1581  *
1582  *  flags   - flags sent or received with the user message, see Section
1583  *            5 for complete description of the flags.
1584  *
1585  * Note:  This function could use a rewrite especially when explicit
1586  * connect support comes in.
1587  */
1588 /* BUG:  We do not implement the equivalent of sk_stream_wait_memory(). */
1589
1590 static int sctp_msghdr_parse(const struct msghdr *msg,
1591                              struct sctp_cmsgs *cmsgs);
1592
1593 static int sctp_sendmsg_parse(struct sock *sk, struct sctp_cmsgs *cmsgs,
1594                               struct sctp_sndrcvinfo *srinfo,
1595                               const struct msghdr *msg, size_t msg_len)
1596 {
1597         __u16 sflags;
1598         int err;
1599
1600         if (sctp_sstate(sk, LISTENING) && sctp_style(sk, TCP))
1601                 return -EPIPE;
1602
1603         if (msg_len > sk->sk_sndbuf)
1604                 return -EMSGSIZE;
1605
1606         memset(cmsgs, 0, sizeof(*cmsgs));
1607         err = sctp_msghdr_parse(msg, cmsgs);
1608         if (err) {
1609                 pr_debug("%s: msghdr parse err:%x\n", __func__, err);
1610                 return err;
1611         }
1612
1613         memset(srinfo, 0, sizeof(*srinfo));
1614         if (cmsgs->srinfo) {
1615                 srinfo->sinfo_stream = cmsgs->srinfo->sinfo_stream;
1616                 srinfo->sinfo_flags = cmsgs->srinfo->sinfo_flags;
1617                 srinfo->sinfo_ppid = cmsgs->srinfo->sinfo_ppid;
1618                 srinfo->sinfo_context = cmsgs->srinfo->sinfo_context;
1619                 srinfo->sinfo_assoc_id = cmsgs->srinfo->sinfo_assoc_id;
1620                 srinfo->sinfo_timetolive = cmsgs->srinfo->sinfo_timetolive;
1621         }
1622
1623         if (cmsgs->sinfo) {
1624                 srinfo->sinfo_stream = cmsgs->sinfo->snd_sid;
1625                 srinfo->sinfo_flags = cmsgs->sinfo->snd_flags;
1626                 srinfo->sinfo_ppid = cmsgs->sinfo->snd_ppid;
1627                 srinfo->sinfo_context = cmsgs->sinfo->snd_context;
1628                 srinfo->sinfo_assoc_id = cmsgs->sinfo->snd_assoc_id;
1629         }
1630
1631         if (cmsgs->prinfo) {
1632                 srinfo->sinfo_timetolive = cmsgs->prinfo->pr_value;
1633                 SCTP_PR_SET_POLICY(srinfo->sinfo_flags,
1634                                    cmsgs->prinfo->pr_policy);
1635         }
1636
1637         sflags = srinfo->sinfo_flags;
1638         if (!sflags && msg_len)
1639                 return 0;
1640
1641         if (sctp_style(sk, TCP) && (sflags & (SCTP_EOF | SCTP_ABORT)))
1642                 return -EINVAL;
1643
1644         if (((sflags & SCTP_EOF) && msg_len > 0) ||
1645             (!(sflags & (SCTP_EOF | SCTP_ABORT)) && msg_len == 0))
1646                 return -EINVAL;
1647
1648         if ((sflags & SCTP_ADDR_OVER) && !msg->msg_name)
1649                 return -EINVAL;
1650
1651         return 0;
1652 }
1653
1654 static int sctp_sendmsg_new_asoc(struct sock *sk, __u16 sflags,
1655                                  struct sctp_cmsgs *cmsgs,
1656                                  union sctp_addr *daddr,
1657                                  struct sctp_transport **tp)
1658 {
1659         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
1660         struct sctp_association *asoc;
1661         struct cmsghdr *cmsg;
1662         __be32 flowinfo = 0;
1663         struct sctp_af *af;
1664         int err;
1665
1666         *tp = NULL;
1667
1668         if (sflags & (SCTP_EOF | SCTP_ABORT))
1669                 return -EINVAL;
1670
1671         if (sctp_style(sk, TCP) && (sctp_sstate(sk, ESTABLISHED) ||
1672                                     sctp_sstate(sk, CLOSING)))
1673                 return -EADDRNOTAVAIL;
1674
1675         /* Label connection socket for first association 1-to-many
1676          * style for client sequence socket()->sendmsg(). This
1677          * needs to be done before sctp_assoc_add_peer() as that will
1678          * set up the initial packet that needs to account for any
1679          * security ip options (CIPSO/CALIPSO) added to the packet.
1680          */
1681         af = sctp_get_af_specific(daddr->sa.sa_family);
1682         if (!af)
1683                 return -EINVAL;
1684         err = security_sctp_bind_connect(sk, SCTP_SENDMSG_CONNECT,
1685                                          (struct sockaddr *)daddr,
1686                                          af->sockaddr_len);
1687         if (err < 0)
1688                 return err;
1689
1690         err = sctp_connect_new_asoc(ep, daddr, cmsgs->init, tp);
1691         if (err)
1692                 return err;
1693         asoc = (*tp)->asoc;
1694
1695         if (!cmsgs->addrs_msg)
1696                 return 0;
1697
1698         if (daddr->sa.sa_family == AF_INET6)
1699                 flowinfo = daddr->v6.sin6_flowinfo;
1700
1701         /* sendv addr list parse */
1702         for_each_cmsghdr(cmsg, cmsgs->addrs_msg) {
1703                 union sctp_addr _daddr;
1704                 int dlen;
1705
1706                 if (cmsg->cmsg_level != IPPROTO_SCTP ||
1707                     (cmsg->cmsg_type != SCTP_DSTADDRV4 &&
1708                      cmsg->cmsg_type != SCTP_DSTADDRV6))
1709                         continue;
1710
1711                 daddr = &_daddr;
1712                 memset(daddr, 0, sizeof(*daddr));
1713                 dlen = cmsg->cmsg_len - sizeof(struct cmsghdr);
1714                 if (cmsg->cmsg_type == SCTP_DSTADDRV4) {
1715                         if (dlen < sizeof(struct in_addr)) {
1716                                 err = -EINVAL;
1717                                 goto free;
1718                         }
1719
1720                         dlen = sizeof(struct in_addr);
1721                         daddr->v4.sin_family = AF_INET;
1722                         daddr->v4.sin_port = htons(asoc->peer.port);
1723                         memcpy(&daddr->v4.sin_addr, CMSG_DATA(cmsg), dlen);
1724                 } else {
1725                         if (dlen < sizeof(struct in6_addr)) {
1726                                 err = -EINVAL;
1727                                 goto free;
1728                         }
1729
1730                         dlen = sizeof(struct in6_addr);
1731                         daddr->v6.sin6_flowinfo = flowinfo;
1732                         daddr->v6.sin6_family = AF_INET6;
1733                         daddr->v6.sin6_port = htons(asoc->peer.port);
1734                         memcpy(&daddr->v6.sin6_addr, CMSG_DATA(cmsg), dlen);
1735                 }
1736
1737                 err = sctp_connect_add_peer(asoc, daddr, sizeof(*daddr));
1738                 if (err)
1739                         goto free;
1740         }
1741
1742         return 0;
1743
1744 free:
1745         sctp_association_free(asoc);
1746         return err;
1747 }
1748
1749 static int sctp_sendmsg_check_sflags(struct sctp_association *asoc,
1750                                      __u16 sflags, struct msghdr *msg,
1751                                      size_t msg_len)
1752 {
1753         struct sock *sk = asoc->base.sk;
1754         struct net *net = sock_net(sk);
1755
1756         if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP))
1757                 return -EPIPE;
1758
1759         if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP) &&
1760             !sctp_state(asoc, ESTABLISHED))
1761                 return 0;
1762
1763         if (sflags & SCTP_EOF) {
1764                 pr_debug("%s: shutting down association:%p\n", __func__, asoc);
1765                 sctp_primitive_SHUTDOWN(net, asoc, NULL);
1766
1767                 return 0;
1768         }
1769
1770         if (sflags & SCTP_ABORT) {
1771                 struct sctp_chunk *chunk;
1772
1773                 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1774                 if (!chunk)
1775                         return -ENOMEM;
1776
1777                 pr_debug("%s: aborting association:%p\n", __func__, asoc);
1778                 sctp_primitive_ABORT(net, asoc, chunk);
1779                 iov_iter_revert(&msg->msg_iter, msg_len);
1780
1781                 return 0;
1782         }
1783
1784         return 1;
1785 }
1786
1787 static int sctp_sendmsg_to_asoc(struct sctp_association *asoc,
1788                                 struct msghdr *msg, size_t msg_len,
1789                                 struct sctp_transport *transport,
1790                                 struct sctp_sndrcvinfo *sinfo)
1791 {
1792         struct sock *sk = asoc->base.sk;
1793         struct sctp_sock *sp = sctp_sk(sk);
1794         struct net *net = sock_net(sk);
1795         struct sctp_datamsg *datamsg;
1796         bool wait_connect = false;
1797         struct sctp_chunk *chunk;
1798         long timeo;
1799         int err;
1800
1801         if (sinfo->sinfo_stream >= asoc->stream.outcnt) {
1802                 err = -EINVAL;
1803                 goto err;
1804         }
1805
1806         if (unlikely(!SCTP_SO(&asoc->stream, sinfo->sinfo_stream)->ext)) {
1807                 err = sctp_stream_init_ext(&asoc->stream, sinfo->sinfo_stream);
1808                 if (err)
1809                         goto err;
1810         }
1811
1812         if (sp->disable_fragments && msg_len > asoc->frag_point) {
1813                 err = -EMSGSIZE;
1814                 goto err;
1815         }
1816
1817         if (asoc->pmtu_pending) {
1818                 if (sp->param_flags & SPP_PMTUD_ENABLE)
1819                         sctp_assoc_sync_pmtu(asoc);
1820                 asoc->pmtu_pending = 0;
1821         }
1822
1823         if (sctp_wspace(asoc) < (int)msg_len)
1824                 sctp_prsctp_prune(asoc, sinfo, msg_len - sctp_wspace(asoc));
1825
1826         if (sk_under_memory_pressure(sk))
1827                 sk_mem_reclaim(sk);
1828
1829         if (sctp_wspace(asoc) <= 0 || !sk_wmem_schedule(sk, msg_len)) {
1830                 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1831                 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1832                 if (err)
1833                         goto err;
1834                 if (unlikely(sinfo->sinfo_stream >= asoc->stream.outcnt)) {
1835                         err = -EINVAL;
1836                         goto err;
1837                 }
1838         }
1839
1840         if (sctp_state(asoc, CLOSED)) {
1841                 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
1842                 if (err)
1843                         goto err;
1844
1845                 if (asoc->ep->intl_enable) {
1846                         timeo = sock_sndtimeo(sk, 0);
1847                         err = sctp_wait_for_connect(asoc, &timeo);
1848                         if (err) {
1849                                 err = -ESRCH;
1850                                 goto err;
1851                         }
1852                 } else {
1853                         wait_connect = true;
1854                 }
1855
1856                 pr_debug("%s: we associated primitively\n", __func__);
1857         }
1858
1859         datamsg = sctp_datamsg_from_user(asoc, sinfo, &msg->msg_iter);
1860         if (IS_ERR(datamsg)) {
1861                 err = PTR_ERR(datamsg);
1862                 goto err;
1863         }
1864
1865         asoc->force_delay = !!(msg->msg_flags & MSG_MORE);
1866
1867         list_for_each_entry(chunk, &datamsg->chunks, frag_list) {
1868                 sctp_chunk_hold(chunk);
1869                 sctp_set_owner_w(chunk);
1870                 chunk->transport = transport;
1871         }
1872
1873         err = sctp_primitive_SEND(net, asoc, datamsg);
1874         if (err) {
1875                 sctp_datamsg_free(datamsg);
1876                 goto err;
1877         }
1878
1879         pr_debug("%s: we sent primitively\n", __func__);
1880
1881         sctp_datamsg_put(datamsg);
1882
1883         if (unlikely(wait_connect)) {
1884                 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1885                 sctp_wait_for_connect(asoc, &timeo);
1886         }
1887
1888         err = msg_len;
1889
1890 err:
1891         return err;
1892 }
1893
1894 static union sctp_addr *sctp_sendmsg_get_daddr(struct sock *sk,
1895                                                const struct msghdr *msg,
1896                                                struct sctp_cmsgs *cmsgs)
1897 {
1898         union sctp_addr *daddr = NULL;
1899         int err;
1900
1901         if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
1902                 int len = msg->msg_namelen;
1903
1904                 if (len > sizeof(*daddr))
1905                         len = sizeof(*daddr);
1906
1907                 daddr = (union sctp_addr *)msg->msg_name;
1908
1909                 err = sctp_verify_addr(sk, daddr, len);
1910                 if (err)
1911                         return ERR_PTR(err);
1912         }
1913
1914         return daddr;
1915 }
1916
1917 static void sctp_sendmsg_update_sinfo(struct sctp_association *asoc,
1918                                       struct sctp_sndrcvinfo *sinfo,
1919                                       struct sctp_cmsgs *cmsgs)
1920 {
1921         if (!cmsgs->srinfo && !cmsgs->sinfo) {
1922                 sinfo->sinfo_stream = asoc->default_stream;
1923                 sinfo->sinfo_ppid = asoc->default_ppid;
1924                 sinfo->sinfo_context = asoc->default_context;
1925                 sinfo->sinfo_assoc_id = sctp_assoc2id(asoc);
1926
1927                 if (!cmsgs->prinfo)
1928                         sinfo->sinfo_flags = asoc->default_flags;
1929         }
1930
1931         if (!cmsgs->srinfo && !cmsgs->prinfo)
1932                 sinfo->sinfo_timetolive = asoc->default_timetolive;
1933
1934         if (cmsgs->authinfo) {
1935                 /* Reuse sinfo_tsn to indicate that authinfo was set and
1936                  * sinfo_ssn to save the keyid on tx path.
1937                  */
1938                 sinfo->sinfo_tsn = 1;
1939                 sinfo->sinfo_ssn = cmsgs->authinfo->auth_keynumber;
1940         }
1941 }
1942
1943 static int sctp_sendmsg(struct sock *sk, struct msghdr *msg, size_t msg_len)
1944 {
1945         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
1946         struct sctp_transport *transport = NULL;
1947         struct sctp_sndrcvinfo _sinfo, *sinfo;
1948         struct sctp_association *asoc, *tmp;
1949         struct sctp_cmsgs cmsgs;
1950         union sctp_addr *daddr;
1951         bool new = false;
1952         __u16 sflags;
1953         int err;
1954
1955         /* Parse and get snd_info */
1956         err = sctp_sendmsg_parse(sk, &cmsgs, &_sinfo, msg, msg_len);
1957         if (err)
1958                 goto out;
1959
1960         sinfo  = &_sinfo;
1961         sflags = sinfo->sinfo_flags;
1962
1963         /* Get daddr from msg */
1964         daddr = sctp_sendmsg_get_daddr(sk, msg, &cmsgs);
1965         if (IS_ERR(daddr)) {
1966                 err = PTR_ERR(daddr);
1967                 goto out;
1968         }
1969
1970         lock_sock(sk);
1971
1972         /* SCTP_SENDALL process */
1973         if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP)) {
1974                 list_for_each_entry_safe(asoc, tmp, &ep->asocs, asocs) {
1975                         err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
1976                                                         msg_len);
1977                         if (err == 0)
1978                                 continue;
1979                         if (err < 0)
1980                                 goto out_unlock;
1981
1982                         sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
1983
1984                         err = sctp_sendmsg_to_asoc(asoc, msg, msg_len,
1985                                                    NULL, sinfo);
1986                         if (err < 0)
1987                                 goto out_unlock;
1988
1989                         iov_iter_revert(&msg->msg_iter, err);
1990                 }
1991
1992                 goto out_unlock;
1993         }
1994
1995         /* Get and check or create asoc */
1996         if (daddr) {
1997                 asoc = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
1998                 if (asoc) {
1999                         err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
2000                                                         msg_len);
2001                         if (err <= 0)
2002                                 goto out_unlock;
2003                 } else {
2004                         err = sctp_sendmsg_new_asoc(sk, sflags, &cmsgs, daddr,
2005                                                     &transport);
2006                         if (err)
2007                                 goto out_unlock;
2008
2009                         asoc = transport->asoc;
2010                         new = true;
2011                 }
2012
2013                 if (!sctp_style(sk, TCP) && !(sflags & SCTP_ADDR_OVER))
2014                         transport = NULL;
2015         } else {
2016                 asoc = sctp_id2assoc(sk, sinfo->sinfo_assoc_id);
2017                 if (!asoc) {
2018                         err = -EPIPE;
2019                         goto out_unlock;
2020                 }
2021
2022                 err = sctp_sendmsg_check_sflags(asoc, sflags, msg, msg_len);
2023                 if (err <= 0)
2024                         goto out_unlock;
2025         }
2026
2027         /* Update snd_info with the asoc */
2028         sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
2029
2030         /* Send msg to the asoc */
2031         err = sctp_sendmsg_to_asoc(asoc, msg, msg_len, transport, sinfo);
2032         if (err < 0 && err != -ESRCH && new)
2033                 sctp_association_free(asoc);
2034
2035 out_unlock:
2036         release_sock(sk);
2037 out:
2038         return sctp_error(sk, msg->msg_flags, err);
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  */
2048 static 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
2061         skb_walk_frags(skb, list) {
2062                 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  */
2090 static int sctp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
2091                         int noblock, int flags, int *addr_len)
2092 {
2093         struct sctp_ulpevent *event = NULL;
2094         struct sctp_sock *sp = sctp_sk(sk);
2095         struct sk_buff *skb, *head_skb;
2096         int copied;
2097         int err = 0;
2098         int skb_len;
2099
2100         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);
2103
2104         lock_sock(sk);
2105
2106         if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED) &&
2107             !sctp_sstate(sk, CLOSING) && !sctp_sstate(sk, CLOSED)) {
2108                 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
2125         err = skb_copy_datagram_msg(skb, 0, msg, copied);
2126
2127         event = sctp_skb2event(skb);
2128
2129         if (err)
2130                 goto out_free;
2131
2132         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);
2137         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 {
2141                 sp->pf->skb_msgname(head_skb, msg->msg_name, addr_len);
2142         }
2143
2144         /* Check if we allow SCTP_NXTINFO. */
2145         if (sp->recvnxtinfo)
2146                 sctp_ulpevent_read_nxtinfo(event, msg, sk);
2147         /* Check if we allow SCTP_RCVINFO. */
2148         if (sp->recvrcvinfo)
2149                 sctp_ulpevent_read_rcvinfo(event, msg);
2150         /* Check if we allow SCTP_SNDRCVINFO. */
2151         if (sctp_ulpevent_type_enabled(sp->subscribe, SCTP_DATA_IO_EVENT))
2152                 sctp_ulpevent_read_sndrcvinfo(event, msg);
2153
2154         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
2167                 /* 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);
2173                 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
2180 out_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         }
2193 out:
2194         release_sock(sk);
2195         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  */
2205 static int sctp_setsockopt_disable_fragments(struct sock *sk, int *val,
2206                                              unsigned int optlen)
2207 {
2208         if (optlen < sizeof(int))
2209                 return -EINVAL;
2210         sctp_sk(sk)->disable_fragments = (*val == 0) ? 0 : 1;
2211         return 0;
2212 }
2213
2214 static int sctp_setsockopt_events(struct sock *sk, __u8 *sn_type,
2215                                   unsigned int optlen)
2216 {
2217         struct sctp_sock *sp = sctp_sk(sk);
2218         struct sctp_association *asoc;
2219         int i;
2220
2221         if (optlen > sizeof(struct sctp_event_subscribe))
2222                 return -EINVAL;
2223
2224         for (i = 0; i < optlen; i++)
2225                 sctp_ulpevent_type_set(&sp->subscribe, SCTP_SN_TYPE_BASE + i,
2226                                        sn_type[i]);
2227
2228         list_for_each_entry(asoc, &sp->ep->asocs, asocs)
2229                 asoc->subscribe = sctp_sk(sk)->subscribe;
2230
2231         /* At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT,
2232          * if there is no data to be sent or retransmit, the stack will
2233          * immediately send up this notification.
2234          */
2235         if (sctp_ulpevent_type_enabled(sp->subscribe, SCTP_SENDER_DRY_EVENT)) {
2236                 struct sctp_ulpevent *event;
2237
2238                 asoc = sctp_id2assoc(sk, 0);
2239                 if (asoc && sctp_outq_is_empty(&asoc->outqueue)) {
2240                         event = sctp_ulpevent_make_sender_dry_event(asoc,
2241                                         GFP_USER | __GFP_NOWARN);
2242                         if (!event)
2243                                 return -ENOMEM;
2244
2245                         asoc->stream.si->enqueue_event(&asoc->ulpq, event);
2246                 }
2247         }
2248
2249         return 0;
2250 }
2251
2252 /* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
2253  *
2254  * This socket option is applicable to the UDP-style socket only.  When
2255  * set it will cause associations that are idle for more than the
2256  * specified number of seconds to automatically close.  An association
2257  * being idle is defined an association that has NOT sent or received
2258  * user data.  The special value of '0' indicates that no automatic
2259  * close of any associations should be performed.  The option expects an
2260  * integer defining the number of seconds of idle time before an
2261  * association is closed.
2262  */
2263 static int sctp_setsockopt_autoclose(struct sock *sk, u32 *optval,
2264                                      unsigned int optlen)
2265 {
2266         struct sctp_sock *sp = sctp_sk(sk);
2267         struct net *net = sock_net(sk);
2268
2269         /* Applicable to UDP-style socket only */
2270         if (sctp_style(sk, TCP))
2271                 return -EOPNOTSUPP;
2272         if (optlen != sizeof(int))
2273                 return -EINVAL;
2274
2275         sp->autoclose = *optval;
2276         if (sp->autoclose > net->sctp.max_autoclose)
2277                 sp->autoclose = net->sctp.max_autoclose;
2278
2279         return 0;
2280 }
2281
2282 /* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
2283  *
2284  * Applications can enable or disable heartbeats for any peer address of
2285  * an association, modify an address's heartbeat interval, force a
2286  * heartbeat to be sent immediately, and adjust the address's maximum
2287  * number of retransmissions sent before an address is considered
2288  * unreachable.  The following structure is used to access and modify an
2289  * address's parameters:
2290  *
2291  *  struct sctp_paddrparams {
2292  *     sctp_assoc_t            spp_assoc_id;
2293  *     struct sockaddr_storage spp_address;
2294  *     uint32_t                spp_hbinterval;
2295  *     uint16_t                spp_pathmaxrxt;
2296  *     uint32_t                spp_pathmtu;
2297  *     uint32_t                spp_sackdelay;
2298  *     uint32_t                spp_flags;
2299  *     uint32_t                spp_ipv6_flowlabel;
2300  *     uint8_t                 spp_dscp;
2301  * };
2302  *
2303  *   spp_assoc_id    - (one-to-many style socket) This is filled in the
2304  *                     application, and identifies the association for
2305  *                     this query.
2306  *   spp_address     - This specifies which address is of interest.
2307  *   spp_hbinterval  - This contains the value of the heartbeat interval,
2308  *                     in milliseconds.  If a  value of zero
2309  *                     is present in this field then no changes are to
2310  *                     be made to this parameter.
2311  *   spp_pathmaxrxt  - This contains the maximum number of
2312  *                     retransmissions before this address shall be
2313  *                     considered unreachable. If a  value of zero
2314  *                     is present in this field then no changes are to
2315  *                     be made to this parameter.
2316  *   spp_pathmtu     - When Path MTU discovery is disabled the value
2317  *                     specified here will be the "fixed" path mtu.
2318  *                     Note that if the spp_address field is empty
2319  *                     then all associations on this address will
2320  *                     have this fixed path mtu set upon them.
2321  *
2322  *   spp_sackdelay   - When delayed sack is enabled, this value specifies
2323  *                     the number of milliseconds that sacks will be delayed
2324  *                     for. This value will apply to all addresses of an
2325  *                     association if the spp_address field is empty. Note
2326  *                     also, that if delayed sack is enabled and this
2327  *                     value is set to 0, no change is made to the last
2328  *                     recorded delayed sack timer value.
2329  *
2330  *   spp_flags       - These flags are used to control various features
2331  *                     on an association. The flag field may contain
2332  *                     zero or more of the following options.
2333  *
2334  *                     SPP_HB_ENABLE  - Enable heartbeats on the
2335  *                     specified address. Note that if the address
2336  *                     field is empty all addresses for the association
2337  *                     have heartbeats enabled upon them.
2338  *
2339  *                     SPP_HB_DISABLE - Disable heartbeats on the
2340  *                     speicifed address. Note that if the address
2341  *                     field is empty all addresses for the association
2342  *                     will have their heartbeats disabled. Note also
2343  *                     that SPP_HB_ENABLE and SPP_HB_DISABLE are
2344  *                     mutually exclusive, only one of these two should
2345  *                     be specified. Enabling both fields will have
2346  *                     undetermined results.
2347  *
2348  *                     SPP_HB_DEMAND - Request a user initiated heartbeat
2349  *                     to be made immediately.
2350  *
2351  *                     SPP_HB_TIME_IS_ZERO - Specify's that the time for
2352  *                     heartbeat delayis to be set to the value of 0
2353  *                     milliseconds.
2354  *
2355  *                     SPP_PMTUD_ENABLE - This field will enable PMTU
2356  *                     discovery upon the specified address. Note that
2357  *                     if the address feild is empty then all addresses
2358  *                     on the association are effected.
2359  *
2360  *                     SPP_PMTUD_DISABLE - This field will disable PMTU
2361  *                     discovery upon the specified address. Note that
2362  *                     if the address feild is empty then all addresses
2363  *                     on the association are effected. Not also that
2364  *                     SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2365  *                     exclusive. Enabling both will have undetermined
2366  *                     results.
2367  *
2368  *                     SPP_SACKDELAY_ENABLE - Setting this flag turns
2369  *                     on delayed sack. The time specified in spp_sackdelay
2370  *                     is used to specify the sack delay for this address. Note
2371  *                     that if spp_address is empty then all addresses will
2372  *                     enable delayed sack and take on the sack delay
2373  *                     value specified in spp_sackdelay.
2374  *                     SPP_SACKDELAY_DISABLE - Setting this flag turns
2375  *                     off delayed sack. If the spp_address field is blank then
2376  *                     delayed sack is disabled for the entire association. Note
2377  *                     also that this field is mutually exclusive to
2378  *                     SPP_SACKDELAY_ENABLE, setting both will have undefined
2379  *                     results.
2380  *
2381  *                     SPP_IPV6_FLOWLABEL:  Setting this flag enables the
2382  *                     setting of the IPV6 flow label value.  The value is
2383  *                     contained in the spp_ipv6_flowlabel field.
2384  *                     Upon retrieval, this flag will be set to indicate that
2385  *                     the spp_ipv6_flowlabel field has a valid value returned.
2386  *                     If a specific destination address is set (in the
2387  *                     spp_address field), then the value returned is that of
2388  *                     the address.  If just an association is specified (and
2389  *                     no address), then the association's default flow label
2390  *                     is returned.  If neither an association nor a destination
2391  *                     is specified, then the socket's default flow label is
2392  *                     returned.  For non-IPv6 sockets, this flag will be left
2393  *                     cleared.
2394  *
2395  *                     SPP_DSCP:  Setting this flag enables the setting of the
2396  *                     Differentiated Services Code Point (DSCP) value
2397  *                     associated with either the association or a specific
2398  *                     address.  The value is obtained in the spp_dscp field.
2399  *                     Upon retrieval, this flag will be set to indicate that
2400  *                     the spp_dscp field has a valid value returned.  If a
2401  *                     specific destination address is set when called (in the
2402  *                     spp_address field), then that specific destination
2403  *                     address's DSCP value is returned.  If just an association
2404  *                     is specified, then the association's default DSCP is
2405  *                     returned.  If neither an association nor a destination is
2406  *                     specified, then the socket's default DSCP is returned.
2407  *
2408  *   spp_ipv6_flowlabel
2409  *                   - This field is used in conjunction with the
2410  *                     SPP_IPV6_FLOWLABEL flag and contains the IPv6 flow label.
2411  *                     The 20 least significant bits are used for the flow
2412  *                     label.  This setting has precedence over any IPv6-layer
2413  *                     setting.
2414  *
2415  *   spp_dscp        - This field is used in conjunction with the SPP_DSCP flag
2416  *                     and contains the DSCP.  The 6 most significant bits are
2417  *                     used for the DSCP.  This setting has precedence over any
2418  *                     IPv4- or IPv6- layer setting.
2419  */
2420 static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2421                                        struct sctp_transport   *trans,
2422                                        struct sctp_association *asoc,
2423                                        struct sctp_sock        *sp,
2424                                        int                      hb_change,
2425                                        int                      pmtud_change,
2426                                        int                      sackdelay_change)
2427 {
2428         int error;
2429
2430         if (params->spp_flags & SPP_HB_DEMAND && trans) {
2431                 error = sctp_primitive_REQUESTHEARTBEAT(trans->asoc->base.net,
2432                                                         trans->asoc, trans);
2433                 if (error)
2434                         return error;
2435         }
2436
2437         /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2438          * this field is ignored.  Note also that a value of zero indicates
2439          * the current setting should be left unchanged.
2440          */
2441         if (params->spp_flags & SPP_HB_ENABLE) {
2442
2443                 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2444                  * set.  This lets us use 0 value when this flag
2445                  * is set.
2446                  */
2447                 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2448                         params->spp_hbinterval = 0;
2449
2450                 if (params->spp_hbinterval ||
2451                     (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2452                         if (trans) {
2453                                 trans->hbinterval =
2454                                     msecs_to_jiffies(params->spp_hbinterval);
2455                                 sctp_transport_reset_hb_timer(trans);
2456                         } else if (asoc) {
2457                                 asoc->hbinterval =
2458                                     msecs_to_jiffies(params->spp_hbinterval);
2459                         } else {
2460                                 sp->hbinterval = params->spp_hbinterval;
2461                         }
2462                 }
2463         }
2464
2465         if (hb_change) {
2466                 if (trans) {
2467                         trans->param_flags =
2468                                 (trans->param_flags & ~SPP_HB) | hb_change;
2469                 } else if (asoc) {
2470                         asoc->param_flags =
2471                                 (asoc->param_flags & ~SPP_HB) | hb_change;
2472                 } else {
2473                         sp->param_flags =
2474                                 (sp->param_flags & ~SPP_HB) | hb_change;
2475                 }
2476         }
2477
2478         /* When Path MTU discovery is disabled the value specified here will
2479          * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2480          * include the flag SPP_PMTUD_DISABLE for this field to have any
2481          * effect).
2482          */
2483         if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
2484                 if (trans) {
2485                         trans->pathmtu = params->spp_pathmtu;
2486                         sctp_assoc_sync_pmtu(asoc);
2487                 } else if (asoc) {
2488                         sctp_assoc_set_pmtu(asoc, params->spp_pathmtu);
2489                 } else {
2490                         sp->pathmtu = params->spp_pathmtu;
2491                 }
2492         }
2493
2494         if (pmtud_change) {
2495                 if (trans) {
2496                         int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2497                                 (params->spp_flags & SPP_PMTUD_ENABLE);
2498                         trans->param_flags =
2499                                 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2500                         if (update) {
2501                                 sctp_transport_pmtu(trans, sctp_opt2sk(sp));
2502                                 sctp_assoc_sync_pmtu(asoc);
2503                         }
2504                         sctp_transport_pl_reset(trans);
2505                 } else if (asoc) {
2506                         asoc->param_flags =
2507                                 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2508                 } else {
2509                         sp->param_flags =
2510                                 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2511                 }
2512         }
2513
2514         /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2515          * value of this field is ignored.  Note also that a value of zero
2516          * indicates the current setting should be left unchanged.
2517          */
2518         if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
2519                 if (trans) {
2520                         trans->sackdelay =
2521                                 msecs_to_jiffies(params->spp_sackdelay);
2522                 } else if (asoc) {
2523                         asoc->sackdelay =
2524                                 msecs_to_jiffies(params->spp_sackdelay);
2525                 } else {
2526                         sp->sackdelay = params->spp_sackdelay;
2527                 }
2528         }
2529
2530         if (sackdelay_change) {
2531                 if (trans) {
2532                         trans->param_flags =
2533                                 (trans->param_flags & ~SPP_SACKDELAY) |
2534                                 sackdelay_change;
2535                 } else if (asoc) {
2536                         asoc->param_flags =
2537                                 (asoc->param_flags & ~SPP_SACKDELAY) |
2538                                 sackdelay_change;
2539                 } else {
2540                         sp->param_flags =
2541                                 (sp->param_flags & ~SPP_SACKDELAY) |
2542                                 sackdelay_change;
2543                 }
2544         }
2545
2546         /* Note that a value of zero indicates the current setting should be
2547            left unchanged.
2548          */
2549         if (params->spp_pathmaxrxt) {
2550                 if (trans) {
2551                         trans->pathmaxrxt = params->spp_pathmaxrxt;
2552                 } else if (asoc) {
2553                         asoc->pathmaxrxt = params->spp_pathmaxrxt;
2554                 } else {
2555                         sp->pathmaxrxt = params->spp_pathmaxrxt;
2556                 }
2557         }
2558
2559         if (params->spp_flags & SPP_IPV6_FLOWLABEL) {
2560                 if (trans) {
2561                         if (trans->ipaddr.sa.sa_family == AF_INET6) {
2562                                 trans->flowlabel = params->spp_ipv6_flowlabel &
2563                                                    SCTP_FLOWLABEL_VAL_MASK;
2564                                 trans->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2565                         }
2566                 } else if (asoc) {
2567                         struct sctp_transport *t;
2568
2569                         list_for_each_entry(t, &asoc->peer.transport_addr_list,
2570                                             transports) {
2571                                 if (t->ipaddr.sa.sa_family != AF_INET6)
2572                                         continue;
2573                                 t->flowlabel = params->spp_ipv6_flowlabel &
2574                                                SCTP_FLOWLABEL_VAL_MASK;
2575                                 t->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2576                         }
2577                         asoc->flowlabel = params->spp_ipv6_flowlabel &
2578                                           SCTP_FLOWLABEL_VAL_MASK;
2579                         asoc->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2580                 } else if (sctp_opt2sk(sp)->sk_family == AF_INET6) {
2581                         sp->flowlabel = params->spp_ipv6_flowlabel &
2582                                         SCTP_FLOWLABEL_VAL_MASK;
2583                         sp->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2584                 }
2585         }
2586
2587         if (params->spp_flags & SPP_DSCP) {
2588                 if (trans) {
2589                         trans->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2590                         trans->dscp |= SCTP_DSCP_SET_MASK;
2591                 } else if (asoc) {
2592                         struct sctp_transport *t;
2593
2594                         list_for_each_entry(t, &asoc->peer.transport_addr_list,
2595                                             transports) {
2596                                 t->dscp = params->spp_dscp &
2597                                           SCTP_DSCP_VAL_MASK;
2598                                 t->dscp |= SCTP_DSCP_SET_MASK;
2599                         }
2600                         asoc->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2601                         asoc->dscp |= SCTP_DSCP_SET_MASK;
2602                 } else {
2603                         sp->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2604                         sp->dscp |= SCTP_DSCP_SET_MASK;
2605                 }
2606         }
2607
2608         return 0;
2609 }
2610
2611 static int sctp_setsockopt_peer_addr_params(struct sock *sk,
2612                                             struct sctp_paddrparams *params,
2613                                             unsigned int optlen)
2614 {
2615         struct sctp_transport   *trans = NULL;
2616         struct sctp_association *asoc = NULL;
2617         struct sctp_sock        *sp = sctp_sk(sk);
2618         int error;
2619         int hb_change, pmtud_change, sackdelay_change;
2620
2621         if (optlen == ALIGN(offsetof(struct sctp_paddrparams,
2622                                             spp_ipv6_flowlabel), 4)) {
2623                 if (params->spp_flags & (SPP_DSCP | SPP_IPV6_FLOWLABEL))
2624                         return -EINVAL;
2625         } else if (optlen != sizeof(*params)) {
2626                 return -EINVAL;
2627         }
2628
2629         /* Validate flags and value parameters. */
2630         hb_change        = params->spp_flags & SPP_HB;
2631         pmtud_change     = params->spp_flags & SPP_PMTUD;
2632         sackdelay_change = params->spp_flags & SPP_SACKDELAY;
2633
2634         if (hb_change        == SPP_HB ||
2635             pmtud_change     == SPP_PMTUD ||
2636             sackdelay_change == SPP_SACKDELAY ||
2637             params->spp_sackdelay > 500 ||
2638             (params->spp_pathmtu &&
2639              params->spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
2640                 return -EINVAL;
2641
2642         /* If an address other than INADDR_ANY is specified, and
2643          * no transport is found, then the request is invalid.
2644          */
2645         if (!sctp_is_any(sk, (union sctp_addr *)&params->spp_address)) {
2646                 trans = sctp_addr_id2transport(sk, &params->spp_address,
2647                                                params->spp_assoc_id);
2648                 if (!trans)
2649                         return -EINVAL;
2650         }
2651
2652         /* Get association, if assoc_id != SCTP_FUTURE_ASSOC and the
2653          * socket is a one to many style socket, and an association
2654          * was not found, then the id was invalid.
2655          */
2656         asoc = sctp_id2assoc(sk, params->spp_assoc_id);
2657         if (!asoc && params->spp_assoc_id != SCTP_FUTURE_ASSOC &&
2658             sctp_style(sk, UDP))
2659                 return -EINVAL;
2660
2661         /* Heartbeat demand can only be sent on a transport or
2662          * association, but not a socket.
2663          */
2664         if (params->spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2665                 return -EINVAL;
2666
2667         /* Process parameters. */
2668         error = sctp_apply_peer_addr_params(params, trans, asoc, sp,
2669                                             hb_change, pmtud_change,
2670                                             sackdelay_change);
2671
2672         if (error)
2673                 return error;
2674
2675         /* If changes are for association, also apply parameters to each
2676          * transport.
2677          */
2678         if (!trans && asoc) {
2679                 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2680                                 transports) {
2681                         sctp_apply_peer_addr_params(params, trans, asoc, sp,
2682                                                     hb_change, pmtud_change,
2683                                                     sackdelay_change);
2684                 }
2685         }
2686
2687         return 0;
2688 }
2689
2690 static inline __u32 sctp_spp_sackdelay_enable(__u32 param_flags)
2691 {
2692         return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_ENABLE;
2693 }
2694
2695 static inline __u32 sctp_spp_sackdelay_disable(__u32 param_flags)
2696 {
2697         return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_DISABLE;
2698 }
2699
2700 static void sctp_apply_asoc_delayed_ack(struct sctp_sack_info *params,
2701                                         struct sctp_association *asoc)
2702 {
2703         struct sctp_transport *trans;
2704
2705         if (params->sack_delay) {
2706                 asoc->sackdelay = msecs_to_jiffies(params->sack_delay);
2707                 asoc->param_flags =
2708                         sctp_spp_sackdelay_enable(asoc->param_flags);
2709         }
2710         if (params->sack_freq == 1) {
2711                 asoc->param_flags =
2712                         sctp_spp_sackdelay_disable(asoc->param_flags);
2713         } else if (params->sack_freq > 1) {
2714                 asoc->sackfreq = params->sack_freq;
2715                 asoc->param_flags =
2716                         sctp_spp_sackdelay_enable(asoc->param_flags);
2717         }
2718
2719         list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2720                             transports) {
2721                 if (params->sack_delay) {
2722                         trans->sackdelay = msecs_to_jiffies(params->sack_delay);
2723                         trans->param_flags =
2724                                 sctp_spp_sackdelay_enable(trans->param_flags);
2725                 }
2726                 if (params->sack_freq == 1) {
2727                         trans->param_flags =
2728                                 sctp_spp_sackdelay_disable(trans->param_flags);
2729                 } else if (params->sack_freq > 1) {
2730                         trans->sackfreq = params->sack_freq;
2731                         trans->param_flags =
2732                                 sctp_spp_sackdelay_enable(trans->param_flags);
2733                 }
2734         }
2735 }
2736
2737 /*
2738  * 7.1.23.  Get or set delayed ack timer (SCTP_DELAYED_SACK)
2739  *
2740  * This option will effect the way delayed acks are performed.  This
2741  * option allows you to get or set the delayed ack time, in
2742  * milliseconds.  It also allows changing the delayed ack frequency.
2743  * Changing the frequency to 1 disables the delayed sack algorithm.  If
2744  * the assoc_id is 0, then this sets or gets the endpoints default
2745  * values.  If the assoc_id field is non-zero, then the set or get
2746  * effects the specified association for the one to many model (the
2747  * assoc_id field is ignored by the one to one model).  Note that if
2748  * sack_delay or sack_freq are 0 when setting this option, then the
2749  * current values will remain unchanged.
2750  *
2751  * struct sctp_sack_info {
2752  *     sctp_assoc_t            sack_assoc_id;
2753  *     uint32_t                sack_delay;
2754  *     uint32_t                sack_freq;
2755  * };
2756  *
2757  * sack_assoc_id -  This parameter, indicates which association the user
2758  *    is performing an action upon.  Note that if this field's value is
2759  *    zero then the endpoints default value is changed (effecting future
2760  *    associations only).
2761  *
2762  * sack_delay -  This parameter contains the number of milliseconds that
2763  *    the user is requesting the delayed ACK timer be set to.  Note that
2764  *    this value is defined in the standard to be between 200 and 500
2765  *    milliseconds.
2766  *
2767  * sack_freq -  This parameter contains the number of packets that must
2768  *    be received before a sack is sent without waiting for the delay
2769  *    timer to expire.  The default value for this is 2, setting this
2770  *    value to 1 will disable the delayed sack algorithm.
2771  */
2772 static int __sctp_setsockopt_delayed_ack(struct sock *sk,
2773                                          struct sctp_sack_info *params)
2774 {
2775         struct sctp_sock *sp = sctp_sk(sk);
2776         struct sctp_association *asoc;
2777
2778         /* Validate value parameter. */
2779         if (params->sack_delay > 500)
2780                 return -EINVAL;
2781
2782         /* Get association, if sack_assoc_id != SCTP_FUTURE_ASSOC and the
2783          * socket is a one to many style socket, and an association
2784          * was not found, then the id was invalid.
2785          */
2786         asoc = sctp_id2assoc(sk, params->sack_assoc_id);
2787         if (!asoc && params->sack_assoc_id > SCTP_ALL_ASSOC &&
2788             sctp_style(sk, UDP))
2789                 return -EINVAL;
2790
2791         if (asoc) {
2792                 sctp_apply_asoc_delayed_ack(params, asoc);
2793
2794                 return 0;
2795         }
2796
2797         if (sctp_style(sk, TCP))
2798                 params->sack_assoc_id = SCTP_FUTURE_ASSOC;
2799
2800         if (params->sack_assoc_id == SCTP_FUTURE_ASSOC ||
2801             params->sack_assoc_id == SCTP_ALL_ASSOC) {
2802                 if (params->sack_delay) {
2803                         sp->sackdelay = params->sack_delay;
2804                         sp->param_flags =
2805                                 sctp_spp_sackdelay_enable(sp->param_flags);
2806                 }
2807                 if (params->sack_freq == 1) {
2808                         sp->param_flags =
2809                                 sctp_spp_sackdelay_disable(sp->param_flags);
2810                 } else if (params->sack_freq > 1) {
2811                         sp->sackfreq = params->sack_freq;
2812                         sp->param_flags =
2813                                 sctp_spp_sackdelay_enable(sp->param_flags);
2814                 }
2815         }
2816
2817         if (params->sack_assoc_id == SCTP_CURRENT_ASSOC ||
2818             params->sack_assoc_id == SCTP_ALL_ASSOC)
2819                 list_for_each_entry(asoc, &sp->ep->asocs, asocs)
2820                         sctp_apply_asoc_delayed_ack(params, asoc);
2821
2822         return 0;
2823 }
2824
2825 static int sctp_setsockopt_delayed_ack(struct sock *sk,
2826                                        struct sctp_sack_info *params,
2827                                        unsigned int optlen)
2828 {
2829         if (optlen == sizeof(struct sctp_assoc_value)) {
2830                 struct sctp_assoc_value *v = (struct sctp_assoc_value *)params;
2831                 struct sctp_sack_info p;
2832
2833                 pr_warn_ratelimited(DEPRECATED
2834                                     "%s (pid %d) "
2835                                     "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
2836                                     "Use struct sctp_sack_info instead\n",
2837                                     current->comm, task_pid_nr(current));
2838
2839                 p.sack_assoc_id = v->assoc_id;
2840                 p.sack_delay = v->assoc_value;
2841                 p.sack_freq = v->assoc_value ? 0 : 1;
2842                 return __sctp_setsockopt_delayed_ack(sk, &p);
2843         }
2844
2845         if (optlen != sizeof(struct sctp_sack_info))
2846                 return -EINVAL;
2847         if (params->sack_delay == 0 && params->sack_freq == 0)
2848                 return 0;
2849         return __sctp_setsockopt_delayed_ack(sk, params);
2850 }
2851
2852 /* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2853  *
2854  * Applications can specify protocol parameters for the default association
2855  * initialization.  The option name argument to setsockopt() and getsockopt()
2856  * is SCTP_INITMSG.
2857  *
2858  * Setting initialization parameters is effective only on an unconnected
2859  * socket (for UDP-style sockets only future associations are effected
2860  * by the change).  With TCP-style sockets, this option is inherited by
2861  * sockets derived from a listener socket.
2862  */
2863 static int sctp_setsockopt_initmsg(struct sock *sk, struct sctp_initmsg *sinit,
2864                                    unsigned int optlen)
2865 {
2866         struct sctp_sock *sp = sctp_sk(sk);
2867
2868         if (optlen != sizeof(struct sctp_initmsg))
2869                 return -EINVAL;
2870
2871         if (sinit->sinit_num_ostreams)
2872                 sp->initmsg.sinit_num_ostreams = sinit->sinit_num_ostreams;
2873         if (sinit->sinit_max_instreams)
2874                 sp->initmsg.sinit_max_instreams = sinit->sinit_max_instreams;
2875         if (sinit->sinit_max_attempts)
2876                 sp->initmsg.sinit_max_attempts = sinit->sinit_max_attempts;
2877         if (sinit->sinit_max_init_timeo)
2878                 sp->initmsg.sinit_max_init_timeo = sinit->sinit_max_init_timeo;
2879
2880         return 0;
2881 }
2882
2883 /*
2884  * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2885  *
2886  *   Applications that wish to use the sendto() system call may wish to
2887  *   specify a default set of parameters that would normally be supplied
2888  *   through the inclusion of ancillary data.  This socket option allows
2889  *   such an application to set the default sctp_sndrcvinfo structure.
2890  *   The application that wishes to use this socket option simply passes
2891  *   in to this call the sctp_sndrcvinfo structure defined in Section
2892  *   5.2.2) The input parameters accepted by this call include
2893  *   sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2894  *   sinfo_timetolive.  The user must provide the sinfo_assoc_id field in
2895  *   to this call if the caller is using the UDP model.
2896  */
2897 static int sctp_setsockopt_default_send_param(struct sock *sk,
2898                                               struct sctp_sndrcvinfo *info,
2899                                               unsigned int optlen)
2900 {
2901         struct sctp_sock *sp = sctp_sk(sk);
2902         struct sctp_association *asoc;
2903
2904         if (optlen != sizeof(*info))
2905                 return -EINVAL;
2906         if (info->sinfo_flags &
2907             ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2908               SCTP_ABORT | SCTP_EOF))
2909                 return -EINVAL;
2910
2911         asoc = sctp_id2assoc(sk, info->sinfo_assoc_id);
2912         if (!asoc && info->sinfo_assoc_id > SCTP_ALL_ASSOC &&
2913             sctp_style(sk, UDP))
2914                 return -EINVAL;
2915
2916         if (asoc) {
2917                 asoc->default_stream = info->sinfo_stream;
2918                 asoc->default_flags = info->sinfo_flags;
2919                 asoc->default_ppid = info->sinfo_ppid;
2920                 asoc->default_context = info->sinfo_context;
2921                 asoc->default_timetolive = info->sinfo_timetolive;
2922
2923                 return 0;
2924         }
2925
2926         if (sctp_style(sk, TCP))
2927                 info->sinfo_assoc_id = SCTP_FUTURE_ASSOC;
2928
2929         if (info->sinfo_assoc_id == SCTP_FUTURE_ASSOC ||
2930             info->sinfo_assoc_id == SCTP_ALL_ASSOC) {
2931                 sp->default_stream = info->sinfo_stream;
2932                 sp->default_flags = info->sinfo_flags;
2933                 sp->default_ppid = info->sinfo_ppid;
2934                 sp->default_context = info->sinfo_context;
2935                 sp->default_timetolive = info->sinfo_timetolive;
2936         }
2937
2938         if (info->sinfo_assoc_id == SCTP_CURRENT_ASSOC ||
2939             info->sinfo_assoc_id == SCTP_ALL_ASSOC) {
2940                 list_for_each_entry(asoc, &sp->ep->asocs, asocs) {
2941                         asoc->default_stream = info->sinfo_stream;
2942                         asoc->default_flags = info->sinfo_flags;
2943                         asoc->default_ppid = info->sinfo_ppid;
2944                         asoc->default_context = info->sinfo_context;
2945                         asoc->default_timetolive = info->sinfo_timetolive;
2946                 }
2947         }
2948
2949         return 0;
2950 }
2951
2952 /* RFC6458, Section 8.1.31. Set/get Default Send Parameters
2953  * (SCTP_DEFAULT_SNDINFO)
2954  */
2955 static int sctp_setsockopt_default_sndinfo(struct sock *sk,
2956                                            struct sctp_sndinfo *info,
2957                                            unsigned int optlen)
2958 {
2959         struct sctp_sock *sp = sctp_sk(sk);
2960         struct sctp_association *asoc;
2961
2962         if (optlen != sizeof(*info))
2963                 return -EINVAL;
2964         if (info->snd_flags &
2965             ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2966               SCTP_ABORT | SCTP_EOF))
2967                 return -EINVAL;
2968
2969         asoc = sctp_id2assoc(sk, info->snd_assoc_id);
2970         if (!asoc && info->snd_assoc_id > SCTP_ALL_ASSOC &&
2971             sctp_style(sk, UDP))
2972                 return -EINVAL;
2973
2974         if (asoc) {
2975                 asoc->default_stream = info->snd_sid;
2976                 asoc->default_flags = info->snd_flags;
2977                 asoc->default_ppid = info->snd_ppid;
2978                 asoc->default_context = info->snd_context;
2979
2980                 return 0;
2981         }
2982
2983         if (sctp_style(sk, TCP))
2984                 info->snd_assoc_id = SCTP_FUTURE_ASSOC;
2985
2986         if (info->snd_assoc_id == SCTP_FUTURE_ASSOC ||
2987             info->snd_assoc_id == SCTP_ALL_ASSOC) {
2988                 sp->default_stream = info->snd_sid;
2989                 sp->default_flags = info->snd_flags;
2990                 sp->default_ppid = info->snd_ppid;
2991                 sp->default_context = info->snd_context;
2992         }
2993
2994         if (info->snd_assoc_id == SCTP_CURRENT_ASSOC ||
2995             info->snd_assoc_id == SCTP_ALL_ASSOC) {
2996                 list_for_each_entry(asoc, &sp->ep->asocs, asocs) {
2997                         asoc->default_stream = info->snd_sid;
2998                         asoc->default_flags = info->snd_flags;
2999                         asoc->default_ppid = info->snd_ppid;
3000                         asoc->default_context = info->snd_context;
3001                 }
3002         }
3003
3004         return 0;
3005 }
3006
3007 /* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
3008  *
3009  * Requests that the local SCTP stack use the enclosed peer address as
3010  * the association primary.  The enclosed address must be one of the
3011  * association peer's addresses.
3012  */
3013 static int sctp_setsockopt_primary_addr(struct sock *sk, struct sctp_prim *prim,
3014                                         unsigned int optlen)
3015 {
3016         struct sctp_transport *trans;
3017         struct sctp_af *af;
3018         int err;
3019
3020         if (optlen != sizeof(struct sctp_prim))
3021                 return -EINVAL;
3022
3023         /* Allow security module to validate address but need address len. */
3024         af = sctp_get_af_specific(prim->ssp_addr.ss_family);
3025         if (!af)
3026                 return -EINVAL;
3027
3028         err = security_sctp_bind_connect(sk, SCTP_PRIMARY_ADDR,
3029                                          (struct sockaddr *)&prim->ssp_addr,
3030                                          af->sockaddr_len);
3031         if (err)
3032                 return err;
3033
3034         trans = sctp_addr_id2transport(sk, &prim->ssp_addr, prim->ssp_assoc_id);
3035         if (!trans)
3036                 return -EINVAL;
3037
3038         sctp_assoc_set_primary(trans->asoc, trans);
3039
3040         return 0;
3041 }
3042
3043 /*
3044  * 7.1.5 SCTP_NODELAY
3045  *
3046  * Turn on/off any Nagle-like algorithm.  This means that packets are
3047  * generally sent as soon as possible and no unnecessary delays are
3048  * introduced, at the cost of more packets in the network.  Expects an
3049  *  integer boolean flag.
3050  */
3051 static int sctp_setsockopt_nodelay(struct sock *sk, int *val,
3052                                    unsigned int optlen)
3053 {
3054         if (optlen < sizeof(int))
3055                 return -EINVAL;
3056         sctp_sk(sk)->nodelay = (*val == 0) ? 0 : 1;
3057         return 0;
3058 }
3059
3060 /*
3061  *
3062  * 7.1.1 SCTP_RTOINFO
3063  *
3064  * The protocol parameters used to initialize and bound retransmission
3065  * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
3066  * and modify these parameters.
3067  * All parameters are time values, in milliseconds.  A value of 0, when
3068  * modifying the parameters, indicates that the current value should not
3069  * be changed.
3070  *
3071  */
3072 static int sctp_setsockopt_rtoinfo(struct sock *sk,
3073                                    struct sctp_rtoinfo *rtoinfo,
3074                                    unsigned int optlen)
3075 {
3076         struct sctp_association *asoc;
3077         unsigned long rto_min, rto_max;
3078         struct sctp_sock *sp = sctp_sk(sk);
3079
3080         if (optlen != sizeof (struct sctp_rtoinfo))
3081                 return -EINVAL;
3082
3083         asoc = sctp_id2assoc(sk, rtoinfo->srto_assoc_id);
3084
3085         /* Set the values to the specific association */
3086         if (!asoc && rtoinfo->srto_assoc_id != SCTP_FUTURE_ASSOC &&
3087             sctp_style(sk, UDP))
3088                 return -EINVAL;
3089
3090         rto_max = rtoinfo->srto_max;
3091         rto_min = rtoinfo->srto_min;
3092
3093         if (rto_max)
3094                 rto_max = asoc ? msecs_to_jiffies(rto_max) : rto_max;
3095         else
3096                 rto_max = asoc ? asoc->rto_max : sp->rtoinfo.srto_max;
3097
3098         if (rto_min)
3099                 rto_min = asoc ? msecs_to_jiffies(rto_min) : rto_min;
3100         else
3101                 rto_min = asoc ? asoc->rto_min : sp->rtoinfo.srto_min;
3102
3103         if (rto_min > rto_max)
3104                 return -EINVAL;
3105
3106         if (asoc) {
3107                 if (rtoinfo->srto_initial != 0)
3108                         asoc->rto_initial =
3109                                 msecs_to_jiffies(rtoinfo->srto_initial);
3110                 asoc->rto_max = rto_max;
3111                 asoc->rto_min = rto_min;
3112         } else {
3113                 /* If there is no association or the association-id = 0
3114                  * set the values to the endpoint.
3115                  */
3116                 if (rtoinfo->srto_initial != 0)
3117                         sp->rtoinfo.srto_initial = rtoinfo->srto_initial;
3118                 sp->rtoinfo.srto_max = rto_max;
3119                 sp->rtoinfo.srto_min = rto_min;
3120         }
3121
3122         return 0;
3123 }
3124
3125 /*
3126  *
3127  * 7.1.2 SCTP_ASSOCINFO
3128  *
3129  * This option is used to tune the maximum retransmission attempts
3130  * of the association.
3131  * Returns an error if the new association retransmission value is
3132  * greater than the sum of the retransmission value  of the peer.
3133  * See [SCTP] for more information.
3134  *
3135  */
3136 static int sctp_setsockopt_associnfo(struct sock *sk,
3137                                      struct sctp_assocparams *assocparams,
3138                                      unsigned int optlen)
3139 {
3140
3141         struct sctp_association *asoc;
3142
3143         if (optlen != sizeof(struct sctp_assocparams))
3144                 return -EINVAL;
3145
3146         asoc = sctp_id2assoc(sk, assocparams->sasoc_assoc_id);
3147
3148         if (!asoc && assocparams->sasoc_assoc_id != SCTP_FUTURE_ASSOC &&
3149             sctp_style(sk, UDP))
3150                 return -EINVAL;
3151
3152         /* Set the values to the specific association */
3153         if (asoc) {
3154                 if (assocparams->sasoc_asocmaxrxt != 0) {
3155                         __u32 path_sum = 0;
3156                         int   paths = 0;
3157                         struct sctp_transport *peer_addr;
3158
3159                         list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
3160                                         transports) {
3161                                 path_sum += peer_addr->pathmaxrxt;
3162                                 paths++;
3163                         }
3164
3165                         /* Only validate asocmaxrxt if we have more than
3166                          * one path/transport.  We do this because path
3167                          * retransmissions are only counted when we have more
3168                          * then one path.
3169                          */
3170                         if (paths > 1 &&
3171                             assocparams->sasoc_asocmaxrxt > path_sum)
3172                                 return -EINVAL;
3173
3174                         asoc->max_retrans = assocparams->sasoc_asocmaxrxt;
3175                 }
3176
3177                 if (assocparams->sasoc_cookie_life != 0)
3178                         asoc->cookie_life =
3179                                 ms_to_ktime(assocparams->sasoc_cookie_life);
3180         } else {
3181                 /* Set the values to the endpoint */
3182                 struct sctp_sock *sp = sctp_sk(sk);
3183
3184                 if (assocparams->sasoc_asocmaxrxt != 0)
3185                         sp->assocparams.sasoc_asocmaxrxt =
3186                                                 assocparams->sasoc_asocmaxrxt;
3187                 if (assocparams->sasoc_cookie_life != 0)
3188                         sp->assocparams.sasoc_cookie_life =
3189                                                 assocparams->sasoc_cookie_life;
3190         }
3191         return 0;
3192 }
3193
3194 /*
3195  * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
3196  *
3197  * This socket option is a boolean flag which turns on or off mapped V4
3198  * addresses.  If this option is turned on and the socket is type
3199  * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
3200  * If this option is turned off, then no mapping will be done of V4
3201  * addresses and a user will receive both PF_INET6 and PF_INET type
3202  * addresses on the socket.
3203  */
3204 static int sctp_setsockopt_mappedv4(struct sock *sk, int *val,
3205                                     unsigned int optlen)
3206 {
3207         struct sctp_sock *sp = sctp_sk(sk);
3208
3209         if (optlen < sizeof(int))
3210                 return -EINVAL;
3211         if (*val)
3212                 sp->v4mapped = 1;
3213         else
3214                 sp->v4mapped = 0;
3215
3216         return 0;
3217 }
3218
3219 /*
3220  * 8.1.16.  Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
3221  * This option will get or set the maximum size to put in any outgoing
3222  * SCTP DATA chunk.  If a message is larger than this size it will be
3223  * fragmented by SCTP into the specified size.  Note that the underlying
3224  * SCTP implementation may fragment into smaller sized chunks when the
3225  * PMTU of the underlying association is smaller than the value set by
3226  * the user.  The default value for this option is '0' which indicates
3227  * the user is NOT limiting fragmentation and only the PMTU will effect
3228  * SCTP's choice of DATA chunk size.  Note also that values set larger
3229  * than the maximum size of an IP datagram will effectively let SCTP
3230  * control fragmentation (i.e. the same as setting this option to 0).
3231  *
3232  * The following structure is used to access and modify this parameter:
3233  *
3234  * struct sctp_assoc_value {
3235  *   sctp_assoc_t assoc_id;
3236  *   uint32_t assoc_value;
3237  * };
3238  *
3239  * assoc_id:  This parameter is ignored for one-to-one style sockets.
3240  *    For one-to-many style sockets this parameter indicates which
3241  *    association the user is performing an action upon.  Note that if
3242  *    this field's value is zero then the endpoints default value is
3243  *    changed (effecting future associations only).
3244  * assoc_value:  This parameter specifies the maximum size in bytes.
3245  */
3246 static int sctp_setsockopt_maxseg(struct sock *sk,
3247                                   struct sctp_assoc_value *params,
3248                                   unsigned int optlen)
3249 {
3250         struct sctp_sock *sp = sctp_sk(sk);
3251         struct sctp_association *asoc;
3252         sctp_assoc_t assoc_id;
3253         int val;
3254
3255         if (optlen == sizeof(int)) {
3256                 pr_warn_ratelimited(DEPRECATED
3257                                     "%s (pid %d) "
3258                                     "Use of int in maxseg socket option.\n"
3259                                     "Use struct sctp_assoc_value instead\n",
3260                                     current->comm, task_pid_nr(current));
3261                 assoc_id = SCTP_FUTURE_ASSOC;
3262                 val = *(int *)params;
3263         } else if (optlen == sizeof(struct sctp_assoc_value)) {
3264                 assoc_id = params->assoc_id;
3265                 val = params->assoc_value;
3266         } else {
3267                 return -EINVAL;
3268         }
3269
3270         asoc = sctp_id2assoc(sk, assoc_id);
3271         if (!asoc && assoc_id != SCTP_FUTURE_ASSOC &&
3272             sctp_style(sk, UDP))
3273                 return -EINVAL;
3274
3275         if (val) {
3276                 int min_len, max_len;
3277                 __u16 datasize = asoc ? sctp_datachk_len(&asoc->stream) :
3278                                  sizeof(struct sctp_data_chunk);
3279
3280                 min_len = sctp_min_frag_point(sp, datasize);
3281                 max_len = SCTP_MAX_CHUNK_LEN - datasize;
3282
3283                 if (val < min_len || val > max_len)
3284                         return -EINVAL;
3285         }
3286
3287         if (asoc) {
3288                 asoc->user_frag = val;
3289                 sctp_assoc_update_frag_point(asoc);
3290         } else {
3291                 sp->user_frag = val;
3292         }
3293
3294         return 0;
3295 }
3296
3297
3298 /*
3299  *  7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3300  *
3301  *   Requests that the peer mark the enclosed address as the association
3302  *   primary. The enclosed address must be one of the association's
3303  *   locally bound addresses. The following structure is used to make a
3304  *   set primary request:
3305  */
3306 static int sctp_setsockopt_peer_primary_addr(struct sock *sk,
3307                                              struct sctp_setpeerprim *prim,
3308                                              unsigned int optlen)
3309 {
3310         struct sctp_sock        *sp;
3311         struct sctp_association *asoc = NULL;
3312         struct sctp_chunk       *chunk;
3313         struct sctp_af          *af;
3314         int                     err;
3315
3316         sp = sctp_sk(sk);
3317
3318         if (!sp->ep->asconf_enable)
3319                 return -EPERM;
3320
3321         if (optlen != sizeof(struct sctp_setpeerprim))
3322                 return -EINVAL;
3323
3324         asoc = sctp_id2assoc(sk, prim->sspp_assoc_id);
3325         if (!asoc)
3326                 return -EINVAL;
3327
3328         if (!asoc->peer.asconf_capable)
3329                 return -EPERM;
3330
3331         if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
3332                 return -EPERM;
3333
3334         if (!sctp_state(asoc, ESTABLISHED))
3335                 return -ENOTCONN;
3336
3337         af = sctp_get_af_specific(prim->sspp_addr.ss_family);
3338         if (!af)
3339                 return -EINVAL;
3340
3341         if (!af->addr_valid((union sctp_addr *)&prim->sspp_addr, sp, NULL))
3342                 return -EADDRNOTAVAIL;
3343
3344         if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim->sspp_addr))
3345                 return -EADDRNOTAVAIL;
3346
3347         /* Allow security module to validate address. */
3348         err = security_sctp_bind_connect(sk, SCTP_SET_PEER_PRIMARY_ADDR,
3349                                          (struct sockaddr *)&prim->sspp_addr,
3350                                          af->sockaddr_len);
3351         if (err)
3352                 return err;
3353
3354         /* Create an ASCONF chunk with SET_PRIMARY parameter    */
3355         chunk = sctp_make_asconf_set_prim(asoc,
3356                                           (union sctp_addr *)&prim->sspp_addr);
3357         if (!chunk)
3358                 return -ENOMEM;
3359
3360         err = sctp_send_asconf(asoc, chunk);
3361
3362         pr_debug("%s: we set peer primary addr primitively\n", __func__);
3363
3364         return err;
3365 }
3366
3367 static int sctp_setsockopt_adaptation_layer(struct sock *sk,
3368                                             struct sctp_setadaptation *adapt,
3369                                             unsigned int optlen)
3370 {
3371         if (optlen != sizeof(struct sctp_setadaptation))
3372                 return -EINVAL;
3373
3374         sctp_sk(sk)->adaptation_ind = adapt->ssb_adaptation_ind;
3375
3376         return 0;
3377 }
3378
3379 /*
3380  * 7.1.29.  Set or Get the default context (SCTP_CONTEXT)
3381  *
3382  * The context field in the sctp_sndrcvinfo structure is normally only
3383  * used when a failed message is retrieved holding the value that was
3384  * sent down on the actual send call.  This option allows the setting of
3385  * a default context on an association basis that will be received on
3386  * reading messages from the peer.  This is especially helpful in the
3387  * one-2-many model for an application to keep some reference to an
3388  * internal state machine that is processing messages on the
3389  * association.  Note that the setting of this value only effects
3390  * received messages from the peer and does not effect the value that is
3391  * saved with outbound messages.
3392  */
3393 static int sctp_setsockopt_context(struct sock *sk,
3394                                    struct sctp_assoc_value *params,
3395                                    unsigned int optlen)
3396 {
3397         struct sctp_sock *sp = sctp_sk(sk);
3398         struct sctp_association *asoc;
3399
3400         if (optlen != sizeof(struct sctp_assoc_value))
3401                 return -EINVAL;
3402
3403         asoc = sctp_id2assoc(sk, params->assoc_id);
3404         if (!asoc && params->assoc_id > SCTP_ALL_ASSOC &&
3405             sctp_style(sk, UDP))
3406                 return -EINVAL;
3407
3408         if (asoc) {
3409                 asoc->default_rcv_context = params->assoc_value;
3410
3411                 return 0;
3412         }
3413
3414         if (sctp_style(sk, TCP))
3415                 params->assoc_id = SCTP_FUTURE_ASSOC;
3416
3417         if (params->assoc_id == SCTP_FUTURE_ASSOC ||
3418             params->assoc_id == SCTP_ALL_ASSOC)
3419                 sp->default_rcv_context = params->assoc_value;
3420
3421         if (params->assoc_id == SCTP_CURRENT_ASSOC ||
3422             params->assoc_id == SCTP_ALL_ASSOC)
3423                 list_for_each_entry(asoc, &sp->ep->asocs, asocs)
3424                         asoc->default_rcv_context = params->assoc_value;
3425
3426         return 0;
3427 }
3428
3429 /*
3430  * 7.1.24.  Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
3431  *
3432  * This options will at a minimum specify if the implementation is doing
3433  * fragmented interleave.  Fragmented interleave, for a one to many
3434  * socket, is when subsequent calls to receive a message may return
3435  * parts of messages from different associations.  Some implementations
3436  * may allow you to turn this value on or off.  If so, when turned off,
3437  * no fragment interleave will occur (which will cause a head of line
3438  * blocking amongst multiple associations sharing the same one to many
3439  * socket).  When this option is turned on, then each receive call may
3440  * come from a different association (thus the user must receive data
3441  * with the extended calls (e.g. sctp_recvmsg) to keep track of which
3442  * association each receive belongs to.
3443  *
3444  * This option takes a boolean value.  A non-zero value indicates that
3445  * fragmented interleave is on.  A value of zero indicates that
3446  * fragmented interleave is off.
3447  *
3448  * Note that it is important that an implementation that allows this
3449  * option to be turned on, have it off by default.  Otherwise an unaware
3450  * application using the one to many model may become confused and act
3451  * incorrectly.
3452  */
3453 static int sctp_setsockopt_fragment_interleave(struct sock *sk, int *val,
3454                                                unsigned int optlen)
3455 {
3456         if (optlen != sizeof(int))
3457                 return -EINVAL;
3458
3459         sctp_sk(sk)->frag_interleave = !!*val;
3460
3461         if (!sctp_sk(sk)->frag_interleave)
3462                 sctp_sk(sk)->ep->intl_enable = 0;
3463
3464         return 0;
3465 }
3466
3467 /*
3468  * 8.1.21.  Set or Get the SCTP Partial Delivery Point
3469  *       (SCTP_PARTIAL_DELIVERY_POINT)
3470  *
3471  * This option will set or get the SCTP partial delivery point.  This
3472  * point is the size of a message where the partial delivery API will be
3473  * invoked to help free up rwnd space for the peer.  Setting this to a
3474  * lower value will cause partial deliveries to happen more often.  The
3475  * calls argument is an integer that sets or gets the partial delivery
3476  * point.  Note also that the call will fail if the user attempts to set
3477  * this value larger than the socket receive buffer size.
3478  *
3479  * Note that any single message having a length smaller than or equal to
3480  * the SCTP partial delivery point will be delivered in one single read
3481  * call as long as the user provided buffer is large enough to hold the
3482  * message.
3483  */
3484 static int sctp_setsockopt_partial_delivery_point(struct sock *sk, u32 *val,
3485                                                   unsigned int optlen)
3486 {
3487         if (optlen != sizeof(u32))
3488                 return -EINVAL;
3489
3490         /* Note: We double the receive buffer from what the user sets
3491          * it to be, also initial rwnd is based on rcvbuf/2.
3492          */
3493         if (*val > (sk->sk_rcvbuf >> 1))
3494                 return -EINVAL;
3495
3496         sctp_sk(sk)->pd_point = *val;
3497
3498         return 0; /* is this the right error code? */
3499 }
3500
3501 /*
3502  * 7.1.28.  Set or Get the maximum burst (SCTP_MAX_BURST)
3503  *
3504  * This option will allow a user to change the maximum burst of packets
3505  * that can be emitted by this association.  Note that the default value
3506  * is 4, and some implementations may restrict this setting so that it
3507  * can only be lowered.
3508  *
3509  * NOTE: This text doesn't seem right.  Do this on a socket basis with
3510  * future associations inheriting the socket value.
3511  */
3512 static int sctp_setsockopt_maxburst(struct sock *sk,
3513                                     struct sctp_assoc_value *params,
3514                                     unsigned int optlen)
3515 {
3516         struct sctp_sock *sp = sctp_sk(sk);
3517         struct sctp_association *asoc;
3518         sctp_assoc_t assoc_id;
3519         u32 assoc_value;
3520
3521         if (optlen == sizeof(int)) {
3522                 pr_warn_ratelimited(DEPRECATED
3523                                     "%s (pid %d) "
3524                                     "Use of int in max_burst socket option deprecated.\n"
3525                                     "Use struct sctp_assoc_value instead\n",
3526                                     current->comm, task_pid_nr(current));
3527                 assoc_id = SCTP_FUTURE_ASSOC;
3528                 assoc_value = *((int *)params);
3529         } else if (optlen == sizeof(struct sctp_assoc_value)) {
3530                 assoc_id = params->assoc_id;
3531                 assoc_value = params->assoc_value;
3532         } else
3533                 return -EINVAL;
3534
3535         asoc = sctp_id2assoc(sk, assoc_id);
3536         if (!asoc && assoc_id > SCTP_ALL_ASSOC && sctp_style(sk, UDP))
3537                 return -EINVAL;
3538
3539         if (asoc) {
3540                 asoc->max_burst = assoc_value;
3541
3542                 return 0;
3543         }
3544
3545         if (sctp_style(sk, TCP))
3546                 assoc_id = SCTP_FUTURE_ASSOC;
3547
3548         if (assoc_id == SCTP_FUTURE_ASSOC || assoc_id == SCTP_ALL_ASSOC)
3549                 sp->max_burst = assoc_value;
3550
3551         if (assoc_id == SCTP_CURRENT_ASSOC || assoc_id == SCTP_ALL_ASSOC)
3552                 list_for_each_entry(asoc, &sp->ep->asocs, asocs)
3553                         asoc->max_burst = assoc_value;
3554
3555         return 0;
3556 }
3557
3558 /*
3559  * 7.1.18.  Add a chunk that must be authenticated (SCTP_AUTH_CHUNK)
3560  *
3561  * This set option adds a chunk type that the user is requesting to be
3562  * received only in an authenticated way.  Changes to the list of chunks
3563  * will only effect future associations on the socket.
3564  */
3565 static int sctp_setsockopt_auth_chunk(struct sock *sk,
3566                                       struct sctp_authchunk *val,
3567                                       unsigned int optlen)
3568 {
3569         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3570
3571         if (!ep->auth_enable)
3572                 return -EACCES;
3573
3574         if (optlen != sizeof(struct sctp_authchunk))
3575                 return -EINVAL;
3576
3577         switch (val->sauth_chunk) {
3578         case SCTP_CID_INIT:
3579         case SCTP_CID_INIT_ACK:
3580         case SCTP_CID_SHUTDOWN_COMPLETE:
3581         case SCTP_CID_AUTH:
3582                 return -EINVAL;
3583         }
3584
3585         /* add this chunk id to the endpoint */
3586         return sctp_auth_ep_add_chunkid(ep, val->sauth_chunk);
3587 }
3588
3589 /*
3590  * 7.1.19.  Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
3591  *
3592  * This option gets or sets the list of HMAC algorithms that the local
3593  * endpoint requires the peer to use.
3594  */
3595 static int sctp_setsockopt_hmac_ident(struct sock *sk,
3596                                       struct sctp_hmacalgo *hmacs,
3597                                       unsigned int optlen)
3598 {
3599         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3600         u32 idents;
3601
3602         if (!ep->auth_enable)
3603                 return -EACCES;
3604
3605         if (optlen < sizeof(struct sctp_hmacalgo))
3606                 return -EINVAL;
3607         optlen = min_t(unsigned int, optlen, sizeof(struct sctp_hmacalgo) +
3608                                              SCTP_AUTH_NUM_HMACS * sizeof(u16));
3609
3610         idents = hmacs->shmac_num_idents;
3611         if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS ||
3612             (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo)))
3613                 return -EINVAL;
3614
3615         return sctp_auth_ep_set_hmacs(ep, hmacs);
3616 }
3617
3618 /*
3619  * 7.1.20.  Set a shared key (SCTP_AUTH_KEY)
3620  *
3621  * This option will set a shared secret key which is used to build an
3622  * association shared key.
3623  */
3624 static int sctp_setsockopt_auth_key(struct sock *sk,
3625                                     struct sctp_authkey *authkey,
3626                                     unsigned int optlen)
3627 {
3628         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3629         struct sctp_association *asoc;
3630         int ret = -EINVAL;
3631
3632         if (optlen <= sizeof(struct sctp_authkey))
3633                 return -EINVAL;
3634         /* authkey->sca_keylength is u16, so optlen can't be bigger than
3635          * this.
3636          */
3637         optlen = min_t(unsigned int, optlen, USHRT_MAX + sizeof(*authkey));
3638
3639         if (authkey->sca_keylength > optlen - sizeof(*authkey))
3640                 goto out;
3641
3642         asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
3643         if (!asoc && authkey->sca_assoc_id > SCTP_ALL_ASSOC &&
3644             sctp_style(sk, UDP))
3645                 goto out;
3646
3647         if (asoc) {
3648                 ret = sctp_auth_set_key(ep, asoc, authkey);
3649                 goto out;
3650         }
3651
3652         if (sctp_style(sk, TCP))
3653                 authkey->sca_assoc_id = SCTP_FUTURE_ASSOC;
3654
3655         if (authkey->sca_assoc_id == SCTP_FUTURE_ASSOC ||
3656             authkey->sca_assoc_id == SCTP_ALL_ASSOC) {
3657                 ret = sctp_auth_set_key(ep, asoc, authkey);
3658                 if (ret)
3659                         goto out;
3660         }
3661
3662         ret = 0;
3663
3664         if (authkey->sca_assoc_id == SCTP_CURRENT_ASSOC ||
3665             authkey->sca_assoc_id == SCTP_ALL_ASSOC) {
3666                 list_for_each_entry(asoc, &ep->asocs, asocs) {
3667                         int res = sctp_auth_set_key(ep, asoc, authkey);
3668
3669                         if (res && !ret)
3670                                 ret = res;
3671                 }
3672         }
3673
3674 out:
3675         memzero_explicit(authkey, optlen);
3676         return ret;
3677 }
3678
3679 /*
3680  * 7.1.21.  Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
3681  *
3682  * This option will get or set the active shared key to be used to build
3683  * the association shared key.
3684  */
3685 static int sctp_setsockopt_active_key(struct sock *sk,
3686                                       struct sctp_authkeyid *val,
3687                                       unsigned int optlen)
3688 {
3689         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3690         struct sctp_association *asoc;
3691         int ret = 0;
3692
3693         if (optlen != sizeof(struct sctp_authkeyid))
3694                 return -EINVAL;
3695
3696         asoc = sctp_id2assoc(sk, val->scact_assoc_id);
3697         if (!asoc && val->scact_assoc_id > SCTP_ALL_ASSOC &&
3698             sctp_style(sk, UDP))
3699                 return -EINVAL;
3700
3701         if (asoc)
3702                 return sctp_auth_set_active_key(ep, asoc, val->scact_keynumber);
3703
3704         if (sctp_style(sk, TCP))
3705                 val->scact_assoc_id = SCTP_FUTURE_ASSOC;
3706
3707         if (val->scact_assoc_id == SCTP_FUTURE_ASSOC ||
3708             val->scact_assoc_id == SCTP_ALL_ASSOC) {
3709                 ret = sctp_auth_set_active_key(ep, asoc, val->scact_keynumber);
3710                 if (ret)
3711                         return ret;
3712         }
3713
3714         if (val->scact_assoc_id == SCTP_CURRENT_ASSOC ||
3715             val->scact_assoc_id == SCTP_ALL_ASSOC) {
3716                 list_for_each_entry(asoc, &ep->asocs, asocs) {
3717                         int res = sctp_auth_set_active_key(ep, asoc,
3718                                                            val->scact_keynumber);
3719
3720                         if (res && !ret)
3721                                 ret = res;
3722                 }
3723         }
3724
3725         return ret;
3726 }
3727
3728 /*
3729  * 7.1.22.  Delete a shared key (SCTP_AUTH_DELETE_KEY)
3730  *
3731  * This set option will delete a shared secret key from use.
3732  */
3733 static int sctp_setsockopt_del_key(struct sock *sk,
3734                                    struct sctp_authkeyid *val,
3735                                    unsigned int optlen)
3736 {
3737         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3738         struct sctp_association *asoc;
3739         int ret = 0;
3740
3741         if (optlen != sizeof(struct sctp_authkeyid))
3742                 return -EINVAL;
3743
3744         asoc = sctp_id2assoc(sk, val->scact_assoc_id);
3745         if (!asoc && val->scact_assoc_id > SCTP_ALL_ASSOC &&
3746             sctp_style(sk, UDP))
3747                 return -EINVAL;
3748
3749         if (asoc)
3750                 return sctp_auth_del_key_id(ep, asoc, val->scact_keynumber);
3751
3752         if (sctp_style(sk, TCP))
3753                 val->scact_assoc_id = SCTP_FUTURE_ASSOC;
3754
3755         if (val->scact_assoc_id == SCTP_FUTURE_ASSOC ||
3756             val->scact_assoc_id == SCTP_ALL_ASSOC) {
3757                 ret = sctp_auth_del_key_id(ep, asoc, val->scact_keynumber);
3758                 if (ret)
3759                         return ret;
3760         }
3761
3762         if (val->scact_assoc_id == SCTP_CURRENT_ASSOC ||
3763             val->scact_assoc_id == SCTP_ALL_ASSOC) {
3764                 list_for_each_entry(asoc, &ep->asocs, asocs) {
3765                         int res = sctp_auth_del_key_id(ep, asoc,
3766                                                        val->scact_keynumber);
3767
3768                         if (res && !ret)
3769                                 ret = res;
3770                 }
3771         }
3772
3773         return ret;
3774 }
3775
3776 /*
3777  * 8.3.4  Deactivate a Shared Key (SCTP_AUTH_DEACTIVATE_KEY)
3778  *
3779  * This set option will deactivate a shared secret key.
3780  */
3781 static int sctp_setsockopt_deactivate_key(struct sock *sk,
3782                                           struct sctp_authkeyid *val,
3783                                           unsigned int optlen)
3784 {
3785         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3786         struct sctp_association *asoc;
3787         int ret = 0;
3788
3789         if (optlen != sizeof(struct sctp_authkeyid))
3790                 return -EINVAL;
3791
3792         asoc = sctp_id2assoc(sk, val->scact_assoc_id);
3793         if (!asoc && val->scact_assoc_id > SCTP_ALL_ASSOC &&
3794             sctp_style(sk, UDP))
3795                 return -EINVAL;
3796
3797         if (asoc)
3798                 return sctp_auth_deact_key_id(ep, asoc, val->scact_keynumber);
3799
3800         if (sctp_style(sk, TCP))
3801                 val->scact_assoc_id = SCTP_FUTURE_ASSOC;
3802
3803         if (val->scact_assoc_id == SCTP_FUTURE_ASSOC ||
3804             val->scact_assoc_id == SCTP_ALL_ASSOC) {
3805                 ret = sctp_auth_deact_key_id(ep, asoc, val->scact_keynumber);
3806                 if (ret)
3807                         return ret;
3808         }
3809
3810         if (val->scact_assoc_id == SCTP_CURRENT_ASSOC ||
3811             val->scact_assoc_id == SCTP_ALL_ASSOC) {
3812                 list_for_each_entry(asoc, &ep->asocs, asocs) {
3813                         int res = sctp_auth_deact_key_id(ep, asoc,
3814                                                          val->scact_keynumber);
3815
3816                         if (res && !ret)
3817                                 ret = res;
3818                 }
3819         }
3820
3821         return ret;
3822 }
3823
3824 /*
3825  * 8.1.23 SCTP_AUTO_ASCONF
3826  *
3827  * This option will enable or disable the use of the automatic generation of
3828  * ASCONF chunks to add and delete addresses to an existing association.  Note
3829  * that this option has two caveats namely: a) it only affects sockets that
3830  * are bound to all addresses available to the SCTP stack, and b) the system
3831  * administrator may have an overriding control that turns the ASCONF feature
3832  * off no matter what setting the socket option may have.
3833  * This option expects an integer boolean flag, where a non-zero value turns on
3834  * the option, and a zero value turns off the option.
3835  * Note. In this implementation, socket operation overrides default parameter
3836  * being set by sysctl as well as FreeBSD implementation
3837  */
3838 static int sctp_setsockopt_auto_asconf(struct sock *sk, int *val,
3839                                         unsigned int optlen)
3840 {
3841         struct sctp_sock *sp = sctp_sk(sk);
3842
3843         if (optlen < sizeof(int))
3844                 return -EINVAL;
3845         if (!sctp_is_ep_boundall(sk) && *val)
3846                 return -EINVAL;
3847         if ((*val && sp->do_auto_asconf) || (!*val && !sp->do_auto_asconf))
3848                 return 0;
3849
3850         spin_lock_bh(&sock_net(sk)->sctp.addr_wq_lock);
3851         if (*val == 0 && sp->do_auto_asconf) {
3852                 list_del(&sp->auto_asconf_list);
3853                 sp->do_auto_asconf = 0;
3854         } else if (*val && !sp->do_auto_asconf) {
3855                 list_add_tail(&sp->auto_asconf_list,
3856                     &sock_net(sk)->sctp.auto_asconf_splist);
3857                 sp->do_auto_asconf = 1;
3858         }
3859         spin_unlock_bh(&sock_net(sk)->sctp.addr_wq_lock);
3860         return 0;
3861 }
3862
3863 /*
3864  * SCTP_PEER_ADDR_THLDS
3865  *
3866  * This option allows us to alter the partially failed threshold for one or all
3867  * transports in an association.  See Section 6.1 of:
3868  * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
3869  */
3870 static int sctp_setsockopt_paddr_thresholds(struct sock *sk,
3871                                             struct sctp_paddrthlds_v2 *val,
3872                                             unsigned int optlen, bool v2)
3873 {
3874         struct sctp_transport *trans;
3875         struct sctp_association *asoc;
3876         int len;
3877
3878         len = v2 ? sizeof(*val) : sizeof(struct sctp_paddrthlds);
3879         if (optlen < len)
3880                 return -EINVAL;
3881
3882         if (v2 && val->spt_pathpfthld > val->spt_pathcpthld)
3883                 return -EINVAL;
3884
3885         if (!sctp_is_any(sk, (const union sctp_addr *)&val->spt_address)) {
3886                 trans = sctp_addr_id2transport(sk, &val->spt_address,
3887                                                val->spt_assoc_id);
3888                 if (!trans)
3889                         return -ENOENT;
3890
3891                 if (val->spt_pathmaxrxt)
3892                         trans->pathmaxrxt = val->spt_pathmaxrxt;
3893                 if (v2)
3894                         trans->ps_retrans = val->spt_pathcpthld;
3895                 trans->pf_retrans = val->spt_pathpfthld;
3896
3897                 return 0;
3898         }
3899
3900         asoc = sctp_id2assoc(sk, val->spt_assoc_id);
3901         if (!asoc && val->spt_assoc_id != SCTP_FUTURE_ASSOC &&
3902             sctp_style(sk, UDP))
3903                 return -EINVAL;
3904
3905         if (asoc) {
3906                 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
3907                                     transports) {
3908                         if (val->spt_pathmaxrxt)
3909                                 trans->pathmaxrxt = val->spt_pathmaxrxt;
3910                         if (v2)
3911                                 trans->ps_retrans = val->spt_pathcpthld;
3912                         trans->pf_retrans = val->spt_pathpfthld;
3913                 }
3914
3915                 if (val->spt_pathmaxrxt)
3916                         asoc->pathmaxrxt = val->spt_pathmaxrxt;
3917                 if (v2)
3918                         asoc->ps_retrans = val->spt_pathcpthld;
3919                 asoc->pf_retrans = val->spt_pathpfthld;
3920         } else {
3921                 struct sctp_sock *sp = sctp_sk(sk);
3922
3923                 if (val->spt_pathmaxrxt)
3924                         sp->pathmaxrxt = val->spt_pathmaxrxt;
3925                 if (v2)
3926                         sp->ps_retrans = val->spt_pathcpthld;
3927                 sp->pf_retrans = val->spt_pathpfthld;
3928         }
3929
3930         return 0;
3931 }
3932
3933 static int sctp_setsockopt_recvrcvinfo(struct sock *sk, int *val,
3934                                        unsigned int optlen)
3935 {
3936         if (optlen < sizeof(int))
3937                 return -EINVAL;
3938
3939         sctp_sk(sk)->recvrcvinfo = (*val == 0) ? 0 : 1;
3940
3941         return 0;
3942 }
3943
3944 static int sctp_setsockopt_recvnxtinfo(struct sock *sk, int *val,
3945                                        unsigned int optlen)
3946 {
3947         if (optlen < sizeof(int))
3948                 return -EINVAL;
3949
3950         sctp_sk(sk)->recvnxtinfo = (*val == 0) ? 0 : 1;
3951
3952         return 0;
3953 }
3954
3955 static int sctp_setsockopt_pr_supported(struct sock *sk,
3956                                         struct sctp_assoc_value *params,
3957                                         unsigned int optlen)
3958 {
3959         struct sctp_association *asoc;
3960
3961         if (optlen != sizeof(*params))
3962                 return -EINVAL;
3963
3964         asoc = sctp_id2assoc(sk, params->assoc_id);
3965         if (!asoc && params->assoc_id != SCTP_FUTURE_ASSOC &&
3966             sctp_style(sk, UDP))
3967                 return -EINVAL;
3968
3969         sctp_sk(sk)->ep->prsctp_enable = !!params->assoc_value;
3970
3971         return 0;
3972 }
3973
3974 static int sctp_setsockopt_default_prinfo(struct sock *sk,
3975                                           struct sctp_default_prinfo *info,
3976                                           unsigned int optlen)
3977 {
3978         struct sctp_sock *sp = sctp_sk(sk);
3979         struct sctp_association *asoc;
3980         int retval = -EINVAL;
3981
3982         if (optlen != sizeof(*info))
3983                 goto out;
3984
3985         if (info->pr_policy & ~SCTP_PR_SCTP_MASK)
3986                 goto out;
3987
3988         if (info->pr_policy == SCTP_PR_SCTP_NONE)
3989                 info->pr_value = 0;
3990
3991         asoc = sctp_id2assoc(sk, info->pr_assoc_id);
3992         if (!asoc && info->pr_assoc_id > SCTP_ALL_ASSOC &&
3993             sctp_style(sk, UDP))
3994                 goto out;
3995
3996         retval = 0;
3997
3998         if (asoc) {
3999                 SCTP_PR_SET_POLICY(asoc->default_flags, info->pr_policy);
4000                 asoc->default_timetolive = info->pr_value;
4001                 goto out;
4002         }
4003
4004         if (sctp_style(sk, TCP))
4005                 info->pr_assoc_id = SCTP_FUTURE_ASSOC;
4006
4007         if (info->pr_assoc_id == SCTP_FUTURE_ASSOC ||
4008             info->pr_assoc_id == SCTP_ALL_ASSOC) {
4009                 SCTP_PR_SET_POLICY(sp->default_flags, info->pr_policy);
4010                 sp->default_timetolive = info->pr_value;
4011         }
4012
4013         if (info->pr_assoc_id == SCTP_CURRENT_ASSOC ||
4014             info->pr_assoc_id == SCTP_ALL_ASSOC) {
4015                 list_for_each_entry(asoc, &sp->ep->asocs, asocs) {
4016                         SCTP_PR_SET_POLICY(asoc->default_flags,
4017                                            info->pr_policy);
4018                         asoc->default_timetolive = info->pr_value;
4019                 }
4020         }
4021
4022 out:
4023         return retval;
4024 }
4025
4026 static int sctp_setsockopt_reconfig_supported(struct sock *sk,
4027                                               struct sctp_assoc_value *params,
4028                                               unsigned int optlen)
4029 {
4030         struct sctp_association *asoc;
4031         int retval = -EINVAL;
4032
4033         if (optlen != sizeof(*params))
4034                 goto out;
4035
4036         asoc = sctp_id2assoc(sk, params->assoc_id);
4037         if (!asoc && params->assoc_id != SCTP_FUTURE_ASSOC &&
4038             sctp_style(sk, UDP))
4039                 goto out;
4040
4041         sctp_sk(sk)->ep->reconf_enable = !!params->assoc_value;
4042
4043         retval = 0;
4044
4045 out:
4046         return retval;
4047 }
4048
4049 static int sctp_setsockopt_enable_strreset(struct sock *sk,
4050                                            struct sctp_assoc_value *params,
4051                                            unsigned int optlen)
4052 {
4053         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
4054         struct sctp_association *asoc;
4055         int retval = -EINVAL;
4056
4057         if (optlen != sizeof(*params))
4058                 goto out;
4059
4060         if (params->assoc_value & (~SCTP_ENABLE_STRRESET_MASK))
4061                 goto out;
4062
4063         asoc = sctp_id2assoc(sk, params->assoc_id);
4064         if (!asoc && params->assoc_id > SCTP_ALL_ASSOC &&
4065             sctp_style(sk, UDP))
4066                 goto out;
4067
4068         retval = 0;
4069
4070         if (asoc) {
4071                 asoc->strreset_enable = params->assoc_value;
4072                 goto out;
4073         }
4074
4075         if (sctp_style(sk, TCP))
4076                 params->assoc_id = SCTP_FUTURE_ASSOC;
4077
4078         if (params->assoc_id == SCTP_FUTURE_ASSOC ||
4079             params->assoc_id == SCTP_ALL_ASSOC)
4080                 ep->strreset_enable = params->assoc_value;
4081
4082         if (params->assoc_id == SCTP_CURRENT_ASSOC ||
4083             params->assoc_id == SCTP_ALL_ASSOC)
4084                 list_for_each_entry(asoc, &ep->asocs, asocs)
4085                         asoc->strreset_enable = params->assoc_value;
4086
4087 out:
4088         return retval;
4089 }
4090
4091 static int sctp_setsockopt_reset_streams(struct sock *sk,
4092                                          struct sctp_reset_streams *params,
4093                                          unsigned int optlen)
4094 {
4095         struct sctp_association *asoc;
4096
4097         if (optlen < sizeof(*params))
4098                 return -EINVAL;
4099         /* srs_number_streams is u16, so optlen can't be bigger than this. */
4100         optlen = min_t(unsigned int, optlen, USHRT_MAX +
4101                                              sizeof(__u16) * sizeof(*params));
4102
4103         if (params->srs_number_streams * sizeof(__u16) >
4104             optlen - sizeof(*params))
4105                 return -EINVAL;
4106
4107         asoc = sctp_id2assoc(sk, params->srs_assoc_id);
4108         if (!asoc)
4109                 return -EINVAL;
4110
4111         return sctp_send_reset_streams(asoc, params);
4112 }
4113
4114 static int sctp_setsockopt_reset_assoc(struct sock *sk, sctp_assoc_t *associd,
4115                                        unsigned int optlen)
4116 {
4117         struct sctp_association *asoc;
4118
4119         if (optlen != sizeof(*associd))
4120                 return -EINVAL;
4121
4122         asoc = sctp_id2assoc(sk, *associd);
4123         if (!asoc)
4124                 return -EINVAL;
4125
4126         return sctp_send_reset_assoc(asoc);
4127 }
4128
4129 static int sctp_setsockopt_add_streams(struct sock *sk,
4130                                        struct sctp_add_streams *params,
4131                                        unsigned int optlen)
4132 {
4133         struct sctp_association *asoc;
4134
4135         if (optlen != sizeof(*params))
4136                 return -EINVAL;
4137
4138         asoc = sctp_id2assoc(sk, params->sas_assoc_id);
4139         if (!asoc)
4140                 return -EINVAL;
4141
4142         return sctp_send_add_streams(asoc, params);
4143 }
4144
4145 static int sctp_setsockopt_scheduler(struct sock *sk,
4146                                      struct sctp_assoc_value *params,
4147                                      unsigned int optlen)
4148 {
4149         struct sctp_sock *sp = sctp_sk(sk);
4150         struct sctp_association *asoc;
4151         int retval = 0;
4152
4153         if (optlen < sizeof(*params))
4154                 return -EINVAL;
4155
4156         if (params->assoc_value > SCTP_SS_MAX)
4157                 return -EINVAL;
4158
4159         asoc = sctp_id2assoc(sk, params->assoc_id);
4160         if (!asoc && params->assoc_id > SCTP_ALL_ASSOC &&
4161             sctp_style(sk, UDP))
4162                 return -EINVAL;
4163
4164         if (asoc)
4165                 return sctp_sched_set_sched(asoc, params->assoc_value);
4166
4167         if (sctp_style(sk, TCP))
4168                 params->assoc_id = SCTP_FUTURE_ASSOC;
4169
4170         if (params->assoc_id == SCTP_FUTURE_ASSOC ||
4171             params->assoc_id == SCTP_ALL_ASSOC)
4172                 sp->default_ss = params->assoc_value;
4173
4174         if (params->assoc_id == SCTP_CURRENT_ASSOC ||
4175             params->assoc_id == SCTP_ALL_ASSOC) {
4176                 list_for_each_entry(asoc, &sp->ep->asocs, asocs) {
4177                         int ret = sctp_sched_set_sched(asoc,
4178                                                        params->assoc_value);
4179
4180                         if (ret && !retval)
4181                                 retval = ret;
4182                 }
4183         }
4184
4185         return retval;
4186 }
4187
4188 static int sctp_setsockopt_scheduler_value(struct sock *sk,
4189                                            struct sctp_stream_value *params,
4190                                            unsigned int optlen)
4191 {
4192         struct sctp_association *asoc;
4193         int retval = -EINVAL;
4194
4195         if (optlen < sizeof(*params))
4196                 goto out;
4197
4198         asoc = sctp_id2assoc(sk, params->assoc_id);
4199         if (!asoc && params->assoc_id != SCTP_CURRENT_ASSOC &&
4200             sctp_style(sk, UDP))
4201                 goto out;
4202
4203         if (asoc) {
4204                 retval = sctp_sched_set_value(asoc, params->stream_id,
4205                                               params->stream_value, GFP_KERNEL);
4206                 goto out;
4207         }
4208
4209         retval = 0;
4210
4211         list_for_each_entry(asoc, &sctp_sk(sk)->ep->asocs, asocs) {
4212                 int ret = sctp_sched_set_value(asoc, params->stream_id,
4213                                                params->stream_value,
4214                                                GFP_KERNEL);
4215                 if (ret && !retval) /* try to return the 1st error. */
4216                         retval = ret;
4217         }
4218
4219 out:
4220         return retval;
4221 }
4222
4223 static int sctp_setsockopt_interleaving_supported(struct sock *sk,
4224                                                   struct sctp_assoc_value *p,
4225                                                   unsigned int optlen)
4226 {
4227         struct sctp_sock *sp = sctp_sk(sk);
4228         struct sctp_association *asoc;
4229
4230         if (optlen < sizeof(*p))
4231                 return -EINVAL;
4232
4233         asoc = sctp_id2assoc(sk, p->assoc_id);
4234         if (!asoc && p->assoc_id != SCTP_FUTURE_ASSOC && sctp_style(sk, UDP))
4235                 return -EINVAL;
4236
4237         if (!sock_net(sk)->sctp.intl_enable || !sp->frag_interleave) {
4238                 return -EPERM;
4239         }
4240
4241         sp->ep->intl_enable = !!p->assoc_value;
4242         return 0;
4243 }
4244
4245 static int sctp_setsockopt_reuse_port(struct sock *sk, int *val,
4246                                       unsigned int optlen)
4247 {
4248         if (!sctp_style(sk, TCP))
4249                 return -EOPNOTSUPP;
4250
4251         if (sctp_sk(sk)->ep->base.bind_addr.port)
4252                 return -EFAULT;
4253
4254         if (optlen < sizeof(int))
4255                 return -EINVAL;
4256
4257         sctp_sk(sk)->reuse = !!*val;
4258
4259         return 0;
4260 }
4261
4262 static int sctp_assoc_ulpevent_type_set(struct sctp_event *param,
4263                                         struct sctp_association *asoc)
4264 {
4265         struct sctp_ulpevent *event;
4266
4267         sctp_ulpevent_type_set(&asoc->subscribe, param->se_type, param->se_on);
4268
4269         if (param->se_type == SCTP_SENDER_DRY_EVENT && param->se_on) {
4270                 if (sctp_outq_is_empty(&asoc->outqueue)) {
4271                         event = sctp_ulpevent_make_sender_dry_event(asoc,
4272                                         GFP_USER | __GFP_NOWARN);
4273                         if (!event)
4274                                 return -ENOMEM;
4275
4276                         asoc->stream.si->enqueue_event(&asoc->ulpq, event);
4277                 }
4278         }
4279
4280         return 0;
4281 }
4282
4283 static int sctp_setsockopt_event(struct sock *sk, struct sctp_event *param,
4284                                  unsigned int optlen)
4285 {
4286         struct sctp_sock *sp = sctp_sk(sk);
4287         struct sctp_association *asoc;
4288         int retval = 0;
4289
4290         if (optlen < sizeof(*param))
4291                 return -EINVAL;
4292
4293         if (param->se_type < SCTP_SN_TYPE_BASE ||
4294             param->se_type > SCTP_SN_TYPE_MAX)
4295                 return -EINVAL;
4296
4297         asoc = sctp_id2assoc(sk, param->se_assoc_id);
4298         if (!asoc && param->se_assoc_id > SCTP_ALL_ASSOC &&
4299             sctp_style(sk, UDP))
4300                 return -EINVAL;
4301
4302         if (asoc)
4303                 return sctp_assoc_ulpevent_type_set(param, asoc);
4304
4305         if (sctp_style(sk, TCP))
4306                 param->se_assoc_id = SCTP_FUTURE_ASSOC;
4307
4308         if (param->se_assoc_id == SCTP_FUTURE_ASSOC ||
4309             param->se_assoc_id == SCTP_ALL_ASSOC)
4310                 sctp_ulpevent_type_set(&sp->subscribe,
4311                                        param->se_type, param->se_on);
4312
4313         if (param->se_assoc_id == SCTP_CURRENT_ASSOC ||
4314             param->se_assoc_id == SCTP_ALL_ASSOC) {
4315                 list_for_each_entry(asoc, &sp->ep->asocs, asocs) {
4316                         int ret = sctp_assoc_ulpevent_type_set(param, asoc);
4317
4318                         if (ret && !retval)
4319                                 retval = ret;
4320                 }
4321         }
4322
4323         return retval;
4324 }
4325
4326 static int sctp_setsockopt_asconf_supported(struct sock *sk,
4327                                             struct sctp_assoc_value *params,
4328                                             unsigned int optlen)
4329 {
4330         struct sctp_association *asoc;
4331         struct sctp_endpoint *ep;
4332         int retval = -EINVAL;
4333
4334         if (optlen != sizeof(*params))
4335                 goto out;
4336
4337         asoc = sctp_id2assoc(sk, params->assoc_id);
4338         if (!asoc && params->assoc_id != SCTP_FUTURE_ASSOC &&
4339             sctp_style(sk, UDP))
4340                 goto out;
4341
4342         ep = sctp_sk(sk)->ep;
4343         ep->asconf_enable = !!params->assoc_value;
4344
4345         if (ep->asconf_enable && ep->auth_enable) {
4346                 sctp_auth_ep_add_chunkid(ep, SCTP_CID_ASCONF);
4347                 sctp_auth_ep_add_chunkid(ep, SCTP_CID_ASCONF_ACK);
4348         }
4349
4350         retval = 0;
4351
4352 out:
4353         return retval;
4354 }
4355
4356 static int sctp_setsockopt_auth_supported(struct sock *sk,
4357                                           struct sctp_assoc_value *params,
4358                                           unsigned int optlen)
4359 {
4360         struct sctp_association *asoc;
4361         struct sctp_endpoint *ep;
4362         int retval = -EINVAL;
4363
4364         if (optlen != sizeof(*params))
4365                 goto out;
4366
4367         asoc = sctp_id2assoc(sk, params->assoc_id);
4368         if (!asoc && params->assoc_id != SCTP_FUTURE_ASSOC &&
4369             sctp_style(sk, UDP))
4370                 goto out;
4371
4372         ep = sctp_sk(sk)->ep;
4373         if (params->assoc_value) {
4374                 retval = sctp_auth_init(ep, GFP_KERNEL);
4375                 if (retval)
4376                         goto out;
4377                 if (ep->asconf_enable) {
4378                         sctp_auth_ep_add_chunkid(ep, SCTP_CID_ASCONF);
4379                         sctp_auth_ep_add_chunkid(ep, SCTP_CID_ASCONF_ACK);
4380                 }
4381         }
4382
4383         ep->auth_enable = !!params->assoc_value;
4384         retval = 0;
4385
4386 out:
4387         return retval;
4388 }
4389
4390 static int sctp_setsockopt_ecn_supported(struct sock *sk,
4391                                          struct sctp_assoc_value *params,
4392                                          unsigned int optlen)
4393 {
4394         struct sctp_association *asoc;
4395         int retval = -EINVAL;
4396
4397         if (optlen != sizeof(*params))
4398                 goto out;
4399
4400         asoc = sctp_id2assoc(sk, params->assoc_id);
4401         if (!asoc && params->assoc_id != SCTP_FUTURE_ASSOC &&
4402             sctp_style(sk, UDP))
4403                 goto out;
4404
4405         sctp_sk(sk)->ep->ecn_enable = !!params->assoc_value;
4406         retval = 0;
4407
4408 out:
4409         return retval;
4410 }
4411
4412 static int sctp_setsockopt_pf_expose(struct sock *sk,
4413                                      struct sctp_assoc_value *params,
4414                                      unsigned int optlen)
4415 {
4416         struct sctp_association *asoc;
4417         int retval = -EINVAL;
4418
4419         if (optlen != sizeof(*params))
4420                 goto out;
4421
4422         if (params->assoc_value > SCTP_PF_EXPOSE_MAX)
4423                 goto out;
4424
4425         asoc = sctp_id2assoc(sk, params->assoc_id);
4426         if (!asoc && params->assoc_id != SCTP_FUTURE_ASSOC &&
4427             sctp_style(sk, UDP))
4428                 goto out;
4429
4430         if (asoc)
4431                 asoc->pf_expose = params->assoc_value;
4432         else
4433                 sctp_sk(sk)->pf_expose = params->assoc_value;
4434         retval = 0;
4435
4436 out:
4437         return retval;
4438 }
4439
4440 static int sctp_setsockopt_encap_port(struct sock *sk,
4441                                       struct sctp_udpencaps *encap,
4442                                       unsigned int optlen)
4443 {
4444         struct sctp_association *asoc;
4445         struct sctp_transport *t;
4446         __be16 encap_port;
4447
4448         if (optlen != sizeof(*encap))
4449                 return -EINVAL;
4450
4451         /* If an address other than INADDR_ANY is specified, and
4452          * no transport is found, then the request is invalid.
4453          */
4454         encap_port = (__force __be16)encap->sue_port;
4455         if (!sctp_is_any(sk, (union sctp_addr *)&encap->sue_address)) {
4456                 t = sctp_addr_id2transport(sk, &encap->sue_address,
4457                                            encap->sue_assoc_id);
4458                 if (!t)
4459                         return -EINVAL;
4460
4461                 t->encap_port = encap_port;
4462                 return 0;
4463         }
4464
4465         /* Get association, if assoc_id != SCTP_FUTURE_ASSOC and the
4466          * socket is a one to many style socket, and an association
4467          * was not found, then the id was invalid.
4468          */
4469         asoc = sctp_id2assoc(sk, encap->sue_assoc_id);
4470         if (!asoc && encap->sue_assoc_id != SCTP_FUTURE_ASSOC &&
4471             sctp_style(sk, UDP))
4472                 return -EINVAL;
4473
4474         /* If changes are for association, also apply encap_port to
4475          * each transport.
4476          */
4477         if (asoc) {
4478                 list_for_each_entry(t, &asoc->peer.transport_addr_list,
4479                                     transports)
4480                         t->encap_port = encap_port;
4481
4482                 asoc->encap_port = encap_port;
4483                 return 0;
4484         }
4485
4486         sctp_sk(sk)->encap_port = encap_port;
4487         return 0;
4488 }
4489
4490 static int sctp_setsockopt_probe_interval(struct sock *sk,
4491                                           struct sctp_probeinterval *params,
4492                                           unsigned int optlen)
4493 {
4494         struct sctp_association *asoc;
4495         struct sctp_transport *t;
4496         __u32 probe_interval;
4497
4498         if (optlen != sizeof(*params))
4499                 return -EINVAL;
4500
4501         probe_interval = params->spi_interval;
4502         if (probe_interval && probe_interval < SCTP_PROBE_TIMER_MIN)
4503                 return -EINVAL;
4504
4505         /* If an address other than INADDR_ANY is specified, and
4506          * no transport is found, then the request is invalid.
4507          */
4508         if (!sctp_is_any(sk, (union sctp_addr *)&params->spi_address)) {
4509                 t = sctp_addr_id2transport(sk, &params->spi_address,
4510                                            params->spi_assoc_id);
4511                 if (!t)
4512                         return -EINVAL;
4513
4514                 t->probe_interval = msecs_to_jiffies(probe_interval);
4515                 sctp_transport_pl_reset(t);
4516                 return 0;
4517         }
4518
4519         /* Get association, if assoc_id != SCTP_FUTURE_ASSOC and the
4520          * socket is a one to many style socket, and an association
4521          * was not found, then the id was invalid.
4522          */
4523         asoc = sctp_id2assoc(sk, params->spi_assoc_id);
4524         if (!asoc && params->spi_assoc_id != SCTP_FUTURE_ASSOC &&
4525             sctp_style(sk, UDP))
4526                 return -EINVAL;
4527
4528         /* If changes are for association, also apply probe_interval to
4529          * each transport.
4530          */
4531         if (asoc) {
4532                 list_for_each_entry(t, &asoc->peer.transport_addr_list, transports) {
4533                         t->probe_interval = msecs_to_jiffies(probe_interval);
4534                         sctp_transport_pl_reset(t);
4535                 }
4536
4537                 asoc->probe_interval = msecs_to_jiffies(probe_interval);
4538                 return 0;
4539         }
4540
4541         sctp_sk(sk)->probe_interval = probe_interval;
4542         return 0;
4543 }
4544
4545 /* API 6.2 setsockopt(), getsockopt()
4546  *
4547  * Applications use setsockopt() and getsockopt() to set or retrieve
4548  * socket options.  Socket options are used to change the default
4549  * behavior of sockets calls.  They are described in Section 7.
4550  *
4551  * The syntax is:
4552  *
4553  *   ret = getsockopt(int sd, int level, int optname, void __user *optval,
4554  *                    int __user *optlen);
4555  *   ret = setsockopt(int sd, int level, int optname, const void __user *optval,
4556  *                    int optlen);
4557  *
4558  *   sd      - the socket descript.
4559  *   level   - set to IPPROTO_SCTP for all SCTP options.
4560  *   optname - the option name.
4561  *   optval  - the buffer to store the value of the option.
4562  *   optlen  - the size of the buffer.
4563  */
4564 static int sctp_setsockopt(struct sock *sk, int level, int optname,
4565                            sockptr_t optval, unsigned int optlen)
4566 {
4567         void *kopt = NULL;
4568         int retval = 0;
4569
4570         pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
4571
4572         /* I can hardly begin to describe how wrong this is.  This is
4573          * so broken as to be worse than useless.  The API draft
4574          * REALLY is NOT helpful here...  I am not convinced that the
4575          * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
4576          * are at all well-founded.
4577          */
4578         if (level != SOL_SCTP) {
4579                 struct sctp_af *af = sctp_sk(sk)->pf->af;
4580
4581                 return af->setsockopt(sk, level, optname, optval, optlen);
4582         }
4583
4584         if (optlen > 0) {
4585                 /* Trim it to the biggest size sctp sockopt may need if necessary */
4586                 optlen = min_t(unsigned int, optlen,
4587                                PAGE_ALIGN(USHRT_MAX +
4588                                           sizeof(__u16) * sizeof(struct sctp_reset_streams)));
4589                 kopt = memdup_sockptr(optval, optlen);
4590                 if (IS_ERR(kopt))
4591                         return PTR_ERR(kopt);
4592         }
4593
4594         lock_sock(sk);
4595
4596         switch (optname) {
4597         case SCTP_SOCKOPT_BINDX_ADD:
4598                 /* 'optlen' is the size of the addresses buffer. */
4599                 retval = sctp_setsockopt_bindx(sk, kopt, optlen,
4600                                                SCTP_BINDX_ADD_ADDR);
4601                 break;
4602
4603         case SCTP_SOCKOPT_BINDX_REM:
4604                 /* 'optlen' is the size of the addresses buffer. */
4605                 retval = sctp_setsockopt_bindx(sk, kopt, optlen,
4606                                                SCTP_BINDX_REM_ADDR);
4607                 break;
4608
4609         case SCTP_SOCKOPT_CONNECTX_OLD:
4610                 /* 'optlen' is the size of the addresses buffer. */
4611                 retval = sctp_setsockopt_connectx_old(sk, kopt, optlen);
4612                 break;
4613
4614         case SCTP_SOCKOPT_CONNECTX:
4615                 /* 'optlen' is the size of the addresses buffer. */
4616                 retval = sctp_setsockopt_connectx(sk, kopt, optlen);
4617                 break;
4618
4619         case SCTP_DISABLE_FRAGMENTS:
4620                 retval = sctp_setsockopt_disable_fragments(sk, kopt, optlen);
4621                 break;
4622
4623         case SCTP_EVENTS:
4624                 retval = sctp_setsockopt_events(sk, kopt, optlen);
4625                 break;
4626
4627         case SCTP_AUTOCLOSE:
4628                 retval = sctp_setsockopt_autoclose(sk, kopt, optlen);
4629                 break;
4630
4631         case SCTP_PEER_ADDR_PARAMS:
4632                 retval = sctp_setsockopt_peer_addr_params(sk, kopt, optlen);
4633                 break;
4634
4635         case SCTP_DELAYED_SACK:
4636                 retval = sctp_setsockopt_delayed_ack(sk, kopt, optlen);
4637                 break;
4638         case SCTP_PARTIAL_DELIVERY_POINT:
4639                 retval = sctp_setsockopt_partial_delivery_point(sk, kopt, optlen);
4640                 break;
4641
4642         case SCTP_INITMSG:
4643                 retval = sctp_setsockopt_initmsg(sk, kopt, optlen);
4644                 break;
4645         case SCTP_DEFAULT_SEND_PARAM:
4646                 retval = sctp_setsockopt_default_send_param(sk, kopt, optlen);
4647                 break;
4648         case SCTP_DEFAULT_SNDINFO:
4649                 retval = sctp_setsockopt_default_sndinfo(sk, kopt, optlen);
4650                 break;
4651         case SCTP_PRIMARY_ADDR:
4652                 retval = sctp_setsockopt_primary_addr(sk, kopt, optlen);
4653                 break;
4654         case SCTP_SET_PEER_PRIMARY_ADDR:
4655                 retval = sctp_setsockopt_peer_primary_addr(sk, kopt, optlen);
4656                 break;
4657         case SCTP_NODELAY:
4658                 retval = sctp_setsockopt_nodelay(sk, kopt, optlen);
4659                 break;
4660         case SCTP_RTOINFO:
4661                 retval = sctp_setsockopt_rtoinfo(sk, kopt, optlen);
4662                 break;
4663         case SCTP_ASSOCINFO:
4664                 retval = sctp_setsockopt_associnfo(sk, kopt, optlen);
4665                 break;
4666         case SCTP_I_WANT_MAPPED_V4_ADDR:
4667                 retval = sctp_setsockopt_mappedv4(sk, kopt, optlen);
4668                 break;
4669         case SCTP_MAXSEG:
4670                 retval = sctp_setsockopt_maxseg(sk, kopt, optlen);
4671                 break;
4672         case SCTP_ADAPTATION_LAYER:
4673                 retval = sctp_setsockopt_adaptation_layer(sk, kopt, optlen);
4674                 break;
4675         case SCTP_CONTEXT:
4676                 retval = sctp_setsockopt_context(sk, kopt, optlen);
4677                 break;
4678         case SCTP_FRAGMENT_INTERLEAVE:
4679                 retval = sctp_setsockopt_fragment_interleave(sk, kopt, optlen);
4680                 break;
4681         case SCTP_MAX_BURST:
4682                 retval = sctp_setsockopt_maxburst(sk, kopt, optlen);
4683                 break;
4684         case SCTP_AUTH_CHUNK:
4685                 retval = sctp_setsockopt_auth_chunk(sk, kopt, optlen);
4686                 break;
4687         case SCTP_HMAC_IDENT:
4688                 retval = sctp_setsockopt_hmac_ident(sk, kopt, optlen);
4689                 break;
4690         case SCTP_AUTH_KEY:
4691                 retval = sctp_setsockopt_auth_key(sk, kopt, optlen);
4692                 break;
4693         case SCTP_AUTH_ACTIVE_KEY:
4694                 retval = sctp_setsockopt_active_key(sk, kopt, optlen);
4695                 break;
4696         case SCTP_AUTH_DELETE_KEY:
4697                 retval = sctp_setsockopt_del_key(sk, kopt, optlen);
4698                 break;
4699         case SCTP_AUTH_DEACTIVATE_KEY:
4700                 retval = sctp_setsockopt_deactivate_key(sk, kopt, optlen);
4701                 break;
4702         case SCTP_AUTO_ASCONF:
4703                 retval = sctp_setsockopt_auto_asconf(sk, kopt, optlen);
4704                 break;
4705         case SCTP_PEER_ADDR_THLDS:
4706                 retval = sctp_setsockopt_paddr_thresholds(sk, kopt, optlen,
4707                                                           false);
4708                 break;
4709         case SCTP_PEER_ADDR_THLDS_V2:
4710                 retval = sctp_setsockopt_paddr_thresholds(sk, kopt, optlen,
4711                                                           true);
4712                 break;
4713         case SCTP_RECVRCVINFO:
4714                 retval = sctp_setsockopt_recvrcvinfo(sk, kopt, optlen);
4715                 break;
4716         case SCTP_RECVNXTINFO:
4717                 retval = sctp_setsockopt_recvnxtinfo(sk, kopt, optlen);
4718                 break;
4719         case SCTP_PR_SUPPORTED:
4720                 retval = sctp_setsockopt_pr_supported(sk, kopt, optlen);
4721                 break;
4722         case SCTP_DEFAULT_PRINFO:
4723                 retval = sctp_setsockopt_default_prinfo(sk, kopt, optlen);
4724                 break;
4725         case SCTP_RECONFIG_SUPPORTED:
4726                 retval = sctp_setsockopt_reconfig_supported(sk, kopt, optlen);
4727                 break;
4728         case SCTP_ENABLE_STREAM_RESET:
4729                 retval = sctp_setsockopt_enable_strreset(sk, kopt, optlen);
4730                 break;
4731         case SCTP_RESET_STREAMS:
4732                 retval = sctp_setsockopt_reset_streams(sk, kopt, optlen);
4733                 break;
4734         case SCTP_RESET_ASSOC:
4735                 retval = sctp_setsockopt_reset_assoc(sk, kopt, optlen);
4736                 break;
4737         case SCTP_ADD_STREAMS:
4738                 retval = sctp_setsockopt_add_streams(sk, kopt, optlen);
4739                 break;
4740         case SCTP_STREAM_SCHEDULER:
4741                 retval = sctp_setsockopt_scheduler(sk, kopt, optlen);
4742                 break;
4743         case SCTP_STREAM_SCHEDULER_VALUE:
4744                 retval = sctp_setsockopt_scheduler_value(sk, kopt, optlen);
4745                 break;
4746         case SCTP_INTERLEAVING_SUPPORTED:
4747                 retval = sctp_setsockopt_interleaving_supported(sk, kopt,
4748                                                                 optlen);
4749                 break;
4750         case SCTP_REUSE_PORT:
4751                 retval = sctp_setsockopt_reuse_port(sk, kopt, optlen);
4752                 break;
4753         case SCTP_EVENT:
4754                 retval = sctp_setsockopt_event(sk, kopt, optlen);
4755                 break;
4756         case SCTP_ASCONF_SUPPORTED:
4757                 retval = sctp_setsockopt_asconf_supported(sk, kopt, optlen);
4758                 break;
4759         case SCTP_AUTH_SUPPORTED:
4760                 retval = sctp_setsockopt_auth_supported(sk, kopt, optlen);
4761                 break;
4762         case SCTP_ECN_SUPPORTED:
4763                 retval = sctp_setsockopt_ecn_supported(sk, kopt, optlen);
4764                 break;
4765         case SCTP_EXPOSE_POTENTIALLY_FAILED_STATE:
4766                 retval = sctp_setsockopt_pf_expose(sk, kopt, optlen);
4767                 break;
4768         case SCTP_REMOTE_UDP_ENCAPS_PORT:
4769                 retval = sctp_setsockopt_encap_port(sk, kopt, optlen);
4770                 break;
4771         case SCTP_PLPMTUD_PROBE_INTERVAL:
4772                 retval = sctp_setsockopt_probe_interval(sk, kopt, optlen);
4773                 break;
4774         default:
4775                 retval = -ENOPROTOOPT;
4776                 break;
4777         }
4778
4779         release_sock(sk);
4780         kfree(kopt);
4781         return retval;
4782 }
4783
4784 /* API 3.1.6 connect() - UDP Style Syntax
4785  *
4786  * An application may use the connect() call in the UDP model to initiate an
4787  * association without sending data.
4788  *
4789  * The syntax is:
4790  *
4791  * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
4792  *
4793  * sd: the socket descriptor to have a new association added to.
4794  *
4795  * nam: the address structure (either struct sockaddr_in or struct
4796  *    sockaddr_in6 defined in RFC2553 [7]).
4797  *
4798  * len: the size of the address.
4799  */
4800 static int sctp_connect(struct sock *sk, struct sockaddr *addr,
4801                         int addr_len, int flags)
4802 {
4803         struct sctp_af *af;
4804         int err = -EINVAL;
4805
4806         lock_sock(sk);
4807         pr_debug("%s: sk:%p, sockaddr:%p, addr_len:%d\n", __func__, sk,
4808                  addr, addr_len);
4809
4810         /* Validate addr_len before calling common connect/connectx routine. */
4811         af = sctp_get_af_specific(addr->sa_family);
4812         if (af && addr_len >= af->sockaddr_len)
4813                 err = __sctp_connect(sk, addr, af->sockaddr_len, flags, NULL);
4814
4815         release_sock(sk);
4816         return err;
4817 }
4818
4819 int sctp_inet_connect(struct socket *sock, struct sockaddr *uaddr,
4820                       int addr_len, int flags)
4821 {
4822         if (addr_len < sizeof(uaddr->sa_family))
4823                 return -EINVAL;
4824
4825         if (uaddr->sa_family == AF_UNSPEC)
4826                 return -EOPNOTSUPP;
4827
4828         return sctp_connect(sock->sk, uaddr, addr_len, flags);
4829 }
4830
4831 /* FIXME: Write comments. */
4832 static int sctp_disconnect(struct sock *sk, int flags)
4833 {
4834         return -EOPNOTSUPP; /* STUB */
4835 }
4836
4837 /* 4.1.4 accept() - TCP Style Syntax
4838  *
4839  * Applications use accept() call to remove an established SCTP
4840  * association from the accept queue of the endpoint.  A new socket
4841  * descriptor will be returned from accept() to represent the newly
4842  * formed association.
4843  */
4844 static struct sock *sctp_accept(struct sock *sk, int flags, int *err, bool kern)
4845 {
4846         struct sctp_sock *sp;
4847         struct sctp_endpoint *ep;
4848         struct sock *newsk = NULL;
4849         struct sctp_association *asoc;
4850         long timeo;
4851         int error = 0;
4852
4853         lock_sock(sk);
4854
4855         sp = sctp_sk(sk);
4856         ep = sp->ep;
4857
4858         if (!sctp_style(sk, TCP)) {
4859                 error = -EOPNOTSUPP;
4860                 goto out;
4861         }
4862
4863         if (!sctp_sstate(sk, LISTENING)) {
4864                 error = -EINVAL;
4865                 goto out;
4866         }
4867
4868         timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
4869
4870         error = sctp_wait_for_accept(sk, timeo);
4871         if (error)
4872                 goto out;
4873
4874         /* We treat the list of associations on the endpoint as the accept
4875          * queue and pick the first association on the list.
4876          */
4877         asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
4878
4879         newsk = sp->pf->create_accept_sk(sk, asoc, kern);
4880         if (!newsk) {
4881                 error = -ENOMEM;
4882                 goto out;
4883         }
4884
4885         /* Populate the fields of the newsk from the oldsk and migrate the
4886          * asoc to the newsk.
4887          */
4888         error = sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
4889         if (error) {
4890                 sk_common_release(newsk);
4891                 newsk = NULL;
4892         }
4893
4894 out:
4895         release_sock(sk);
4896         *err = error;
4897         return newsk;
4898 }
4899
4900 /* The SCTP ioctl handler. */
4901 static int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
4902 {
4903         int rc = -ENOTCONN;
4904
4905         lock_sock(sk);
4906
4907         /*
4908          * SEQPACKET-style sockets in LISTENING state are valid, for
4909          * SCTP, so only discard TCP-style sockets in LISTENING state.
4910          */
4911         if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
4912                 goto out;
4913
4914         switch (cmd) {
4915         case SIOCINQ: {
4916                 struct sk_buff *skb;
4917                 unsigned int amount = 0;
4918
4919                 skb = skb_peek(&sk->sk_receive_queue);
4920                 if (skb != NULL) {
4921                         /*
4922                          * We will only return the amount of this packet since
4923                          * that is all that will be read.
4924                          */
4925                         amount = skb->len;
4926                 }
4927                 rc = put_user(amount, (int __user *)arg);
4928                 break;
4929         }
4930         default:
4931                 rc = -ENOIOCTLCMD;
4932                 break;
4933         }
4934 out:
4935         release_sock(sk);
4936         return rc;
4937 }
4938
4939 /* This is the function which gets called during socket creation to
4940  * initialized the SCTP-specific portion of the sock.
4941  * The sock structure should already be zero-filled memory.
4942  */
4943 static int sctp_init_sock(struct sock *sk)
4944 {
4945         struct net *net = sock_net(sk);
4946         struct sctp_sock *sp;
4947
4948         pr_debug("%s: sk:%p\n", __func__, sk);
4949
4950         sp = sctp_sk(sk);
4951
4952         /* Initialize the SCTP per socket area.  */
4953         switch (sk->sk_type) {
4954         case SOCK_SEQPACKET:
4955                 sp->type = SCTP_SOCKET_UDP;
4956                 break;
4957         case SOCK_STREAM:
4958                 sp->type = SCTP_SOCKET_TCP;
4959                 break;
4960         default:
4961                 return -ESOCKTNOSUPPORT;
4962         }
4963
4964         sk->sk_gso_type = SKB_GSO_SCTP;
4965
4966         /* Initialize default send parameters. These parameters can be
4967          * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
4968          */
4969         sp->default_stream = 0;
4970         sp->default_ppid = 0;
4971         sp->default_flags = 0;
4972         sp->default_context = 0;
4973         sp->default_timetolive = 0;
4974
4975         sp->default_rcv_context = 0;
4976         sp->max_burst = net->sctp.max_burst;
4977
4978         sp->sctp_hmac_alg = net->sctp.sctp_hmac_alg;
4979
4980         /* Initialize default setup parameters. These parameters
4981          * can be modified with the SCTP_INITMSG socket option or
4982          * overridden by the SCTP_INIT CMSG.
4983          */
4984         sp->initmsg.sinit_num_ostreams   = sctp_max_outstreams;
4985         sp->initmsg.sinit_max_instreams  = sctp_max_instreams;
4986         sp->initmsg.sinit_max_attempts   = net->sctp.max_retrans_init;
4987         sp->initmsg.sinit_max_init_timeo = net->sctp.rto_max;
4988
4989         /* Initialize default RTO related parameters.  These parameters can
4990          * be modified for with the SCTP_RTOINFO socket option.
4991          */
4992         sp->rtoinfo.srto_initial = net->sctp.rto_initial;
4993         sp->rtoinfo.srto_max     = net->sctp.rto_max;
4994         sp->rtoinfo.srto_min     = net->sctp.rto_min;
4995
4996         /* Initialize default association related parameters. These parameters
4997          * can be modified with the SCTP_ASSOCINFO socket option.
4998          */
4999         sp->assocparams.sasoc_asocmaxrxt = net->sctp.max_retrans_association;
5000         sp->assocparams.sasoc_number_peer_destinations = 0;
5001         sp->assocparams.sasoc_peer_rwnd = 0;
5002         sp->assocparams.sasoc_local_rwnd = 0;
5003         sp->assocparams.sasoc_cookie_life = net->sctp.valid_cookie_life;
5004
5005         /* Initialize default event subscriptions. By default, all the
5006          * options are off.
5007          */
5008         sp->subscribe = 0;
5009
5010         /* Default Peer Address Parameters.  These defaults can
5011          * be modified via SCTP_PEER_ADDR_PARAMS
5012          */
5013         sp->hbinterval  = net->sctp.hb_interval;
5014         sp->udp_port    = htons(net->sctp.udp_port);
5015         sp->encap_port  = htons(net->sctp.encap_port);
5016         sp->pathmaxrxt  = net->sctp.max_retrans_path;
5017         sp->pf_retrans  = net->sctp.pf_retrans;
5018         sp->ps_retrans  = net->sctp.ps_retrans;
5019         sp->pf_expose   = net->sctp.pf_expose;
5020         sp->pathmtu     = 0; /* allow default discovery */
5021         sp->sackdelay   = net->sctp.sack_timeout;
5022         sp->sackfreq    = 2;
5023         sp->param_flags = SPP_HB_ENABLE |
5024                           SPP_PMTUD_ENABLE |
5025                           SPP_SACKDELAY_ENABLE;
5026         sp->default_ss = SCTP_SS_DEFAULT;
5027
5028         /* If enabled no SCTP message fragmentation will be performed.
5029          * Configure through SCTP_DISABLE_FRAGMENTS socket option.
5030          */
5031         sp->disable_fragments = 0;
5032
5033         /* Enable Nagle algorithm by default.  */
5034         sp->nodelay           = 0;
5035
5036         sp->recvrcvinfo = 0;
5037         sp->recvnxtinfo = 0;
5038
5039         /* Enable by default. */
5040         sp->v4mapped          = 1;
5041
5042         /* Auto-close idle associations after the configured
5043          * number of seconds.  A value of 0 disables this
5044          * feature.  Configure through the SCTP_AUTOCLOSE socket option,
5045          * for UDP-style sockets only.
5046          */
5047         sp->autoclose         = 0;
5048
5049         /* User specified fragmentation limit. */
5050         sp->user_frag         = 0;
5051
5052         sp->adaptation_ind = 0;
5053
5054         sp->pf = sctp_get_pf_specific(sk->sk_family);
5055
5056         /* Control variables for partial data delivery. */
5057         atomic_set(&sp->pd_mode, 0);
5058         skb_queue_head_init(&sp->pd_lobby);
5059         sp->frag_interleave = 0;
5060         sp->probe_interval = net->sctp.probe_interval;
5061
5062         /* Create a per socket endpoint structure.  Even if we
5063          * change the data structure relationships, this may still
5064          * be useful for storing pre-connect address information.
5065          */
5066         sp->ep = sctp_endpoint_new(sk, GFP_KERNEL);
5067         if (!sp->ep)
5068                 return -ENOMEM;
5069
5070         sp->hmac = NULL;
5071
5072         sk->sk_destruct = sctp_destruct_sock;
5073
5074         SCTP_DBG_OBJCNT_INC(sock);
5075
5076         local_bh_disable();
5077         sk_sockets_allocated_inc(sk);
5078         sock_prot_inuse_add(net, sk->sk_prot, 1);
5079
5080         local_bh_enable();
5081
5082         return 0;
5083 }
5084
5085 /* Cleanup any SCTP per socket resources. Must be called with
5086  * sock_net(sk)->sctp.addr_wq_lock held if sp->do_auto_asconf is true
5087  */
5088 static void sctp_destroy_sock(struct sock *sk)
5089 {
5090         struct sctp_sock *sp;
5091
5092         pr_debug("%s: sk:%p\n", __func__, sk);
5093
5094         /* Release our hold on the endpoint. */
5095         sp = sctp_sk(sk);
5096         /* This could happen during socket init, thus we bail out
5097          * early, since the rest of the below is not setup either.
5098          */
5099         if (sp->ep == NULL)
5100                 return;
5101
5102         if (sp->do_auto_asconf) {
5103                 sp->do_auto_asconf = 0;
5104                 list_del(&sp->auto_asconf_list);
5105         }
5106         sctp_endpoint_free(sp->ep);
5107         local_bh_disable();
5108         sk_sockets_allocated_dec(sk);
5109         sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
5110         local_bh_enable();
5111 }
5112
5113 /* Triggered when there are no references on the socket anymore */
5114 static void sctp_destruct_common(struct sock *sk)
5115 {
5116         struct sctp_sock *sp = sctp_sk(sk);
5117
5118         /* Free up the HMAC transform. */
5119         crypto_free_shash(sp->hmac);
5120 }
5121
5122 static void sctp_destruct_sock(struct sock *sk)
5123 {
5124         sctp_destruct_common(sk);
5125         inet_sock_destruct(sk);
5126 }
5127
5128 /* API 4.1.7 shutdown() - TCP Style Syntax
5129  *     int shutdown(int socket, int how);
5130  *
5131  *     sd      - the socket descriptor of the association to be closed.
5132  *     how     - Specifies the type of shutdown.  The  values  are
5133  *               as follows:
5134  *               SHUT_RD
5135  *                     Disables further receive operations. No SCTP
5136  *                     protocol action is taken.
5137  *               SHUT_WR
5138  *                     Disables further send operations, and initiates
5139  *                     the SCTP shutdown sequence.
5140  *               SHUT_RDWR
5141  *                     Disables further send  and  receive  operations
5142  *                     and initiates the SCTP shutdown sequence.
5143  */
5144 static void sctp_shutdown(struct sock *sk, int how)
5145 {
5146         struct net *net = sock_net(sk);
5147         struct sctp_endpoint *ep;
5148
5149         if (!sctp_style(sk, TCP))
5150                 return;
5151
5152         ep = sctp_sk(sk)->ep;
5153         if (how & SEND_SHUTDOWN && !list_empty(&ep->asocs)) {
5154                 struct sctp_association *asoc;
5155
5156                 inet_sk_set_state(sk, SCTP_SS_CLOSING);
5157                 asoc = list_entry(ep->asocs.next,
5158                                   struct sctp_association, asocs);
5159                 sctp_primitive_SHUTDOWN(net, asoc, NULL);
5160         }
5161 }
5162
5163 int sctp_get_sctp_info(struct sock *sk, struct sctp_association *asoc,
5164                        struct sctp_info *info)
5165 {
5166         struct sctp_transport *prim;
5167         struct list_head *pos;
5168         int mask;
5169
5170         memset(info, 0, sizeof(*info));
5171         if (!asoc) {
5172                 struct sctp_sock *sp = sctp_sk(sk);
5173
5174                 info->sctpi_s_autoclose = sp->autoclose;
5175                 info->sctpi_s_adaptation_ind = sp->adaptation_ind;
5176                 info->sctpi_s_pd_point = sp->pd_point;
5177                 info->sctpi_s_nodelay = sp->nodelay;
5178                 info->sctpi_s_disable_fragments = sp->disable_fragments;
5179                 info->sctpi_s_v4mapped = sp->v4mapped;
5180                 info->sctpi_s_frag_interleave = sp->frag_interleave;
5181                 info->sctpi_s_type = sp->type;
5182
5183                 return 0;
5184         }
5185
5186         info->sctpi_tag = asoc->c.my_vtag;
5187         info->sctpi_state = asoc->state;
5188         info->sctpi_rwnd = asoc->a_rwnd;
5189         info->sctpi_unackdata = asoc->unack_data;
5190         info->sctpi_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
5191         info->sctpi_instrms = asoc->stream.incnt;
5192         info->sctpi_outstrms = asoc->stream.outcnt;
5193         list_for_each(pos, &asoc->base.inqueue.in_chunk_list)
5194                 info->sctpi_inqueue++;
5195         list_for_each(pos, &asoc->outqueue.out_chunk_list)
5196                 info->sctpi_outqueue++;
5197         info->sctpi_overall_error = asoc->overall_error_count;
5198         info->sctpi_max_burst = asoc->max_burst;
5199         info->sctpi_maxseg = asoc->frag_point;
5200         info->sctpi_peer_rwnd = asoc->peer.rwnd;
5201         info->sctpi_peer_tag = asoc->c.peer_vtag;
5202
5203         mask = asoc->peer.ecn_capable << 1;
5204         mask = (mask | asoc->peer.ipv4_address) << 1;
5205         mask = (mask | asoc->peer.ipv6_address) << 1;
5206         mask = (mask | asoc->peer.hostname_address) << 1;
5207         mask = (mask | asoc->peer.asconf_capable) << 1;
5208         mask = (mask | asoc->peer.prsctp_capable) << 1;
5209         mask = (mask | asoc->peer.auth_capable);
5210         info->sctpi_peer_capable = mask;
5211         mask = asoc->peer.sack_needed << 1;
5212         mask = (mask | asoc->peer.sack_generation) << 1;
5213         mask = (mask | asoc->peer.zero_window_announced);
5214         info->sctpi_peer_sack = mask;
5215
5216         info->sctpi_isacks = asoc->stats.isacks;
5217         info->sctpi_osacks = asoc->stats.osacks;
5218         info->sctpi_opackets = asoc->stats.opackets;
5219         info->sctpi_ipackets = asoc->stats.ipackets;
5220         info->sctpi_rtxchunks = asoc->stats.rtxchunks;
5221         info->sctpi_outofseqtsns = asoc->stats.outofseqtsns;
5222         info->sctpi_idupchunks = asoc->stats.idupchunks;
5223         info->sctpi_gapcnt = asoc->stats.gapcnt;
5224         info->sctpi_ouodchunks = asoc->stats.ouodchunks;
5225         info->sctpi_iuodchunks = asoc->stats.iuodchunks;
5226         info->sctpi_oodchunks = asoc->stats.oodchunks;
5227         info->sctpi_iodchunks = asoc->stats.iodchunks;
5228         info->sctpi_octrlchunks = asoc->stats.octrlchunks;
5229         info->sctpi_ictrlchunks = asoc->stats.ictrlchunks;
5230
5231         prim = asoc->peer.primary_path;
5232         memcpy(&info->sctpi_p_address, &prim->ipaddr, sizeof(prim->ipaddr));
5233         info->sctpi_p_state = prim->state;
5234         info->sctpi_p_cwnd = prim->cwnd;
5235         info->sctpi_p_srtt = prim->srtt;
5236         info->sctpi_p_rto = jiffies_to_msecs(prim->rto);
5237         info->sctpi_p_hbinterval = prim->hbinterval;
5238         info->sctpi_p_pathmaxrxt = prim->pathmaxrxt;
5239         info->sctpi_p_sackdelay = jiffies_to_msecs(prim->sackdelay);
5240         info->sctpi_p_ssthresh = prim->ssthresh;
5241         info->sctpi_p_partial_bytes_acked = prim->partial_bytes_acked;
5242         info->sctpi_p_flight_size = prim->flight_size;
5243         info->sctpi_p_error = prim->error_count;
5244
5245         return 0;
5246 }
5247 EXPORT_SYMBOL_GPL(sctp_get_sctp_info);
5248
5249 /* use callback to avoid exporting the core structure */
5250 void sctp_transport_walk_start(struct rhashtable_iter *iter) __acquires(RCU)
5251 {
5252         rhltable_walk_enter(&sctp_transport_hashtable, iter);
5253
5254         rhashtable_walk_start(iter);
5255 }
5256
5257 void sctp_transport_walk_stop(struct rhashtable_iter *iter) __releases(RCU)
5258 {
5259         rhashtable_walk_stop(iter);
5260         rhashtable_walk_exit(iter);
5261 }
5262
5263 struct sctp_transport *sctp_transport_get_next(struct net *net,
5264                                                struct rhashtable_iter *iter)
5265 {
5266         struct sctp_transport *t;
5267
5268         t = rhashtable_walk_next(iter);
5269         for (; t; t = rhashtable_walk_next(iter)) {
5270                 if (IS_ERR(t)) {
5271                         if (PTR_ERR(t) == -EAGAIN)
5272                                 continue;
5273                         break;
5274                 }
5275
5276                 if (!sctp_transport_hold(t))
5277                         continue;
5278
5279                 if (net_eq(t->asoc->base.net, net) &&
5280                     t->asoc->peer.primary_path == t)
5281                         break;
5282
5283                 sctp_transport_put(t);
5284         }
5285
5286         return t;
5287 }
5288
5289 struct sctp_transport *sctp_transport_get_idx(struct net *net,
5290                                               struct rhashtable_iter *iter,
5291                                               int pos)
5292 {
5293         struct sctp_transport *t;
5294
5295         if (!pos)
5296                 return SEQ_START_TOKEN;
5297
5298         while ((t = sctp_transport_get_next(net, iter)) && !IS_ERR(t)) {
5299                 if (!--pos)
5300                         break;
5301                 sctp_transport_put(t);
5302         }
5303
5304         return t;
5305 }
5306
5307 int sctp_for_each_endpoint(int (*cb)(struct sctp_endpoint *, void *),
5308                            void *p) {
5309         int err = 0;
5310         int hash = 0;
5311         struct sctp_ep_common *epb;
5312         struct sctp_hashbucket *head;
5313
5314         for (head = sctp_ep_hashtable; hash < sctp_ep_hashsize;
5315              hash++, head++) {
5316                 read_lock_bh(&head->lock);
5317                 sctp_for_each_hentry(epb, &head->chain) {
5318                         err = cb(sctp_ep(epb), p);
5319                         if (err)
5320                                 break;
5321                 }
5322                 read_unlock_bh(&head->lock);
5323         }
5324
5325         return err;
5326 }
5327 EXPORT_SYMBOL_GPL(sctp_for_each_endpoint);
5328
5329 int sctp_transport_lookup_process(sctp_callback_t cb, struct net *net,
5330                                   const union sctp_addr *laddr,
5331                                   const union sctp_addr *paddr, void *p)
5332 {
5333         struct sctp_transport *transport;
5334         struct sctp_endpoint *ep;
5335         int err = -ENOENT;
5336
5337         rcu_read_lock();
5338         transport = sctp_addrs_lookup_transport(net, laddr, paddr);
5339         if (!transport) {
5340                 rcu_read_unlock();
5341                 return err;
5342         }
5343         ep = transport->asoc->ep;
5344         if (!sctp_endpoint_hold(ep)) { /* asoc can be peeled off */
5345                 sctp_transport_put(transport);
5346                 rcu_read_unlock();
5347                 return err;
5348         }
5349         rcu_read_unlock();
5350
5351         err = cb(ep, transport, p);
5352         sctp_endpoint_put(ep);
5353         sctp_transport_put(transport);
5354         return err;
5355 }
5356 EXPORT_SYMBOL_GPL(sctp_transport_lookup_process);
5357
5358 int sctp_transport_traverse_process(sctp_callback_t cb, sctp_callback_t cb_done,
5359                                     struct net *net, int *pos, void *p)
5360 {
5361         struct rhashtable_iter hti;
5362         struct sctp_transport *tsp;
5363         struct sctp_endpoint *ep;
5364         int ret;
5365
5366 again:
5367         ret = 0;
5368         sctp_transport_walk_start(&hti);
5369
5370         tsp = sctp_transport_get_idx(net, &hti, *pos + 1);
5371         for (; !IS_ERR_OR_NULL(tsp); tsp = sctp_transport_get_next(net, &hti)) {
5372                 ep = tsp->asoc->ep;
5373                 if (sctp_endpoint_hold(ep)) { /* asoc can be peeled off */
5374                         ret = cb(ep, tsp, p);
5375                         if (ret)
5376                                 break;
5377                         sctp_endpoint_put(ep);
5378                 }
5379                 (*pos)++;
5380                 sctp_transport_put(tsp);
5381         }
5382         sctp_transport_walk_stop(&hti);
5383
5384         if (ret) {
5385                 if (cb_done && !cb_done(ep, tsp, p)) {
5386                         (*pos)++;
5387                         sctp_endpoint_put(ep);
5388                         sctp_transport_put(tsp);
5389                         goto again;
5390                 }
5391                 sctp_endpoint_put(ep);
5392                 sctp_transport_put(tsp);
5393         }
5394
5395         return ret;
5396 }
5397 EXPORT_SYMBOL_GPL(sctp_transport_traverse_process);
5398
5399 /* 7.2.1 Association Status (SCTP_STATUS)
5400
5401  * Applications can retrieve current status information about an
5402  * association, including association state, peer receiver window size,
5403  * number of unacked data chunks, and number of data chunks pending
5404  * receipt.  This information is read-only.
5405  */
5406 static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
5407                                        char __user *optval,
5408                                        int __user *optlen)
5409 {
5410         struct sctp_status status;
5411         struct sctp_association *asoc = NULL;
5412         struct sctp_transport *transport;
5413         sctp_assoc_t associd;
5414         int retval = 0;
5415
5416         if (len < sizeof(status)) {
5417                 retval = -EINVAL;
5418                 goto out;
5419         }
5420
5421         len = sizeof(status);
5422         if (copy_from_user(&status, optval, len)) {
5423                 retval = -EFAULT;
5424                 goto out;
5425         }
5426
5427         associd = status.sstat_assoc_id;
5428         asoc = sctp_id2assoc(sk, associd);
5429         if (!asoc) {
5430                 retval = -EINVAL;
5431                 goto out;
5432         }
5433
5434         transport = asoc->peer.primary_path;
5435
5436         status.sstat_assoc_id = sctp_assoc2id(asoc);
5437         status.sstat_state = sctp_assoc_to_state(asoc);
5438         status.sstat_rwnd =  asoc->peer.rwnd;
5439         status.sstat_unackdata = asoc->unack_data;
5440
5441         status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
5442         status.sstat_instrms = asoc->stream.incnt;
5443         status.sstat_outstrms = asoc->stream.outcnt;
5444         status.sstat_fragmentation_point = asoc->frag_point;
5445         status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
5446         memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
5447                         transport->af_specific->sockaddr_len);
5448         /* Map ipv4 address into v4-mapped-on-v6 address.  */
5449         sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
5450                 (union sctp_addr *)&status.sstat_primary.spinfo_address);
5451         status.sstat_primary.spinfo_state = transport->state;
5452         status.sstat_primary.spinfo_cwnd = transport->cwnd;
5453         status.sstat_primary.spinfo_srtt = transport->srtt;
5454         status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
5455         status.sstat_primary.spinfo_mtu = transport->pathmtu;
5456
5457         if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
5458                 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
5459
5460         if (put_user(len, optlen)) {
5461                 retval = -EFAULT;
5462                 goto out;
5463         }
5464
5465         pr_debug("%s: len:%d, state:%d, rwnd:%d, assoc_id:%d\n",
5466                  __func__, len, status.sstat_state, status.sstat_rwnd,
5467                  status.sstat_assoc_id);
5468
5469         if (copy_to_user(optval, &status, len)) {
5470                 retval = -EFAULT;
5471                 goto out;
5472         }
5473
5474 out:
5475         return retval;
5476 }
5477
5478
5479 /* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
5480  *
5481  * Applications can retrieve information about a specific peer address
5482  * of an association, including its reachability state, congestion
5483  * window, and retransmission timer values.  This information is
5484  * read-only.
5485  */
5486 static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
5487                                           char __user *optval,
5488                                           int __user *optlen)
5489 {
5490         struct sctp_paddrinfo pinfo;
5491         struct sctp_transport *transport;
5492         int retval = 0;
5493
5494         if (len < sizeof(pinfo)) {
5495                 retval = -EINVAL;
5496                 goto out;
5497         }
5498
5499         len = sizeof(pinfo);
5500         if (copy_from_user(&pinfo, optval, len)) {
5501                 retval = -EFAULT;
5502                 goto out;
5503         }
5504
5505         transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
5506                                            pinfo.spinfo_assoc_id);
5507         if (!transport) {
5508                 retval = -EINVAL;
5509                 goto out;
5510         }
5511
5512         if (transport->state == SCTP_PF &&
5513             transport->asoc->pf_expose == SCTP_PF_EXPOSE_DISABLE) {
5514                 retval = -EACCES;
5515                 goto out;
5516         }
5517
5518         pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
5519         pinfo.spinfo_state = transport->state;
5520         pinfo.spinfo_cwnd = transport->cwnd;
5521         pinfo.spinfo_srtt = transport->srtt;
5522         pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
5523         pinfo.spinfo_mtu = transport->pathmtu;
5524
5525         if (pinfo.spinfo_state == SCTP_UNKNOWN)
5526                 pinfo.spinfo_state = SCTP_ACTIVE;
5527
5528         if (put_user(len, optlen)) {
5529                 retval = -EFAULT;
5530                 goto out;
5531         }
5532
5533         if (copy_to_user(optval, &pinfo, len)) {
5534                 retval = -EFAULT;
5535                 goto out;
5536         }
5537
5538 out:
5539         return retval;
5540 }
5541
5542 /* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
5543  *
5544  * This option is a on/off flag.  If enabled no SCTP message
5545  * fragmentation will be performed.  Instead if a message being sent
5546  * exceeds the current PMTU size, the message will NOT be sent and
5547  * instead a error will be indicated to the user.
5548  */
5549 static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
5550                                         char __user *optval, int __user *optlen)
5551 {
5552         int val;
5553
5554         if (len < sizeof(int))
5555                 return -EINVAL;
5556
5557         len = sizeof(int);
5558         val = (sctp_sk(sk)->disable_fragments == 1);
5559         if (put_user(len, optlen))
5560                 return -EFAULT;
5561         if (copy_to_user(optval, &val, len))
5562                 return -EFAULT;
5563         return 0;
5564 }
5565
5566 /* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
5567  *
5568  * This socket option is used to specify various notifications and
5569  * ancillary data the user wishes to receive.
5570  */
5571 static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
5572                                   int __user *optlen)
5573 {
5574         struct sctp_event_subscribe subscribe;
5575         __u8 *sn_type = (__u8 *)&subscribe;
5576         int i;
5577
5578         if (len == 0)
5579                 return -EINVAL;
5580         if (len > sizeof(struct sctp_event_subscribe))
5581                 len = sizeof(struct sctp_event_subscribe);
5582         if (put_user(len, optlen))
5583                 return -EFAULT;
5584
5585         for (i = 0; i < len; i++)
5586                 sn_type[i] = sctp_ulpevent_type_enabled(sctp_sk(sk)->subscribe,
5587                                                         SCTP_SN_TYPE_BASE + i);
5588
5589         if (copy_to_user(optval, &subscribe, len))
5590                 return -EFAULT;
5591
5592         return 0;
5593 }
5594
5595 /* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
5596  *
5597  * This socket option is applicable to the UDP-style socket only.  When
5598  * set it will cause associations that are idle for more than the
5599  * specified number of seconds to automatically close.  An association
5600  * being idle is defined an association that has NOT sent or received
5601  * user data.  The special value of '0' indicates that no automatic
5602  * close of any associations should be performed.  The option expects an
5603  * integer defining the number of seconds of idle time before an
5604  * association is closed.
5605  */
5606 static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
5607 {
5608         /* Applicable to UDP-style socket only */
5609         if (sctp_style(sk, TCP))
5610                 return -EOPNOTSUPP;
5611         if (len < sizeof(int))
5612                 return -EINVAL;
5613         len = sizeof(int);
5614         if (put_user(len, optlen))
5615                 return -EFAULT;
5616         if (put_user(sctp_sk(sk)->autoclose, (int __user *)optval))
5617                 return -EFAULT;
5618         return 0;
5619 }
5620
5621 /* Helper routine to branch off an association to a new socket.  */
5622 int sctp_do_peeloff(struct sock *sk, sctp_assoc_t id, struct socket **sockp)
5623 {
5624         struct sctp_association *asoc = sctp_id2assoc(sk, id);
5625         struct sctp_sock *sp = sctp_sk(sk);
5626         struct socket *sock;
5627         int err = 0;
5628
5629         /* Do not peel off from one netns to another one. */
5630         if (!net_eq(current->nsproxy->net_ns, sock_net(sk)))
5631                 return -EINVAL;
5632
5633         if (!asoc)
5634                 return -EINVAL;
5635
5636         /* An association cannot be branched off from an already peeled-off
5637          * socket, nor is this supported for tcp style sockets.
5638          */
5639         if (!sctp_style(sk, UDP))
5640                 return -EINVAL;
5641
5642         /* Create a new socket.  */
5643         err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
5644         if (err < 0)
5645                 return err;
5646
5647         sctp_copy_sock(sock->sk, sk, asoc);
5648
5649         /* Make peeled-off sockets more like 1-1 accepted sockets.
5650          * Set the daddr and initialize id to something more random and also
5651          * copy over any ip options.
5652          */
5653         sp->pf->to_sk_daddr(&asoc->peer.primary_addr, sock->sk);
5654         sp->pf->copy_ip_options(sk, sock->sk);
5655
5656         /* Populate the fields of the newsk from the oldsk and migrate the
5657          * asoc to the newsk.
5658          */
5659         err = sctp_sock_migrate(sk, sock->sk, asoc,
5660                                 SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
5661         if (err) {
5662                 sock_release(sock);
5663                 sock = NULL;
5664         }
5665
5666         *sockp = sock;
5667
5668         return err;
5669 }
5670 EXPORT_SYMBOL(sctp_do_peeloff);
5671
5672 static int sctp_getsockopt_peeloff_common(struct sock *sk, sctp_peeloff_arg_t *peeloff,
5673                                           struct file **newfile, unsigned flags)
5674 {
5675         struct socket *newsock;
5676         int retval;
5677
5678         retval = sctp_do_peeloff(sk, peeloff->associd, &newsock);
5679         if (retval < 0)
5680                 goto out;
5681
5682         /* Map the socket to an unused fd that can be returned to the user.  */
5683         retval = get_unused_fd_flags(flags & SOCK_CLOEXEC);
5684         if (retval < 0) {
5685                 sock_release(newsock);
5686                 goto out;
5687         }
5688
5689         *newfile = sock_alloc_file(newsock, 0, NULL);
5690         if (IS_ERR(*newfile)) {
5691                 put_unused_fd(retval);
5692                 retval = PTR_ERR(*newfile);
5693                 *newfile = NULL;
5694                 return retval;
5695         }
5696
5697         pr_debug("%s: sk:%p, newsk:%p, sd:%d\n", __func__, sk, newsock->sk,
5698                  retval);
5699
5700         peeloff->sd = retval;
5701
5702         if (flags & SOCK_NONBLOCK)
5703                 (*newfile)->f_flags |= O_NONBLOCK;
5704 out:
5705         return retval;
5706 }
5707
5708 static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
5709 {
5710         sctp_peeloff_arg_t peeloff;
5711         struct file *newfile = NULL;
5712         int retval = 0;
5713
5714         if (len < sizeof(sctp_peeloff_arg_t))
5715                 return -EINVAL;
5716         len = sizeof(sctp_peeloff_arg_t);
5717         if (copy_from_user(&peeloff, optval, len))
5718                 return -EFAULT;
5719
5720         retval = sctp_getsockopt_peeloff_common(sk, &peeloff, &newfile, 0);
5721         if (retval < 0)
5722                 goto out;
5723
5724         /* Return the fd mapped to the new socket.  */
5725         if (put_user(len, optlen)) {
5726                 fput(newfile);
5727                 put_unused_fd(retval);
5728                 return -EFAULT;
5729         }
5730
5731         if (copy_to_user(optval, &peeloff, len)) {
5732                 fput(newfile);
5733                 put_unused_fd(retval);
5734                 return -EFAULT;
5735         }
5736         fd_install(retval, newfile);
5737 out:
5738         return retval;
5739 }
5740
5741 static int sctp_getsockopt_peeloff_flags(struct sock *sk, int len,
5742                                          char __user *optval, int __user *optlen)
5743 {
5744         sctp_peeloff_flags_arg_t peeloff;
5745         struct file *newfile = NULL;
5746         int retval = 0;
5747
5748         if (len < sizeof(sctp_peeloff_flags_arg_t))
5749                 return -EINVAL;
5750         len = sizeof(sctp_peeloff_flags_arg_t);
5751         if (copy_from_user(&peeloff, optval, len))
5752                 return -EFAULT;
5753
5754         retval = sctp_getsockopt_peeloff_common(sk, &peeloff.p_arg,
5755                                                 &newfile, peeloff.flags);
5756         if (retval < 0)
5757                 goto out;
5758
5759         /* Return the fd mapped to the new socket.  */
5760         if (put_user(len, optlen)) {
5761                 fput(newfile);
5762                 put_unused_fd(retval);
5763                 return -EFAULT;
5764         }
5765
5766         if (copy_to_user(optval, &peeloff, len)) {
5767                 fput(newfile);
5768                 put_unused_fd(retval);
5769                 return -EFAULT;
5770         }
5771         fd_install(retval, newfile);
5772 out:
5773         return retval;
5774 }
5775
5776 /* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
5777  *
5778  * Applications can enable or disable heartbeats for any peer address of
5779  * an association, modify an address's heartbeat interval, force a
5780  * heartbeat to be sent immediately, and adjust the address's maximum
5781  * number of retransmissions sent before an address is considered
5782  * unreachable.  The following structure is used to access and modify an
5783  * address's parameters:
5784  *
5785  *  struct sctp_paddrparams {
5786  *     sctp_assoc_t            spp_assoc_id;
5787  *     struct sockaddr_storage spp_address;
5788  *     uint32_t                spp_hbinterval;
5789  *     uint16_t                spp_pathmaxrxt;
5790  *     uint32_t                spp_pathmtu;
5791  *     uint32_t                spp_sackdelay;
5792  *     uint32_t                spp_flags;
5793  * };
5794  *
5795  *   spp_assoc_id    - (one-to-many style socket) This is filled in the
5796  *                     application, and identifies the association for
5797  *                     this query.
5798  *   spp_address     - This specifies which address is of interest.
5799  *   spp_hbinterval  - This contains the value of the heartbeat interval,
5800  *                     in milliseconds.  If a  value of zero
5801  *                     is present in this field then no changes are to
5802  *                     be made to this parameter.
5803  *   spp_pathmaxrxt  - This contains the maximum number of
5804  *                     retransmissions before this address shall be
5805  *                     considered unreachable. If a  value of zero
5806  *                     is present in this field then no changes are to
5807  *                     be made to this parameter.
5808  *   spp_pathmtu     - When Path MTU discovery is disabled the value
5809  *                     specified here will be the "fixed" path mtu.
5810  *                     Note that if the spp_address field is empty
5811  *                     then all associations on this address will
5812  *                     have this fixed path mtu set upon them.
5813  *
5814  *   spp_sackdelay   - When delayed sack is enabled, this value specifies
5815  *                     the number of milliseconds that sacks will be delayed
5816  *                     for. This value will apply to all addresses of an
5817  *                     association if the spp_address field is empty. Note
5818  *                     also, that if delayed sack is enabled and this
5819  *                     value is set to 0, no change is made to the last
5820  *                     recorded delayed sack timer value.
5821  *
5822  *   spp_flags       - These flags are used to control various features
5823  *                     on an association. The flag field may contain
5824  *                     zero or more of the following options.
5825  *
5826  *                     SPP_HB_ENABLE  - Enable heartbeats on the
5827  *                     specified address. Note that if the address
5828  *                     field is empty all addresses for the association
5829  *                     have heartbeats enabled upon them.
5830  *
5831  *                     SPP_HB_DISABLE - Disable heartbeats on the
5832  *                     speicifed address. Note that if the address
5833  *                     field is empty all addresses for the association
5834  *                     will have their heartbeats disabled. Note also
5835  *                     that SPP_HB_ENABLE and SPP_HB_DISABLE are
5836  *                     mutually exclusive, only one of these two should
5837  *                     be specified. Enabling both fields will have
5838  *                     undetermined results.
5839  *
5840  *                     SPP_HB_DEMAND - Request a user initiated heartbeat
5841  *                     to be made immediately.
5842  *
5843  *                     SPP_PMTUD_ENABLE - This field will enable PMTU
5844  *                     discovery upon the specified address. Note that
5845  *                     if the address feild is empty then all addresses
5846  *                     on the association are effected.
5847  *
5848  *                     SPP_PMTUD_DISABLE - This field will disable PMTU
5849  *                     discovery upon the specified address. Note that
5850  *                     if the address feild is empty then all addresses
5851  *                     on the association are effected. Not also that
5852  *                     SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
5853  *                     exclusive. Enabling both will have undetermined
5854  *                     results.
5855  *
5856  *                     SPP_SACKDELAY_ENABLE - Setting this flag turns
5857  *                     on delayed sack. The time specified in spp_sackdelay
5858  *                     is used to specify the sack delay for this address. Note
5859  *                     that if spp_address is empty then all addresses will
5860  *                     enable delayed sack and take on the sack delay
5861  *                     value specified in spp_sackdelay.
5862  *                     SPP_SACKDELAY_DISABLE - Setting this flag turns
5863  *                     off delayed sack. If the spp_address field is blank then
5864  *                     delayed sack is disabled for the entire association. Note
5865  *                     also that this field is mutually exclusive to
5866  *                     SPP_SACKDELAY_ENABLE, setting both will have undefined
5867  *                     results.
5868  *
5869  *                     SPP_IPV6_FLOWLABEL:  Setting this flag enables the
5870  *                     setting of the IPV6 flow label value.  The value is
5871  *                     contained in the spp_ipv6_flowlabel field.
5872  *                     Upon retrieval, this flag will be set to indicate that
5873  *                     the spp_ipv6_flowlabel field has a valid value returned.
5874  *                     If a specific destination address is set (in the
5875  *                     spp_address field), then the value returned is that of
5876  *                     the address.  If just an association is specified (and
5877  *                     no address), then the association's default flow label
5878  *                     is returned.  If neither an association nor a destination
5879  *                     is specified, then the socket's default flow label is
5880  *                     returned.  For non-IPv6 sockets, this flag will be left
5881  *                     cleared.
5882  *
5883  *                     SPP_DSCP:  Setting this flag enables the setting of the
5884  *                     Differentiated Services Code Point (DSCP) value
5885  *                     associated with either the association or a specific
5886  *                     address.  The value is obtained in the spp_dscp field.
5887  *                     Upon retrieval, this flag will be set to indicate that
5888  *                     the spp_dscp field has a valid value returned.  If a
5889  *                     specific destination address is set when called (in the
5890  *                     spp_address field), then that specific destination
5891  *                     address's DSCP value is returned.  If just an association
5892  *                     is specified, then the association's default DSCP is
5893  *                     returned.  If neither an association nor a destination is
5894  *                     specified, then the socket's default DSCP is returned.
5895  *
5896  *   spp_ipv6_flowlabel
5897  *                   - This field is used in conjunction with the
5898  *                     SPP_IPV6_FLOWLABEL flag and contains the IPv6 flow label.
5899  *                     The 20 least significant bits are used for the flow
5900  *                     label.  This setting has precedence over any IPv6-layer
5901  *                     setting.
5902  *
5903  *   spp_dscp        - This field is used in conjunction with the SPP_DSCP flag
5904  *                     and contains the DSCP.  The 6 most significant bits are
5905  *                     used for the DSCP.  This setting has precedence over any
5906  *                     IPv4- or IPv6- layer setting.
5907  */
5908 static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
5909                                             char __user *optval, int __user *optlen)
5910 {
5911         struct sctp_paddrparams  params;
5912         struct sctp_transport   *trans = NULL;
5913         struct sctp_association *asoc = NULL;
5914         struct sctp_sock        *sp = sctp_sk(sk);
5915
5916         if (len >= sizeof(params))
5917                 len = sizeof(params);
5918         else if (len >= ALIGN(offsetof(struct sctp_paddrparams,
5919                                        spp_ipv6_flowlabel), 4))
5920                 len = ALIGN(offsetof(struct sctp_paddrparams,
5921                                      spp_ipv6_flowlabel), 4);
5922         else
5923                 return -EINVAL;
5924
5925         if (copy_from_user(&params, optval, len))
5926                 return -EFAULT;
5927
5928         /* If an address other than INADDR_ANY is specified, and
5929          * no transport is found, then the request is invalid.
5930          */
5931         if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
5932                 trans = sctp_addr_id2transport(sk, &params.spp_address,
5933                                                params.spp_assoc_id);
5934                 if (!trans) {
5935                         pr_debug("%s: failed no transport\n", __func__);
5936                         return -EINVAL;
5937                 }
5938         }
5939
5940         /* Get association, if assoc_id != SCTP_FUTURE_ASSOC and the
5941          * socket is a one to many style socket, and an association
5942          * was not found, then the id was invalid.
5943          */
5944         asoc = sctp_id2assoc(sk, params.spp_assoc_id);
5945         if (!asoc && params.spp_assoc_id != SCTP_FUTURE_ASSOC &&
5946             sctp_style(sk, UDP)) {
5947                 pr_debug("%s: failed no association\n", __func__);
5948                 return -EINVAL;
5949         }
5950
5951         if (trans) {
5952                 /* Fetch transport values. */
5953                 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
5954                 params.spp_pathmtu    = trans->pathmtu;
5955                 params.spp_pathmaxrxt = trans->pathmaxrxt;
5956                 params.spp_sackdelay  = jiffies_to_msecs(trans->sackdelay);
5957
5958                 /*draft-11 doesn't say what to return in spp_flags*/
5959                 params.spp_flags      = trans->param_flags;
5960                 if (trans->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5961                         params.spp_ipv6_flowlabel = trans->flowlabel &
5962                                                     SCTP_FLOWLABEL_VAL_MASK;
5963                         params.spp_flags |= SPP_IPV6_FLOWLABEL;
5964                 }
5965                 if (trans->dscp & SCTP_DSCP_SET_MASK) {
5966                         params.spp_dscp = trans->dscp & SCTP_DSCP_VAL_MASK;
5967                         params.spp_flags |= SPP_DSCP;
5968                 }
5969         } else if (asoc) {
5970                 /* Fetch association values. */
5971                 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
5972                 params.spp_pathmtu    = asoc->pathmtu;
5973                 params.spp_pathmaxrxt = asoc->pathmaxrxt;
5974                 params.spp_sackdelay  = jiffies_to_msecs(asoc->sackdelay);
5975
5976                 /*draft-11 doesn't say what to return in spp_flags*/
5977                 params.spp_flags      = asoc->param_flags;
5978                 if (asoc->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5979                         params.spp_ipv6_flowlabel = asoc->flowlabel &
5980                                                     SCTP_FLOWLABEL_VAL_MASK;
5981                         params.spp_flags |= SPP_IPV6_FLOWLABEL;
5982                 }
5983                 if (asoc->dscp & SCTP_DSCP_SET_MASK) {
5984                         params.spp_dscp = asoc->dscp & SCTP_DSCP_VAL_MASK;
5985                         params.spp_flags |= SPP_DSCP;
5986                 }
5987         } else {
5988                 /* Fetch socket values. */
5989                 params.spp_hbinterval = sp->hbinterval;
5990                 params.spp_pathmtu    = sp->pathmtu;
5991                 params.spp_sackdelay  = sp->sackdelay;
5992                 params.spp_pathmaxrxt = sp->pathmaxrxt;
5993
5994                 /*draft-11 doesn't say what to return in spp_flags*/
5995                 params.spp_flags      = sp->param_flags;
5996                 if (sp->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5997                         params.spp_ipv6_flowlabel = sp->flowlabel &
5998                                                     SCTP_FLOWLABEL_VAL_MASK;
5999                         params.spp_flags |= SPP_IPV6_FLOWLABEL;
6000                 }
6001                 if (sp->dscp & SCTP_DSCP_SET_MASK) {
6002                         params.spp_dscp = sp->dscp & SCTP_DSCP_VAL_MASK;
6003                         params.spp_flags |= SPP_DSCP;
6004                 }
6005         }
6006
6007         if (copy_to_user(optval, &params, len))
6008                 return -EFAULT;
6009
6010         if (put_user(len, optlen))
6011                 return -EFAULT;
6012
6013         return 0;
6014 }
6015
6016 /*
6017  * 7.1.23.  Get or set delayed ack timer (SCTP_DELAYED_SACK)
6018  *
6019  * This option will effect the way delayed acks are performed.  This
6020  * option allows you to get or set the delayed ack time, in
6021  * milliseconds.  It also allows changing the delayed ack frequency.
6022  * Changing the frequency to 1 disables the delayed sack algorithm.  If
6023  * the assoc_id is 0, then this sets or gets the endpoints default
6024  * values.  If the assoc_id field is non-zero, then the set or get
6025  * effects the specified association for the one to many model (the
6026  * assoc_id field is ignored by the one to one model).  Note that if
6027  * sack_delay or sack_freq are 0 when setting this option, then the
6028  * current values will remain unchanged.
6029  *
6030  * struct sctp_sack_info {
6031  *     sctp_assoc_t            sack_assoc_id;
6032  *     uint32_t                sack_delay;
6033  *     uint32_t                sack_freq;
6034  * };
6035  *
6036  * sack_assoc_id -  This parameter, indicates which association the user
6037  *    is performing an action upon.  Note that if this field's value is
6038  *    zero then the endpoints default value is changed (effecting future
6039  *    associations only).
6040  *
6041  * sack_delay -  This parameter contains the number of milliseconds that
6042  *    the user is requesting the delayed ACK timer be set to.  Note that
6043  *    this value is defined in the standard to be between 200 and 500
6044  *    milliseconds.
6045  *
6046  * sack_freq -  This parameter contains the number of packets that must
6047  *    be received before a sack is sent without waiting for the delay
6048  *    timer to expire.  The default value for this is 2, setting this
6049  *    value to 1 will disable the delayed sack algorithm.
6050  */
6051 static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
6052                                             char __user *optval,
6053                                             int __user *optlen)
6054 {
6055         struct sctp_sack_info    params;
6056         struct sctp_association *asoc = NULL;
6057         struct sctp_sock        *sp = sctp_sk(sk);
6058
6059         if (len >= sizeof(struct sctp_sack_info)) {
6060                 len = sizeof(struct sctp_sack_info);
6061
6062                 if (copy_from_user(&params, optval, len))
6063                         return -EFAULT;
6064         } else if (len == sizeof(struct sctp_assoc_value)) {
6065                 pr_warn_ratelimited(DEPRECATED
6066                                     "%s (pid %d) "
6067                                     "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
6068                                     "Use struct sctp_sack_info instead\n",
6069                                     current->comm, task_pid_nr(current));
6070                 if (copy_from_user(&params, optval, len))
6071                         return -EFAULT;
6072         } else
6073                 return -EINVAL;
6074
6075         /* Get association, if sack_assoc_id != SCTP_FUTURE_ASSOC and the
6076          * socket is a one to many style socket, and an association
6077          * was not found, then the id was invalid.
6078          */
6079         asoc = sctp_id2assoc(sk, params.sack_assoc_id);
6080         if (!asoc && params.sack_assoc_id != SCTP_FUTURE_ASSOC &&
6081             sctp_style(sk, UDP))
6082                 return -EINVAL;
6083
6084         if (asoc) {
6085                 /* Fetch association values. */
6086                 if (asoc->param_flags & SPP_SACKDELAY_ENABLE) {
6087                         params.sack_delay = jiffies_to_msecs(asoc->sackdelay);
6088                         params.sack_freq = asoc->sackfreq;
6089
6090                 } else {
6091                         params.sack_delay = 0;
6092                         params.sack_freq = 1;
6093                 }
6094         } else {
6095                 /* Fetch socket values. */
6096                 if (sp->param_flags & SPP_SACKDELAY_ENABLE) {
6097                         params.sack_delay  = sp->sackdelay;
6098                         params.sack_freq = sp->sackfreq;
6099                 } else {
6100                         params.sack_delay  = 0;
6101                         params.sack_freq = 1;
6102                 }
6103         }
6104
6105         if (copy_to_user(optval, &params, len))
6106                 return -EFAULT;
6107
6108         if (put_user(len, optlen))
6109                 return -EFAULT;
6110
6111         return 0;
6112 }
6113
6114 /* 7.1.3 Initialization Parameters (SCTP_INITMSG)
6115  *
6116  * Applications can specify protocol parameters for the default association
6117  * initialization.  The option name argument to setsockopt() and getsockopt()
6118  * is SCTP_INITMSG.
6119  *
6120  * Setting initialization parameters is effective only on an unconnected
6121  * socket (for UDP-style sockets only future associations are effected
6122  * by the change).  With TCP-style sockets, this option is inherited by
6123  * sockets derived from a listener socket.
6124  */
6125 static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
6126 {
6127         if (len < sizeof(struct sctp_initmsg))
6128                 return -EINVAL;
6129         len = sizeof(struct sctp_initmsg);
6130         if (put_user(len, optlen))
6131                 return -EFAULT;
6132         if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
6133                 return -EFAULT;
6134         return 0;
6135 }
6136
6137
6138 static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
6139                                       char __user *optval, int __user *optlen)
6140 {
6141         struct sctp_association *asoc;
6142         int cnt = 0;
6143         struct sctp_getaddrs getaddrs;
6144         struct sctp_transport *from;
6145         void __user *to;
6146         union sctp_addr temp;
6147         struct sctp_sock *sp = sctp_sk(sk);
6148         int addrlen;
6149         size_t space_left;
6150         int bytes_copied;
6151
6152         if (len < sizeof(struct sctp_getaddrs))
6153                 return -EINVAL;
6154
6155         if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
6156                 return -EFAULT;
6157
6158         /* For UDP-style sockets, id specifies the association to query.  */
6159         asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
6160         if (!asoc)
6161                 return -EINVAL;
6162
6163         to = optval + offsetof(struct sctp_getaddrs, addrs);
6164         space_left = len - offsetof(struct sctp_getaddrs, addrs);
6165
6166         list_for_each_entry(from, &asoc->peer.transport_addr_list,
6167                                 transports) {
6168                 memcpy(&temp, &from->ipaddr, sizeof(temp));
6169                 addrlen = sctp_get_pf_specific(sk->sk_family)
6170                               ->addr_to_user(sp, &temp);
6171                 if (space_left < addrlen)
6172                         return -ENOMEM;
6173                 if (copy_to_user(to, &temp, addrlen))
6174                         return -EFAULT;
6175                 to += addrlen;
6176                 cnt++;
6177                 space_left -= addrlen;
6178         }
6179
6180         if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
6181                 return -EFAULT;
6182         bytes_copied = ((char __user *)to) - optval;
6183         if (put_user(bytes_copied, optlen))
6184                 return -EFAULT;
6185
6186         return 0;
6187 }
6188
6189 static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to,
6190                             size_t space_left, int *bytes_copied)
6191 {
6192         struct sctp_sockaddr_entry *addr;
6193         union sctp_addr temp;
6194         int cnt = 0;
6195         int addrlen;
6196         struct net *net = sock_net(sk);
6197
6198         rcu_read_lock();
6199         list_for_each_entry_rcu(addr, &net->sctp.local_addr_list, list) {
6200                 if (!addr->valid)
6201                         continue;
6202
6203                 if ((PF_INET == sk->sk_family) &&
6204                     (AF_INET6 == addr->a.sa.sa_family))
6205                         continue;
6206                 if ((PF_INET6 == sk->sk_family) &&
6207                     inet_v6_ipv6only(sk) &&
6208                     (AF_INET == addr->a.sa.sa_family))
6209                         continue;
6210                 memcpy(&temp, &addr->a, sizeof(temp));
6211                 if (!temp.v4.sin_port)
6212                         temp.v4.sin_port = htons(port);
6213
6214                 addrlen = sctp_get_pf_specific(sk->sk_family)
6215                               ->addr_to_user(sctp_sk(sk), &temp);
6216
6217                 if (space_left < addrlen) {
6218                         cnt =  -ENOMEM;
6219                         break;
6220                 }
6221                 memcpy(to, &temp, addrlen);
6222
6223                 to += addrlen;
6224                 cnt++;
6225                 space_left -= addrlen;
6226                 *bytes_copied += addrlen;
6227         }
6228         rcu_read_unlock();
6229
6230         return cnt;
6231 }
6232
6233
6234 static int sctp_getsockopt_local_addrs(struct sock *sk, int len,
6235                                        char __user *optval, int __user *optlen)
6236 {
6237         struct sctp_bind_addr *bp;
6238         struct sctp_association *asoc;
6239         int cnt = 0;
6240         struct sctp_getaddrs getaddrs;
6241         struct sctp_sockaddr_entry *addr;
6242         void __user *to;
6243         union sctp_addr temp;
6244         struct sctp_sock *sp = sctp_sk(sk);
6245         int addrlen;
6246         int err = 0;
6247         size_t space_left;
6248         int bytes_copied = 0;
6249         void *addrs;
6250         void *buf;
6251
6252         if (len < sizeof(struct sctp_getaddrs))
6253                 return -EINVAL;
6254
6255         if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
6256                 return -EFAULT;
6257
6258         /*
6259          *  For UDP-style sockets, id specifies the association to query.
6260          *  If the id field is set to the value '0' then the locally bound
6261          *  addresses are returned without regard to any particular
6262          *  association.
6263          */
6264         if (0 == getaddrs.assoc_id) {
6265                 bp = &sctp_sk(sk)->ep->base.bind_addr;
6266         } else {
6267                 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
6268                 if (!asoc)
6269                         return -EINVAL;
6270                 bp = &asoc->base.bind_addr;
6271         }
6272
6273         to = optval + offsetof(struct sctp_getaddrs, addrs);
6274         space_left = len - offsetof(struct sctp_getaddrs, addrs);
6275
6276         addrs = kmalloc(space_left, GFP_USER | __GFP_NOWARN);
6277         if (!addrs)
6278                 return -ENOMEM;
6279
6280         /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
6281          * addresses from the global local address list.
6282          */
6283         if (sctp_list_single_entry(&bp->address_list)) {
6284                 addr = list_entry(bp->address_list.next,
6285                                   struct sctp_sockaddr_entry, list);
6286                 if (sctp_is_any(sk, &addr->a)) {
6287                         cnt = sctp_copy_laddrs(sk, bp->port, addrs,
6288                                                 space_left, &bytes_copied);
6289                         if (cnt < 0) {
6290                                 err = cnt;
6291                                 goto out;
6292                         }
6293                         goto copy_getaddrs;
6294                 }
6295         }
6296
6297         buf = addrs;
6298         /* Protection on the bound address list is not needed since
6299          * in the socket option context we hold a socket lock and
6300          * thus the bound address list can't change.
6301          */
6302         list_for_each_entry(addr, &bp->address_list, list) {
6303                 memcpy(&temp, &addr->a, sizeof(temp));
6304                 addrlen = sctp_get_pf_specific(sk->sk_family)
6305                               ->addr_to_user(sp, &temp);
6306                 if (space_left < addrlen) {
6307                         err =  -ENOMEM; /*fixme: right error?*/
6308                         goto out;
6309                 }
6310                 memcpy(buf, &temp, addrlen);
6311                 buf += addrlen;
6312                 bytes_copied += addrlen;
6313                 cnt++;
6314                 space_left -= addrlen;
6315         }
6316
6317 copy_getaddrs:
6318         if (copy_to_user(to, addrs, bytes_copied)) {
6319                 err = -EFAULT;
6320                 goto out;
6321         }
6322         if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num)) {
6323                 err = -EFAULT;
6324                 goto out;
6325         }
6326         /* XXX: We should have accounted for sizeof(struct sctp_getaddrs) too,
6327          * but we can't change it anymore.
6328          */
6329         if (put_user(bytes_copied, optlen))
6330                 err = -EFAULT;
6331 out:
6332         kfree(addrs);
6333         return err;
6334 }
6335
6336 /* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
6337  *
6338  * Requests that the local SCTP stack use the enclosed peer address as
6339  * the association primary.  The enclosed address must be one of the
6340  * association peer's addresses.
6341  */
6342 static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
6343                                         char __user *optval, int __user *optlen)
6344 {
6345         struct sctp_prim prim;
6346         struct sctp_association *asoc;
6347         struct sctp_sock *sp = sctp_sk(sk);
6348
6349         if (len < sizeof(struct sctp_prim))
6350                 return -EINVAL;
6351
6352         len = sizeof(struct sctp_prim);
6353
6354         if (copy_from_user(&prim, optval, len))
6355                 return -EFAULT;
6356
6357         asoc = sctp_id2assoc(sk, prim.ssp_assoc_id);
6358         if (!asoc)
6359                 return -EINVAL;
6360
6361         if (!asoc->peer.primary_path)
6362                 return -ENOTCONN;
6363
6364         memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr,
6365                 asoc->peer.primary_path->af_specific->sockaddr_len);
6366
6367         sctp_get_pf_specific(sk->sk_family)->addr_to_user(sp,
6368                         (union sctp_addr *)&prim.ssp_addr);
6369
6370         if (put_user(len, optlen))
6371                 return -EFAULT;
6372         if (copy_to_user(optval, &prim, len))
6373                 return -EFAULT;
6374
6375         return 0;
6376 }
6377
6378 /*
6379  * 7.1.11  Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER)
6380  *
6381  * Requests that the local endpoint set the specified Adaptation Layer
6382  * Indication parameter for all future INIT and INIT-ACK exchanges.
6383  */
6384 static int sctp_getsockopt_adaptation_layer(struct sock *sk, int len,
6385                                   char __user *optval, int __user *optlen)
6386 {
6387         struct sctp_setadaptation adaptation;
6388
6389         if (len < sizeof(struct sctp_setadaptation))
6390                 return -EINVAL;
6391
6392         len = sizeof(struct sctp_setadaptation);
6393
6394         adaptation.ssb_adaptation_ind = sctp_sk(sk)->adaptation_ind;
6395
6396         if (put_user(len, optlen))
6397                 return -EFAULT;
6398         if (copy_to_user(optval, &adaptation, len))
6399                 return -EFAULT;
6400
6401         return 0;
6402 }
6403
6404 /*
6405  *
6406  * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
6407  *
6408  *   Applications that wish to use the sendto() system call may wish to
6409  *   specify a default set of parameters that would normally be supplied
6410  *   through the inclusion of ancillary data.  This socket option allows
6411  *   such an application to set the default sctp_sndrcvinfo structure.
6412
6413
6414  *   The application that wishes to use this socket option simply passes
6415  *   in to this call the sctp_sndrcvinfo structure defined in Section
6416  *   5.2.2) The input parameters accepted by this call include
6417  *   sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
6418  *   sinfo_timetolive.  The user must provide the sinfo_assoc_id field in
6419  *   to this call if the caller is using the UDP model.
6420  *
6421  *   For getsockopt, it get the default sctp_sndrcvinfo structure.
6422  */
6423 static int sctp_getsockopt_default_send_param(struct sock *sk,
6424                                         int len, char __user *optval,
6425                                         int __user *optlen)
6426 {
6427         struct sctp_sock *sp = sctp_sk(sk);
6428         struct sctp_association *asoc;
6429         struct sctp_sndrcvinfo info;
6430
6431         if (len < sizeof(info))
6432                 return -EINVAL;
6433
6434         len = sizeof(info);
6435
6436         if (copy_from_user(&info, optval, len))
6437                 return -EFAULT;
6438
6439         asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
6440         if (!asoc && info.sinfo_assoc_id != SCTP_FUTURE_ASSOC &&
6441             sctp_style(sk, UDP))
6442                 return -EINVAL;
6443
6444         if (asoc) {
6445                 info.sinfo_stream = asoc->default_stream;
6446                 info.sinfo_flags = asoc->default_flags;
6447                 info.sinfo_ppid = asoc->default_ppid;
6448                 info.sinfo_context = asoc->default_context;
6449                 info.sinfo_timetolive = asoc->default_timetolive;
6450         } else {
6451                 info.sinfo_stream = sp->default_stream;
6452                 info.sinfo_flags = sp->default_flags;
6453                 info.sinfo_ppid = sp->default_ppid;
6454                 info.sinfo_context = sp->default_context;
6455                 info.sinfo_timetolive = sp->default_timetolive;
6456         }
6457
6458         if (put_user(len, optlen))
6459                 return -EFAULT;
6460         if (copy_to_user(optval, &info, len))
6461                 return -EFAULT;
6462
6463         return 0;
6464 }
6465
6466 /* RFC6458, Section 8.1.31. Set/get Default Send Parameters
6467  * (SCTP_DEFAULT_SNDINFO)
6468  */
6469 static int sctp_getsockopt_default_sndinfo(struct sock *sk, int len,
6470                                            char __user *optval,
6471                                            int __user *optlen)
6472 {
6473         struct sctp_sock *sp = sctp_sk(sk);
6474         struct sctp_association *asoc;
6475         struct sctp_sndinfo info;
6476
6477         if (len < sizeof(info))
6478                 return -EINVAL;
6479
6480         len = sizeof(info);
6481
6482         if (copy_from_user(&info, optval, len))
6483                 return -EFAULT;
6484
6485         asoc = sctp_id2assoc(sk, info.snd_assoc_id);
6486         if (!asoc && info.snd_assoc_id != SCTP_FUTURE_ASSOC &&
6487             sctp_style(sk, UDP))
6488                 return -EINVAL;
6489
6490         if (asoc) {
6491                 info.snd_sid = asoc->default_stream;
6492                 info.snd_flags = asoc->default_flags;
6493                 info.snd_ppid = asoc->default_ppid;
6494                 info.snd_context = asoc->default_context;
6495         } else {
6496                 info.snd_sid = sp->default_stream;
6497                 info.snd_flags = sp->default_flags;
6498                 info.snd_ppid = sp->default_ppid;
6499                 info.snd_context = sp->default_context;
6500         }
6501
6502         if (put_user(len, optlen))
6503                 return -EFAULT;
6504         if (copy_to_user(optval, &info, len))
6505                 return -EFAULT;
6506
6507         return 0;
6508 }
6509
6510 /*
6511  *
6512  * 7.1.5 SCTP_NODELAY
6513  *
6514  * Turn on/off any Nagle-like algorithm.  This means that packets are
6515  * generally sent as soon as possible and no unnecessary delays are
6516  * introduced, at the cost of more packets in the network.  Expects an
6517  * integer boolean flag.
6518  */
6519
6520 static int sctp_getsockopt_nodelay(struct sock *sk, int len,
6521                                    char __user *optval, int __user *optlen)
6522 {
6523         int val;
6524
6525         if (len < sizeof(int))
6526                 return -EINVAL;
6527
6528         len = sizeof(int);
6529         val = (sctp_sk(sk)->nodelay == 1);
6530         if (put_user(len, optlen))
6531                 return -EFAULT;
6532         if (copy_to_user(optval, &val, len))
6533                 return -EFAULT;
6534         return 0;
6535 }
6536
6537 /*
6538  *
6539  * 7.1.1 SCTP_RTOINFO
6540  *
6541  * The protocol parameters used to initialize and bound retransmission
6542  * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
6543  * and modify these parameters.
6544  * All parameters are time values, in milliseconds.  A value of 0, when
6545  * modifying the parameters, indicates that the current value should not
6546  * be changed.
6547  *
6548  */
6549 static int sctp_getsockopt_rtoinfo(struct sock *sk, int len,
6550                                 char __user *optval,
6551                                 int __user *optlen) {
6552         struct sctp_rtoinfo rtoinfo;
6553         struct sctp_association *asoc;
6554
6555         if (len < sizeof (struct sctp_rtoinfo))
6556                 return -EINVAL;
6557
6558         len = sizeof(struct sctp_rtoinfo);
6559
6560         if (copy_from_user(&rtoinfo, optval, len))
6561                 return -EFAULT;
6562
6563         asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
6564
6565         if (!asoc && rtoinfo.srto_assoc_id != SCTP_FUTURE_ASSOC &&
6566             sctp_style(sk, UDP))
6567                 return -EINVAL;
6568
6569         /* Values corresponding to the specific association. */
6570         if (asoc) {
6571                 rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial);
6572                 rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max);
6573                 rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min);
6574         } else {
6575                 /* Values corresponding to the endpoint. */
6576                 struct sctp_sock *sp = sctp_sk(sk);
6577
6578                 rtoinfo.srto_initial = sp->rtoinfo.srto_initial;
6579                 rtoinfo.srto_max = sp->rtoinfo.srto_max;
6580                 rtoinfo.srto_min = sp->rtoinfo.srto_min;
6581         }
6582
6583         if (put_user(len, optlen))
6584                 return -EFAULT;
6585
6586         if (copy_to_user(optval, &rtoinfo, len))
6587                 return -EFAULT;
6588
6589         return 0;
6590 }
6591
6592 /*
6593  *
6594  * 7.1.2 SCTP_ASSOCINFO
6595  *
6596  * This option is used to tune the maximum retransmission attempts
6597  * of the association.
6598  * Returns an error if the new association retransmission value is
6599  * greater than the sum of the retransmission value  of the peer.
6600  * See [SCTP] for more information.
6601  *
6602  */
6603 static int sctp_getsockopt_associnfo(struct sock *sk, int len,
6604                                      char __user *optval,
6605                                      int __user *optlen)
6606 {
6607
6608         struct sctp_assocparams assocparams;
6609         struct sctp_association *asoc;
6610         struct list_head *pos;
6611         int cnt = 0;
6612
6613         if (len < sizeof (struct sctp_assocparams))
6614                 return -EINVAL;
6615
6616         len = sizeof(struct sctp_assocparams);
6617
6618         if (copy_from_user(&assocparams, optval, len))
6619                 return -EFAULT;
6620
6621         asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
6622
6623         if (!asoc && assocparams.sasoc_assoc_id != SCTP_FUTURE_ASSOC &&
6624             sctp_style(sk, UDP))
6625                 return -EINVAL;
6626
6627         /* Values correspoinding to the specific association */
6628         if (asoc) {
6629                 assocparams.sasoc_asocmaxrxt = asoc->max_retrans;
6630                 assocparams.sasoc_peer_rwnd = asoc->peer.rwnd;
6631                 assocparams.sasoc_local_rwnd = asoc->a_rwnd;
6632                 assocparams.sasoc_cookie_life = ktime_to_ms(asoc->cookie_life);
6633
6634                 list_for_each(pos, &asoc->peer.transport_addr_list) {
6635                         cnt++;
6636                 }
6637
6638                 assocparams.sasoc_number_peer_destinations = cnt;
6639         } else {
6640                 /* Values corresponding to the endpoint */
6641                 struct sctp_sock *sp = sctp_sk(sk);
6642
6643                 assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt;
6644                 assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd;
6645                 assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd;
6646                 assocparams.sasoc_cookie_life =
6647                                         sp->assocparams.sasoc_cookie_life;
6648                 assocparams.sasoc_number_peer_destinations =
6649                                         sp->assocparams.
6650                                         sasoc_number_peer_destinations;
6651         }
6652
6653         if (put_user(len, optlen))
6654                 return -EFAULT;
6655
6656         if (copy_to_user(optval, &assocparams, len))
6657                 return -EFAULT;
6658
6659         return 0;
6660 }
6661
6662 /*
6663  * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
6664  *
6665  * This socket option is a boolean flag which turns on or off mapped V4
6666  * addresses.  If this option is turned on and the socket is type
6667  * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
6668  * If this option is turned off, then no mapping will be done of V4
6669  * addresses and a user will receive both PF_INET6 and PF_INET type
6670  * addresses on the socket.
6671  */
6672 static int sctp_getsockopt_mappedv4(struct sock *sk, int len,
6673                                     char __user *optval, int __user *optlen)
6674 {
6675         int val;
6676         struct sctp_sock *sp = sctp_sk(sk);
6677
6678         if (len < sizeof(int))
6679                 return -EINVAL;
6680
6681         len = sizeof(int);
6682         val = sp->v4mapped;
6683         if (put_user(len, optlen))
6684                 return -EFAULT;
6685         if (copy_to_user(optval, &val, len))
6686                 return -EFAULT;
6687
6688         return 0;
6689 }
6690
6691 /*
6692  * 7.1.29.  Set or Get the default context (SCTP_CONTEXT)
6693  * (chapter and verse is quoted at sctp_setsockopt_context())
6694  */
6695 static int sctp_getsockopt_context(struct sock *sk, int len,
6696                                    char __user *optval, int __user *optlen)
6697 {
6698         struct sctp_assoc_value params;
6699         struct sctp_association *asoc;
6700
6701         if (len < sizeof(struct sctp_assoc_value))
6702                 return -EINVAL;
6703
6704         len = sizeof(struct sctp_assoc_value);
6705
6706         if (copy_from_user(&params, optval, len))
6707                 return -EFAULT;
6708
6709         asoc = sctp_id2assoc(sk, params.assoc_id);
6710         if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
6711             sctp_style(sk, UDP))
6712                 return -EINVAL;
6713
6714         params.assoc_value = asoc ? asoc->default_rcv_context
6715                                   : sctp_sk(sk)->default_rcv_context;
6716
6717         if (put_user(len, optlen))
6718                 return -EFAULT;
6719         if (copy_to_user(optval, &params, len))
6720                 return -EFAULT;
6721
6722         return 0;
6723 }
6724
6725 /*
6726  * 8.1.16.  Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
6727  * This option will get or set the maximum size to put in any outgoing
6728  * SCTP DATA chunk.  If a message is larger than this size it will be
6729  * fragmented by SCTP into the specified size.  Note that the underlying
6730  * SCTP implementation may fragment into smaller sized chunks when the
6731  * PMTU of the underlying association is smaller than the value set by
6732  * the user.  The default value for this option is '0' which indicates
6733  * the user is NOT limiting fragmentation and only the PMTU will effect
6734  * SCTP's choice of DATA chunk size.  Note also that values set larger
6735  * than the maximum size of an IP datagram will effectively let SCTP
6736  * control fragmentation (i.e. the same as setting this option to 0).
6737  *
6738  * The following structure is used to access and modify this parameter:
6739  *
6740  * struct sctp_assoc_value {
6741  *   sctp_assoc_t assoc_id;
6742  *   uint32_t assoc_value;
6743  * };
6744  *
6745  * assoc_id:  This parameter is ignored for one-to-one style sockets.
6746  *    For one-to-many style sockets this parameter indicates which
6747  *    association the user is performing an action upon.  Note that if
6748  *    this field's value is zero then the endpoints default value is
6749  *    changed (effecting future associations only).
6750  * assoc_value:  This parameter specifies the maximum size in bytes.
6751  */
6752 static int sctp_getsockopt_maxseg(struct sock *sk, int len,
6753                                   char __user *optval, int __user *optlen)
6754 {
6755         struct sctp_assoc_value params;
6756         struct sctp_association *asoc;
6757
6758         if (len == sizeof(int)) {
6759                 pr_warn_ratelimited(DEPRECATED
6760                                     "%s (pid %d) "
6761                                     "Use of int in maxseg socket option.\n"
6762                                     "Use struct sctp_assoc_value instead\n",
6763                                     current->comm, task_pid_nr(current));
6764                 params.assoc_id = SCTP_FUTURE_ASSOC;
6765         } else if (len >= sizeof(struct sctp_assoc_value)) {
6766                 len = sizeof(struct sctp_assoc_value);
6767                 if (copy_from_user(&params, optval, len))
6768                         return -EFAULT;
6769         } else
6770                 return -EINVAL;
6771
6772         asoc = sctp_id2assoc(sk, params.assoc_id);
6773         if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
6774             sctp_style(sk, UDP))
6775                 return -EINVAL;
6776
6777         if (asoc)
6778                 params.assoc_value = asoc->frag_point;
6779         else
6780                 params.assoc_value = sctp_sk(sk)->user_frag;
6781
6782         if (put_user(len, optlen))
6783                 return -EFAULT;
6784         if (len == sizeof(int)) {
6785                 if (copy_to_user(optval, &params.assoc_value, len))
6786                         return -EFAULT;
6787         } else {
6788                 if (copy_to_user(optval, &params, len))
6789                         return -EFAULT;
6790         }
6791
6792         return 0;
6793 }
6794
6795 /*
6796  * 7.1.24.  Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
6797  * (chapter and verse is quoted at sctp_setsockopt_fragment_interleave())
6798  */
6799 static int sctp_getsockopt_fragment_interleave(struct sock *sk, int len,
6800                                                char __user *optval, int __user *optlen)
6801 {
6802         int val;
6803
6804         if (len < sizeof(int))
6805                 return -EINVAL;
6806
6807         len = sizeof(int);
6808
6809         val = sctp_sk(sk)->frag_interleave;
6810         if (put_user(len, optlen))
6811                 return -EFAULT;
6812         if (copy_to_user(optval, &val, len))
6813                 return -EFAULT;
6814
6815         return 0;
6816 }
6817
6818 /*
6819  * 7.1.25.  Set or Get the sctp partial delivery point
6820  * (chapter and verse is quoted at sctp_setsockopt_partial_delivery_point())
6821  */
6822 static int sctp_getsockopt_partial_delivery_point(struct sock *sk, int len,
6823                                                   char __user *optval,
6824                                                   int __user *optlen)
6825 {
6826         u32 val;
6827
6828         if (len < sizeof(u32))
6829                 return -EINVAL;
6830
6831         len = sizeof(u32);
6832
6833         val = sctp_sk(sk)->pd_point;
6834         if (put_user(len, optlen))
6835                 return -EFAULT;
6836         if (copy_to_user(optval, &val, len))
6837                 return -EFAULT;
6838
6839         return 0;
6840 }
6841
6842 /*
6843  * 7.1.28.  Set or Get the maximum burst (SCTP_MAX_BURST)
6844  * (chapter and verse is quoted at sctp_setsockopt_maxburst())
6845  */
6846 static int sctp_getsockopt_maxburst(struct sock *sk, int len,
6847                                     char __user *optval,
6848                                     int __user *optlen)
6849 {
6850         struct sctp_assoc_value params;
6851         struct sctp_association *asoc;
6852
6853         if (len == sizeof(int)) {
6854                 pr_warn_ratelimited(DEPRECATED
6855                                     "%s (pid %d) "
6856                                     "Use of int in max_burst socket option.\n"
6857                                     "Use struct sctp_assoc_value instead\n",
6858                                     current->comm, task_pid_nr(current));
6859                 params.assoc_id = SCTP_FUTURE_ASSOC;
6860         } else if (len >= sizeof(struct sctp_assoc_value)) {
6861                 len = sizeof(struct sctp_assoc_value);
6862                 if (copy_from_user(&params, optval, len))
6863                         return -EFAULT;
6864         } else
6865                 return -EINVAL;
6866
6867         asoc = sctp_id2assoc(sk, params.assoc_id);
6868         if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
6869             sctp_style(sk, UDP))
6870                 return -EINVAL;
6871
6872         params.assoc_value = asoc ? asoc->max_burst : sctp_sk(sk)->max_burst;
6873
6874         if (len == sizeof(int)) {
6875                 if (copy_to_user(optval, &params.assoc_value, len))
6876                         return -EFAULT;
6877         } else {
6878                 if (copy_to_user(optval, &params, len))
6879                         return -EFAULT;
6880         }
6881
6882         return 0;
6883
6884 }
6885
6886 static int sctp_getsockopt_hmac_ident(struct sock *sk, int len,
6887                                     char __user *optval, int __user *optlen)
6888 {
6889         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
6890         struct sctp_hmacalgo  __user *p = (void __user *)optval;
6891         struct sctp_hmac_algo_param *hmacs;
6892         __u16 data_len = 0;
6893         u32 num_idents;
6894         int i;
6895
6896         if (!ep->auth_enable)
6897                 return -EACCES;
6898
6899         hmacs = ep->auth_hmacs_list;
6900         data_len = ntohs(hmacs->param_hdr.length) -
6901                    sizeof(struct sctp_paramhdr);
6902
6903         if (len < sizeof(struct sctp_hmacalgo) + data_len)
6904                 return -EINVAL;
6905
6906         len = sizeof(struct sctp_hmacalgo) + data_len;
6907         num_idents = data_len / sizeof(u16);
6908
6909         if (put_user(len, optlen))
6910                 return -EFAULT;
6911         if (put_user(num_idents, &p->shmac_num_idents))
6912                 return -EFAULT;
6913         for (i = 0; i < num_idents; i++) {
6914                 __u16 hmacid = ntohs(hmacs->hmac_ids[i]);
6915
6916                 if (copy_to_user(&p->shmac_idents[i], &hmacid, sizeof(__u16)))
6917                         return -EFAULT;
6918         }
6919         return 0;
6920 }
6921
6922 static int sctp_getsockopt_active_key(struct sock *sk, int len,
6923                                     char __user *optval, int __user *optlen)
6924 {
6925         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
6926         struct sctp_authkeyid val;
6927         struct sctp_association *asoc;
6928
6929         if (len < sizeof(struct sctp_authkeyid))
6930                 return -EINVAL;
6931
6932         len = sizeof(struct sctp_authkeyid);
6933         if (copy_from_user(&val, optval, len))
6934                 return -EFAULT;
6935
6936         asoc = sctp_id2assoc(sk, val.scact_assoc_id);
6937         if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
6938                 return -EINVAL;
6939
6940         if (asoc) {
6941                 if (!asoc->peer.auth_capable)
6942                         return -EACCES;
6943                 val.scact_keynumber = asoc->active_key_id;
6944         } else {
6945                 if (!ep->auth_enable)
6946                         return -EACCES;
6947                 val.scact_keynumber = ep->active_key_id;
6948         }
6949
6950         if (put_user(len, optlen))
6951                 return -EFAULT;
6952         if (copy_to_user(optval, &val, len))
6953                 return -EFAULT;
6954
6955         return 0;
6956 }
6957
6958 static int sctp_getsockopt_peer_auth_chunks(struct sock *sk, int len,
6959                                     char __user *optval, int __user *optlen)
6960 {
6961         struct sctp_authchunks __user *p = (void __user *)optval;
6962         struct sctp_authchunks val;
6963         struct sctp_association *asoc;
6964         struct sctp_chunks_param *ch;
6965         u32    num_chunks = 0;
6966         char __user *to;
6967
6968         if (len < sizeof(struct sctp_authchunks))
6969                 return -EINVAL;
6970
6971         if (copy_from_user(&val, optval, sizeof(val)))
6972                 return -EFAULT;
6973
6974         to = p->gauth_chunks;
6975         asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6976         if (!asoc)
6977                 return -EINVAL;
6978
6979         if (!asoc->peer.auth_capable)
6980                 return -EACCES;
6981
6982         ch = asoc->peer.peer_chunks;
6983         if (!ch)
6984                 goto num;
6985
6986         /* See if the user provided enough room for all the data */
6987         num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
6988         if (len < num_chunks)
6989                 return -EINVAL;
6990
6991         if (copy_to_user(to, ch->chunks, num_chunks))
6992                 return -EFAULT;
6993 num:
6994         len = sizeof(struct sctp_authchunks) + num_chunks;
6995         if (put_user(len, optlen))
6996                 return -EFAULT;
6997         if (put_user(num_chunks, &p->gauth_number_of_chunks))
6998                 return -EFAULT;
6999         return 0;
7000 }
7001
7002 static int sctp_getsockopt_local_auth_chunks(struct sock *sk, int len,
7003                                     char __user *optval, int __user *optlen)
7004 {
7005         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
7006         struct sctp_authchunks __user *p = (void __user *)optval;
7007         struct sctp_authchunks val;
7008         struct sctp_association *asoc;
7009         struct sctp_chunks_param *ch;
7010         u32    num_chunks = 0;
7011         char __user *to;
7012
7013         if (len < sizeof(struct sctp_authchunks))
7014                 return -EINVAL;
7015
7016         if (copy_from_user(&val, optval, sizeof(val)))
7017                 return -EFAULT;
7018
7019         to = p->gauth_chunks;
7020         asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
7021         if (!asoc && val.gauth_assoc_id != SCTP_FUTURE_ASSOC &&
7022             sctp_style(sk, UDP))
7023                 return -EINVAL;
7024
7025         if (asoc) {
7026                 if (!asoc->peer.auth_capable)
7027                         return -EACCES;
7028                 ch = (struct sctp_chunks_param *)asoc->c.auth_chunks;
7029         } else {
7030                 if (!ep->auth_enable)
7031                         return -EACCES;
7032                 ch = ep->auth_chunk_list;
7033         }
7034         if (!ch)
7035                 goto num;
7036
7037         num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
7038         if (len < sizeof(struct sctp_authchunks) + num_chunks)
7039                 return -EINVAL;
7040
7041         if (copy_to_user(to, ch->chunks, num_chunks))
7042                 return -EFAULT;
7043 num:
7044         len = sizeof(struct sctp_authchunks) + num_chunks;
7045         if (put_user(len, optlen))
7046                 return -EFAULT;
7047         if (put_user(num_chunks, &p->gauth_number_of_chunks))
7048                 return -EFAULT;
7049
7050         return 0;
7051 }
7052
7053 /*
7054  * 8.2.5.  Get the Current Number of Associations (SCTP_GET_ASSOC_NUMBER)
7055  * This option gets the current number of associations that are attached
7056  * to a one-to-many style socket.  The option value is an uint32_t.
7057  */
7058 static int sctp_getsockopt_assoc_number(struct sock *sk, int len,
7059                                     char __user *optval, int __user *optlen)
7060 {
7061         struct sctp_sock *sp = sctp_sk(sk);
7062         struct sctp_association *asoc;
7063         u32 val = 0;
7064
7065         if (sctp_style(sk, TCP))
7066                 return -EOPNOTSUPP;
7067
7068         if (len < sizeof(u32))
7069                 return -EINVAL;
7070
7071         len = sizeof(u32);
7072
7073         list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
7074                 val++;
7075         }
7076
7077         if (put_user(len, optlen))
7078                 return -EFAULT;
7079         if (copy_to_user(optval, &val, len))
7080                 return -EFAULT;
7081
7082         return 0;
7083 }
7084
7085 /*
7086  * 8.1.23 SCTP_AUTO_ASCONF
7087  * See the corresponding setsockopt entry as description
7088  */
7089 static int sctp_getsockopt_auto_asconf(struct sock *sk, int len,
7090                                    char __user *optval, int __user *optlen)
7091 {
7092         int val = 0;
7093
7094         if (len < sizeof(int))
7095                 return -EINVAL;
7096
7097         len = sizeof(int);
7098         if (sctp_sk(sk)->do_auto_asconf && sctp_is_ep_boundall(sk))
7099                 val = 1;
7100         if (put_user(len, optlen))
7101                 return -EFAULT;
7102         if (copy_to_user(optval, &val, len))
7103                 return -EFAULT;
7104         return 0;
7105 }
7106
7107 /*
7108  * 8.2.6. Get the Current Identifiers of Associations
7109  *        (SCTP_GET_ASSOC_ID_LIST)
7110  *
7111  * This option gets the current list of SCTP association identifiers of
7112  * the SCTP associations handled by a one-to-many style socket.
7113  */
7114 static int sctp_getsockopt_assoc_ids(struct sock *sk, int len,
7115                                     char __user *optval, int __user *optlen)
7116 {
7117         struct sctp_sock *sp = sctp_sk(sk);
7118         struct sctp_association *asoc;
7119         struct sctp_assoc_ids *ids;
7120         u32 num = 0;
7121
7122         if (sctp_style(sk, TCP))
7123                 return -EOPNOTSUPP;
7124
7125         if (len < sizeof(struct sctp_assoc_ids))
7126                 return -EINVAL;
7127
7128         list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
7129                 num++;
7130         }
7131
7132         if (len < sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num)
7133                 return -EINVAL;
7134
7135         len = sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num;
7136
7137         ids = kmalloc(len, GFP_USER | __GFP_NOWARN);
7138         if (unlikely(!ids))
7139                 return -ENOMEM;
7140
7141         ids->gaids_number_of_ids = num;
7142         num = 0;
7143         list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
7144                 ids->gaids_assoc_id[num++] = asoc->assoc_id;
7145         }
7146
7147         if (put_user(len, optlen) || copy_to_user(optval, ids, len)) {
7148                 kfree(ids);
7149                 return -EFAULT;
7150         }
7151
7152         kfree(ids);
7153         return 0;
7154 }
7155
7156 /*
7157  * SCTP_PEER_ADDR_THLDS
7158  *
7159  * This option allows us to fetch the partially failed threshold for one or all
7160  * transports in an association.  See Section 6.1 of:
7161  * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
7162  */
7163 static int sctp_getsockopt_paddr_thresholds(struct sock *sk,
7164                                             char __user *optval, int len,
7165                                             int __user *optlen, bool v2)
7166 {
7167         struct sctp_paddrthlds_v2 val;
7168         struct sctp_transport *trans;
7169         struct sctp_association *asoc;
7170         int min;
7171
7172         min = v2 ? sizeof(val) : sizeof(struct sctp_paddrthlds);
7173         if (len < min)
7174                 return -EINVAL;
7175         len = min;
7176         if (copy_from_user(&val, optval, len))
7177                 return -EFAULT;
7178
7179         if (!sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
7180                 trans = sctp_addr_id2transport(sk, &val.spt_address,
7181                                                val.spt_assoc_id);
7182                 if (!trans)
7183                         return -ENOENT;
7184
7185                 val.spt_pathmaxrxt = trans->pathmaxrxt;
7186                 val.spt_pathpfthld = trans->pf_retrans;
7187                 val.spt_pathcpthld = trans->ps_retrans;
7188
7189                 goto out;
7190         }
7191
7192         asoc = sctp_id2assoc(sk, val.spt_assoc_id);
7193         if (!asoc && val.spt_assoc_id != SCTP_FUTURE_ASSOC &&
7194             sctp_style(sk, UDP))
7195                 return -EINVAL;
7196
7197         if (asoc) {
7198                 val.spt_pathpfthld = asoc->pf_retrans;
7199                 val.spt_pathmaxrxt = asoc->pathmaxrxt;
7200                 val.spt_pathcpthld = asoc->ps_retrans;
7201         } else {
7202                 struct sctp_sock *sp = sctp_sk(sk);
7203
7204                 val.spt_pathpfthld = sp->pf_retrans;
7205                 val.spt_pathmaxrxt = sp->pathmaxrxt;
7206                 val.spt_pathcpthld = sp->ps_retrans;
7207         }
7208
7209 out:
7210         if (put_user(len, optlen) || copy_to_user(optval, &val, len))
7211                 return -EFAULT;
7212
7213         return 0;
7214 }
7215
7216 /*
7217  * SCTP_GET_ASSOC_STATS
7218  *
7219  * This option retrieves local per endpoint statistics. It is modeled
7220  * after OpenSolaris' implementation
7221  */
7222 static int sctp_getsockopt_assoc_stats(struct sock *sk, int len,
7223                                        char __user *optval,
7224                                        int __user *optlen)
7225 {
7226         struct sctp_assoc_stats sas;
7227         struct sctp_association *asoc = NULL;
7228
7229         /* User must provide at least the assoc id */
7230         if (len < sizeof(sctp_assoc_t))
7231                 return -EINVAL;
7232
7233         /* Allow the struct to grow and fill in as much as possible */
7234         len = min_t(size_t, len, sizeof(sas));
7235
7236         if (copy_from_user(&sas, optval, len))
7237                 return -EFAULT;
7238
7239         asoc = sctp_id2assoc(sk, sas.sas_assoc_id);
7240         if (!asoc)
7241                 return -EINVAL;
7242
7243         sas.sas_rtxchunks = asoc->stats.rtxchunks;
7244         sas.sas_gapcnt = asoc->stats.gapcnt;
7245         sas.sas_outofseqtsns = asoc->stats.outofseqtsns;
7246         sas.sas_osacks = asoc->stats.osacks;
7247         sas.sas_isacks = asoc->stats.isacks;
7248         sas.sas_octrlchunks = asoc->stats.octrlchunks;
7249         sas.sas_ictrlchunks = asoc->stats.ictrlchunks;
7250         sas.sas_oodchunks = asoc->stats.oodchunks;
7251         sas.sas_iodchunks = asoc->stats.iodchunks;
7252         sas.sas_ouodchunks = asoc->stats.ouodchunks;
7253         sas.sas_iuodchunks = asoc->stats.iuodchunks;
7254         sas.sas_idupchunks = asoc->stats.idupchunks;
7255         sas.sas_opackets = asoc->stats.opackets;
7256         sas.sas_ipackets = asoc->stats.ipackets;
7257
7258         /* New high max rto observed, will return 0 if not a single
7259          * RTO update took place. obs_rto_ipaddr will be bogus
7260          * in such a case
7261          */
7262         sas.sas_maxrto = asoc->stats.max_obs_rto;
7263         memcpy(&sas.sas_obs_rto_ipaddr, &asoc->stats.obs_rto_ipaddr,
7264                 sizeof(struct sockaddr_storage));
7265
7266         /* Mark beginning of a new observation period */
7267         asoc->stats.max_obs_rto = asoc->rto_min;
7268
7269         if (put_user(len, optlen))
7270                 return -EFAULT;
7271
7272         pr_debug("%s: len:%d, assoc_id:%d\n", __func__, len, sas.sas_assoc_id);
7273
7274         if (copy_to_user(optval, &sas, len))
7275                 return -EFAULT;
7276
7277         return 0;
7278 }
7279
7280 static int sctp_getsockopt_recvrcvinfo(struct sock *sk, int len,
7281                                        char __user *optval,
7282                                        int __user *optlen)
7283 {
7284         int val = 0;
7285
7286         if (len < sizeof(int))
7287                 return -EINVAL;
7288
7289         len = sizeof(int);
7290         if (sctp_sk(sk)->recvrcvinfo)
7291                 val = 1;
7292         if (put_user(len, optlen))
7293                 return -EFAULT;
7294         if (copy_to_user(optval, &val, len))
7295                 return -EFAULT;
7296
7297         return 0;
7298 }
7299
7300 static int sctp_getsockopt_recvnxtinfo(struct sock *sk, int len,
7301                                        char __user *optval,
7302                                        int __user *optlen)
7303 {
7304         int val = 0;
7305
7306         if (len < sizeof(int))
7307                 return -EINVAL;
7308
7309         len = sizeof(int);
7310         if (sctp_sk(sk)->recvnxtinfo)
7311                 val = 1;
7312         if (put_user(len, optlen))
7313                 return -EFAULT;
7314         if (copy_to_user(optval, &val, len))
7315                 return -EFAULT;
7316
7317         return 0;
7318 }
7319
7320 static int sctp_getsockopt_pr_supported(struct sock *sk, int len,
7321                                         char __user *optval,
7322                                         int __user *optlen)
7323 {
7324         struct sctp_assoc_value params;
7325         struct sctp_association *asoc;
7326         int retval = -EFAULT;
7327
7328         if (len < sizeof(params)) {
7329                 retval = -EINVAL;
7330                 goto out;
7331         }
7332
7333         len = sizeof(params);
7334         if (copy_from_user(&params, optval, len))
7335                 goto out;
7336
7337         asoc = sctp_id2assoc(sk, params.assoc_id);
7338         if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7339             sctp_style(sk, UDP)) {
7340                 retval = -EINVAL;
7341                 goto out;
7342         }
7343
7344         params.assoc_value = asoc ? asoc->peer.prsctp_capable
7345                                   : sctp_sk(sk)->ep->prsctp_enable;
7346
7347         if (put_user(len, optlen))
7348                 goto out;
7349
7350         if (copy_to_user(optval, &params, len))
7351                 goto out;
7352
7353         retval = 0;
7354
7355 out:
7356         return retval;
7357 }
7358
7359 static int sctp_getsockopt_default_prinfo(struct sock *sk, int len,
7360                                           char __user *optval,
7361                                           int __user *optlen)
7362 {
7363         struct sctp_default_prinfo info;
7364         struct sctp_association *asoc;
7365         int retval = -EFAULT;
7366
7367         if (len < sizeof(info)) {
7368                 retval = -EINVAL;
7369                 goto out;
7370         }
7371
7372         len = sizeof(info);
7373         if (copy_from_user(&info, optval, len))
7374                 goto out;
7375
7376         asoc = sctp_id2assoc(sk, info.pr_assoc_id);
7377         if (!asoc && info.pr_assoc_id != SCTP_FUTURE_ASSOC &&
7378             sctp_style(sk, UDP)) {
7379                 retval = -EINVAL;
7380                 goto out;
7381         }
7382
7383         if (asoc) {
7384                 info.pr_policy = SCTP_PR_POLICY(asoc->default_flags);
7385                 info.pr_value = asoc->default_timetolive;
7386         } else {
7387                 struct sctp_sock *sp = sctp_sk(sk);
7388
7389                 info.pr_policy = SCTP_PR_POLICY(sp->default_flags);
7390                 info.pr_value = sp->default_timetolive;
7391         }
7392
7393         if (put_user(len, optlen))
7394                 goto out;
7395
7396         if (copy_to_user(optval, &info, len))
7397                 goto out;
7398
7399         retval = 0;
7400
7401 out:
7402         return retval;
7403 }
7404
7405 static int sctp_getsockopt_pr_assocstatus(struct sock *sk, int len,
7406                                           char __user *optval,
7407                                           int __user *optlen)
7408 {
7409         struct sctp_prstatus params;
7410         struct sctp_association *asoc;
7411         int policy;
7412         int retval = -EINVAL;
7413
7414         if (len < sizeof(params))
7415                 goto out;
7416
7417         len = sizeof(params);
7418         if (copy_from_user(&params, optval, len)) {
7419                 retval = -EFAULT;
7420                 goto out;
7421         }
7422
7423         policy = params.sprstat_policy;
7424         if (!policy || (policy & ~(SCTP_PR_SCTP_MASK | SCTP_PR_SCTP_ALL)) ||
7425             ((policy & SCTP_PR_SCTP_ALL) && (policy & SCTP_PR_SCTP_MASK)))
7426                 goto out;
7427
7428         asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
7429         if (!asoc)
7430                 goto out;
7431
7432         if (policy == SCTP_PR_SCTP_ALL) {
7433                 params.sprstat_abandoned_unsent = 0;
7434                 params.sprstat_abandoned_sent = 0;
7435                 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
7436                         params.sprstat_abandoned_unsent +=
7437                                 asoc->abandoned_unsent[policy];
7438                         params.sprstat_abandoned_sent +=
7439                                 asoc->abandoned_sent[policy];
7440                 }
7441         } else {
7442                 params.sprstat_abandoned_unsent =
7443                         asoc->abandoned_unsent[__SCTP_PR_INDEX(policy)];
7444                 params.sprstat_abandoned_sent =
7445                         asoc->abandoned_sent[__SCTP_PR_INDEX(policy)];
7446         }
7447
7448         if (put_user(len, optlen)) {
7449                 retval = -EFAULT;
7450                 goto out;
7451         }
7452
7453         if (copy_to_user(optval, &params, len)) {
7454                 retval = -EFAULT;
7455                 goto out;
7456         }
7457
7458         retval = 0;
7459
7460 out:
7461         return retval;
7462 }
7463
7464 static int sctp_getsockopt_pr_streamstatus(struct sock *sk, int len,
7465                                            char __user *optval,
7466                                            int __user *optlen)
7467 {
7468         struct sctp_stream_out_ext *streamoute;
7469         struct sctp_association *asoc;
7470         struct sctp_prstatus params;
7471         int retval = -EINVAL;
7472         int policy;
7473
7474         if (len < sizeof(params))
7475                 goto out;
7476
7477         len = sizeof(params);
7478         if (copy_from_user(&params, optval, len)) {
7479                 retval = -EFAULT;
7480                 goto out;
7481         }
7482
7483         policy = params.sprstat_policy;
7484         if (!policy || (policy & ~(SCTP_PR_SCTP_MASK | SCTP_PR_SCTP_ALL)) ||
7485             ((policy & SCTP_PR_SCTP_ALL) && (policy & SCTP_PR_SCTP_MASK)))
7486                 goto out;
7487
7488         asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
7489         if (!asoc || params.sprstat_sid >= asoc->stream.outcnt)
7490                 goto out;
7491
7492         streamoute = SCTP_SO(&asoc->stream, params.sprstat_sid)->ext;
7493         if (!streamoute) {
7494                 /* Not allocated yet, means all stats are 0 */
7495                 params.sprstat_abandoned_unsent = 0;
7496                 params.sprstat_abandoned_sent = 0;
7497                 retval = 0;
7498                 goto out;
7499         }
7500
7501         if (policy == SCTP_PR_SCTP_ALL) {
7502                 params.sprstat_abandoned_unsent = 0;
7503                 params.sprstat_abandoned_sent = 0;
7504                 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
7505                         params.sprstat_abandoned_unsent +=
7506                                 streamoute->abandoned_unsent[policy];
7507                         params.sprstat_abandoned_sent +=
7508                                 streamoute->abandoned_sent[policy];
7509                 }
7510         } else {
7511                 params.sprstat_abandoned_unsent =
7512                         streamoute->abandoned_unsent[__SCTP_PR_INDEX(policy)];
7513                 params.sprstat_abandoned_sent =
7514                         streamoute->abandoned_sent[__SCTP_PR_INDEX(policy)];
7515         }
7516
7517         if (put_user(len, optlen) || copy_to_user(optval, &params, len)) {
7518                 retval = -EFAULT;
7519                 goto out;
7520         }
7521
7522         retval = 0;
7523
7524 out:
7525         return retval;
7526 }
7527
7528 static int sctp_getsockopt_reconfig_supported(struct sock *sk, int len,
7529                                               char __user *optval,
7530                                               int __user *optlen)
7531 {
7532         struct sctp_assoc_value params;
7533         struct sctp_association *asoc;
7534         int retval = -EFAULT;
7535
7536         if (len < sizeof(params)) {
7537                 retval = -EINVAL;
7538                 goto out;
7539         }
7540
7541         len = sizeof(params);
7542         if (copy_from_user(&params, optval, len))
7543                 goto out;
7544
7545         asoc = sctp_id2assoc(sk, params.assoc_id);
7546         if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7547             sctp_style(sk, UDP)) {
7548                 retval = -EINVAL;
7549                 goto out;
7550         }
7551
7552         params.assoc_value = asoc ? asoc->peer.reconf_capable
7553                                   : sctp_sk(sk)->ep->reconf_enable;
7554
7555         if (put_user(len, optlen))
7556                 goto out;
7557
7558         if (copy_to_user(optval, &params, len))
7559                 goto out;
7560
7561         retval = 0;
7562
7563 out:
7564         return retval;
7565 }
7566
7567 static int sctp_getsockopt_enable_strreset(struct sock *sk, int len,
7568                                            char __user *optval,
7569                                            int __user *optlen)
7570 {
7571         struct sctp_assoc_value params;
7572         struct sctp_association *asoc;
7573         int retval = -EFAULT;
7574
7575         if (len < sizeof(params)) {
7576                 retval = -EINVAL;
7577                 goto out;
7578         }
7579
7580         len = sizeof(params);
7581         if (copy_from_user(&params, optval, len))
7582                 goto out;
7583
7584         asoc = sctp_id2assoc(sk, params.assoc_id);
7585         if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7586             sctp_style(sk, UDP)) {
7587                 retval = -EINVAL;
7588                 goto out;
7589         }
7590
7591         params.assoc_value = asoc ? asoc->strreset_enable
7592                                   : sctp_sk(sk)->ep->strreset_enable;
7593
7594         if (put_user(len, optlen))
7595                 goto out;
7596
7597         if (copy_to_user(optval, &params, len))
7598                 goto out;
7599
7600         retval = 0;
7601
7602 out:
7603         return retval;
7604 }
7605
7606 static int sctp_getsockopt_scheduler(struct sock *sk, int len,
7607                                      char __user *optval,
7608                                      int __user *optlen)
7609 {
7610         struct sctp_assoc_value params;
7611         struct sctp_association *asoc;
7612         int retval = -EFAULT;
7613
7614         if (len < sizeof(params)) {
7615                 retval = -EINVAL;
7616                 goto out;
7617         }
7618
7619         len = sizeof(params);
7620         if (copy_from_user(&params, optval, len))
7621                 goto out;
7622
7623         asoc = sctp_id2assoc(sk, params.assoc_id);
7624         if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7625             sctp_style(sk, UDP)) {
7626                 retval = -EINVAL;
7627                 goto out;
7628         }
7629
7630         params.assoc_value = asoc ? sctp_sched_get_sched(asoc)
7631                                   : sctp_sk(sk)->default_ss;
7632
7633         if (put_user(len, optlen))
7634                 goto out;
7635
7636         if (copy_to_user(optval, &params, len))
7637                 goto out;
7638
7639         retval = 0;
7640
7641 out:
7642         return retval;
7643 }
7644
7645 static int sctp_getsockopt_scheduler_value(struct sock *sk, int len,
7646                                            char __user *optval,
7647                                            int __user *optlen)
7648 {
7649         struct sctp_stream_value params;
7650         struct sctp_association *asoc;
7651         int retval = -EFAULT;
7652
7653         if (len < sizeof(params)) {
7654                 retval = -EINVAL;
7655                 goto out;
7656         }
7657
7658         len = sizeof(params);
7659         if (copy_from_user(&params, optval, len))
7660                 goto out;
7661
7662         asoc = sctp_id2assoc(sk, params.assoc_id);
7663         if (!asoc) {
7664                 retval = -EINVAL;
7665                 goto out;
7666         }
7667
7668         retval = sctp_sched_get_value(asoc, params.stream_id,
7669                                       &params.stream_value);
7670         if (retval)
7671                 goto out;
7672
7673         if (put_user(len, optlen)) {
7674                 retval = -EFAULT;
7675                 goto out;
7676         }
7677
7678         if (copy_to_user(optval, &params, len)) {
7679                 retval = -EFAULT;
7680                 goto out;
7681         }
7682
7683 out:
7684         return retval;
7685 }
7686
7687 static int sctp_getsockopt_interleaving_supported(struct sock *sk, int len,
7688                                                   char __user *optval,
7689                                                   int __user *optlen)
7690 {
7691         struct sctp_assoc_value params;
7692         struct sctp_association *asoc;
7693         int retval = -EFAULT;
7694
7695         if (len < sizeof(params)) {
7696                 retval = -EINVAL;
7697                 goto out;
7698         }
7699
7700         len = sizeof(params);
7701         if (copy_from_user(&params, optval, len))
7702                 goto out;
7703
7704         asoc = sctp_id2assoc(sk, params.assoc_id);
7705         if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7706             sctp_style(sk, UDP)) {
7707                 retval = -EINVAL;
7708                 goto out;
7709         }
7710
7711         params.assoc_value = asoc ? asoc->peer.intl_capable
7712                                   : sctp_sk(sk)->ep->intl_enable;
7713
7714         if (put_user(len, optlen))
7715                 goto out;
7716
7717         if (copy_to_user(optval, &params, len))
7718                 goto out;
7719
7720         retval = 0;
7721
7722 out:
7723         return retval;
7724 }
7725
7726 static int sctp_getsockopt_reuse_port(struct sock *sk, int len,
7727                                       char __user *optval,
7728                                       int __user *optlen)
7729 {
7730         int val;
7731
7732         if (len < sizeof(int))
7733                 return -EINVAL;
7734
7735         len = sizeof(int);
7736         val = sctp_sk(sk)->reuse;
7737         if (put_user(len, optlen))
7738                 return -EFAULT;
7739
7740         if (copy_to_user(optval, &val, len))
7741                 return -EFAULT;
7742
7743         return 0;
7744 }
7745
7746 static int sctp_getsockopt_event(struct sock *sk, int len, char __user *optval,
7747                                  int __user *optlen)
7748 {
7749         struct sctp_association *asoc;
7750         struct sctp_event param;
7751         __u16 subscribe;
7752
7753         if (len < sizeof(param))
7754                 return -EINVAL;
7755
7756         len = sizeof(param);
7757         if (copy_from_user(&param, optval, len))
7758                 return -EFAULT;
7759
7760         if (param.se_type < SCTP_SN_TYPE_BASE ||
7761             param.se_type > SCTP_SN_TYPE_MAX)
7762                 return -EINVAL;
7763
7764         asoc = sctp_id2assoc(sk, param.se_assoc_id);
7765         if (!asoc && param.se_assoc_id != SCTP_FUTURE_ASSOC &&
7766             sctp_style(sk, UDP))
7767                 return -EINVAL;
7768
7769         subscribe = asoc ? asoc->subscribe : sctp_sk(sk)->subscribe;
7770         param.se_on = sctp_ulpevent_type_enabled(subscribe, param.se_type);
7771
7772         if (put_user(len, optlen))
7773                 return -EFAULT;
7774
7775         if (copy_to_user(optval, &param, len))
7776                 return -EFAULT;
7777
7778         return 0;
7779 }
7780
7781 static int sctp_getsockopt_asconf_supported(struct sock *sk, int len,
7782                                             char __user *optval,
7783                                             int __user *optlen)
7784 {
7785         struct sctp_assoc_value params;
7786         struct sctp_association *asoc;
7787         int retval = -EFAULT;
7788
7789         if (len < sizeof(params)) {
7790                 retval = -EINVAL;
7791                 goto out;
7792         }
7793
7794         len = sizeof(params);
7795         if (copy_from_user(&params, optval, len))
7796                 goto out;
7797
7798         asoc = sctp_id2assoc(sk, params.assoc_id);
7799         if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7800             sctp_style(sk, UDP)) {
7801                 retval = -EINVAL;
7802                 goto out;
7803         }
7804
7805         params.assoc_value = asoc ? asoc->peer.asconf_capable
7806                                   : sctp_sk(sk)->ep->asconf_enable;
7807
7808         if (put_user(len, optlen))
7809                 goto out;
7810
7811         if (copy_to_user(optval, &params, len))
7812                 goto out;
7813
7814         retval = 0;
7815
7816 out:
7817         return retval;
7818 }
7819
7820 static int sctp_getsockopt_auth_supported(struct sock *sk, int len,
7821                                           char __user *optval,
7822                                           int __user *optlen)
7823 {
7824         struct sctp_assoc_value params;
7825         struct sctp_association *asoc;
7826         int retval = -EFAULT;
7827
7828         if (len < sizeof(params)) {
7829                 retval = -EINVAL;
7830                 goto out;
7831         }
7832
7833         len = sizeof(params);
7834         if (copy_from_user(&params, optval, len))
7835                 goto out;
7836
7837         asoc = sctp_id2assoc(sk, params.assoc_id);
7838         if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7839             sctp_style(sk, UDP)) {
7840                 retval = -EINVAL;
7841                 goto out;
7842         }
7843
7844         params.assoc_value = asoc ? asoc->peer.auth_capable
7845                                   : sctp_sk(sk)->ep->auth_enable;
7846
7847         if (put_user(len, optlen))
7848                 goto out;
7849
7850         if (copy_to_user(optval, &params, len))
7851                 goto out;
7852
7853         retval = 0;
7854
7855 out:
7856         return retval;
7857 }
7858
7859 static int sctp_getsockopt_ecn_supported(struct sock *sk, int len,
7860                                          char __user *optval,
7861                                          int __user *optlen)
7862 {
7863         struct sctp_assoc_value params;
7864         struct sctp_association *asoc;
7865         int retval = -EFAULT;
7866
7867         if (len < sizeof(params)) {
7868                 retval = -EINVAL;
7869                 goto out;
7870         }
7871
7872         len = sizeof(params);
7873         if (copy_from_user(&params, optval, len))
7874                 goto out;
7875
7876         asoc = sctp_id2assoc(sk, params.assoc_id);
7877         if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7878             sctp_style(sk, UDP)) {
7879                 retval = -EINVAL;
7880                 goto out;
7881         }
7882
7883         params.assoc_value = asoc ? asoc->peer.ecn_capable
7884                                   : sctp_sk(sk)->ep->ecn_enable;
7885
7886         if (put_user(len, optlen))
7887                 goto out;
7888
7889         if (copy_to_user(optval, &params, len))
7890                 goto out;
7891
7892         retval = 0;
7893
7894 out:
7895         return retval;
7896 }
7897
7898 static int sctp_getsockopt_pf_expose(struct sock *sk, int len,
7899                                      char __user *optval,
7900                                      int __user *optlen)
7901 {
7902         struct sctp_assoc_value params;
7903         struct sctp_association *asoc;
7904         int retval = -EFAULT;
7905
7906         if (len < sizeof(params)) {
7907                 retval = -EINVAL;
7908                 goto out;
7909         }
7910
7911         len = sizeof(params);
7912         if (copy_from_user(&params, optval, len))
7913                 goto out;
7914
7915         asoc = sctp_id2assoc(sk, params.assoc_id);
7916         if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7917             sctp_style(sk, UDP)) {
7918                 retval = -EINVAL;
7919                 goto out;
7920         }
7921
7922         params.assoc_value = asoc ? asoc->pf_expose
7923                                   : sctp_sk(sk)->pf_expose;
7924
7925         if (put_user(len, optlen))
7926                 goto out;
7927
7928         if (copy_to_user(optval, &params, len))
7929                 goto out;
7930
7931         retval = 0;
7932
7933 out:
7934         return retval;
7935 }
7936
7937 static int sctp_getsockopt_encap_port(struct sock *sk, int len,
7938                                       char __user *optval, int __user *optlen)
7939 {
7940         struct sctp_association *asoc;
7941         struct sctp_udpencaps encap;
7942         struct sctp_transport *t;
7943         __be16 encap_port;
7944
7945         if (len < sizeof(encap))
7946                 return -EINVAL;
7947
7948         len = sizeof(encap);
7949         if (copy_from_user(&encap, optval, len))
7950                 return -EFAULT;
7951
7952         /* If an address other than INADDR_ANY is specified, and
7953          * no transport is found, then the request is invalid.
7954          */
7955         if (!sctp_is_any(sk, (union sctp_addr *)&encap.sue_address)) {
7956                 t = sctp_addr_id2transport(sk, &encap.sue_address,
7957                                            encap.sue_assoc_id);
7958                 if (!t) {
7959                         pr_debug("%s: failed no transport\n", __func__);
7960                         return -EINVAL;
7961                 }
7962
7963                 encap_port = t->encap_port;
7964                 goto out;
7965         }
7966
7967         /* Get association, if assoc_id != SCTP_FUTURE_ASSOC and the
7968          * socket is a one to many style socket, and an association
7969          * was not found, then the id was invalid.
7970          */
7971         asoc = sctp_id2assoc(sk, encap.sue_assoc_id);
7972         if (!asoc && encap.sue_assoc_id != SCTP_FUTURE_ASSOC &&
7973             sctp_style(sk, UDP)) {
7974                 pr_debug("%s: failed no association\n", __func__);
7975                 return -EINVAL;
7976         }
7977
7978         if (asoc) {
7979                 encap_port = asoc->encap_port;
7980                 goto out;
7981         }
7982
7983         encap_port = sctp_sk(sk)->encap_port;
7984
7985 out:
7986         encap.sue_port = (__force uint16_t)encap_port;
7987         if (copy_to_user(optval, &encap, len))
7988                 return -EFAULT;
7989
7990         if (put_user(len, optlen))
7991                 return -EFAULT;
7992
7993         return 0;
7994 }
7995
7996 static int sctp_getsockopt_probe_interval(struct sock *sk, int len,
7997                                           char __user *optval,
7998                                           int __user *optlen)
7999 {
8000         struct sctp_probeinterval params;
8001         struct sctp_association *asoc;
8002         struct sctp_transport *t;
8003         __u32 probe_interval;
8004
8005         if (len < sizeof(params))
8006                 return -EINVAL;
8007
8008         len = sizeof(params);
8009         if (copy_from_user(&params, optval, len))
8010                 return -EFAULT;
8011
8012         /* If an address other than INADDR_ANY is specified, and
8013          * no transport is found, then the request is invalid.
8014          */
8015         if (!sctp_is_any(sk, (union sctp_addr *)&params.spi_address)) {
8016                 t = sctp_addr_id2transport(sk, &params.spi_address,
8017                                            params.spi_assoc_id);
8018                 if (!t) {
8019                         pr_debug("%s: failed no transport\n", __func__);
8020                         return -EINVAL;
8021                 }
8022
8023                 probe_interval = jiffies_to_msecs(t->probe_interval);
8024                 goto out;
8025         }
8026
8027         /* Get association, if assoc_id != SCTP_FUTURE_ASSOC and the
8028          * socket is a one to many style socket, and an association
8029          * was not found, then the id was invalid.
8030          */
8031         asoc = sctp_id2assoc(sk, params.spi_assoc_id);
8032         if (!asoc && params.spi_assoc_id != SCTP_FUTURE_ASSOC &&
8033             sctp_style(sk, UDP)) {
8034                 pr_debug("%s: failed no association\n", __func__);
8035                 return -EINVAL;
8036         }
8037
8038         if (asoc) {
8039                 probe_interval = jiffies_to_msecs(asoc->probe_interval);
8040                 goto out;
8041         }
8042
8043         probe_interval = sctp_sk(sk)->probe_interval;
8044
8045 out:
8046         params.spi_interval = probe_interval;
8047         if (copy_to_user(optval, &params, len))
8048                 return -EFAULT;
8049
8050         if (put_user(len, optlen))
8051                 return -EFAULT;
8052
8053         return 0;
8054 }
8055
8056 static int sctp_getsockopt(struct sock *sk, int level, int optname,
8057                            char __user *optval, int __user *optlen)
8058 {
8059         int retval = 0;
8060         int len;
8061
8062         pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
8063
8064         /* I can hardly begin to describe how wrong this is.  This is
8065          * so broken as to be worse than useless.  The API draft
8066          * REALLY is NOT helpful here...  I am not convinced that the
8067          * semantics of getsockopt() with a level OTHER THAN SOL_SCTP
8068          * are at all well-founded.
8069          */
8070         if (level != SOL_SCTP) {
8071                 struct sctp_af *af = sctp_sk(sk)->pf->af;
8072
8073                 retval = af->getsockopt(sk, level, optname, optval, optlen);
8074                 return retval;
8075         }
8076
8077         if (get_user(len, optlen))
8078                 return -EFAULT;
8079
8080         if (len < 0)
8081                 return -EINVAL;
8082
8083         lock_sock(sk);
8084
8085         switch (optname) {
8086         case SCTP_STATUS:
8087                 retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen);
8088                 break;
8089         case SCTP_DISABLE_FRAGMENTS:
8090                 retval = sctp_getsockopt_disable_fragments(sk, len, optval,
8091                                                            optlen);
8092                 break;
8093         case SCTP_EVENTS:
8094                 retval = sctp_getsockopt_events(sk, len, optval, optlen);
8095                 break;
8096         case SCTP_AUTOCLOSE:
8097                 retval = sctp_getsockopt_autoclose(sk, len, optval, optlen);
8098                 break;
8099         case SCTP_SOCKOPT_PEELOFF:
8100                 retval = sctp_getsockopt_peeloff(sk, len, optval, optlen);
8101                 break;
8102         case SCTP_SOCKOPT_PEELOFF_FLAGS:
8103                 retval = sctp_getsockopt_peeloff_flags(sk, len, optval, optlen);
8104                 break;
8105         case SCTP_PEER_ADDR_PARAMS:
8106                 retval = sctp_getsockopt_peer_addr_params(sk, len, optval,
8107                                                           optlen);
8108                 break;
8109         case SCTP_DELAYED_SACK:
8110                 retval = sctp_getsockopt_delayed_ack(sk, len, optval,
8111                                                           optlen);
8112                 break;
8113         case SCTP_INITMSG:
8114                 retval = sctp_getsockopt_initmsg(sk, len, optval, optlen);
8115                 break;
8116         case SCTP_GET_PEER_ADDRS:
8117                 retval = sctp_getsockopt_peer_addrs(sk, len, optval,
8118                                                     optlen);
8119                 break;
8120         case SCTP_GET_LOCAL_ADDRS:
8121                 retval = sctp_getsockopt_local_addrs(sk, len, optval,
8122                                                      optlen);
8123                 break;
8124         case SCTP_SOCKOPT_CONNECTX3:
8125                 retval = sctp_getsockopt_connectx3(sk, len, optval, optlen);
8126                 break;
8127         case SCTP_DEFAULT_SEND_PARAM:
8128                 retval = sctp_getsockopt_default_send_param(sk, len,
8129                                                             optval, optlen);
8130                 break;
8131         case SCTP_DEFAULT_SNDINFO:
8132                 retval = sctp_getsockopt_default_sndinfo(sk, len,
8133                                                          optval, optlen);
8134                 break;
8135         case SCTP_PRIMARY_ADDR:
8136                 retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen);
8137                 break;
8138         case SCTP_NODELAY:
8139                 retval = sctp_getsockopt_nodelay(sk, len, optval, optlen);
8140                 break;
8141         case SCTP_RTOINFO:
8142                 retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen);
8143                 break;
8144         case SCTP_ASSOCINFO:
8145                 retval = sctp_getsockopt_associnfo(sk, len, optval, optlen);
8146                 break;
8147         case SCTP_I_WANT_MAPPED_V4_ADDR:
8148                 retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen);
8149                 break;
8150         case SCTP_MAXSEG:
8151                 retval = sctp_getsockopt_maxseg(sk, len, optval, optlen);
8152                 break;
8153         case SCTP_GET_PEER_ADDR_INFO:
8154                 retval = sctp_getsockopt_peer_addr_info(sk, len, optval,
8155                                                         optlen);
8156                 break;
8157         case SCTP_ADAPTATION_LAYER:
8158                 retval = sctp_getsockopt_adaptation_layer(sk, len, optval,
8159                                                         optlen);
8160                 break;
8161         case SCTP_CONTEXT:
8162                 retval = sctp_getsockopt_context(sk, len, optval, optlen);
8163                 break;
8164         case SCTP_FRAGMENT_INTERLEAVE:
8165                 retval = sctp_getsockopt_fragment_interleave(sk, len, optval,
8166                                                              optlen);
8167                 break;
8168         case SCTP_PARTIAL_DELIVERY_POINT:
8169                 retval = sctp_getsockopt_partial_delivery_point(sk, len, optval,
8170                                                                 optlen);
8171                 break;
8172         case SCTP_MAX_BURST:
8173                 retval = sctp_getsockopt_maxburst(sk, len, optval, optlen);
8174                 break;
8175         case SCTP_AUTH_KEY:
8176         case SCTP_AUTH_CHUNK:
8177         case SCTP_AUTH_DELETE_KEY:
8178         case SCTP_AUTH_DEACTIVATE_KEY:
8179                 retval = -EOPNOTSUPP;
8180                 break;
8181         case SCTP_HMAC_IDENT:
8182                 retval = sctp_getsockopt_hmac_ident(sk, len, optval, optlen);
8183                 break;
8184         case SCTP_AUTH_ACTIVE_KEY:
8185                 retval = sctp_getsockopt_active_key(sk, len, optval, optlen);
8186                 break;
8187         case SCTP_PEER_AUTH_CHUNKS:
8188                 retval = sctp_getsockopt_peer_auth_chunks(sk, len, optval,
8189                                                         optlen);
8190                 break;
8191         case SCTP_LOCAL_AUTH_CHUNKS:
8192                 retval = sctp_getsockopt_local_auth_chunks(sk, len, optval,
8193                                                         optlen);
8194                 break;
8195         case SCTP_GET_ASSOC_NUMBER:
8196                 retval = sctp_getsockopt_assoc_number(sk, len, optval, optlen);
8197                 break;
8198         case SCTP_GET_ASSOC_ID_LIST:
8199                 retval = sctp_getsockopt_assoc_ids(sk, len, optval, optlen);
8200                 break;
8201         case SCTP_AUTO_ASCONF:
8202                 retval = sctp_getsockopt_auto_asconf(sk, len, optval, optlen);
8203                 break;
8204         case SCTP_PEER_ADDR_THLDS:
8205                 retval = sctp_getsockopt_paddr_thresholds(sk, optval, len,
8206                                                           optlen, false);
8207                 break;
8208         case SCTP_PEER_ADDR_THLDS_V2:
8209                 retval = sctp_getsockopt_paddr_thresholds(sk, optval, len,
8210                                                           optlen, true);
8211                 break;
8212         case SCTP_GET_ASSOC_STATS:
8213                 retval = sctp_getsockopt_assoc_stats(sk, len, optval, optlen);
8214                 break;
8215         case SCTP_RECVRCVINFO:
8216                 retval = sctp_getsockopt_recvrcvinfo(sk, len, optval, optlen);
8217                 break;
8218         case SCTP_RECVNXTINFO:
8219                 retval = sctp_getsockopt_recvnxtinfo(sk, len, optval, optlen);
8220                 break;
8221         case SCTP_PR_SUPPORTED:
8222                 retval = sctp_getsockopt_pr_supported(sk, len, optval, optlen);
8223                 break;
8224         case SCTP_DEFAULT_PRINFO:
8225                 retval = sctp_getsockopt_default_prinfo(sk, len, optval,
8226                                                         optlen);
8227                 break;
8228         case SCTP_PR_ASSOC_STATUS:
8229                 retval = sctp_getsockopt_pr_assocstatus(sk, len, optval,
8230                                                         optlen);
8231                 break;
8232         case SCTP_PR_STREAM_STATUS:
8233                 retval = sctp_getsockopt_pr_streamstatus(sk, len, optval,
8234                                                          optlen);
8235                 break;
8236         case SCTP_RECONFIG_SUPPORTED:
8237                 retval = sctp_getsockopt_reconfig_supported(sk, len, optval,
8238                                                             optlen);
8239                 break;
8240         case SCTP_ENABLE_STREAM_RESET:
8241                 retval = sctp_getsockopt_enable_strreset(sk, len, optval,
8242                                                          optlen);
8243                 break;
8244         case SCTP_STREAM_SCHEDULER:
8245                 retval = sctp_getsockopt_scheduler(sk, len, optval,
8246                                                    optlen);
8247                 break;
8248         case SCTP_STREAM_SCHEDULER_VALUE:
8249                 retval = sctp_getsockopt_scheduler_value(sk, len, optval,
8250                                                          optlen);
8251                 break;
8252         case SCTP_INTERLEAVING_SUPPORTED:
8253                 retval = sctp_getsockopt_interleaving_supported(sk, len, optval,
8254                                                                 optlen);
8255                 break;
8256         case SCTP_REUSE_PORT:
8257                 retval = sctp_getsockopt_reuse_port(sk, len, optval, optlen);
8258                 break;
8259         case SCTP_EVENT:
8260                 retval = sctp_getsockopt_event(sk, len, optval, optlen);
8261                 break;
8262         case SCTP_ASCONF_SUPPORTED:
8263                 retval = sctp_getsockopt_asconf_supported(sk, len, optval,
8264                                                           optlen);
8265                 break;
8266         case SCTP_AUTH_SUPPORTED:
8267                 retval = sctp_getsockopt_auth_supported(sk, len, optval,
8268                                                         optlen);
8269                 break;
8270         case SCTP_ECN_SUPPORTED:
8271                 retval = sctp_getsockopt_ecn_supported(sk, len, optval, optlen);
8272                 break;
8273         case SCTP_EXPOSE_POTENTIALLY_FAILED_STATE:
8274                 retval = sctp_getsockopt_pf_expose(sk, len, optval, optlen);
8275                 break;
8276         case SCTP_REMOTE_UDP_ENCAPS_PORT:
8277                 retval = sctp_getsockopt_encap_port(sk, len, optval, optlen);
8278                 break;
8279         case SCTP_PLPMTUD_PROBE_INTERVAL:
8280                 retval = sctp_getsockopt_probe_interval(sk, len, optval, optlen);
8281                 break;
8282         default:
8283                 retval = -ENOPROTOOPT;
8284                 break;
8285         }
8286
8287         release_sock(sk);
8288         return retval;
8289 }
8290
8291 static bool sctp_bpf_bypass_getsockopt(int level, int optname)
8292 {
8293         if (level == SOL_SCTP) {
8294                 switch (optname) {
8295                 case SCTP_SOCKOPT_PEELOFF:
8296                 case SCTP_SOCKOPT_PEELOFF_FLAGS:
8297                 case SCTP_SOCKOPT_CONNECTX3:
8298                         return true;
8299                 default:
8300                         return false;
8301                 }
8302         }
8303
8304         return false;
8305 }
8306
8307 static int sctp_hash(struct sock *sk)
8308 {
8309         /* STUB */
8310         return 0;
8311 }
8312
8313 static void sctp_unhash(struct sock *sk)
8314 {
8315         /* STUB */
8316 }
8317
8318 /* Check if port is acceptable.  Possibly find first available port.
8319  *
8320  * The port hash table (contained in the 'global' SCTP protocol storage
8321  * returned by struct sctp_protocol *sctp_get_protocol()). The hash
8322  * table is an array of 4096 lists (sctp_bind_hashbucket). Each
8323  * list (the list number is the port number hashed out, so as you
8324  * would expect from a hash function, all the ports in a given list have
8325  * such a number that hashes out to the same list number; you were
8326  * expecting that, right?); so each list has a set of ports, with a
8327  * link to the socket (struct sock) that uses it, the port number and
8328  * a fastreuse flag (FIXME: NPI ipg).
8329  */
8330 static struct sctp_bind_bucket *sctp_bucket_create(
8331         struct sctp_bind_hashbucket *head, struct net *, unsigned short snum);
8332
8333 static int sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
8334 {
8335         struct sctp_sock *sp = sctp_sk(sk);
8336         bool reuse = (sk->sk_reuse || sp->reuse);
8337         struct sctp_bind_hashbucket *head; /* hash list */
8338         struct net *net = sock_net(sk);
8339         kuid_t uid = sock_i_uid(sk);
8340         struct sctp_bind_bucket *pp;
8341         unsigned short snum;
8342         int ret;
8343
8344         snum = ntohs(addr->v4.sin_port);
8345
8346         pr_debug("%s: begins, snum:%d\n", __func__, snum);
8347
8348         if (snum == 0) {
8349                 /* Search for an available port. */
8350                 int low, high, remaining, index;
8351                 unsigned int rover;
8352
8353                 inet_get_local_port_range(net, &low, &high);
8354                 remaining = (high - low) + 1;
8355                 rover = prandom_u32() % remaining + low;
8356
8357                 do {
8358                         rover++;
8359                         if ((rover < low) || (rover > high))
8360                                 rover = low;
8361                         if (inet_is_local_reserved_port(net, rover))
8362                                 continue;
8363                         index = sctp_phashfn(net, rover);
8364                         head = &sctp_port_hashtable[index];
8365                         spin_lock_bh(&head->lock);
8366                         sctp_for_each_hentry(pp, &head->chain)
8367                                 if ((pp->port == rover) &&
8368                                     net_eq(net, pp->net))
8369                                         goto next;
8370                         break;
8371                 next:
8372                         spin_unlock_bh(&head->lock);
8373                         cond_resched();
8374                 } while (--remaining > 0);
8375
8376                 /* Exhausted local port range during search? */
8377                 ret = 1;
8378                 if (remaining <= 0)
8379                         return ret;
8380
8381                 /* OK, here is the one we will use.  HEAD (the port
8382                  * hash table list entry) is non-NULL and we hold it's
8383                  * mutex.
8384                  */
8385                 snum = rover;
8386         } else {
8387                 /* We are given an specific port number; we verify
8388                  * that it is not being used. If it is used, we will
8389                  * exahust the search in the hash list corresponding
8390                  * to the port number (snum) - we detect that with the
8391                  * port iterator, pp being NULL.
8392                  */
8393                 head = &sctp_port_hashtable[sctp_phashfn(net, snum)];
8394                 spin_lock_bh(&head->lock);
8395                 sctp_for_each_hentry(pp, &head->chain) {
8396                         if ((pp->port == snum) && net_eq(pp->net, net))
8397                                 goto pp_found;
8398                 }
8399         }
8400         pp = NULL;
8401         goto pp_not_found;
8402 pp_found:
8403         if (!hlist_empty(&pp->owner)) {
8404                 /* We had a port hash table hit - there is an
8405                  * available port (pp != NULL) and it is being
8406                  * used by other socket (pp->owner not empty); that other
8407                  * socket is going to be sk2.
8408                  */
8409                 struct sock *sk2;
8410
8411                 pr_debug("%s: found a possible match\n", __func__);
8412
8413                 if ((pp->fastreuse && reuse &&
8414                      sk->sk_state != SCTP_SS_LISTENING) ||
8415                     (pp->fastreuseport && sk->sk_reuseport &&
8416                      uid_eq(pp->fastuid, uid)))
8417                         goto success;
8418
8419                 /* Run through the list of sockets bound to the port
8420                  * (pp->port) [via the pointers bind_next and
8421                  * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one,
8422                  * we get the endpoint they describe and run through
8423                  * the endpoint's list of IP (v4 or v6) addresses,
8424                  * comparing each of the addresses with the address of
8425                  * the socket sk. If we find a match, then that means
8426                  * that this port/socket (sk) combination are already
8427                  * in an endpoint.
8428                  */
8429                 sk_for_each_bound(sk2, &pp->owner) {
8430                         struct sctp_sock *sp2 = sctp_sk(sk2);
8431                         struct sctp_endpoint *ep2 = sp2->ep;
8432
8433                         if (sk == sk2 ||
8434                             (reuse && (sk2->sk_reuse || sp2->reuse) &&
8435                              sk2->sk_state != SCTP_SS_LISTENING) ||
8436                             (sk->sk_reuseport && sk2->sk_reuseport &&
8437                              uid_eq(uid, sock_i_uid(sk2))))
8438                                 continue;
8439
8440                         if (sctp_bind_addr_conflict(&ep2->base.bind_addr,
8441                                                     addr, sp2, sp)) {
8442                                 ret = 1;
8443                                 goto fail_unlock;
8444                         }
8445                 }
8446
8447                 pr_debug("%s: found a match\n", __func__);
8448         }
8449 pp_not_found:
8450         /* If there was a hash table miss, create a new port.  */
8451         ret = 1;
8452         if (!pp && !(pp = sctp_bucket_create(head, net, snum)))
8453                 goto fail_unlock;
8454
8455         /* In either case (hit or miss), make sure fastreuse is 1 only
8456          * if sk->sk_reuse is too (that is, if the caller requested
8457          * SO_REUSEADDR on this socket -sk-).
8458          */
8459         if (hlist_empty(&pp->owner)) {
8460                 if (reuse && sk->sk_state != SCTP_SS_LISTENING)
8461                         pp->fastreuse = 1;
8462                 else
8463                         pp->fastreuse = 0;
8464
8465                 if (sk->sk_reuseport) {
8466                         pp->fastreuseport = 1;
8467                         pp->fastuid = uid;
8468                 } else {
8469                         pp->fastreuseport = 0;
8470                 }
8471         } else {
8472                 if (pp->fastreuse &&
8473                     (!reuse || sk->sk_state == SCTP_SS_LISTENING))
8474                         pp->fastreuse = 0;
8475
8476                 if (pp->fastreuseport &&
8477                     (!sk->sk_reuseport || !uid_eq(pp->fastuid, uid)))
8478                         pp->fastreuseport = 0;
8479         }
8480
8481         /* We are set, so fill up all the data in the hash table
8482          * entry, tie the socket list information with the rest of the
8483          * sockets FIXME: Blurry, NPI (ipg).
8484          */
8485 success:
8486         if (!sp->bind_hash) {
8487                 inet_sk(sk)->inet_num = snum;
8488                 sk_add_bind_node(sk, &pp->owner);
8489                 sp->bind_hash = pp;
8490         }
8491         ret = 0;
8492
8493 fail_unlock:
8494         spin_unlock_bh(&head->lock);
8495         return ret;
8496 }
8497
8498 /* Assign a 'snum' port to the socket.  If snum == 0, an ephemeral
8499  * port is requested.
8500  */
8501 static int sctp_get_port(struct sock *sk, unsigned short snum)
8502 {
8503         union sctp_addr addr;
8504         struct sctp_af *af = sctp_sk(sk)->pf->af;
8505
8506         /* Set up a dummy address struct from the sk. */
8507         af->from_sk(&addr, sk);
8508         addr.v4.sin_port = htons(snum);
8509
8510         /* Note: sk->sk_num gets filled in if ephemeral port request. */
8511         return sctp_get_port_local(sk, &addr);
8512 }
8513
8514 /*
8515  *  Move a socket to LISTENING state.
8516  */
8517 static int sctp_listen_start(struct sock *sk, int backlog)
8518 {
8519         struct sctp_sock *sp = sctp_sk(sk);
8520         struct sctp_endpoint *ep = sp->ep;
8521         struct crypto_shash *tfm = NULL;
8522         char alg[32];
8523
8524         /* Allocate HMAC for generating cookie. */
8525         if (!sp->hmac && sp->sctp_hmac_alg) {
8526                 sprintf(alg, "hmac(%s)", sp->sctp_hmac_alg);
8527                 tfm = crypto_alloc_shash(alg, 0, 0);
8528                 if (IS_ERR(tfm)) {
8529                         net_info_ratelimited("failed to load transform for %s: %ld\n",
8530                                              sp->sctp_hmac_alg, PTR_ERR(tfm));
8531                         return -ENOSYS;
8532                 }
8533                 sctp_sk(sk)->hmac = tfm;
8534         }
8535
8536         /*
8537          * If a bind() or sctp_bindx() is not called prior to a listen()
8538          * call that allows new associations to be accepted, the system
8539          * picks an ephemeral port and will choose an address set equivalent
8540          * to binding with a wildcard address.
8541          *
8542          * This is not currently spelled out in the SCTP sockets
8543          * extensions draft, but follows the practice as seen in TCP
8544          * sockets.
8545          *
8546          */
8547         inet_sk_set_state(sk, SCTP_SS_LISTENING);
8548         if (!ep->base.bind_addr.port) {
8549                 if (sctp_autobind(sk))
8550                         return -EAGAIN;
8551         } else {
8552                 if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
8553                         inet_sk_set_state(sk, SCTP_SS_CLOSED);
8554                         return -EADDRINUSE;
8555                 }
8556         }
8557
8558         WRITE_ONCE(sk->sk_max_ack_backlog, backlog);
8559         return sctp_hash_endpoint(ep);
8560 }
8561
8562 /*
8563  * 4.1.3 / 5.1.3 listen()
8564  *
8565  *   By default, new associations are not accepted for UDP style sockets.
8566  *   An application uses listen() to mark a socket as being able to
8567  *   accept new associations.
8568  *
8569  *   On TCP style sockets, applications use listen() to ready the SCTP
8570  *   endpoint for accepting inbound associations.
8571  *
8572  *   On both types of endpoints a backlog of '0' disables listening.
8573  *
8574  *  Move a socket to LISTENING state.
8575  */
8576 int sctp_inet_listen(struct socket *sock, int backlog)
8577 {
8578         struct sock *sk = sock->sk;
8579         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
8580         int err = -EINVAL;
8581
8582         if (unlikely(backlog < 0))
8583                 return err;
8584
8585         lock_sock(sk);
8586
8587         /* Peeled-off sockets are not allowed to listen().  */
8588         if (sctp_style(sk, UDP_HIGH_BANDWIDTH))
8589                 goto out;
8590
8591         if (sock->state != SS_UNCONNECTED)
8592                 goto out;
8593
8594         if (!sctp_sstate(sk, LISTENING) && !sctp_sstate(sk, CLOSED))
8595                 goto out;
8596
8597         /* If backlog is zero, disable listening. */
8598         if (!backlog) {
8599                 if (sctp_sstate(sk, CLOSED))
8600                         goto out;
8601
8602                 err = 0;
8603                 sctp_unhash_endpoint(ep);
8604                 sk->sk_state = SCTP_SS_CLOSED;
8605                 if (sk->sk_reuse || sctp_sk(sk)->reuse)
8606                         sctp_sk(sk)->bind_hash->fastreuse = 1;
8607                 goto out;
8608         }
8609
8610         /* If we are already listening, just update the backlog */
8611         if (sctp_sstate(sk, LISTENING))
8612                 WRITE_ONCE(sk->sk_max_ack_backlog, backlog);
8613         else {
8614                 err = sctp_listen_start(sk, backlog);
8615                 if (err)
8616                         goto out;
8617         }
8618
8619         err = 0;
8620 out:
8621         release_sock(sk);
8622         return err;
8623 }
8624
8625 /*
8626  * This function is done by modeling the current datagram_poll() and the
8627  * tcp_poll().  Note that, based on these implementations, we don't
8628  * lock the socket in this function, even though it seems that,
8629  * ideally, locking or some other mechanisms can be used to ensure
8630  * the integrity of the counters (sndbuf and wmem_alloc) used
8631  * in this place.  We assume that we don't need locks either until proven
8632  * otherwise.
8633  *
8634  * Another thing to note is that we include the Async I/O support
8635  * here, again, by modeling the current TCP/UDP code.  We don't have
8636  * a good way to test with it yet.
8637  */
8638 __poll_t sctp_poll(struct file *file, struct socket *sock, poll_table *wait)
8639 {
8640         struct sock *sk = sock->sk;
8641         struct sctp_sock *sp = sctp_sk(sk);
8642         __poll_t mask;
8643
8644         poll_wait(file, sk_sleep(sk), wait);
8645
8646         sock_rps_record_flow(sk);
8647
8648         /* A TCP-style listening socket becomes readable when the accept queue
8649          * is not empty.
8650          */
8651         if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
8652                 return (!list_empty(&sp->ep->asocs)) ?
8653                         (EPOLLIN | EPOLLRDNORM) : 0;
8654
8655         mask = 0;
8656
8657         /* Is there any exceptional events?  */
8658         if (sk->sk_err || !skb_queue_empty_lockless(&sk->sk_error_queue))
8659                 mask |= EPOLLERR |
8660                         (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? EPOLLPRI : 0);
8661         if (sk->sk_shutdown & RCV_SHUTDOWN)
8662                 mask |= EPOLLRDHUP | EPOLLIN | EPOLLRDNORM;
8663         if (sk->sk_shutdown == SHUTDOWN_MASK)
8664                 mask |= EPOLLHUP;
8665
8666         /* Is it readable?  Reconsider this code with TCP-style support.  */
8667         if (!skb_queue_empty_lockless(&sk->sk_receive_queue))
8668                 mask |= EPOLLIN | EPOLLRDNORM;
8669
8670         /* The association is either gone or not ready.  */
8671         if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED))
8672                 return mask;
8673
8674         /* Is it writable?  */
8675         if (sctp_writeable(sk)) {
8676                 mask |= EPOLLOUT | EPOLLWRNORM;
8677         } else {
8678                 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
8679                 /*
8680                  * Since the socket is not locked, the buffer
8681                  * might be made available after the writeable check and
8682                  * before the bit is set.  This could cause a lost I/O
8683                  * signal.  tcp_poll() has a race breaker for this race
8684                  * condition.  Based on their implementation, we put
8685                  * in the following code to cover it as well.
8686                  */
8687                 if (sctp_writeable(sk))
8688                         mask |= EPOLLOUT | EPOLLWRNORM;
8689         }
8690         return mask;
8691 }
8692
8693 /********************************************************************
8694  * 2nd Level Abstractions
8695  ********************************************************************/
8696
8697 static struct sctp_bind_bucket *sctp_bucket_create(
8698         struct sctp_bind_hashbucket *head, struct net *net, unsigned short snum)
8699 {
8700         struct sctp_bind_bucket *pp;
8701
8702         pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
8703         if (pp) {
8704                 SCTP_DBG_OBJCNT_INC(bind_bucket);
8705                 pp->port = snum;
8706                 pp->fastreuse = 0;
8707                 INIT_HLIST_HEAD(&pp->owner);
8708                 pp->net = net;
8709                 hlist_add_head(&pp->node, &head->chain);
8710         }
8711         return pp;
8712 }
8713
8714 /* Caller must hold hashbucket lock for this tb with local BH disabled */
8715 static void sctp_bucket_destroy(struct sctp_bind_bucket *pp)
8716 {
8717         if (pp && hlist_empty(&pp->owner)) {
8718                 __hlist_del(&pp->node);
8719                 kmem_cache_free(sctp_bucket_cachep, pp);
8720                 SCTP_DBG_OBJCNT_DEC(bind_bucket);
8721         }
8722 }
8723
8724 /* Release this socket's reference to a local port.  */
8725 static inline void __sctp_put_port(struct sock *sk)
8726 {
8727         struct sctp_bind_hashbucket *head =
8728                 &sctp_port_hashtable[sctp_phashfn(sock_net(sk),
8729                                                   inet_sk(sk)->inet_num)];
8730         struct sctp_bind_bucket *pp;
8731
8732         spin_lock(&head->lock);
8733         pp = sctp_sk(sk)->bind_hash;
8734         __sk_del_bind_node(sk);
8735         sctp_sk(sk)->bind_hash = NULL;
8736         inet_sk(sk)->inet_num = 0;
8737         sctp_bucket_destroy(pp);
8738         spin_unlock(&head->lock);
8739 }
8740
8741 void sctp_put_port(struct sock *sk)
8742 {
8743         local_bh_disable();
8744         __sctp_put_port(sk);
8745         local_bh_enable();
8746 }
8747
8748 /*
8749  * The system picks an ephemeral port and choose an address set equivalent
8750  * to binding with a wildcard address.
8751  * One of those addresses will be the primary address for the association.
8752  * This automatically enables the multihoming capability of SCTP.
8753  */
8754 static int sctp_autobind(struct sock *sk)
8755 {
8756         union sctp_addr autoaddr;
8757         struct sctp_af *af;
8758         __be16 port;
8759
8760         /* Initialize a local sockaddr structure to INADDR_ANY. */
8761         af = sctp_sk(sk)->pf->af;
8762
8763         port = htons(inet_sk(sk)->inet_num);
8764         af->inaddr_any(&autoaddr, port);
8765
8766         return sctp_do_bind(sk, &autoaddr, af->sockaddr_len);
8767 }
8768
8769 /* Parse out IPPROTO_SCTP CMSG headers.  Perform only minimal validation.
8770  *
8771  * From RFC 2292
8772  * 4.2 The cmsghdr Structure *
8773  *
8774  * When ancillary data is sent or received, any number of ancillary data
8775  * objects can be specified by the msg_control and msg_controllen members of
8776  * the msghdr structure, because each object is preceded by
8777  * a cmsghdr structure defining the object's length (the cmsg_len member).
8778  * Historically Berkeley-derived implementations have passed only one object
8779  * at a time, but this API allows multiple objects to be
8780  * passed in a single call to sendmsg() or recvmsg(). The following example
8781  * shows two ancillary data objects in a control buffer.
8782  *
8783  *   |<--------------------------- msg_controllen -------------------------->|
8784  *   |                                                                       |
8785  *
8786  *   |<----- ancillary data object ----->|<----- ancillary data object ----->|
8787  *
8788  *   |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->|
8789  *   |                                   |                                   |
8790  *
8791  *   |<---------- cmsg_len ---------->|  |<--------- cmsg_len ----------->|  |
8792  *
8793  *   |<--------- CMSG_LEN() --------->|  |<-------- CMSG_LEN() ---------->|  |
8794  *   |                                |  |                                |  |
8795  *
8796  *   +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
8797  *   |cmsg_|cmsg_|cmsg_|XX|           |XX|cmsg_|cmsg_|cmsg_|XX|           |XX|
8798  *
8799  *   |len  |level|type |XX|cmsg_data[]|XX|len  |level|type |XX|cmsg_data[]|XX|
8800  *
8801  *   +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
8802  *    ^
8803  *    |
8804  *
8805  * msg_control
8806  * points here
8807  */
8808 static int sctp_msghdr_parse(const struct msghdr *msg, struct sctp_cmsgs *cmsgs)
8809 {
8810         struct msghdr *my_msg = (struct msghdr *)msg;
8811         struct cmsghdr *cmsg;
8812
8813         for_each_cmsghdr(cmsg, my_msg) {
8814                 if (!CMSG_OK(my_msg, cmsg))
8815                         return -EINVAL;
8816
8817                 /* Should we parse this header or ignore?  */
8818                 if (cmsg->cmsg_level != IPPROTO_SCTP)
8819                         continue;
8820
8821                 /* Strictly check lengths following example in SCM code.  */
8822                 switch (cmsg->cmsg_type) {
8823                 case SCTP_INIT:
8824                         /* SCTP Socket API Extension
8825                          * 5.3.1 SCTP Initiation Structure (SCTP_INIT)
8826                          *
8827                          * This cmsghdr structure provides information for
8828                          * initializing new SCTP associations with sendmsg().
8829                          * The SCTP_INITMSG socket option uses this same data
8830                          * structure.  This structure is not used for
8831                          * recvmsg().
8832                          *
8833                          * cmsg_level    cmsg_type      cmsg_data[]
8834                          * ------------  ------------   ----------------------
8835                          * IPPROTO_SCTP  SCTP_INIT      struct sctp_initmsg
8836                          */
8837                         if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_initmsg)))
8838                                 return -EINVAL;
8839
8840                         cmsgs->init = CMSG_DATA(cmsg);
8841                         break;
8842
8843                 case SCTP_SNDRCV:
8844                         /* SCTP Socket API Extension
8845                          * 5.3.2 SCTP Header Information Structure(SCTP_SNDRCV)
8846                          *
8847                          * This cmsghdr structure specifies SCTP options for
8848                          * sendmsg() and describes SCTP header information
8849                          * about a received message through recvmsg().
8850                          *
8851                          * cmsg_level    cmsg_type      cmsg_data[]
8852                          * ------------  ------------   ----------------------
8853                          * IPPROTO_SCTP  SCTP_SNDRCV    struct sctp_sndrcvinfo
8854                          */
8855                         if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndrcvinfo)))
8856                                 return -EINVAL;
8857
8858                         cmsgs->srinfo = CMSG_DATA(cmsg);
8859
8860                         if (cmsgs->srinfo->sinfo_flags &
8861                             ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
8862                               SCTP_SACK_IMMEDIATELY | SCTP_SENDALL |
8863                               SCTP_PR_SCTP_MASK | SCTP_ABORT | SCTP_EOF))
8864                                 return -EINVAL;
8865                         break;
8866
8867                 case SCTP_SNDINFO:
8868                         /* SCTP Socket API Extension
8869                          * 5.3.4 SCTP Send Information Structure (SCTP_SNDINFO)
8870                          *
8871                          * This cmsghdr structure specifies SCTP options for
8872                          * sendmsg(). This structure and SCTP_RCVINFO replaces
8873                          * SCTP_SNDRCV which has been deprecated.
8874                          *
8875                          * cmsg_level    cmsg_type      cmsg_data[]
8876                          * ------------  ------------   ---------------------
8877                          * IPPROTO_SCTP  SCTP_SNDINFO    struct sctp_sndinfo
8878                          */
8879                         if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndinfo)))
8880                                 return -EINVAL;
8881
8882                         cmsgs->sinfo = CMSG_DATA(cmsg);
8883
8884                         if (cmsgs->sinfo->snd_flags &
8885                             ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
8886                               SCTP_SACK_IMMEDIATELY | SCTP_SENDALL |
8887                               SCTP_PR_SCTP_MASK | SCTP_ABORT | SCTP_EOF))
8888                                 return -EINVAL;
8889                         break;
8890                 case SCTP_PRINFO:
8891                         /* SCTP Socket API Extension
8892                          * 5.3.7 SCTP PR-SCTP Information Structure (SCTP_PRINFO)
8893                          *
8894                          * This cmsghdr structure specifies SCTP options for sendmsg().
8895                          *
8896                          * cmsg_level    cmsg_type      cmsg_data[]
8897                          * ------------  ------------   ---------------------
8898                          * IPPROTO_SCTP  SCTP_PRINFO    struct sctp_prinfo
8899                          */
8900                         if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_prinfo)))
8901                                 return -EINVAL;
8902
8903                         cmsgs->prinfo = CMSG_DATA(cmsg);
8904                         if (cmsgs->prinfo->pr_policy & ~SCTP_PR_SCTP_MASK)
8905                                 return -EINVAL;
8906
8907                         if (cmsgs->prinfo->pr_policy == SCTP_PR_SCTP_NONE)
8908                                 cmsgs->prinfo->pr_value = 0;
8909                         break;
8910                 case SCTP_AUTHINFO:
8911                         /* SCTP Socket API Extension
8912                          * 5.3.8 SCTP AUTH Information Structure (SCTP_AUTHINFO)
8913                          *
8914                          * This cmsghdr structure specifies SCTP options for sendmsg().
8915                          *
8916                          * cmsg_level    cmsg_type      cmsg_data[]
8917                          * ------------  ------------   ---------------------
8918                          * IPPROTO_SCTP  SCTP_AUTHINFO  struct sctp_authinfo
8919                          */
8920                         if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_authinfo)))
8921                                 return -EINVAL;
8922
8923                         cmsgs->authinfo = CMSG_DATA(cmsg);
8924                         break;
8925                 case SCTP_DSTADDRV4:
8926                 case SCTP_DSTADDRV6:
8927                         /* SCTP Socket API Extension
8928                          * 5.3.9/10 SCTP Destination IPv4/6 Address Structure (SCTP_DSTADDRV4/6)
8929                          *
8930                          * This cmsghdr structure specifies SCTP options for sendmsg().
8931                          *
8932                          * cmsg_level    cmsg_type         cmsg_data[]
8933                          * ------------  ------------   ---------------------
8934                          * IPPROTO_SCTP  SCTP_DSTADDRV4 struct in_addr
8935                          * ------------  ------------   ---------------------
8936                          * IPPROTO_SCTP  SCTP_DSTADDRV6 struct in6_addr
8937                          */
8938                         cmsgs->addrs_msg = my_msg;
8939                         break;
8940                 default:
8941                         return -EINVAL;
8942                 }
8943         }
8944
8945         return 0;
8946 }
8947
8948 /*
8949  * Wait for a packet..
8950  * Note: This function is the same function as in core/datagram.c
8951  * with a few modifications to make lksctp work.
8952  */
8953 static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p)
8954 {
8955         int error;
8956         DEFINE_WAIT(wait);
8957
8958         prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
8959
8960         /* Socket errors? */
8961         error = sock_error(sk);
8962         if (error)
8963                 goto out;
8964
8965         if (!skb_queue_empty(&sk->sk_receive_queue))
8966                 goto ready;
8967
8968         /* Socket shut down?  */
8969         if (sk->sk_shutdown & RCV_SHUTDOWN)
8970                 goto out;
8971
8972         /* Sequenced packets can come disconnected.  If so we report the
8973          * problem.
8974          */
8975         error = -ENOTCONN;
8976
8977         /* Is there a good reason to think that we may receive some data?  */
8978         if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING))
8979                 goto out;
8980
8981         /* Handle signals.  */
8982         if (signal_pending(current))
8983                 goto interrupted;
8984
8985         /* Let another process have a go.  Since we are going to sleep
8986          * anyway.  Note: This may cause odd behaviors if the message
8987          * does not fit in the user's buffer, but this seems to be the
8988          * only way to honor MSG_DONTWAIT realistically.
8989          */
8990         release_sock(sk);
8991         *timeo_p = schedule_timeout(*timeo_p);
8992         lock_sock(sk);
8993
8994 ready:
8995         finish_wait(sk_sleep(sk), &wait);
8996         return 0;
8997
8998 interrupted:
8999         error = sock_intr_errno(*timeo_p);
9000
9001 out:
9002         finish_wait(sk_sleep(sk), &wait);
9003         *err = error;
9004         return error;
9005 }
9006
9007 /* Receive a datagram.
9008  * Note: This is pretty much the same routine as in core/datagram.c
9009  * with a few changes to make lksctp work.
9010  */
9011 struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags,
9012                                        int noblock, int *err)
9013 {
9014         int error;
9015         struct sk_buff *skb;
9016         long timeo;
9017
9018         timeo = sock_rcvtimeo(sk, noblock);
9019
9020         pr_debug("%s: timeo:%ld, max:%ld\n", __func__, timeo,
9021                  MAX_SCHEDULE_TIMEOUT);
9022
9023         do {
9024                 /* Again only user level code calls this function,
9025                  * so nothing interrupt level
9026                  * will suddenly eat the receive_queue.
9027                  *
9028                  *  Look at current nfs client by the way...
9029                  *  However, this function was correct in any case. 8)
9030                  */
9031                 if (flags & MSG_PEEK) {
9032                         skb = skb_peek(&sk->sk_receive_queue);
9033                         if (skb)
9034                                 refcount_inc(&skb->users);
9035                 } else {
9036                         skb = __skb_dequeue(&sk->sk_receive_queue);
9037                 }
9038
9039                 if (skb)
9040                         return skb;
9041
9042                 /* Caller is allowed not to check sk->sk_err before calling. */
9043                 error = sock_error(sk);
9044                 if (error)
9045                         goto no_packet;
9046
9047                 if (sk->sk_shutdown & RCV_SHUTDOWN)
9048                         break;
9049
9050                 if (sk_can_busy_loop(sk)) {
9051                         sk_busy_loop(sk, noblock);
9052
9053                         if (!skb_queue_empty_lockless(&sk->sk_receive_queue))
9054                                 continue;
9055                 }
9056
9057                 /* User doesn't want to wait.  */
9058                 error = -EAGAIN;
9059                 if (!timeo)
9060                         goto no_packet;
9061         } while (sctp_wait_for_packet(sk, err, &timeo) == 0);
9062
9063         return NULL;
9064
9065 no_packet:
9066         *err = error;
9067         return NULL;
9068 }
9069
9070 /* If sndbuf has changed, wake up per association sndbuf waiters.  */
9071 static void __sctp_write_space(struct sctp_association *asoc)
9072 {
9073         struct sock *sk = asoc->base.sk;
9074
9075         if (sctp_wspace(asoc) <= 0)
9076                 return;
9077
9078         if (waitqueue_active(&asoc->wait))
9079                 wake_up_interruptible(&asoc->wait);
9080
9081         if (sctp_writeable(sk)) {
9082                 struct socket_wq *wq;
9083
9084                 rcu_read_lock();
9085                 wq = rcu_dereference(sk->sk_wq);
9086                 if (wq) {
9087                         if (waitqueue_active(&wq->wait))
9088                                 wake_up_interruptible(&wq->wait);
9089
9090                         /* Note that we try to include the Async I/O support
9091                          * here by modeling from the current TCP/UDP code.
9092                          * We have not tested with it yet.
9093                          */
9094                         if (!(sk->sk_shutdown & SEND_SHUTDOWN))
9095                                 sock_wake_async(wq, SOCK_WAKE_SPACE, POLL_OUT);
9096                 }
9097                 rcu_read_unlock();
9098         }
9099 }
9100
9101 static void sctp_wake_up_waiters(struct sock *sk,
9102                                  struct sctp_association *asoc)
9103 {
9104         struct sctp_association *tmp = asoc;
9105
9106         /* We do accounting for the sndbuf space per association,
9107          * so we only need to wake our own association.
9108          */
9109         if (asoc->ep->sndbuf_policy)
9110                 return __sctp_write_space(asoc);
9111
9112         /* If association goes down and is just flushing its
9113          * outq, then just normally notify others.
9114          */
9115         if (asoc->base.dead)
9116                 return sctp_write_space(sk);
9117
9118         /* Accounting for the sndbuf space is per socket, so we
9119          * need to wake up others, try to be fair and in case of
9120          * other associations, let them have a go first instead
9121          * of just doing a sctp_write_space() call.
9122          *
9123          * Note that we reach sctp_wake_up_waiters() only when
9124          * associations free up queued chunks, thus we are under
9125          * lock and the list of associations on a socket is
9126          * guaranteed not to change.
9127          */
9128         for (tmp = list_next_entry(tmp, asocs); 1;
9129              tmp = list_next_entry(tmp, asocs)) {
9130                 /* Manually skip the head element. */
9131                 if (&tmp->asocs == &((sctp_sk(sk))->ep->asocs))
9132                         continue;
9133                 /* Wake up association. */
9134                 __sctp_write_space(tmp);
9135                 /* We've reached the end. */
9136                 if (tmp == asoc)
9137                         break;
9138         }
9139 }
9140
9141 /* Do accounting for the sndbuf space.
9142  * Decrement the used sndbuf space of the corresponding association by the
9143  * data size which was just transmitted(freed).
9144  */
9145 static void sctp_wfree(struct sk_buff *skb)
9146 {
9147         struct sctp_chunk *chunk = skb_shinfo(skb)->destructor_arg;
9148         struct sctp_association *asoc = chunk->asoc;
9149         struct sock *sk = asoc->base.sk;
9150
9151         sk_mem_uncharge(sk, skb->truesize);
9152         sk_wmem_queued_add(sk, -(skb->truesize + sizeof(struct sctp_chunk)));
9153         asoc->sndbuf_used -= skb->truesize + sizeof(struct sctp_chunk);
9154         WARN_ON(refcount_sub_and_test(sizeof(struct sctp_chunk),
9155                                       &sk->sk_wmem_alloc));
9156
9157         if (chunk->shkey) {
9158                 struct sctp_shared_key *shkey = chunk->shkey;
9159
9160                 /* refcnt == 2 and !list_empty mean after this release, it's
9161                  * not being used anywhere, and it's time to notify userland
9162                  * that this shkey can be freed if it's been deactivated.
9163                  */
9164                 if (shkey->deactivated && !list_empty(&shkey->key_list) &&
9165                     refcount_read(&shkey->refcnt) == 2) {
9166                         struct sctp_ulpevent *ev;
9167
9168                         ev = sctp_ulpevent_make_authkey(asoc, shkey->key_id,
9169                                                         SCTP_AUTH_FREE_KEY,
9170                                                         GFP_KERNEL);
9171                         if (ev)
9172                                 asoc->stream.si->enqueue_event(&asoc->ulpq, ev);
9173                 }
9174                 sctp_auth_shkey_release(chunk->shkey);
9175         }
9176
9177         sock_wfree(skb);
9178         sctp_wake_up_waiters(sk, asoc);
9179
9180         sctp_association_put(asoc);
9181 }
9182
9183 /* Do accounting for the receive space on the socket.
9184  * Accounting for the association is done in ulpevent.c
9185  * We set this as a destructor for the cloned data skbs so that
9186  * accounting is done at the correct time.
9187  */
9188 void sctp_sock_rfree(struct sk_buff *skb)
9189 {
9190         struct sock *sk = skb->sk;
9191         struct sctp_ulpevent *event = sctp_skb2event(skb);
9192
9193         atomic_sub(event->rmem_len, &sk->sk_rmem_alloc);
9194
9195         /*
9196          * Mimic the behavior of sock_rfree
9197          */
9198         sk_mem_uncharge(sk, event->rmem_len);
9199 }
9200
9201
9202 /* Helper function to wait for space in the sndbuf.  */
9203 static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
9204                                 size_t msg_len)
9205 {
9206         struct sock *sk = asoc->base.sk;
9207         long current_timeo = *timeo_p;
9208         DEFINE_WAIT(wait);
9209         int err = 0;
9210
9211         pr_debug("%s: asoc:%p, timeo:%ld, msg_len:%zu\n", __func__, asoc,
9212                  *timeo_p, msg_len);
9213
9214         /* Increment the association's refcnt.  */
9215         sctp_association_hold(asoc);
9216
9217         /* Wait on the association specific sndbuf space. */
9218         for (;;) {
9219                 prepare_to_wait_exclusive(&asoc->wait, &wait,
9220                                           TASK_INTERRUPTIBLE);
9221                 if (asoc->base.dead)
9222                         goto do_dead;
9223                 if (!*timeo_p)
9224                         goto do_nonblock;
9225                 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING)
9226                         goto do_error;
9227                 if (signal_pending(current))
9228                         goto do_interrupted;
9229                 if (sk_under_memory_pressure(sk))
9230                         sk_mem_reclaim(sk);
9231                 if ((int)msg_len <= sctp_wspace(asoc) &&
9232                     sk_wmem_schedule(sk, msg_len))
9233                         break;
9234
9235                 /* Let another process have a go.  Since we are going
9236                  * to sleep anyway.
9237                  */
9238                 release_sock(sk);
9239                 current_timeo = schedule_timeout(current_timeo);
9240                 lock_sock(sk);
9241                 if (sk != asoc->base.sk)
9242                         goto do_error;
9243
9244                 *timeo_p = current_timeo;
9245         }
9246
9247 out:
9248         finish_wait(&asoc->wait, &wait);
9249
9250         /* Release the association's refcnt.  */
9251         sctp_association_put(asoc);
9252
9253         return err;
9254
9255 do_dead:
9256         err = -ESRCH;
9257         goto out;
9258
9259 do_error:
9260         err = -EPIPE;
9261         goto out;
9262
9263 do_interrupted:
9264         err = sock_intr_errno(*timeo_p);
9265         goto out;
9266
9267 do_nonblock:
9268         err = -EAGAIN;
9269         goto out;
9270 }
9271
9272 void sctp_data_ready(struct sock *sk)
9273 {
9274         struct socket_wq *wq;
9275
9276         rcu_read_lock();
9277         wq = rcu_dereference(sk->sk_wq);
9278         if (skwq_has_sleeper(wq))
9279                 wake_up_interruptible_sync_poll(&wq->wait, EPOLLIN |
9280                                                 EPOLLRDNORM | EPOLLRDBAND);
9281         sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
9282         rcu_read_unlock();
9283 }
9284
9285 /* If socket sndbuf has changed, wake up all per association waiters.  */
9286 void sctp_write_space(struct sock *sk)
9287 {
9288         struct sctp_association *asoc;
9289
9290         /* Wake up the tasks in each wait queue.  */
9291         list_for_each_entry(asoc, &((sctp_sk(sk))->ep->asocs), asocs) {
9292                 __sctp_write_space(asoc);
9293         }
9294 }
9295
9296 /* Is there any sndbuf space available on the socket?
9297  *
9298  * Note that sk_wmem_alloc is the sum of the send buffers on all of the
9299  * associations on the same socket.  For a UDP-style socket with
9300  * multiple associations, it is possible for it to be "unwriteable"
9301  * prematurely.  I assume that this is acceptable because
9302  * a premature "unwriteable" is better than an accidental "writeable" which
9303  * would cause an unwanted block under certain circumstances.  For the 1-1
9304  * UDP-style sockets or TCP-style sockets, this code should work.
9305  *  - Daisy
9306  */
9307 static bool sctp_writeable(const struct sock *sk)
9308 {
9309         return READ_ONCE(sk->sk_sndbuf) > READ_ONCE(sk->sk_wmem_queued);
9310 }
9311
9312 /* Wait for an association to go into ESTABLISHED state. If timeout is 0,
9313  * returns immediately with EINPROGRESS.
9314  */
9315 static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p)
9316 {
9317         struct sock *sk = asoc->base.sk;
9318         int err = 0;
9319         long current_timeo = *timeo_p;
9320         DEFINE_WAIT(wait);
9321
9322         pr_debug("%s: asoc:%p, timeo:%ld\n", __func__, asoc, *timeo_p);
9323
9324         /* Increment the association's refcnt.  */
9325         sctp_association_hold(asoc);
9326
9327         for (;;) {
9328                 prepare_to_wait_exclusive(&asoc->wait, &wait,
9329                                           TASK_INTERRUPTIBLE);
9330                 if (!*timeo_p)
9331                         goto do_nonblock;
9332                 if (sk->sk_shutdown & RCV_SHUTDOWN)
9333                         break;
9334                 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
9335                     asoc->base.dead)
9336                         goto do_error;
9337                 if (signal_pending(current))
9338                         goto do_interrupted;
9339
9340                 if (sctp_state(asoc, ESTABLISHED))
9341                         break;
9342
9343                 /* Let another process have a go.  Since we are going
9344                  * to sleep anyway.
9345                  */
9346                 release_sock(sk);
9347                 current_timeo = schedule_timeout(current_timeo);
9348                 lock_sock(sk);
9349
9350                 *timeo_p = current_timeo;
9351         }
9352
9353 out:
9354         finish_wait(&asoc->wait, &wait);
9355
9356         /* Release the association's refcnt.  */
9357         sctp_association_put(asoc);
9358
9359         return err;
9360
9361 do_error:
9362         if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
9363                 err = -ETIMEDOUT;
9364         else
9365                 err = -ECONNREFUSED;
9366         goto out;
9367
9368 do_interrupted:
9369         err = sock_intr_errno(*timeo_p);
9370         goto out;
9371
9372 do_nonblock:
9373         err = -EINPROGRESS;
9374         goto out;
9375 }
9376
9377 static int sctp_wait_for_accept(struct sock *sk, long timeo)
9378 {
9379         struct sctp_endpoint *ep;
9380         int err = 0;
9381         DEFINE_WAIT(wait);
9382
9383         ep = sctp_sk(sk)->ep;
9384
9385
9386         for (;;) {
9387                 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
9388                                           TASK_INTERRUPTIBLE);
9389
9390                 if (list_empty(&ep->asocs)) {
9391                         release_sock(sk);
9392                         timeo = schedule_timeout(timeo);
9393                         lock_sock(sk);
9394                 }
9395
9396                 err = -EINVAL;
9397                 if (!sctp_sstate(sk, LISTENING))
9398                         break;
9399
9400                 err = 0;
9401                 if (!list_empty(&ep->asocs))
9402                         break;
9403
9404                 err = sock_intr_errno(timeo);
9405                 if (signal_pending(current))
9406                         break;
9407
9408                 err = -EAGAIN;
9409                 if (!timeo)
9410                         break;
9411         }
9412
9413         finish_wait(sk_sleep(sk), &wait);
9414
9415         return err;
9416 }
9417
9418 static void sctp_wait_for_close(struct sock *sk, long timeout)
9419 {
9420         DEFINE_WAIT(wait);
9421
9422         do {
9423                 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
9424                 if (list_empty(&sctp_sk(sk)->ep->asocs))
9425                         break;
9426                 release_sock(sk);
9427                 timeout = schedule_timeout(timeout);
9428                 lock_sock(sk);
9429         } while (!signal_pending(current) && timeout);
9430
9431         finish_wait(sk_sleep(sk), &wait);
9432 }
9433
9434 static void sctp_skb_set_owner_r_frag(struct sk_buff *skb, struct sock *sk)
9435 {
9436         struct sk_buff *frag;
9437
9438         if (!skb->data_len)
9439                 goto done;
9440
9441         /* Don't forget the fragments. */
9442         skb_walk_frags(skb, frag)
9443                 sctp_skb_set_owner_r_frag(frag, sk);
9444
9445 done:
9446         sctp_skb_set_owner_r(skb, sk);
9447 }
9448
9449 void sctp_copy_sock(struct sock *newsk, struct sock *sk,
9450                     struct sctp_association *asoc)
9451 {
9452         struct inet_sock *inet = inet_sk(sk);
9453         struct inet_sock *newinet;
9454         struct sctp_sock *sp = sctp_sk(sk);
9455         struct sctp_endpoint *ep = sp->ep;
9456
9457         newsk->sk_type = sk->sk_type;
9458         newsk->sk_bound_dev_if = sk->sk_bound_dev_if;
9459         newsk->sk_flags = sk->sk_flags;
9460         newsk->sk_tsflags = sk->sk_tsflags;
9461         newsk->sk_no_check_tx = sk->sk_no_check_tx;
9462         newsk->sk_no_check_rx = sk->sk_no_check_rx;
9463         newsk->sk_reuse = sk->sk_reuse;
9464         sctp_sk(newsk)->reuse = sp->reuse;
9465
9466         newsk->sk_shutdown = sk->sk_shutdown;
9467         newsk->sk_destruct = sk->sk_destruct;
9468         newsk->sk_family = sk->sk_family;
9469         newsk->sk_protocol = IPPROTO_SCTP;
9470         newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
9471         newsk->sk_sndbuf = sk->sk_sndbuf;
9472         newsk->sk_rcvbuf = sk->sk_rcvbuf;
9473         newsk->sk_lingertime = sk->sk_lingertime;
9474         newsk->sk_rcvtimeo = sk->sk_rcvtimeo;
9475         newsk->sk_sndtimeo = sk->sk_sndtimeo;
9476         newsk->sk_rxhash = sk->sk_rxhash;
9477
9478         newinet = inet_sk(newsk);
9479
9480         /* Initialize sk's sport, dport, rcv_saddr and daddr for
9481          * getsockname() and getpeername()
9482          */
9483         newinet->inet_sport = inet->inet_sport;
9484         newinet->inet_saddr = inet->inet_saddr;
9485         newinet->inet_rcv_saddr = inet->inet_rcv_saddr;
9486         newinet->inet_dport = htons(asoc->peer.port);
9487         newinet->pmtudisc = inet->pmtudisc;
9488         newinet->inet_id = prandom_u32();
9489
9490         newinet->uc_ttl = inet->uc_ttl;
9491         newinet->mc_loop = 1;
9492         newinet->mc_ttl = 1;
9493         newinet->mc_index = 0;
9494         newinet->mc_list = NULL;
9495
9496         if (newsk->sk_flags & SK_FLAGS_TIMESTAMP)
9497                 net_enable_timestamp();
9498
9499         /* Set newsk security attributes from original sk and connection
9500          * security attribute from ep.
9501          */
9502         security_sctp_sk_clone(ep, sk, newsk);
9503 }
9504
9505 static inline void sctp_copy_descendant(struct sock *sk_to,
9506                                         const struct sock *sk_from)
9507 {
9508         size_t ancestor_size = sizeof(struct inet_sock);
9509
9510         ancestor_size += sk_from->sk_prot->obj_size;
9511         ancestor_size -= offsetof(struct sctp_sock, pd_lobby);
9512         __inet_sk_copy_descendant(sk_to, sk_from, ancestor_size);
9513 }
9514
9515 /* Populate the fields of the newsk from the oldsk and migrate the assoc
9516  * and its messages to the newsk.
9517  */
9518 static int sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
9519                              struct sctp_association *assoc,
9520                              enum sctp_socket_type type)
9521 {
9522         struct sctp_sock *oldsp = sctp_sk(oldsk);
9523         struct sctp_sock *newsp = sctp_sk(newsk);
9524         struct sctp_bind_bucket *pp; /* hash list port iterator */
9525         struct sctp_endpoint *newep = newsp->ep;
9526         struct sk_buff *skb, *tmp;
9527         struct sctp_ulpevent *event;
9528         struct sctp_bind_hashbucket *head;
9529         int err;
9530
9531         /* Migrate socket buffer sizes and all the socket level options to the
9532          * new socket.
9533          */
9534         newsk->sk_sndbuf = oldsk->sk_sndbuf;
9535         newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
9536         /* Brute force copy old sctp opt. */
9537         sctp_copy_descendant(newsk, oldsk);
9538
9539         /* Restore the ep value that was overwritten with the above structure
9540          * copy.
9541          */
9542         newsp->ep = newep;
9543         newsp->hmac = NULL;
9544
9545         /* Hook this new socket in to the bind_hash list. */
9546         head = &sctp_port_hashtable[sctp_phashfn(sock_net(oldsk),
9547                                                  inet_sk(oldsk)->inet_num)];
9548         spin_lock_bh(&head->lock);
9549         pp = sctp_sk(oldsk)->bind_hash;
9550         sk_add_bind_node(newsk, &pp->owner);
9551         sctp_sk(newsk)->bind_hash = pp;
9552         inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num;
9553         spin_unlock_bh(&head->lock);
9554
9555         /* Copy the bind_addr list from the original endpoint to the new
9556          * endpoint so that we can handle restarts properly
9557          */
9558         err = sctp_bind_addr_dup(&newsp->ep->base.bind_addr,
9559                                  &oldsp->ep->base.bind_addr, GFP_KERNEL);
9560         if (err)
9561                 return err;
9562
9563         /* New ep's auth_hmacs should be set if old ep's is set, in case
9564          * that net->sctp.auth_enable has been changed to 0 by users and
9565          * new ep's auth_hmacs couldn't be set in sctp_endpoint_init().
9566          */
9567         if (oldsp->ep->auth_hmacs) {
9568                 err = sctp_auth_init_hmacs(newsp->ep, GFP_KERNEL);
9569                 if (err)
9570                         return err;
9571         }
9572
9573         sctp_auto_asconf_init(newsp);
9574
9575         /* Move any messages in the old socket's receive queue that are for the
9576          * peeled off association to the new socket's receive queue.
9577          */
9578         sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) {
9579                 event = sctp_skb2event(skb);
9580                 if (event->asoc == assoc) {
9581                         __skb_unlink(skb, &oldsk->sk_receive_queue);
9582                         __skb_queue_tail(&newsk->sk_receive_queue, skb);
9583                         sctp_skb_set_owner_r_frag(skb, newsk);
9584                 }
9585         }
9586
9587         /* Clean up any messages pending delivery due to partial
9588          * delivery.   Three cases:
9589          * 1) No partial deliver;  no work.
9590          * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby.
9591          * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue.
9592          */
9593         atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode);
9594
9595         if (atomic_read(&sctp_sk(oldsk)->pd_mode)) {
9596                 struct sk_buff_head *queue;
9597
9598                 /* Decide which queue to move pd_lobby skbs to. */
9599                 if (assoc->ulpq.pd_mode) {
9600                         queue = &newsp->pd_lobby;
9601                 } else
9602                         queue = &newsk->sk_receive_queue;
9603
9604                 /* Walk through the pd_lobby, looking for skbs that
9605                  * need moved to the new socket.
9606                  */
9607                 sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) {
9608                         event = sctp_skb2event(skb);
9609                         if (event->asoc == assoc) {
9610                                 __skb_unlink(skb, &oldsp->pd_lobby);
9611                                 __skb_queue_tail(queue, skb);
9612                                 sctp_skb_set_owner_r_frag(skb, newsk);
9613                         }
9614                 }
9615
9616                 /* Clear up any skbs waiting for the partial
9617                  * delivery to finish.
9618                  */
9619                 if (assoc->ulpq.pd_mode)
9620                         sctp_clear_pd(oldsk, NULL);
9621
9622         }
9623
9624         sctp_for_each_rx_skb(assoc, newsk, sctp_skb_set_owner_r_frag);
9625
9626         /* Set the type of socket to indicate that it is peeled off from the
9627          * original UDP-style socket or created with the accept() call on a
9628          * TCP-style socket..
9629          */
9630         newsp->type = type;
9631
9632         /* Mark the new socket "in-use" by the user so that any packets
9633          * that may arrive on the association after we've moved it are
9634          * queued to the backlog.  This prevents a potential race between
9635          * backlog processing on the old socket and new-packet processing
9636          * on the new socket.
9637          *
9638          * The caller has just allocated newsk so we can guarantee that other
9639          * paths won't try to lock it and then oldsk.
9640          */
9641         lock_sock_nested(newsk, SINGLE_DEPTH_NESTING);
9642         sctp_for_each_tx_datachunk(assoc, true, sctp_clear_owner_w);
9643         sctp_assoc_migrate(assoc, newsk);
9644         sctp_for_each_tx_datachunk(assoc, false, sctp_set_owner_w);
9645
9646         /* If the association on the newsk is already closed before accept()
9647          * is called, set RCV_SHUTDOWN flag.
9648          */
9649         if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP)) {
9650                 inet_sk_set_state(newsk, SCTP_SS_CLOSED);
9651                 newsk->sk_shutdown |= RCV_SHUTDOWN;
9652         } else {
9653                 inet_sk_set_state(newsk, SCTP_SS_ESTABLISHED);
9654         }
9655
9656         release_sock(newsk);
9657
9658         return 0;
9659 }
9660
9661
9662 /* This proto struct describes the ULP interface for SCTP.  */
9663 struct proto sctp_prot = {
9664         .name        =  "SCTP",
9665         .owner       =  THIS_MODULE,
9666         .close       =  sctp_close,
9667         .disconnect  =  sctp_disconnect,
9668         .accept      =  sctp_accept,
9669         .ioctl       =  sctp_ioctl,
9670         .init        =  sctp_init_sock,
9671         .destroy     =  sctp_destroy_sock,
9672         .shutdown    =  sctp_shutdown,
9673         .setsockopt  =  sctp_setsockopt,
9674         .getsockopt  =  sctp_getsockopt,
9675         .bpf_bypass_getsockopt  = sctp_bpf_bypass_getsockopt,
9676         .sendmsg     =  sctp_sendmsg,
9677         .recvmsg     =  sctp_recvmsg,
9678         .bind        =  sctp_bind,
9679         .bind_add    =  sctp_bind_add,
9680         .backlog_rcv =  sctp_backlog_rcv,
9681         .hash        =  sctp_hash,
9682         .unhash      =  sctp_unhash,
9683         .no_autobind =  true,
9684         .obj_size    =  sizeof(struct sctp_sock),
9685         .useroffset  =  offsetof(struct sctp_sock, subscribe),
9686         .usersize    =  offsetof(struct sctp_sock, initmsg) -
9687                                 offsetof(struct sctp_sock, subscribe) +
9688                                 sizeof_field(struct sctp_sock, initmsg),
9689         .sysctl_mem  =  sysctl_sctp_mem,
9690         .sysctl_rmem =  sysctl_sctp_rmem,
9691         .sysctl_wmem =  sysctl_sctp_wmem,
9692         .memory_pressure = &sctp_memory_pressure,
9693         .enter_memory_pressure = sctp_enter_memory_pressure,
9694         .memory_allocated = &sctp_memory_allocated,
9695         .sockets_allocated = &sctp_sockets_allocated,
9696 };
9697
9698 #if IS_ENABLED(CONFIG_IPV6)
9699
9700 static void sctp_v6_destruct_sock(struct sock *sk)
9701 {
9702         sctp_destruct_common(sk);
9703         inet6_sock_destruct(sk);
9704 }
9705
9706 static int sctp_v6_init_sock(struct sock *sk)
9707 {
9708         int ret = sctp_init_sock(sk);
9709
9710         if (!ret)
9711                 sk->sk_destruct = sctp_v6_destruct_sock;
9712
9713         return ret;
9714 }
9715
9716 struct proto sctpv6_prot = {
9717         .name           = "SCTPv6",
9718         .owner          = THIS_MODULE,
9719         .close          = sctp_close,
9720         .disconnect     = sctp_disconnect,
9721         .accept         = sctp_accept,
9722         .ioctl          = sctp_ioctl,
9723         .init           = sctp_v6_init_sock,
9724         .destroy        = sctp_destroy_sock,
9725         .shutdown       = sctp_shutdown,
9726         .setsockopt     = sctp_setsockopt,
9727         .getsockopt     = sctp_getsockopt,
9728         .bpf_bypass_getsockopt  = sctp_bpf_bypass_getsockopt,
9729         .sendmsg        = sctp_sendmsg,
9730         .recvmsg        = sctp_recvmsg,
9731         .bind           = sctp_bind,
9732         .bind_add       = sctp_bind_add,
9733         .backlog_rcv    = sctp_backlog_rcv,
9734         .hash           = sctp_hash,
9735         .unhash         = sctp_unhash,
9736         .no_autobind    = true,
9737         .obj_size       = sizeof(struct sctp6_sock),
9738         .useroffset     = offsetof(struct sctp6_sock, sctp.subscribe),
9739         .usersize       = offsetof(struct sctp6_sock, sctp.initmsg) -
9740                                 offsetof(struct sctp6_sock, sctp.subscribe) +
9741                                 sizeof_field(struct sctp6_sock, sctp.initmsg),
9742         .sysctl_mem     = sysctl_sctp_mem,
9743         .sysctl_rmem    = sysctl_sctp_rmem,
9744         .sysctl_wmem    = sysctl_sctp_wmem,
9745         .memory_pressure = &sctp_memory_pressure,
9746         .enter_memory_pressure = sctp_enter_memory_pressure,
9747         .memory_allocated = &sctp_memory_allocated,
9748         .sockets_allocated = &sctp_sockets_allocated,
9749 };
9750 #endif /* IS_ENABLED(CONFIG_IPV6) */