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