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