OSDN Git Service

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