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