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