GNU Linux-libre 4.14.254-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_for_each_transport(int (*cb)(struct sctp_transport *, void *),
4742                             int (*cb_done)(struct sctp_transport *, void *),
4743                             struct net *net, int *pos, void *p) {
4744         struct rhashtable_iter hti;
4745         struct sctp_transport *tsp;
4746         int ret;
4747
4748 again:
4749         ret = sctp_transport_walk_start(&hti);
4750         if (ret)
4751                 return ret;
4752
4753         tsp = sctp_transport_get_idx(net, &hti, *pos + 1);
4754         for (; !IS_ERR_OR_NULL(tsp); tsp = sctp_transport_get_next(net, &hti)) {
4755                 ret = cb(tsp, p);
4756                 if (ret)
4757                         break;
4758                 (*pos)++;
4759                 sctp_transport_put(tsp);
4760         }
4761         sctp_transport_walk_stop(&hti);
4762
4763         if (ret) {
4764                 if (cb_done && !cb_done(tsp, p)) {
4765                         (*pos)++;
4766                         sctp_transport_put(tsp);
4767                         goto again;
4768                 }
4769                 sctp_transport_put(tsp);
4770         }
4771
4772         return ret;
4773 }
4774 EXPORT_SYMBOL_GPL(sctp_for_each_transport);
4775
4776 /* 7.2.1 Association Status (SCTP_STATUS)
4777
4778  * Applications can retrieve current status information about an
4779  * association, including association state, peer receiver window size,
4780  * number of unacked data chunks, and number of data chunks pending
4781  * receipt.  This information is read-only.
4782  */
4783 static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
4784                                        char __user *optval,
4785                                        int __user *optlen)
4786 {
4787         struct sctp_status status;
4788         struct sctp_association *asoc = NULL;
4789         struct sctp_transport *transport;
4790         sctp_assoc_t associd;
4791         int retval = 0;
4792
4793         if (len < sizeof(status)) {
4794                 retval = -EINVAL;
4795                 goto out;
4796         }
4797
4798         len = sizeof(status);
4799         if (copy_from_user(&status, optval, len)) {
4800                 retval = -EFAULT;
4801                 goto out;
4802         }
4803
4804         associd = status.sstat_assoc_id;
4805         asoc = sctp_id2assoc(sk, associd);
4806         if (!asoc) {
4807                 retval = -EINVAL;
4808                 goto out;
4809         }
4810
4811         transport = asoc->peer.primary_path;
4812
4813         status.sstat_assoc_id = sctp_assoc2id(asoc);
4814         status.sstat_state = sctp_assoc_to_state(asoc);
4815         status.sstat_rwnd =  asoc->peer.rwnd;
4816         status.sstat_unackdata = asoc->unack_data;
4817
4818         status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
4819         status.sstat_instrms = asoc->stream.incnt;
4820         status.sstat_outstrms = asoc->stream.outcnt;
4821         status.sstat_fragmentation_point = asoc->frag_point;
4822         status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
4823         memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
4824                         transport->af_specific->sockaddr_len);
4825         /* Map ipv4 address into v4-mapped-on-v6 address.  */
4826         sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
4827                 (union sctp_addr *)&status.sstat_primary.spinfo_address);
4828         status.sstat_primary.spinfo_state = transport->state;
4829         status.sstat_primary.spinfo_cwnd = transport->cwnd;
4830         status.sstat_primary.spinfo_srtt = transport->srtt;
4831         status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
4832         status.sstat_primary.spinfo_mtu = transport->pathmtu;
4833
4834         if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
4835                 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
4836
4837         if (put_user(len, optlen)) {
4838                 retval = -EFAULT;
4839                 goto out;
4840         }
4841
4842         pr_debug("%s: len:%d, state:%d, rwnd:%d, assoc_id:%d\n",
4843                  __func__, len, status.sstat_state, status.sstat_rwnd,
4844                  status.sstat_assoc_id);
4845
4846         if (copy_to_user(optval, &status, len)) {
4847                 retval = -EFAULT;
4848                 goto out;
4849         }
4850
4851 out:
4852         return retval;
4853 }
4854
4855
4856 /* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
4857  *
4858  * Applications can retrieve information about a specific peer address
4859  * of an association, including its reachability state, congestion
4860  * window, and retransmission timer values.  This information is
4861  * read-only.
4862  */
4863 static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
4864                                           char __user *optval,
4865                                           int __user *optlen)
4866 {
4867         struct sctp_paddrinfo pinfo;
4868         struct sctp_transport *transport;
4869         int retval = 0;
4870
4871         if (len < sizeof(pinfo)) {
4872                 retval = -EINVAL;
4873                 goto out;
4874         }
4875
4876         len = sizeof(pinfo);
4877         if (copy_from_user(&pinfo, optval, len)) {
4878                 retval = -EFAULT;
4879                 goto out;
4880         }
4881
4882         transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
4883                                            pinfo.spinfo_assoc_id);
4884         if (!transport)
4885                 return -EINVAL;
4886
4887         pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
4888         pinfo.spinfo_state = transport->state;
4889         pinfo.spinfo_cwnd = transport->cwnd;
4890         pinfo.spinfo_srtt = transport->srtt;
4891         pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
4892         pinfo.spinfo_mtu = transport->pathmtu;
4893
4894         if (pinfo.spinfo_state == SCTP_UNKNOWN)
4895                 pinfo.spinfo_state = SCTP_ACTIVE;
4896
4897         if (put_user(len, optlen)) {
4898                 retval = -EFAULT;
4899                 goto out;
4900         }
4901
4902         if (copy_to_user(optval, &pinfo, len)) {
4903                 retval = -EFAULT;
4904                 goto out;
4905         }
4906
4907 out:
4908         return retval;
4909 }
4910
4911 /* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
4912  *
4913  * This option is a on/off flag.  If enabled no SCTP message
4914  * fragmentation will be performed.  Instead if a message being sent
4915  * exceeds the current PMTU size, the message will NOT be sent and
4916  * instead a error will be indicated to the user.
4917  */
4918 static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
4919                                         char __user *optval, int __user *optlen)
4920 {
4921         int val;
4922
4923         if (len < sizeof(int))
4924                 return -EINVAL;
4925
4926         len = sizeof(int);
4927         val = (sctp_sk(sk)->disable_fragments == 1);
4928         if (put_user(len, optlen))
4929                 return -EFAULT;
4930         if (copy_to_user(optval, &val, len))
4931                 return -EFAULT;
4932         return 0;
4933 }
4934
4935 /* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
4936  *
4937  * This socket option is used to specify various notifications and
4938  * ancillary data the user wishes to receive.
4939  */
4940 static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
4941                                   int __user *optlen)
4942 {
4943         if (len == 0)
4944                 return -EINVAL;
4945         if (len > sizeof(struct sctp_event_subscribe))
4946                 len = sizeof(struct sctp_event_subscribe);
4947         if (put_user(len, optlen))
4948                 return -EFAULT;
4949         if (copy_to_user(optval, &sctp_sk(sk)->subscribe, len))
4950                 return -EFAULT;
4951         return 0;
4952 }
4953
4954 /* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
4955  *
4956  * This socket option is applicable to the UDP-style socket only.  When
4957  * set it will cause associations that are idle for more than the
4958  * specified number of seconds to automatically close.  An association
4959  * being idle is defined an association that has NOT sent or received
4960  * user data.  The special value of '0' indicates that no automatic
4961  * close of any associations should be performed.  The option expects an
4962  * integer defining the number of seconds of idle time before an
4963  * association is closed.
4964  */
4965 static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
4966 {
4967         /* Applicable to UDP-style socket only */
4968         if (sctp_style(sk, TCP))
4969                 return -EOPNOTSUPP;
4970         if (len < sizeof(int))
4971                 return -EINVAL;
4972         len = sizeof(int);
4973         if (put_user(len, optlen))
4974                 return -EFAULT;
4975         if (copy_to_user(optval, &sctp_sk(sk)->autoclose, len))
4976                 return -EFAULT;
4977         return 0;
4978 }
4979
4980 /* Helper routine to branch off an association to a new socket.  */
4981 int sctp_do_peeloff(struct sock *sk, sctp_assoc_t id, struct socket **sockp)
4982 {
4983         struct sctp_association *asoc = sctp_id2assoc(sk, id);
4984         struct sctp_sock *sp = sctp_sk(sk);
4985         struct socket *sock;
4986         int err = 0;
4987
4988         /* Do not peel off from one netns to another one. */
4989         if (!net_eq(current->nsproxy->net_ns, sock_net(sk)))
4990                 return -EINVAL;
4991
4992         if (!asoc)
4993                 return -EINVAL;
4994
4995         /* An association cannot be branched off from an already peeled-off
4996          * socket, nor is this supported for tcp style sockets.
4997          */
4998         if (!sctp_style(sk, UDP))
4999                 return -EINVAL;
5000
5001         /* Create a new socket.  */
5002         err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
5003         if (err < 0)
5004                 return err;
5005
5006         sctp_copy_sock(sock->sk, sk, asoc);
5007
5008         /* Make peeled-off sockets more like 1-1 accepted sockets.
5009          * Set the daddr and initialize id to something more random
5010          */
5011         sp->pf->to_sk_daddr(&asoc->peer.primary_addr, sk);
5012
5013         /* Populate the fields of the newsk from the oldsk and migrate the
5014          * asoc to the newsk.
5015          */
5016         sctp_sock_migrate(sk, sock->sk, asoc, SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
5017
5018         *sockp = sock;
5019
5020         return err;
5021 }
5022 EXPORT_SYMBOL(sctp_do_peeloff);
5023
5024 static int sctp_getsockopt_peeloff_common(struct sock *sk, sctp_peeloff_arg_t *peeloff,
5025                                           struct file **newfile, unsigned flags)
5026 {
5027         struct socket *newsock;
5028         int retval;
5029
5030         retval = sctp_do_peeloff(sk, peeloff->associd, &newsock);
5031         if (retval < 0)
5032                 goto out;
5033
5034         /* Map the socket to an unused fd that can be returned to the user.  */
5035         retval = get_unused_fd_flags(flags & SOCK_CLOEXEC);
5036         if (retval < 0) {
5037                 sock_release(newsock);
5038                 goto out;
5039         }
5040
5041         *newfile = sock_alloc_file(newsock, 0, NULL);
5042         if (IS_ERR(*newfile)) {
5043                 put_unused_fd(retval);
5044                 sock_release(newsock);
5045                 retval = PTR_ERR(*newfile);
5046                 *newfile = NULL;
5047                 return retval;
5048         }
5049
5050         pr_debug("%s: sk:%p, newsk:%p, sd:%d\n", __func__, sk, newsock->sk,
5051                  retval);
5052
5053         peeloff->sd = retval;
5054
5055         if (flags & SOCK_NONBLOCK)
5056                 (*newfile)->f_flags |= O_NONBLOCK;
5057 out:
5058         return retval;
5059 }
5060
5061 static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
5062 {
5063         sctp_peeloff_arg_t peeloff;
5064         struct file *newfile = NULL;
5065         int retval = 0;
5066
5067         if (len < sizeof(sctp_peeloff_arg_t))
5068                 return -EINVAL;
5069         len = sizeof(sctp_peeloff_arg_t);
5070         if (copy_from_user(&peeloff, optval, len))
5071                 return -EFAULT;
5072
5073         retval = sctp_getsockopt_peeloff_common(sk, &peeloff, &newfile, 0);
5074         if (retval < 0)
5075                 goto out;
5076
5077         /* Return the fd mapped to the new socket.  */
5078         if (put_user(len, optlen)) {
5079                 fput(newfile);
5080                 put_unused_fd(retval);
5081                 return -EFAULT;
5082         }
5083
5084         if (copy_to_user(optval, &peeloff, len)) {
5085                 fput(newfile);
5086                 put_unused_fd(retval);
5087                 return -EFAULT;
5088         }
5089         fd_install(retval, newfile);
5090 out:
5091         return retval;
5092 }
5093
5094 static int sctp_getsockopt_peeloff_flags(struct sock *sk, int len,
5095                                          char __user *optval, int __user *optlen)
5096 {
5097         sctp_peeloff_flags_arg_t peeloff;
5098         struct file *newfile = NULL;
5099         int retval = 0;
5100
5101         if (len < sizeof(sctp_peeloff_flags_arg_t))
5102                 return -EINVAL;
5103         len = sizeof(sctp_peeloff_flags_arg_t);
5104         if (copy_from_user(&peeloff, optval, len))
5105                 return -EFAULT;
5106
5107         retval = sctp_getsockopt_peeloff_common(sk, &peeloff.p_arg,
5108                                                 &newfile, peeloff.flags);
5109         if (retval < 0)
5110                 goto out;
5111
5112         /* Return the fd mapped to the new socket.  */
5113         if (put_user(len, optlen)) {
5114                 fput(newfile);
5115                 put_unused_fd(retval);
5116                 return -EFAULT;
5117         }
5118
5119         if (copy_to_user(optval, &peeloff, len)) {
5120                 fput(newfile);
5121                 put_unused_fd(retval);
5122                 return -EFAULT;
5123         }
5124         fd_install(retval, newfile);
5125 out:
5126         return retval;
5127 }
5128
5129 /* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
5130  *
5131  * Applications can enable or disable heartbeats for any peer address of
5132  * an association, modify an address's heartbeat interval, force a
5133  * heartbeat to be sent immediately, and adjust the address's maximum
5134  * number of retransmissions sent before an address is considered
5135  * unreachable.  The following structure is used to access and modify an
5136  * address's parameters:
5137  *
5138  *  struct sctp_paddrparams {
5139  *     sctp_assoc_t            spp_assoc_id;
5140  *     struct sockaddr_storage spp_address;
5141  *     uint32_t                spp_hbinterval;
5142  *     uint16_t                spp_pathmaxrxt;
5143  *     uint32_t                spp_pathmtu;
5144  *     uint32_t                spp_sackdelay;
5145  *     uint32_t                spp_flags;
5146  * };
5147  *
5148  *   spp_assoc_id    - (one-to-many style socket) This is filled in the
5149  *                     application, and identifies the association for
5150  *                     this query.
5151  *   spp_address     - This specifies which address is of interest.
5152  *   spp_hbinterval  - This contains the value of the heartbeat interval,
5153  *                     in milliseconds.  If a  value of zero
5154  *                     is present in this field then no changes are to
5155  *                     be made to this parameter.
5156  *   spp_pathmaxrxt  - This contains the maximum number of
5157  *                     retransmissions before this address shall be
5158  *                     considered unreachable. If a  value of zero
5159  *                     is present in this field then no changes are to
5160  *                     be made to this parameter.
5161  *   spp_pathmtu     - When Path MTU discovery is disabled the value
5162  *                     specified here will be the "fixed" path mtu.
5163  *                     Note that if the spp_address field is empty
5164  *                     then all associations on this address will
5165  *                     have this fixed path mtu set upon them.
5166  *
5167  *   spp_sackdelay   - When delayed sack is enabled, this value specifies
5168  *                     the number of milliseconds that sacks will be delayed
5169  *                     for. This value will apply to all addresses of an
5170  *                     association if the spp_address field is empty. Note
5171  *                     also, that if delayed sack is enabled and this
5172  *                     value is set to 0, no change is made to the last
5173  *                     recorded delayed sack timer value.
5174  *
5175  *   spp_flags       - These flags are used to control various features
5176  *                     on an association. The flag field may contain
5177  *                     zero or more of the following options.
5178  *
5179  *                     SPP_HB_ENABLE  - Enable heartbeats on the
5180  *                     specified address. Note that if the address
5181  *                     field is empty all addresses for the association
5182  *                     have heartbeats enabled upon them.
5183  *
5184  *                     SPP_HB_DISABLE - Disable heartbeats on the
5185  *                     speicifed address. Note that if the address
5186  *                     field is empty all addresses for the association
5187  *                     will have their heartbeats disabled. Note also
5188  *                     that SPP_HB_ENABLE and SPP_HB_DISABLE are
5189  *                     mutually exclusive, only one of these two should
5190  *                     be specified. Enabling both fields will have
5191  *                     undetermined results.
5192  *
5193  *                     SPP_HB_DEMAND - Request a user initiated heartbeat
5194  *                     to be made immediately.
5195  *
5196  *                     SPP_PMTUD_ENABLE - This field will enable PMTU
5197  *                     discovery upon the specified address. Note that
5198  *                     if the address feild is empty then all addresses
5199  *                     on the association are effected.
5200  *
5201  *                     SPP_PMTUD_DISABLE - This field will disable PMTU
5202  *                     discovery upon the specified address. Note that
5203  *                     if the address feild is empty then all addresses
5204  *                     on the association are effected. Not also that
5205  *                     SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
5206  *                     exclusive. Enabling both will have undetermined
5207  *                     results.
5208  *
5209  *                     SPP_SACKDELAY_ENABLE - Setting this flag turns
5210  *                     on delayed sack. The time specified in spp_sackdelay
5211  *                     is used to specify the sack delay for this address. Note
5212  *                     that if spp_address is empty then all addresses will
5213  *                     enable delayed sack and take on the sack delay
5214  *                     value specified in spp_sackdelay.
5215  *                     SPP_SACKDELAY_DISABLE - Setting this flag turns
5216  *                     off delayed sack. If the spp_address field is blank then
5217  *                     delayed sack is disabled for the entire association. Note
5218  *                     also that this field is mutually exclusive to
5219  *                     SPP_SACKDELAY_ENABLE, setting both will have undefined
5220  *                     results.
5221  */
5222 static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
5223                                             char __user *optval, int __user *optlen)
5224 {
5225         struct sctp_paddrparams  params;
5226         struct sctp_transport   *trans = NULL;
5227         struct sctp_association *asoc = NULL;
5228         struct sctp_sock        *sp = sctp_sk(sk);
5229
5230         if (len < sizeof(struct sctp_paddrparams))
5231                 return -EINVAL;
5232         len = sizeof(struct sctp_paddrparams);
5233         if (copy_from_user(&params, optval, len))
5234                 return -EFAULT;
5235
5236         /* If an address other than INADDR_ANY is specified, and
5237          * no transport is found, then the request is invalid.
5238          */
5239         if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
5240                 trans = sctp_addr_id2transport(sk, &params.spp_address,
5241                                                params.spp_assoc_id);
5242                 if (!trans) {
5243                         pr_debug("%s: failed no transport\n", __func__);
5244                         return -EINVAL;
5245                 }
5246         }
5247
5248         /* Get association, if assoc_id != 0 and the socket is a one
5249          * to many style socket, and an association was not found, then
5250          * the id was invalid.
5251          */
5252         asoc = sctp_id2assoc(sk, params.spp_assoc_id);
5253         if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP)) {
5254                 pr_debug("%s: failed no association\n", __func__);
5255                 return -EINVAL;
5256         }
5257
5258         if (trans) {
5259                 /* Fetch transport values. */
5260                 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
5261                 params.spp_pathmtu    = trans->pathmtu;
5262                 params.spp_pathmaxrxt = trans->pathmaxrxt;
5263                 params.spp_sackdelay  = jiffies_to_msecs(trans->sackdelay);
5264
5265                 /*draft-11 doesn't say what to return in spp_flags*/
5266                 params.spp_flags      = trans->param_flags;
5267         } else if (asoc) {
5268                 /* Fetch association values. */
5269                 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
5270                 params.spp_pathmtu    = asoc->pathmtu;
5271                 params.spp_pathmaxrxt = asoc->pathmaxrxt;
5272                 params.spp_sackdelay  = jiffies_to_msecs(asoc->sackdelay);
5273
5274                 /*draft-11 doesn't say what to return in spp_flags*/
5275                 params.spp_flags      = asoc->param_flags;
5276         } else {
5277                 /* Fetch socket values. */
5278                 params.spp_hbinterval = sp->hbinterval;
5279                 params.spp_pathmtu    = sp->pathmtu;
5280                 params.spp_sackdelay  = sp->sackdelay;
5281                 params.spp_pathmaxrxt = sp->pathmaxrxt;
5282
5283                 /*draft-11 doesn't say what to return in spp_flags*/
5284                 params.spp_flags      = sp->param_flags;
5285         }
5286
5287         if (copy_to_user(optval, &params, len))
5288                 return -EFAULT;
5289
5290         if (put_user(len, optlen))
5291                 return -EFAULT;
5292
5293         return 0;
5294 }
5295
5296 /*
5297  * 7.1.23.  Get or set delayed ack timer (SCTP_DELAYED_SACK)
5298  *
5299  * This option will effect the way delayed acks are performed.  This
5300  * option allows you to get or set the delayed ack time, in
5301  * milliseconds.  It also allows changing the delayed ack frequency.
5302  * Changing the frequency to 1 disables the delayed sack algorithm.  If
5303  * the assoc_id is 0, then this sets or gets the endpoints default
5304  * values.  If the assoc_id field is non-zero, then the set or get
5305  * effects the specified association for the one to many model (the
5306  * assoc_id field is ignored by the one to one model).  Note that if
5307  * sack_delay or sack_freq are 0 when setting this option, then the
5308  * current values will remain unchanged.
5309  *
5310  * struct sctp_sack_info {
5311  *     sctp_assoc_t            sack_assoc_id;
5312  *     uint32_t                sack_delay;
5313  *     uint32_t                sack_freq;
5314  * };
5315  *
5316  * sack_assoc_id -  This parameter, indicates which association the user
5317  *    is performing an action upon.  Note that if this field's value is
5318  *    zero then the endpoints default value is changed (effecting future
5319  *    associations only).
5320  *
5321  * sack_delay -  This parameter contains the number of milliseconds that
5322  *    the user is requesting the delayed ACK timer be set to.  Note that
5323  *    this value is defined in the standard to be between 200 and 500
5324  *    milliseconds.
5325  *
5326  * sack_freq -  This parameter contains the number of packets that must
5327  *    be received before a sack is sent without waiting for the delay
5328  *    timer to expire.  The default value for this is 2, setting this
5329  *    value to 1 will disable the delayed sack algorithm.
5330  */
5331 static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
5332                                             char __user *optval,
5333                                             int __user *optlen)
5334 {
5335         struct sctp_sack_info    params;
5336         struct sctp_association *asoc = NULL;
5337         struct sctp_sock        *sp = sctp_sk(sk);
5338
5339         if (len >= sizeof(struct sctp_sack_info)) {
5340                 len = sizeof(struct sctp_sack_info);
5341
5342                 if (copy_from_user(&params, optval, len))
5343                         return -EFAULT;
5344         } else if (len == sizeof(struct sctp_assoc_value)) {
5345                 pr_warn_ratelimited(DEPRECATED
5346                                     "%s (pid %d) "
5347                                     "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
5348                                     "Use struct sctp_sack_info instead\n",
5349                                     current->comm, task_pid_nr(current));
5350                 if (copy_from_user(&params, optval, len))
5351                         return -EFAULT;
5352         } else
5353                 return -EINVAL;
5354
5355         /* Get association, if sack_assoc_id != 0 and the socket is a one
5356          * to many style socket, and an association was not found, then
5357          * the id was invalid.
5358          */
5359         asoc = sctp_id2assoc(sk, params.sack_assoc_id);
5360         if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
5361                 return -EINVAL;
5362
5363         if (asoc) {
5364                 /* Fetch association values. */
5365                 if (asoc->param_flags & SPP_SACKDELAY_ENABLE) {
5366                         params.sack_delay = jiffies_to_msecs(
5367                                 asoc->sackdelay);
5368                         params.sack_freq = asoc->sackfreq;
5369
5370                 } else {
5371                         params.sack_delay = 0;
5372                         params.sack_freq = 1;
5373                 }
5374         } else {
5375                 /* Fetch socket values. */
5376                 if (sp->param_flags & SPP_SACKDELAY_ENABLE) {
5377                         params.sack_delay  = sp->sackdelay;
5378                         params.sack_freq = sp->sackfreq;
5379                 } else {
5380                         params.sack_delay  = 0;
5381                         params.sack_freq = 1;
5382                 }
5383         }
5384
5385         if (copy_to_user(optval, &params, len))
5386                 return -EFAULT;
5387
5388         if (put_user(len, optlen))
5389                 return -EFAULT;
5390
5391         return 0;
5392 }
5393
5394 /* 7.1.3 Initialization Parameters (SCTP_INITMSG)
5395  *
5396  * Applications can specify protocol parameters for the default association
5397  * initialization.  The option name argument to setsockopt() and getsockopt()
5398  * is SCTP_INITMSG.
5399  *
5400  * Setting initialization parameters is effective only on an unconnected
5401  * socket (for UDP-style sockets only future associations are effected
5402  * by the change).  With TCP-style sockets, this option is inherited by
5403  * sockets derived from a listener socket.
5404  */
5405 static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
5406 {
5407         if (len < sizeof(struct sctp_initmsg))
5408                 return -EINVAL;
5409         len = sizeof(struct sctp_initmsg);
5410         if (put_user(len, optlen))
5411                 return -EFAULT;
5412         if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
5413                 return -EFAULT;
5414         return 0;
5415 }
5416
5417
5418 static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
5419                                       char __user *optval, int __user *optlen)
5420 {
5421         struct sctp_association *asoc;
5422         int cnt = 0;
5423         struct sctp_getaddrs getaddrs;
5424         struct sctp_transport *from;
5425         void __user *to;
5426         union sctp_addr temp;
5427         struct sctp_sock *sp = sctp_sk(sk);
5428         int addrlen;
5429         size_t space_left;
5430         int bytes_copied;
5431
5432         if (len < sizeof(struct sctp_getaddrs))
5433                 return -EINVAL;
5434
5435         if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
5436                 return -EFAULT;
5437
5438         /* For UDP-style sockets, id specifies the association to query.  */
5439         asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
5440         if (!asoc)
5441                 return -EINVAL;
5442
5443         to = optval + offsetof(struct sctp_getaddrs, addrs);
5444         space_left = len - offsetof(struct sctp_getaddrs, addrs);
5445
5446         list_for_each_entry(from, &asoc->peer.transport_addr_list,
5447                                 transports) {
5448                 memcpy(&temp, &from->ipaddr, sizeof(temp));
5449                 addrlen = sctp_get_pf_specific(sk->sk_family)
5450                               ->addr_to_user(sp, &temp);
5451                 if (space_left < addrlen)
5452                         return -ENOMEM;
5453                 if (copy_to_user(to, &temp, addrlen))
5454                         return -EFAULT;
5455                 to += addrlen;
5456                 cnt++;
5457                 space_left -= addrlen;
5458         }
5459
5460         if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
5461                 return -EFAULT;
5462         bytes_copied = ((char __user *)to) - optval;
5463         if (put_user(bytes_copied, optlen))
5464                 return -EFAULT;
5465
5466         return 0;
5467 }
5468
5469 static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to,
5470                             size_t space_left, int *bytes_copied)
5471 {
5472         struct sctp_sockaddr_entry *addr;
5473         union sctp_addr temp;
5474         int cnt = 0;
5475         int addrlen;
5476         struct net *net = sock_net(sk);
5477
5478         rcu_read_lock();
5479         list_for_each_entry_rcu(addr, &net->sctp.local_addr_list, list) {
5480                 if (!addr->valid)
5481                         continue;
5482
5483                 if ((PF_INET == sk->sk_family) &&
5484                     (AF_INET6 == addr->a.sa.sa_family))
5485                         continue;
5486                 if ((PF_INET6 == sk->sk_family) &&
5487                     inet_v6_ipv6only(sk) &&
5488                     (AF_INET == addr->a.sa.sa_family))
5489                         continue;
5490                 memcpy(&temp, &addr->a, sizeof(temp));
5491                 if (!temp.v4.sin_port)
5492                         temp.v4.sin_port = htons(port);
5493
5494                 addrlen = sctp_get_pf_specific(sk->sk_family)
5495                               ->addr_to_user(sctp_sk(sk), &temp);
5496
5497                 if (space_left < addrlen) {
5498                         cnt =  -ENOMEM;
5499                         break;
5500                 }
5501                 memcpy(to, &temp, addrlen);
5502
5503                 to += addrlen;
5504                 cnt++;
5505                 space_left -= addrlen;
5506                 *bytes_copied += addrlen;
5507         }
5508         rcu_read_unlock();
5509
5510         return cnt;
5511 }
5512
5513
5514 static int sctp_getsockopt_local_addrs(struct sock *sk, int len,
5515                                        char __user *optval, int __user *optlen)
5516 {
5517         struct sctp_bind_addr *bp;
5518         struct sctp_association *asoc;
5519         int cnt = 0;
5520         struct sctp_getaddrs getaddrs;
5521         struct sctp_sockaddr_entry *addr;
5522         void __user *to;
5523         union sctp_addr temp;
5524         struct sctp_sock *sp = sctp_sk(sk);
5525         int addrlen;
5526         int err = 0;
5527         size_t space_left;
5528         int bytes_copied = 0;
5529         void *addrs;
5530         void *buf;
5531
5532         if (len < sizeof(struct sctp_getaddrs))
5533                 return -EINVAL;
5534
5535         if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
5536                 return -EFAULT;
5537
5538         /*
5539          *  For UDP-style sockets, id specifies the association to query.
5540          *  If the id field is set to the value '0' then the locally bound
5541          *  addresses are returned without regard to any particular
5542          *  association.
5543          */
5544         if (0 == getaddrs.assoc_id) {
5545                 bp = &sctp_sk(sk)->ep->base.bind_addr;
5546         } else {
5547                 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
5548                 if (!asoc)
5549                         return -EINVAL;
5550                 bp = &asoc->base.bind_addr;
5551         }
5552
5553         to = optval + offsetof(struct sctp_getaddrs, addrs);
5554         space_left = len - offsetof(struct sctp_getaddrs, addrs);
5555
5556         addrs = kmalloc(space_left, GFP_USER | __GFP_NOWARN);
5557         if (!addrs)
5558                 return -ENOMEM;
5559
5560         /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
5561          * addresses from the global local address list.
5562          */
5563         if (sctp_list_single_entry(&bp->address_list)) {
5564                 addr = list_entry(bp->address_list.next,
5565                                   struct sctp_sockaddr_entry, list);
5566                 if (sctp_is_any(sk, &addr->a)) {
5567                         cnt = sctp_copy_laddrs(sk, bp->port, addrs,
5568                                                 space_left, &bytes_copied);
5569                         if (cnt < 0) {
5570                                 err = cnt;
5571                                 goto out;
5572                         }
5573                         goto copy_getaddrs;
5574                 }
5575         }
5576
5577         buf = addrs;
5578         /* Protection on the bound address list is not needed since
5579          * in the socket option context we hold a socket lock and
5580          * thus the bound address list can't change.
5581          */
5582         list_for_each_entry(addr, &bp->address_list, list) {
5583                 memcpy(&temp, &addr->a, sizeof(temp));
5584                 addrlen = sctp_get_pf_specific(sk->sk_family)
5585                               ->addr_to_user(sp, &temp);
5586                 if (space_left < addrlen) {
5587                         err =  -ENOMEM; /*fixme: right error?*/
5588                         goto out;
5589                 }
5590                 memcpy(buf, &temp, addrlen);
5591                 buf += addrlen;
5592                 bytes_copied += addrlen;
5593                 cnt++;
5594                 space_left -= addrlen;
5595         }
5596
5597 copy_getaddrs:
5598         if (copy_to_user(to, addrs, bytes_copied)) {
5599                 err = -EFAULT;
5600                 goto out;
5601         }
5602         if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num)) {
5603                 err = -EFAULT;
5604                 goto out;
5605         }
5606         /* XXX: We should have accounted for sizeof(struct sctp_getaddrs) too,
5607          * but we can't change it anymore.
5608          */
5609         if (put_user(bytes_copied, optlen))
5610                 err = -EFAULT;
5611 out:
5612         kfree(addrs);
5613         return err;
5614 }
5615
5616 /* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
5617  *
5618  * Requests that the local SCTP stack use the enclosed peer address as
5619  * the association primary.  The enclosed address must be one of the
5620  * association peer's addresses.
5621  */
5622 static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
5623                                         char __user *optval, int __user *optlen)
5624 {
5625         struct sctp_prim prim;
5626         struct sctp_association *asoc;
5627         struct sctp_sock *sp = sctp_sk(sk);
5628
5629         if (len < sizeof(struct sctp_prim))
5630                 return -EINVAL;
5631
5632         len = sizeof(struct sctp_prim);
5633
5634         if (copy_from_user(&prim, optval, len))
5635                 return -EFAULT;
5636
5637         asoc = sctp_id2assoc(sk, prim.ssp_assoc_id);
5638         if (!asoc)
5639                 return -EINVAL;
5640
5641         if (!asoc->peer.primary_path)
5642                 return -ENOTCONN;
5643
5644         memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr,
5645                 asoc->peer.primary_path->af_specific->sockaddr_len);
5646
5647         sctp_get_pf_specific(sk->sk_family)->addr_to_user(sp,
5648                         (union sctp_addr *)&prim.ssp_addr);
5649
5650         if (put_user(len, optlen))
5651                 return -EFAULT;
5652         if (copy_to_user(optval, &prim, len))
5653                 return -EFAULT;
5654
5655         return 0;
5656 }
5657
5658 /*
5659  * 7.1.11  Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER)
5660  *
5661  * Requests that the local endpoint set the specified Adaptation Layer
5662  * Indication parameter for all future INIT and INIT-ACK exchanges.
5663  */
5664 static int sctp_getsockopt_adaptation_layer(struct sock *sk, int len,
5665                                   char __user *optval, int __user *optlen)
5666 {
5667         struct sctp_setadaptation adaptation;
5668
5669         if (len < sizeof(struct sctp_setadaptation))
5670                 return -EINVAL;
5671
5672         len = sizeof(struct sctp_setadaptation);
5673
5674         adaptation.ssb_adaptation_ind = sctp_sk(sk)->adaptation_ind;
5675
5676         if (put_user(len, optlen))
5677                 return -EFAULT;
5678         if (copy_to_user(optval, &adaptation, len))
5679                 return -EFAULT;
5680
5681         return 0;
5682 }
5683
5684 /*
5685  *
5686  * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
5687  *
5688  *   Applications that wish to use the sendto() system call may wish to
5689  *   specify a default set of parameters that would normally be supplied
5690  *   through the inclusion of ancillary data.  This socket option allows
5691  *   such an application to set the default sctp_sndrcvinfo structure.
5692
5693
5694  *   The application that wishes to use this socket option simply passes
5695  *   in to this call the sctp_sndrcvinfo structure defined in Section
5696  *   5.2.2) The input parameters accepted by this call include
5697  *   sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
5698  *   sinfo_timetolive.  The user must provide the sinfo_assoc_id field in
5699  *   to this call if the caller is using the UDP model.
5700  *
5701  *   For getsockopt, it get the default sctp_sndrcvinfo structure.
5702  */
5703 static int sctp_getsockopt_default_send_param(struct sock *sk,
5704                                         int len, char __user *optval,
5705                                         int __user *optlen)
5706 {
5707         struct sctp_sock *sp = sctp_sk(sk);
5708         struct sctp_association *asoc;
5709         struct sctp_sndrcvinfo info;
5710
5711         if (len < sizeof(info))
5712                 return -EINVAL;
5713
5714         len = sizeof(info);
5715
5716         if (copy_from_user(&info, optval, len))
5717                 return -EFAULT;
5718
5719         asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
5720         if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
5721                 return -EINVAL;
5722         if (asoc) {
5723                 info.sinfo_stream = asoc->default_stream;
5724                 info.sinfo_flags = asoc->default_flags;
5725                 info.sinfo_ppid = asoc->default_ppid;
5726                 info.sinfo_context = asoc->default_context;
5727                 info.sinfo_timetolive = asoc->default_timetolive;
5728         } else {
5729                 info.sinfo_stream = sp->default_stream;
5730                 info.sinfo_flags = sp->default_flags;
5731                 info.sinfo_ppid = sp->default_ppid;
5732                 info.sinfo_context = sp->default_context;
5733                 info.sinfo_timetolive = sp->default_timetolive;
5734         }
5735
5736         if (put_user(len, optlen))
5737                 return -EFAULT;
5738         if (copy_to_user(optval, &info, len))
5739                 return -EFAULT;
5740
5741         return 0;
5742 }
5743
5744 /* RFC6458, Section 8.1.31. Set/get Default Send Parameters
5745  * (SCTP_DEFAULT_SNDINFO)
5746  */
5747 static int sctp_getsockopt_default_sndinfo(struct sock *sk, int len,
5748                                            char __user *optval,
5749                                            int __user *optlen)
5750 {
5751         struct sctp_sock *sp = sctp_sk(sk);
5752         struct sctp_association *asoc;
5753         struct sctp_sndinfo info;
5754
5755         if (len < sizeof(info))
5756                 return -EINVAL;
5757
5758         len = sizeof(info);
5759
5760         if (copy_from_user(&info, optval, len))
5761                 return -EFAULT;
5762
5763         asoc = sctp_id2assoc(sk, info.snd_assoc_id);
5764         if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
5765                 return -EINVAL;
5766         if (asoc) {
5767                 info.snd_sid = asoc->default_stream;
5768                 info.snd_flags = asoc->default_flags;
5769                 info.snd_ppid = asoc->default_ppid;
5770                 info.snd_context = asoc->default_context;
5771         } else {
5772                 info.snd_sid = sp->default_stream;
5773                 info.snd_flags = sp->default_flags;
5774                 info.snd_ppid = sp->default_ppid;
5775                 info.snd_context = sp->default_context;
5776         }
5777
5778         if (put_user(len, optlen))
5779                 return -EFAULT;
5780         if (copy_to_user(optval, &info, len))
5781                 return -EFAULT;
5782
5783         return 0;
5784 }
5785
5786 /*
5787  *
5788  * 7.1.5 SCTP_NODELAY
5789  *
5790  * Turn on/off any Nagle-like algorithm.  This means that packets are
5791  * generally sent as soon as possible and no unnecessary delays are
5792  * introduced, at the cost of more packets in the network.  Expects an
5793  * integer boolean flag.
5794  */
5795
5796 static int sctp_getsockopt_nodelay(struct sock *sk, int len,
5797                                    char __user *optval, int __user *optlen)
5798 {
5799         int val;
5800
5801         if (len < sizeof(int))
5802                 return -EINVAL;
5803
5804         len = sizeof(int);
5805         val = (sctp_sk(sk)->nodelay == 1);
5806         if (put_user(len, optlen))
5807                 return -EFAULT;
5808         if (copy_to_user(optval, &val, len))
5809                 return -EFAULT;
5810         return 0;
5811 }
5812
5813 /*
5814  *
5815  * 7.1.1 SCTP_RTOINFO
5816  *
5817  * The protocol parameters used to initialize and bound retransmission
5818  * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
5819  * and modify these parameters.
5820  * All parameters are time values, in milliseconds.  A value of 0, when
5821  * modifying the parameters, indicates that the current value should not
5822  * be changed.
5823  *
5824  */
5825 static int sctp_getsockopt_rtoinfo(struct sock *sk, int len,
5826                                 char __user *optval,
5827                                 int __user *optlen) {
5828         struct sctp_rtoinfo rtoinfo;
5829         struct sctp_association *asoc;
5830
5831         if (len < sizeof (struct sctp_rtoinfo))
5832                 return -EINVAL;
5833
5834         len = sizeof(struct sctp_rtoinfo);
5835
5836         if (copy_from_user(&rtoinfo, optval, len))
5837                 return -EFAULT;
5838
5839         asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
5840
5841         if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
5842                 return -EINVAL;
5843
5844         /* Values corresponding to the specific association. */
5845         if (asoc) {
5846                 rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial);
5847                 rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max);
5848                 rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min);
5849         } else {
5850                 /* Values corresponding to the endpoint. */
5851                 struct sctp_sock *sp = sctp_sk(sk);
5852
5853                 rtoinfo.srto_initial = sp->rtoinfo.srto_initial;
5854                 rtoinfo.srto_max = sp->rtoinfo.srto_max;
5855                 rtoinfo.srto_min = sp->rtoinfo.srto_min;
5856         }
5857
5858         if (put_user(len, optlen))
5859                 return -EFAULT;
5860
5861         if (copy_to_user(optval, &rtoinfo, len))
5862                 return -EFAULT;
5863
5864         return 0;
5865 }
5866
5867 /*
5868  *
5869  * 7.1.2 SCTP_ASSOCINFO
5870  *
5871  * This option is used to tune the maximum retransmission attempts
5872  * of the association.
5873  * Returns an error if the new association retransmission value is
5874  * greater than the sum of the retransmission value  of the peer.
5875  * See [SCTP] for more information.
5876  *
5877  */
5878 static int sctp_getsockopt_associnfo(struct sock *sk, int len,
5879                                      char __user *optval,
5880                                      int __user *optlen)
5881 {
5882
5883         struct sctp_assocparams assocparams;
5884         struct sctp_association *asoc;
5885         struct list_head *pos;
5886         int cnt = 0;
5887
5888         if (len < sizeof (struct sctp_assocparams))
5889                 return -EINVAL;
5890
5891         len = sizeof(struct sctp_assocparams);
5892
5893         if (copy_from_user(&assocparams, optval, len))
5894                 return -EFAULT;
5895
5896         asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
5897
5898         if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
5899                 return -EINVAL;
5900
5901         /* Values correspoinding to the specific association */
5902         if (asoc) {
5903                 assocparams.sasoc_asocmaxrxt = asoc->max_retrans;
5904                 assocparams.sasoc_peer_rwnd = asoc->peer.rwnd;
5905                 assocparams.sasoc_local_rwnd = asoc->a_rwnd;
5906                 assocparams.sasoc_cookie_life = ktime_to_ms(asoc->cookie_life);
5907
5908                 list_for_each(pos, &asoc->peer.transport_addr_list) {
5909                         cnt++;
5910                 }
5911
5912                 assocparams.sasoc_number_peer_destinations = cnt;
5913         } else {
5914                 /* Values corresponding to the endpoint */
5915                 struct sctp_sock *sp = sctp_sk(sk);
5916
5917                 assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt;
5918                 assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd;
5919                 assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd;
5920                 assocparams.sasoc_cookie_life =
5921                                         sp->assocparams.sasoc_cookie_life;
5922                 assocparams.sasoc_number_peer_destinations =
5923                                         sp->assocparams.
5924                                         sasoc_number_peer_destinations;
5925         }
5926
5927         if (put_user(len, optlen))
5928                 return -EFAULT;
5929
5930         if (copy_to_user(optval, &assocparams, len))
5931                 return -EFAULT;
5932
5933         return 0;
5934 }
5935
5936 /*
5937  * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
5938  *
5939  * This socket option is a boolean flag which turns on or off mapped V4
5940  * addresses.  If this option is turned on and the socket is type
5941  * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
5942  * If this option is turned off, then no mapping will be done of V4
5943  * addresses and a user will receive both PF_INET6 and PF_INET type
5944  * addresses on the socket.
5945  */
5946 static int sctp_getsockopt_mappedv4(struct sock *sk, int len,
5947                                     char __user *optval, int __user *optlen)
5948 {
5949         int val;
5950         struct sctp_sock *sp = sctp_sk(sk);
5951
5952         if (len < sizeof(int))
5953                 return -EINVAL;
5954
5955         len = sizeof(int);
5956         val = sp->v4mapped;
5957         if (put_user(len, optlen))
5958                 return -EFAULT;
5959         if (copy_to_user(optval, &val, len))
5960                 return -EFAULT;
5961
5962         return 0;
5963 }
5964
5965 /*
5966  * 7.1.29.  Set or Get the default context (SCTP_CONTEXT)
5967  * (chapter and verse is quoted at sctp_setsockopt_context())
5968  */
5969 static int sctp_getsockopt_context(struct sock *sk, int len,
5970                                    char __user *optval, int __user *optlen)
5971 {
5972         struct sctp_assoc_value params;
5973         struct sctp_sock *sp;
5974         struct sctp_association *asoc;
5975
5976         if (len < sizeof(struct sctp_assoc_value))
5977                 return -EINVAL;
5978
5979         len = sizeof(struct sctp_assoc_value);
5980
5981         if (copy_from_user(&params, optval, len))
5982                 return -EFAULT;
5983
5984         sp = sctp_sk(sk);
5985
5986         if (params.assoc_id != 0) {
5987                 asoc = sctp_id2assoc(sk, params.assoc_id);
5988                 if (!asoc)
5989                         return -EINVAL;
5990                 params.assoc_value = asoc->default_rcv_context;
5991         } else {
5992                 params.assoc_value = sp->default_rcv_context;
5993         }
5994
5995         if (put_user(len, optlen))
5996                 return -EFAULT;
5997         if (copy_to_user(optval, &params, len))
5998                 return -EFAULT;
5999
6000         return 0;
6001 }
6002
6003 /*
6004  * 8.1.16.  Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
6005  * This option will get or set the maximum size to put in any outgoing
6006  * SCTP DATA chunk.  If a message is larger than this size it will be
6007  * fragmented by SCTP into the specified size.  Note that the underlying
6008  * SCTP implementation may fragment into smaller sized chunks when the
6009  * PMTU of the underlying association is smaller than the value set by
6010  * the user.  The default value for this option is '0' which indicates
6011  * the user is NOT limiting fragmentation and only the PMTU will effect
6012  * SCTP's choice of DATA chunk size.  Note also that values set larger
6013  * than the maximum size of an IP datagram will effectively let SCTP
6014  * control fragmentation (i.e. the same as setting this option to 0).
6015  *
6016  * The following structure is used to access and modify this parameter:
6017  *
6018  * struct sctp_assoc_value {
6019  *   sctp_assoc_t assoc_id;
6020  *   uint32_t assoc_value;
6021  * };
6022  *
6023  * assoc_id:  This parameter is ignored for one-to-one style sockets.
6024  *    For one-to-many style sockets this parameter indicates which
6025  *    association the user is performing an action upon.  Note that if
6026  *    this field's value is zero then the endpoints default value is
6027  *    changed (effecting future associations only).
6028  * assoc_value:  This parameter specifies the maximum size in bytes.
6029  */
6030 static int sctp_getsockopt_maxseg(struct sock *sk, int len,
6031                                   char __user *optval, int __user *optlen)
6032 {
6033         struct sctp_assoc_value params;
6034         struct sctp_association *asoc;
6035
6036         if (len == sizeof(int)) {
6037                 pr_warn_ratelimited(DEPRECATED
6038                                     "%s (pid %d) "
6039                                     "Use of int in maxseg socket option.\n"
6040                                     "Use struct sctp_assoc_value instead\n",
6041                                     current->comm, task_pid_nr(current));
6042                 params.assoc_id = 0;
6043         } else if (len >= sizeof(struct sctp_assoc_value)) {
6044                 len = sizeof(struct sctp_assoc_value);
6045                 if (copy_from_user(&params, optval, len))
6046                         return -EFAULT;
6047         } else
6048                 return -EINVAL;
6049
6050         asoc = sctp_id2assoc(sk, params.assoc_id);
6051         if (!asoc && params.assoc_id && sctp_style(sk, UDP))
6052                 return -EINVAL;
6053
6054         if (asoc)
6055                 params.assoc_value = asoc->frag_point;
6056         else
6057                 params.assoc_value = sctp_sk(sk)->user_frag;
6058
6059         if (put_user(len, optlen))
6060                 return -EFAULT;
6061         if (len == sizeof(int)) {
6062                 if (copy_to_user(optval, &params.assoc_value, len))
6063                         return -EFAULT;
6064         } else {
6065                 if (copy_to_user(optval, &params, len))
6066                         return -EFAULT;
6067         }
6068
6069         return 0;
6070 }
6071
6072 /*
6073  * 7.1.24.  Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
6074  * (chapter and verse is quoted at sctp_setsockopt_fragment_interleave())
6075  */
6076 static int sctp_getsockopt_fragment_interleave(struct sock *sk, int len,
6077                                                char __user *optval, int __user *optlen)
6078 {
6079         int val;
6080
6081         if (len < sizeof(int))
6082                 return -EINVAL;
6083
6084         len = sizeof(int);
6085
6086         val = sctp_sk(sk)->frag_interleave;
6087         if (put_user(len, optlen))
6088                 return -EFAULT;
6089         if (copy_to_user(optval, &val, len))
6090                 return -EFAULT;
6091
6092         return 0;
6093 }
6094
6095 /*
6096  * 7.1.25.  Set or Get the sctp partial delivery point
6097  * (chapter and verse is quoted at sctp_setsockopt_partial_delivery_point())
6098  */
6099 static int sctp_getsockopt_partial_delivery_point(struct sock *sk, int len,
6100                                                   char __user *optval,
6101                                                   int __user *optlen)
6102 {
6103         u32 val;
6104
6105         if (len < sizeof(u32))
6106                 return -EINVAL;
6107
6108         len = sizeof(u32);
6109
6110         val = sctp_sk(sk)->pd_point;
6111         if (put_user(len, optlen))
6112                 return -EFAULT;
6113         if (copy_to_user(optval, &val, len))
6114                 return -EFAULT;
6115
6116         return 0;
6117 }
6118
6119 /*
6120  * 7.1.28.  Set or Get the maximum burst (SCTP_MAX_BURST)
6121  * (chapter and verse is quoted at sctp_setsockopt_maxburst())
6122  */
6123 static int sctp_getsockopt_maxburst(struct sock *sk, int len,
6124                                     char __user *optval,
6125                                     int __user *optlen)
6126 {
6127         struct sctp_assoc_value params;
6128         struct sctp_sock *sp;
6129         struct sctp_association *asoc;
6130
6131         if (len == sizeof(int)) {
6132                 pr_warn_ratelimited(DEPRECATED
6133                                     "%s (pid %d) "
6134                                     "Use of int in max_burst socket option.\n"
6135                                     "Use struct sctp_assoc_value instead\n",
6136                                     current->comm, task_pid_nr(current));
6137                 params.assoc_id = 0;
6138         } else if (len >= sizeof(struct sctp_assoc_value)) {
6139                 len = sizeof(struct sctp_assoc_value);
6140                 if (copy_from_user(&params, optval, len))
6141                         return -EFAULT;
6142         } else
6143                 return -EINVAL;
6144
6145         sp = sctp_sk(sk);
6146
6147         if (params.assoc_id != 0) {
6148                 asoc = sctp_id2assoc(sk, params.assoc_id);
6149                 if (!asoc)
6150                         return -EINVAL;
6151                 params.assoc_value = asoc->max_burst;
6152         } else
6153                 params.assoc_value = sp->max_burst;
6154
6155         if (len == sizeof(int)) {
6156                 if (copy_to_user(optval, &params.assoc_value, len))
6157                         return -EFAULT;
6158         } else {
6159                 if (copy_to_user(optval, &params, len))
6160                         return -EFAULT;
6161         }
6162
6163         return 0;
6164
6165 }
6166
6167 static int sctp_getsockopt_hmac_ident(struct sock *sk, int len,
6168                                     char __user *optval, int __user *optlen)
6169 {
6170         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
6171         struct sctp_hmacalgo  __user *p = (void __user *)optval;
6172         struct sctp_hmac_algo_param *hmacs;
6173         __u16 data_len = 0;
6174         u32 num_idents;
6175         int i;
6176
6177         if (!ep->auth_enable)
6178                 return -EACCES;
6179
6180         hmacs = ep->auth_hmacs_list;
6181         data_len = ntohs(hmacs->param_hdr.length) -
6182                    sizeof(struct sctp_paramhdr);
6183
6184         if (len < sizeof(struct sctp_hmacalgo) + data_len)
6185                 return -EINVAL;
6186
6187         len = sizeof(struct sctp_hmacalgo) + data_len;
6188         num_idents = data_len / sizeof(u16);
6189
6190         if (put_user(len, optlen))
6191                 return -EFAULT;
6192         if (put_user(num_idents, &p->shmac_num_idents))
6193                 return -EFAULT;
6194         for (i = 0; i < num_idents; i++) {
6195                 __u16 hmacid = ntohs(hmacs->hmac_ids[i]);
6196
6197                 if (copy_to_user(&p->shmac_idents[i], &hmacid, sizeof(__u16)))
6198                         return -EFAULT;
6199         }
6200         return 0;
6201 }
6202
6203 static int sctp_getsockopt_active_key(struct sock *sk, int len,
6204                                     char __user *optval, int __user *optlen)
6205 {
6206         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
6207         struct sctp_authkeyid val;
6208         struct sctp_association *asoc;
6209
6210         if (!ep->auth_enable)
6211                 return -EACCES;
6212
6213         if (len < sizeof(struct sctp_authkeyid))
6214                 return -EINVAL;
6215
6216         len = sizeof(struct sctp_authkeyid);
6217         if (copy_from_user(&val, optval, len))
6218                 return -EFAULT;
6219
6220         asoc = sctp_id2assoc(sk, val.scact_assoc_id);
6221         if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
6222                 return -EINVAL;
6223
6224         if (asoc)
6225                 val.scact_keynumber = asoc->active_key_id;
6226         else
6227                 val.scact_keynumber = ep->active_key_id;
6228
6229         if (put_user(len, optlen))
6230                 return -EFAULT;
6231         if (copy_to_user(optval, &val, len))
6232                 return -EFAULT;
6233
6234         return 0;
6235 }
6236
6237 static int sctp_getsockopt_peer_auth_chunks(struct sock *sk, int len,
6238                                     char __user *optval, int __user *optlen)
6239 {
6240         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
6241         struct sctp_authchunks __user *p = (void __user *)optval;
6242         struct sctp_authchunks val;
6243         struct sctp_association *asoc;
6244         struct sctp_chunks_param *ch;
6245         u32    num_chunks = 0;
6246         char __user *to;
6247
6248         if (!ep->auth_enable)
6249                 return -EACCES;
6250
6251         if (len < sizeof(struct sctp_authchunks))
6252                 return -EINVAL;
6253
6254         if (copy_from_user(&val, optval, sizeof(val)))
6255                 return -EFAULT;
6256
6257         to = p->gauth_chunks;
6258         asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6259         if (!asoc)
6260                 return -EINVAL;
6261
6262         ch = asoc->peer.peer_chunks;
6263         if (!ch)
6264                 goto num;
6265
6266         /* See if the user provided enough room for all the data */
6267         num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
6268         if (len < num_chunks)
6269                 return -EINVAL;
6270
6271         if (copy_to_user(to, ch->chunks, num_chunks))
6272                 return -EFAULT;
6273 num:
6274         len = sizeof(struct sctp_authchunks) + num_chunks;
6275         if (put_user(len, optlen))
6276                 return -EFAULT;
6277         if (put_user(num_chunks, &p->gauth_number_of_chunks))
6278                 return -EFAULT;
6279         return 0;
6280 }
6281
6282 static int sctp_getsockopt_local_auth_chunks(struct sock *sk, int len,
6283                                     char __user *optval, int __user *optlen)
6284 {
6285         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
6286         struct sctp_authchunks __user *p = (void __user *)optval;
6287         struct sctp_authchunks val;
6288         struct sctp_association *asoc;
6289         struct sctp_chunks_param *ch;
6290         u32    num_chunks = 0;
6291         char __user *to;
6292
6293         if (!ep->auth_enable)
6294                 return -EACCES;
6295
6296         if (len < sizeof(struct sctp_authchunks))
6297                 return -EINVAL;
6298
6299         if (copy_from_user(&val, optval, sizeof(val)))
6300                 return -EFAULT;
6301
6302         to = p->gauth_chunks;
6303         asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6304         if (!asoc && val.gauth_assoc_id && sctp_style(sk, UDP))
6305                 return -EINVAL;
6306
6307         if (asoc)
6308                 ch = (struct sctp_chunks_param *)asoc->c.auth_chunks;
6309         else
6310                 ch = ep->auth_chunk_list;
6311
6312         if (!ch)
6313                 goto num;
6314
6315         num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
6316         if (len < sizeof(struct sctp_authchunks) + num_chunks)
6317                 return -EINVAL;
6318
6319         if (copy_to_user(to, ch->chunks, num_chunks))
6320                 return -EFAULT;
6321 num:
6322         len = sizeof(struct sctp_authchunks) + num_chunks;
6323         if (put_user(len, optlen))
6324                 return -EFAULT;
6325         if (put_user(num_chunks, &p->gauth_number_of_chunks))
6326                 return -EFAULT;
6327
6328         return 0;
6329 }
6330
6331 /*
6332  * 8.2.5.  Get the Current Number of Associations (SCTP_GET_ASSOC_NUMBER)
6333  * This option gets the current number of associations that are attached
6334  * to a one-to-many style socket.  The option value is an uint32_t.
6335  */
6336 static int sctp_getsockopt_assoc_number(struct sock *sk, int len,
6337                                     char __user *optval, int __user *optlen)
6338 {
6339         struct sctp_sock *sp = sctp_sk(sk);
6340         struct sctp_association *asoc;
6341         u32 val = 0;
6342
6343         if (sctp_style(sk, TCP))
6344                 return -EOPNOTSUPP;
6345
6346         if (len < sizeof(u32))
6347                 return -EINVAL;
6348
6349         len = sizeof(u32);
6350
6351         list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6352                 val++;
6353         }
6354
6355         if (put_user(len, optlen))
6356                 return -EFAULT;
6357         if (copy_to_user(optval, &val, len))
6358                 return -EFAULT;
6359
6360         return 0;
6361 }
6362
6363 /*
6364  * 8.1.23 SCTP_AUTO_ASCONF
6365  * See the corresponding setsockopt entry as description
6366  */
6367 static int sctp_getsockopt_auto_asconf(struct sock *sk, int len,
6368                                    char __user *optval, int __user *optlen)
6369 {
6370         int val = 0;
6371
6372         if (len < sizeof(int))
6373                 return -EINVAL;
6374
6375         len = sizeof(int);
6376         if (sctp_sk(sk)->do_auto_asconf && sctp_is_ep_boundall(sk))
6377                 val = 1;
6378         if (put_user(len, optlen))
6379                 return -EFAULT;
6380         if (copy_to_user(optval, &val, len))
6381                 return -EFAULT;
6382         return 0;
6383 }
6384
6385 /*
6386  * 8.2.6. Get the Current Identifiers of Associations
6387  *        (SCTP_GET_ASSOC_ID_LIST)
6388  *
6389  * This option gets the current list of SCTP association identifiers of
6390  * the SCTP associations handled by a one-to-many style socket.
6391  */
6392 static int sctp_getsockopt_assoc_ids(struct sock *sk, int len,
6393                                     char __user *optval, int __user *optlen)
6394 {
6395         struct sctp_sock *sp = sctp_sk(sk);
6396         struct sctp_association *asoc;
6397         struct sctp_assoc_ids *ids;
6398         u32 num = 0;
6399
6400         if (sctp_style(sk, TCP))
6401                 return -EOPNOTSUPP;
6402
6403         if (len < sizeof(struct sctp_assoc_ids))
6404                 return -EINVAL;
6405
6406         list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6407                 num++;
6408         }
6409
6410         if (len < sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num)
6411                 return -EINVAL;
6412
6413         len = sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num;
6414
6415         ids = kmalloc(len, GFP_USER | __GFP_NOWARN);
6416         if (unlikely(!ids))
6417                 return -ENOMEM;
6418
6419         ids->gaids_number_of_ids = num;
6420         num = 0;
6421         list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6422                 ids->gaids_assoc_id[num++] = asoc->assoc_id;
6423         }
6424
6425         if (put_user(len, optlen) || copy_to_user(optval, ids, len)) {
6426                 kfree(ids);
6427                 return -EFAULT;
6428         }
6429
6430         kfree(ids);
6431         return 0;
6432 }
6433
6434 /*
6435  * SCTP_PEER_ADDR_THLDS
6436  *
6437  * This option allows us to fetch the partially failed threshold for one or all
6438  * transports in an association.  See Section 6.1 of:
6439  * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
6440  */
6441 static int sctp_getsockopt_paddr_thresholds(struct sock *sk,
6442                                             char __user *optval,
6443                                             int len,
6444                                             int __user *optlen)
6445 {
6446         struct sctp_paddrthlds val;
6447         struct sctp_transport *trans;
6448         struct sctp_association *asoc;
6449
6450         if (len < sizeof(struct sctp_paddrthlds))
6451                 return -EINVAL;
6452         len = sizeof(struct sctp_paddrthlds);
6453         if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval, len))
6454                 return -EFAULT;
6455
6456         if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
6457                 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
6458                 if (!asoc)
6459                         return -ENOENT;
6460
6461                 val.spt_pathpfthld = asoc->pf_retrans;
6462                 val.spt_pathmaxrxt = asoc->pathmaxrxt;
6463         } else {
6464                 trans = sctp_addr_id2transport(sk, &val.spt_address,
6465                                                val.spt_assoc_id);
6466                 if (!trans)
6467                         return -ENOENT;
6468
6469                 val.spt_pathmaxrxt = trans->pathmaxrxt;
6470                 val.spt_pathpfthld = trans->pf_retrans;
6471         }
6472
6473         if (put_user(len, optlen) || copy_to_user(optval, &val, len))
6474                 return -EFAULT;
6475
6476         return 0;
6477 }
6478
6479 /*
6480  * SCTP_GET_ASSOC_STATS
6481  *
6482  * This option retrieves local per endpoint statistics. It is modeled
6483  * after OpenSolaris' implementation
6484  */
6485 static int sctp_getsockopt_assoc_stats(struct sock *sk, int len,
6486                                        char __user *optval,
6487                                        int __user *optlen)
6488 {
6489         struct sctp_assoc_stats sas;
6490         struct sctp_association *asoc = NULL;
6491
6492         /* User must provide at least the assoc id */
6493         if (len < sizeof(sctp_assoc_t))
6494                 return -EINVAL;
6495
6496         /* Allow the struct to grow and fill in as much as possible */
6497         len = min_t(size_t, len, sizeof(sas));
6498
6499         if (copy_from_user(&sas, optval, len))
6500                 return -EFAULT;
6501
6502         asoc = sctp_id2assoc(sk, sas.sas_assoc_id);
6503         if (!asoc)
6504                 return -EINVAL;
6505
6506         sas.sas_rtxchunks = asoc->stats.rtxchunks;
6507         sas.sas_gapcnt = asoc->stats.gapcnt;
6508         sas.sas_outofseqtsns = asoc->stats.outofseqtsns;
6509         sas.sas_osacks = asoc->stats.osacks;
6510         sas.sas_isacks = asoc->stats.isacks;
6511         sas.sas_octrlchunks = asoc->stats.octrlchunks;
6512         sas.sas_ictrlchunks = asoc->stats.ictrlchunks;
6513         sas.sas_oodchunks = asoc->stats.oodchunks;
6514         sas.sas_iodchunks = asoc->stats.iodchunks;
6515         sas.sas_ouodchunks = asoc->stats.ouodchunks;
6516         sas.sas_iuodchunks = asoc->stats.iuodchunks;
6517         sas.sas_idupchunks = asoc->stats.idupchunks;
6518         sas.sas_opackets = asoc->stats.opackets;
6519         sas.sas_ipackets = asoc->stats.ipackets;
6520
6521         /* New high max rto observed, will return 0 if not a single
6522          * RTO update took place. obs_rto_ipaddr will be bogus
6523          * in such a case
6524          */
6525         sas.sas_maxrto = asoc->stats.max_obs_rto;
6526         memcpy(&sas.sas_obs_rto_ipaddr, &asoc->stats.obs_rto_ipaddr,
6527                 sizeof(struct sockaddr_storage));
6528
6529         /* Mark beginning of a new observation period */
6530         asoc->stats.max_obs_rto = asoc->rto_min;
6531
6532         if (put_user(len, optlen))
6533                 return -EFAULT;
6534
6535         pr_debug("%s: len:%d, assoc_id:%d\n", __func__, len, sas.sas_assoc_id);
6536
6537         if (copy_to_user(optval, &sas, len))
6538                 return -EFAULT;
6539
6540         return 0;
6541 }
6542
6543 static int sctp_getsockopt_recvrcvinfo(struct sock *sk, int len,
6544                                        char __user *optval,
6545                                        int __user *optlen)
6546 {
6547         int val = 0;
6548
6549         if (len < sizeof(int))
6550                 return -EINVAL;
6551
6552         len = sizeof(int);
6553         if (sctp_sk(sk)->recvrcvinfo)
6554                 val = 1;
6555         if (put_user(len, optlen))
6556                 return -EFAULT;
6557         if (copy_to_user(optval, &val, len))
6558                 return -EFAULT;
6559
6560         return 0;
6561 }
6562
6563 static int sctp_getsockopt_recvnxtinfo(struct sock *sk, int len,
6564                                        char __user *optval,
6565                                        int __user *optlen)
6566 {
6567         int val = 0;
6568
6569         if (len < sizeof(int))
6570                 return -EINVAL;
6571
6572         len = sizeof(int);
6573         if (sctp_sk(sk)->recvnxtinfo)
6574                 val = 1;
6575         if (put_user(len, optlen))
6576                 return -EFAULT;
6577         if (copy_to_user(optval, &val, len))
6578                 return -EFAULT;
6579
6580         return 0;
6581 }
6582
6583 static int sctp_getsockopt_pr_supported(struct sock *sk, int len,
6584                                         char __user *optval,
6585                                         int __user *optlen)
6586 {
6587         struct sctp_assoc_value params;
6588         struct sctp_association *asoc;
6589         int retval = -EFAULT;
6590
6591         if (len < sizeof(params)) {
6592                 retval = -EINVAL;
6593                 goto out;
6594         }
6595
6596         len = sizeof(params);
6597         if (copy_from_user(&params, optval, len))
6598                 goto out;
6599
6600         asoc = sctp_id2assoc(sk, params.assoc_id);
6601         if (asoc) {
6602                 params.assoc_value = asoc->prsctp_enable;
6603         } else if (!params.assoc_id) {
6604                 struct sctp_sock *sp = sctp_sk(sk);
6605
6606                 params.assoc_value = sp->ep->prsctp_enable;
6607         } else {
6608                 retval = -EINVAL;
6609                 goto out;
6610         }
6611
6612         if (put_user(len, optlen))
6613                 goto out;
6614
6615         if (copy_to_user(optval, &params, len))
6616                 goto out;
6617
6618         retval = 0;
6619
6620 out:
6621         return retval;
6622 }
6623
6624 static int sctp_getsockopt_default_prinfo(struct sock *sk, int len,
6625                                           char __user *optval,
6626                                           int __user *optlen)
6627 {
6628         struct sctp_default_prinfo info;
6629         struct sctp_association *asoc;
6630         int retval = -EFAULT;
6631
6632         if (len < sizeof(info)) {
6633                 retval = -EINVAL;
6634                 goto out;
6635         }
6636
6637         len = sizeof(info);
6638         if (copy_from_user(&info, optval, len))
6639                 goto out;
6640
6641         asoc = sctp_id2assoc(sk, info.pr_assoc_id);
6642         if (asoc) {
6643                 info.pr_policy = SCTP_PR_POLICY(asoc->default_flags);
6644                 info.pr_value = asoc->default_timetolive;
6645         } else if (!info.pr_assoc_id) {
6646                 struct sctp_sock *sp = sctp_sk(sk);
6647
6648                 info.pr_policy = SCTP_PR_POLICY(sp->default_flags);
6649                 info.pr_value = sp->default_timetolive;
6650         } else {
6651                 retval = -EINVAL;
6652                 goto out;
6653         }
6654
6655         if (put_user(len, optlen))
6656                 goto out;
6657
6658         if (copy_to_user(optval, &info, len))
6659                 goto out;
6660
6661         retval = 0;
6662
6663 out:
6664         return retval;
6665 }
6666
6667 static int sctp_getsockopt_pr_assocstatus(struct sock *sk, int len,
6668                                           char __user *optval,
6669                                           int __user *optlen)
6670 {
6671         struct sctp_prstatus params;
6672         struct sctp_association *asoc;
6673         int policy;
6674         int retval = -EINVAL;
6675
6676         if (len < sizeof(params))
6677                 goto out;
6678
6679         len = sizeof(params);
6680         if (copy_from_user(&params, optval, len)) {
6681                 retval = -EFAULT;
6682                 goto out;
6683         }
6684
6685         policy = params.sprstat_policy;
6686         if (policy & ~SCTP_PR_SCTP_MASK)
6687                 goto out;
6688
6689         asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
6690         if (!asoc)
6691                 goto out;
6692
6693         if (policy == SCTP_PR_SCTP_NONE) {
6694                 params.sprstat_abandoned_unsent = 0;
6695                 params.sprstat_abandoned_sent = 0;
6696                 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
6697                         params.sprstat_abandoned_unsent +=
6698                                 asoc->abandoned_unsent[policy];
6699                         params.sprstat_abandoned_sent +=
6700                                 asoc->abandoned_sent[policy];
6701                 }
6702         } else {
6703                 params.sprstat_abandoned_unsent =
6704                         asoc->abandoned_unsent[__SCTP_PR_INDEX(policy)];
6705                 params.sprstat_abandoned_sent =
6706                         asoc->abandoned_sent[__SCTP_PR_INDEX(policy)];
6707         }
6708
6709         if (put_user(len, optlen)) {
6710                 retval = -EFAULT;
6711                 goto out;
6712         }
6713
6714         if (copy_to_user(optval, &params, len)) {
6715                 retval = -EFAULT;
6716                 goto out;
6717         }
6718
6719         retval = 0;
6720
6721 out:
6722         return retval;
6723 }
6724
6725 static int sctp_getsockopt_pr_streamstatus(struct sock *sk, int len,
6726                                            char __user *optval,
6727                                            int __user *optlen)
6728 {
6729         struct sctp_stream_out *streamout;
6730         struct sctp_association *asoc;
6731         struct sctp_prstatus params;
6732         int retval = -EINVAL;
6733         int policy;
6734
6735         if (len < sizeof(params))
6736                 goto out;
6737
6738         len = sizeof(params);
6739         if (copy_from_user(&params, optval, len)) {
6740                 retval = -EFAULT;
6741                 goto out;
6742         }
6743
6744         policy = params.sprstat_policy;
6745         if (policy & ~SCTP_PR_SCTP_MASK)
6746                 goto out;
6747
6748         asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
6749         if (!asoc || params.sprstat_sid >= asoc->stream.outcnt)
6750                 goto out;
6751
6752         streamout = &asoc->stream.out[params.sprstat_sid];
6753         if (policy == SCTP_PR_SCTP_NONE) {
6754                 params.sprstat_abandoned_unsent = 0;
6755                 params.sprstat_abandoned_sent = 0;
6756                 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
6757                         params.sprstat_abandoned_unsent +=
6758                                 streamout->abandoned_unsent[policy];
6759                         params.sprstat_abandoned_sent +=
6760                                 streamout->abandoned_sent[policy];
6761                 }
6762         } else {
6763                 params.sprstat_abandoned_unsent =
6764                         streamout->abandoned_unsent[__SCTP_PR_INDEX(policy)];
6765                 params.sprstat_abandoned_sent =
6766                         streamout->abandoned_sent[__SCTP_PR_INDEX(policy)];
6767         }
6768
6769         if (put_user(len, optlen) || copy_to_user(optval, &params, len)) {
6770                 retval = -EFAULT;
6771                 goto out;
6772         }
6773
6774         retval = 0;
6775
6776 out:
6777         return retval;
6778 }
6779
6780 static int sctp_getsockopt_reconfig_supported(struct sock *sk, int len,
6781                                               char __user *optval,
6782                                               int __user *optlen)
6783 {
6784         struct sctp_assoc_value params;
6785         struct sctp_association *asoc;
6786         int retval = -EFAULT;
6787
6788         if (len < sizeof(params)) {
6789                 retval = -EINVAL;
6790                 goto out;
6791         }
6792
6793         len = sizeof(params);
6794         if (copy_from_user(&params, optval, len))
6795                 goto out;
6796
6797         asoc = sctp_id2assoc(sk, params.assoc_id);
6798         if (asoc) {
6799                 params.assoc_value = asoc->reconf_enable;
6800         } else if (!params.assoc_id) {
6801                 struct sctp_sock *sp = sctp_sk(sk);
6802
6803                 params.assoc_value = sp->ep->reconf_enable;
6804         } else {
6805                 retval = -EINVAL;
6806                 goto out;
6807         }
6808
6809         if (put_user(len, optlen))
6810                 goto out;
6811
6812         if (copy_to_user(optval, &params, len))
6813                 goto out;
6814
6815         retval = 0;
6816
6817 out:
6818         return retval;
6819 }
6820
6821 static int sctp_getsockopt_enable_strreset(struct sock *sk, int len,
6822                                            char __user *optval,
6823                                            int __user *optlen)
6824 {
6825         struct sctp_assoc_value params;
6826         struct sctp_association *asoc;
6827         int retval = -EFAULT;
6828
6829         if (len < sizeof(params)) {
6830                 retval = -EINVAL;
6831                 goto out;
6832         }
6833
6834         len = sizeof(params);
6835         if (copy_from_user(&params, optval, len))
6836                 goto out;
6837
6838         asoc = sctp_id2assoc(sk, params.assoc_id);
6839         if (asoc) {
6840                 params.assoc_value = asoc->strreset_enable;
6841         } else if (!params.assoc_id) {
6842                 struct sctp_sock *sp = sctp_sk(sk);
6843
6844                 params.assoc_value = sp->ep->strreset_enable;
6845         } else {
6846                 retval = -EINVAL;
6847                 goto out;
6848         }
6849
6850         if (put_user(len, optlen))
6851                 goto out;
6852
6853         if (copy_to_user(optval, &params, len))
6854                 goto out;
6855
6856         retval = 0;
6857
6858 out:
6859         return retval;
6860 }
6861
6862 static int sctp_getsockopt(struct sock *sk, int level, int optname,
6863                            char __user *optval, int __user *optlen)
6864 {
6865         int retval = 0;
6866         int len;
6867
6868         pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
6869
6870         /* I can hardly begin to describe how wrong this is.  This is
6871          * so broken as to be worse than useless.  The API draft
6872          * REALLY is NOT helpful here...  I am not convinced that the
6873          * semantics of getsockopt() with a level OTHER THAN SOL_SCTP
6874          * are at all well-founded.
6875          */
6876         if (level != SOL_SCTP) {
6877                 struct sctp_af *af = sctp_sk(sk)->pf->af;
6878
6879                 retval = af->getsockopt(sk, level, optname, optval, optlen);
6880                 return retval;
6881         }
6882
6883         if (get_user(len, optlen))
6884                 return -EFAULT;
6885
6886         if (len < 0)
6887                 return -EINVAL;
6888
6889         lock_sock(sk);
6890
6891         switch (optname) {
6892         case SCTP_STATUS:
6893                 retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen);
6894                 break;
6895         case SCTP_DISABLE_FRAGMENTS:
6896                 retval = sctp_getsockopt_disable_fragments(sk, len, optval,
6897                                                            optlen);
6898                 break;
6899         case SCTP_EVENTS:
6900                 retval = sctp_getsockopt_events(sk, len, optval, optlen);
6901                 break;
6902         case SCTP_AUTOCLOSE:
6903                 retval = sctp_getsockopt_autoclose(sk, len, optval, optlen);
6904                 break;
6905         case SCTP_SOCKOPT_PEELOFF:
6906                 retval = sctp_getsockopt_peeloff(sk, len, optval, optlen);
6907                 break;
6908         case SCTP_SOCKOPT_PEELOFF_FLAGS:
6909                 retval = sctp_getsockopt_peeloff_flags(sk, len, optval, optlen);
6910                 break;
6911         case SCTP_PEER_ADDR_PARAMS:
6912                 retval = sctp_getsockopt_peer_addr_params(sk, len, optval,
6913                                                           optlen);
6914                 break;
6915         case SCTP_DELAYED_SACK:
6916                 retval = sctp_getsockopt_delayed_ack(sk, len, optval,
6917                                                           optlen);
6918                 break;
6919         case SCTP_INITMSG:
6920                 retval = sctp_getsockopt_initmsg(sk, len, optval, optlen);
6921                 break;
6922         case SCTP_GET_PEER_ADDRS:
6923                 retval = sctp_getsockopt_peer_addrs(sk, len, optval,
6924                                                     optlen);
6925                 break;
6926         case SCTP_GET_LOCAL_ADDRS:
6927                 retval = sctp_getsockopt_local_addrs(sk, len, optval,
6928                                                      optlen);
6929                 break;
6930         case SCTP_SOCKOPT_CONNECTX3:
6931                 retval = sctp_getsockopt_connectx3(sk, len, optval, optlen);
6932                 break;
6933         case SCTP_DEFAULT_SEND_PARAM:
6934                 retval = sctp_getsockopt_default_send_param(sk, len,
6935                                                             optval, optlen);
6936                 break;
6937         case SCTP_DEFAULT_SNDINFO:
6938                 retval = sctp_getsockopt_default_sndinfo(sk, len,
6939                                                          optval, optlen);
6940                 break;
6941         case SCTP_PRIMARY_ADDR:
6942                 retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen);
6943                 break;
6944         case SCTP_NODELAY:
6945                 retval = sctp_getsockopt_nodelay(sk, len, optval, optlen);
6946                 break;
6947         case SCTP_RTOINFO:
6948                 retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen);
6949                 break;
6950         case SCTP_ASSOCINFO:
6951                 retval = sctp_getsockopt_associnfo(sk, len, optval, optlen);
6952                 break;
6953         case SCTP_I_WANT_MAPPED_V4_ADDR:
6954                 retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen);
6955                 break;
6956         case SCTP_MAXSEG:
6957                 retval = sctp_getsockopt_maxseg(sk, len, optval, optlen);
6958                 break;
6959         case SCTP_GET_PEER_ADDR_INFO:
6960                 retval = sctp_getsockopt_peer_addr_info(sk, len, optval,
6961                                                         optlen);
6962                 break;
6963         case SCTP_ADAPTATION_LAYER:
6964                 retval = sctp_getsockopt_adaptation_layer(sk, len, optval,
6965                                                         optlen);
6966                 break;
6967         case SCTP_CONTEXT:
6968                 retval = sctp_getsockopt_context(sk, len, optval, optlen);
6969                 break;
6970         case SCTP_FRAGMENT_INTERLEAVE:
6971                 retval = sctp_getsockopt_fragment_interleave(sk, len, optval,
6972                                                              optlen);
6973                 break;
6974         case SCTP_PARTIAL_DELIVERY_POINT:
6975                 retval = sctp_getsockopt_partial_delivery_point(sk, len, optval,
6976                                                                 optlen);
6977                 break;
6978         case SCTP_MAX_BURST:
6979                 retval = sctp_getsockopt_maxburst(sk, len, optval, optlen);
6980                 break;
6981         case SCTP_AUTH_KEY:
6982         case SCTP_AUTH_CHUNK:
6983         case SCTP_AUTH_DELETE_KEY:
6984                 retval = -EOPNOTSUPP;
6985                 break;
6986         case SCTP_HMAC_IDENT:
6987                 retval = sctp_getsockopt_hmac_ident(sk, len, optval, optlen);
6988                 break;
6989         case SCTP_AUTH_ACTIVE_KEY:
6990                 retval = sctp_getsockopt_active_key(sk, len, optval, optlen);
6991                 break;
6992         case SCTP_PEER_AUTH_CHUNKS:
6993                 retval = sctp_getsockopt_peer_auth_chunks(sk, len, optval,
6994                                                         optlen);
6995                 break;
6996         case SCTP_LOCAL_AUTH_CHUNKS:
6997                 retval = sctp_getsockopt_local_auth_chunks(sk, len, optval,
6998                                                         optlen);
6999                 break;
7000         case SCTP_GET_ASSOC_NUMBER:
7001                 retval = sctp_getsockopt_assoc_number(sk, len, optval, optlen);
7002                 break;
7003         case SCTP_GET_ASSOC_ID_LIST:
7004                 retval = sctp_getsockopt_assoc_ids(sk, len, optval, optlen);
7005                 break;
7006         case SCTP_AUTO_ASCONF:
7007                 retval = sctp_getsockopt_auto_asconf(sk, len, optval, optlen);
7008                 break;
7009         case SCTP_PEER_ADDR_THLDS:
7010                 retval = sctp_getsockopt_paddr_thresholds(sk, optval, len, optlen);
7011                 break;
7012         case SCTP_GET_ASSOC_STATS:
7013                 retval = sctp_getsockopt_assoc_stats(sk, len, optval, optlen);
7014                 break;
7015         case SCTP_RECVRCVINFO:
7016                 retval = sctp_getsockopt_recvrcvinfo(sk, len, optval, optlen);
7017                 break;
7018         case SCTP_RECVNXTINFO:
7019                 retval = sctp_getsockopt_recvnxtinfo(sk, len, optval, optlen);
7020                 break;
7021         case SCTP_PR_SUPPORTED:
7022                 retval = sctp_getsockopt_pr_supported(sk, len, optval, optlen);
7023                 break;
7024         case SCTP_DEFAULT_PRINFO:
7025                 retval = sctp_getsockopt_default_prinfo(sk, len, optval,
7026                                                         optlen);
7027                 break;
7028         case SCTP_PR_ASSOC_STATUS:
7029                 retval = sctp_getsockopt_pr_assocstatus(sk, len, optval,
7030                                                         optlen);
7031                 break;
7032         case SCTP_PR_STREAM_STATUS:
7033                 retval = sctp_getsockopt_pr_streamstatus(sk, len, optval,
7034                                                          optlen);
7035                 break;
7036         case SCTP_RECONFIG_SUPPORTED:
7037                 retval = sctp_getsockopt_reconfig_supported(sk, len, optval,
7038                                                             optlen);
7039                 break;
7040         case SCTP_ENABLE_STREAM_RESET:
7041                 retval = sctp_getsockopt_enable_strreset(sk, len, optval,
7042                                                          optlen);
7043                 break;
7044         default:
7045                 retval = -ENOPROTOOPT;
7046                 break;
7047         }
7048
7049         release_sock(sk);
7050         return retval;
7051 }
7052
7053 static int sctp_hash(struct sock *sk)
7054 {
7055         /* STUB */
7056         return 0;
7057 }
7058
7059 static void sctp_unhash(struct sock *sk)
7060 {
7061         /* STUB */
7062 }
7063
7064 /* Check if port is acceptable.  Possibly find first available port.
7065  *
7066  * The port hash table (contained in the 'global' SCTP protocol storage
7067  * returned by struct sctp_protocol *sctp_get_protocol()). The hash
7068  * table is an array of 4096 lists (sctp_bind_hashbucket). Each
7069  * list (the list number is the port number hashed out, so as you
7070  * would expect from a hash function, all the ports in a given list have
7071  * such a number that hashes out to the same list number; you were
7072  * expecting that, right?); so each list has a set of ports, with a
7073  * link to the socket (struct sock) that uses it, the port number and
7074  * a fastreuse flag (FIXME: NPI ipg).
7075  */
7076 static struct sctp_bind_bucket *sctp_bucket_create(
7077         struct sctp_bind_hashbucket *head, struct net *, unsigned short snum);
7078
7079 static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
7080 {
7081         struct sctp_bind_hashbucket *head; /* hash list */
7082         struct sctp_bind_bucket *pp;
7083         unsigned short snum;
7084         int ret;
7085
7086         snum = ntohs(addr->v4.sin_port);
7087
7088         pr_debug("%s: begins, snum:%d\n", __func__, snum);
7089
7090         if (snum == 0) {
7091                 /* Search for an available port. */
7092                 int low, high, remaining, index;
7093                 unsigned int rover;
7094                 struct net *net = sock_net(sk);
7095
7096                 inet_get_local_port_range(net, &low, &high);
7097                 remaining = (high - low) + 1;
7098                 rover = prandom_u32() % remaining + low;
7099
7100                 do {
7101                         rover++;
7102                         if ((rover < low) || (rover > high))
7103                                 rover = low;
7104                         if (inet_is_local_reserved_port(net, rover))
7105                                 continue;
7106                         index = sctp_phashfn(sock_net(sk), rover);
7107                         head = &sctp_port_hashtable[index];
7108                         spin_lock_bh(&head->lock);
7109                         sctp_for_each_hentry(pp, &head->chain)
7110                                 if ((pp->port == rover) &&
7111                                     net_eq(sock_net(sk), pp->net))
7112                                         goto next;
7113                         break;
7114                 next:
7115                         spin_unlock_bh(&head->lock);
7116                         cond_resched();
7117                 } while (--remaining > 0);
7118
7119                 /* Exhausted local port range during search? */
7120                 ret = 1;
7121                 if (remaining <= 0)
7122                         return ret;
7123
7124                 /* OK, here is the one we will use.  HEAD (the port
7125                  * hash table list entry) is non-NULL and we hold it's
7126                  * mutex.
7127                  */
7128                 snum = rover;
7129         } else {
7130                 /* We are given an specific port number; we verify
7131                  * that it is not being used. If it is used, we will
7132                  * exahust the search in the hash list corresponding
7133                  * to the port number (snum) - we detect that with the
7134                  * port iterator, pp being NULL.
7135                  */
7136                 head = &sctp_port_hashtable[sctp_phashfn(sock_net(sk), snum)];
7137                 spin_lock_bh(&head->lock);
7138                 sctp_for_each_hentry(pp, &head->chain) {
7139                         if ((pp->port == snum) && net_eq(pp->net, sock_net(sk)))
7140                                 goto pp_found;
7141                 }
7142         }
7143         pp = NULL;
7144         goto pp_not_found;
7145 pp_found:
7146         if (!hlist_empty(&pp->owner)) {
7147                 /* We had a port hash table hit - there is an
7148                  * available port (pp != NULL) and it is being
7149                  * used by other socket (pp->owner not empty); that other
7150                  * socket is going to be sk2.
7151                  */
7152                 int reuse = sk->sk_reuse;
7153                 struct sock *sk2;
7154
7155                 pr_debug("%s: found a possible match\n", __func__);
7156
7157                 if (pp->fastreuse && sk->sk_reuse &&
7158                         sk->sk_state != SCTP_SS_LISTENING)
7159                         goto success;
7160
7161                 /* Run through the list of sockets bound to the port
7162                  * (pp->port) [via the pointers bind_next and
7163                  * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one,
7164                  * we get the endpoint they describe and run through
7165                  * the endpoint's list of IP (v4 or v6) addresses,
7166                  * comparing each of the addresses with the address of
7167                  * the socket sk. If we find a match, then that means
7168                  * that this port/socket (sk) combination are already
7169                  * in an endpoint.
7170                  */
7171                 sk_for_each_bound(sk2, &pp->owner) {
7172                         struct sctp_endpoint *ep2;
7173                         ep2 = sctp_sk(sk2)->ep;
7174
7175                         if (sk == sk2 ||
7176                             (reuse && sk2->sk_reuse &&
7177                              sk2->sk_state != SCTP_SS_LISTENING))
7178                                 continue;
7179
7180                         if (sctp_bind_addr_conflict(&ep2->base.bind_addr, addr,
7181                                                  sctp_sk(sk2), sctp_sk(sk))) {
7182                                 ret = (long)sk2;
7183                                 goto fail_unlock;
7184                         }
7185                 }
7186
7187                 pr_debug("%s: found a match\n", __func__);
7188         }
7189 pp_not_found:
7190         /* If there was a hash table miss, create a new port.  */
7191         ret = 1;
7192         if (!pp && !(pp = sctp_bucket_create(head, sock_net(sk), snum)))
7193                 goto fail_unlock;
7194
7195         /* In either case (hit or miss), make sure fastreuse is 1 only
7196          * if sk->sk_reuse is too (that is, if the caller requested
7197          * SO_REUSEADDR on this socket -sk-).
7198          */
7199         if (hlist_empty(&pp->owner)) {
7200                 if (sk->sk_reuse && sk->sk_state != SCTP_SS_LISTENING)
7201                         pp->fastreuse = 1;
7202                 else
7203                         pp->fastreuse = 0;
7204         } else if (pp->fastreuse &&
7205                 (!sk->sk_reuse || sk->sk_state == SCTP_SS_LISTENING))
7206                 pp->fastreuse = 0;
7207
7208         /* We are set, so fill up all the data in the hash table
7209          * entry, tie the socket list information with the rest of the
7210          * sockets FIXME: Blurry, NPI (ipg).
7211          */
7212 success:
7213         if (!sctp_sk(sk)->bind_hash) {
7214                 inet_sk(sk)->inet_num = snum;
7215                 sk_add_bind_node(sk, &pp->owner);
7216                 sctp_sk(sk)->bind_hash = pp;
7217         }
7218         ret = 0;
7219
7220 fail_unlock:
7221         spin_unlock_bh(&head->lock);
7222         return ret;
7223 }
7224
7225 /* Assign a 'snum' port to the socket.  If snum == 0, an ephemeral
7226  * port is requested.
7227  */
7228 static int sctp_get_port(struct sock *sk, unsigned short snum)
7229 {
7230         union sctp_addr addr;
7231         struct sctp_af *af = sctp_sk(sk)->pf->af;
7232
7233         /* Set up a dummy address struct from the sk. */
7234         af->from_sk(&addr, sk);
7235         addr.v4.sin_port = htons(snum);
7236
7237         /* Note: sk->sk_num gets filled in if ephemeral port request. */
7238         return !!sctp_get_port_local(sk, &addr);
7239 }
7240
7241 /*
7242  *  Move a socket to LISTENING state.
7243  */
7244 static int sctp_listen_start(struct sock *sk, int backlog)
7245 {
7246         struct sctp_sock *sp = sctp_sk(sk);
7247         struct sctp_endpoint *ep = sp->ep;
7248         struct crypto_shash *tfm = NULL;
7249         char alg[32];
7250
7251         /* Allocate HMAC for generating cookie. */
7252         if (!sp->hmac && sp->sctp_hmac_alg) {
7253                 sprintf(alg, "hmac(%s)", sp->sctp_hmac_alg);
7254                 tfm = crypto_alloc_shash(alg, 0, 0);
7255                 if (IS_ERR(tfm)) {
7256                         net_info_ratelimited("failed to load transform for %s: %ld\n",
7257                                              sp->sctp_hmac_alg, PTR_ERR(tfm));
7258                         return -ENOSYS;
7259                 }
7260                 sctp_sk(sk)->hmac = tfm;
7261         }
7262
7263         /*
7264          * If a bind() or sctp_bindx() is not called prior to a listen()
7265          * call that allows new associations to be accepted, the system
7266          * picks an ephemeral port and will choose an address set equivalent
7267          * to binding with a wildcard address.
7268          *
7269          * This is not currently spelled out in the SCTP sockets
7270          * extensions draft, but follows the practice as seen in TCP
7271          * sockets.
7272          *
7273          */
7274         sk->sk_state = SCTP_SS_LISTENING;
7275         if (!ep->base.bind_addr.port) {
7276                 if (sctp_autobind(sk))
7277                         return -EAGAIN;
7278         } else {
7279                 if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
7280                         sk->sk_state = SCTP_SS_CLOSED;
7281                         return -EADDRINUSE;
7282                 }
7283         }
7284
7285         sk->sk_max_ack_backlog = backlog;
7286         sctp_hash_endpoint(ep);
7287         return 0;
7288 }
7289
7290 /*
7291  * 4.1.3 / 5.1.3 listen()
7292  *
7293  *   By default, new associations are not accepted for UDP style sockets.
7294  *   An application uses listen() to mark a socket as being able to
7295  *   accept new associations.
7296  *
7297  *   On TCP style sockets, applications use listen() to ready the SCTP
7298  *   endpoint for accepting inbound associations.
7299  *
7300  *   On both types of endpoints a backlog of '0' disables listening.
7301  *
7302  *  Move a socket to LISTENING state.
7303  */
7304 int sctp_inet_listen(struct socket *sock, int backlog)
7305 {
7306         struct sock *sk = sock->sk;
7307         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
7308         int err = -EINVAL;
7309
7310         if (unlikely(backlog < 0))
7311                 return err;
7312
7313         lock_sock(sk);
7314
7315         /* Peeled-off sockets are not allowed to listen().  */
7316         if (sctp_style(sk, UDP_HIGH_BANDWIDTH))
7317                 goto out;
7318
7319         if (sock->state != SS_UNCONNECTED)
7320                 goto out;
7321
7322         if (!sctp_sstate(sk, LISTENING) && !sctp_sstate(sk, CLOSED))
7323                 goto out;
7324
7325         /* If backlog is zero, disable listening. */
7326         if (!backlog) {
7327                 if (sctp_sstate(sk, CLOSED))
7328                         goto out;
7329
7330                 err = 0;
7331                 sctp_unhash_endpoint(ep);
7332                 sk->sk_state = SCTP_SS_CLOSED;
7333                 if (sk->sk_reuse)
7334                         sctp_sk(sk)->bind_hash->fastreuse = 1;
7335                 goto out;
7336         }
7337
7338         /* If we are already listening, just update the backlog */
7339         if (sctp_sstate(sk, LISTENING))
7340                 sk->sk_max_ack_backlog = backlog;
7341         else {
7342                 err = sctp_listen_start(sk, backlog);
7343                 if (err)
7344                         goto out;
7345         }
7346
7347         err = 0;
7348 out:
7349         release_sock(sk);
7350         return err;
7351 }
7352
7353 /*
7354  * This function is done by modeling the current datagram_poll() and the
7355  * tcp_poll().  Note that, based on these implementations, we don't
7356  * lock the socket in this function, even though it seems that,
7357  * ideally, locking or some other mechanisms can be used to ensure
7358  * the integrity of the counters (sndbuf and wmem_alloc) used
7359  * in this place.  We assume that we don't need locks either until proven
7360  * otherwise.
7361  *
7362  * Another thing to note is that we include the Async I/O support
7363  * here, again, by modeling the current TCP/UDP code.  We don't have
7364  * a good way to test with it yet.
7365  */
7366 unsigned int sctp_poll(struct file *file, struct socket *sock, poll_table *wait)
7367 {
7368         struct sock *sk = sock->sk;
7369         struct sctp_sock *sp = sctp_sk(sk);
7370         unsigned int mask;
7371
7372         poll_wait(file, sk_sleep(sk), wait);
7373
7374         sock_rps_record_flow(sk);
7375
7376         /* A TCP-style listening socket becomes readable when the accept queue
7377          * is not empty.
7378          */
7379         if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
7380                 return (!list_empty(&sp->ep->asocs)) ?
7381                         (POLLIN | POLLRDNORM) : 0;
7382
7383         mask = 0;
7384
7385         /* Is there any exceptional events?  */
7386         if (sk->sk_err || !skb_queue_empty_lockless(&sk->sk_error_queue))
7387                 mask |= POLLERR |
7388                         (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? POLLPRI : 0);
7389         if (sk->sk_shutdown & RCV_SHUTDOWN)
7390                 mask |= POLLRDHUP | POLLIN | POLLRDNORM;
7391         if (sk->sk_shutdown == SHUTDOWN_MASK)
7392                 mask |= POLLHUP;
7393
7394         /* Is it readable?  Reconsider this code with TCP-style support.  */
7395         if (!skb_queue_empty_lockless(&sk->sk_receive_queue))
7396                 mask |= POLLIN | POLLRDNORM;
7397
7398         /* The association is either gone or not ready.  */
7399         if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED))
7400                 return mask;
7401
7402         /* Is it writable?  */
7403         if (sctp_writeable(sk)) {
7404                 mask |= POLLOUT | POLLWRNORM;
7405         } else {
7406                 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
7407                 /*
7408                  * Since the socket is not locked, the buffer
7409                  * might be made available after the writeable check and
7410                  * before the bit is set.  This could cause a lost I/O
7411                  * signal.  tcp_poll() has a race breaker for this race
7412                  * condition.  Based on their implementation, we put
7413                  * in the following code to cover it as well.
7414                  */
7415                 if (sctp_writeable(sk))
7416                         mask |= POLLOUT | POLLWRNORM;
7417         }
7418         return mask;
7419 }
7420
7421 /********************************************************************
7422  * 2nd Level Abstractions
7423  ********************************************************************/
7424
7425 static struct sctp_bind_bucket *sctp_bucket_create(
7426         struct sctp_bind_hashbucket *head, struct net *net, unsigned short snum)
7427 {
7428         struct sctp_bind_bucket *pp;
7429
7430         pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
7431         if (pp) {
7432                 SCTP_DBG_OBJCNT_INC(bind_bucket);
7433                 pp->port = snum;
7434                 pp->fastreuse = 0;
7435                 INIT_HLIST_HEAD(&pp->owner);
7436                 pp->net = net;
7437                 hlist_add_head(&pp->node, &head->chain);
7438         }
7439         return pp;
7440 }
7441
7442 /* Caller must hold hashbucket lock for this tb with local BH disabled */
7443 static void sctp_bucket_destroy(struct sctp_bind_bucket *pp)
7444 {
7445         if (pp && hlist_empty(&pp->owner)) {
7446                 __hlist_del(&pp->node);
7447                 kmem_cache_free(sctp_bucket_cachep, pp);
7448                 SCTP_DBG_OBJCNT_DEC(bind_bucket);
7449         }
7450 }
7451
7452 /* Release this socket's reference to a local port.  */
7453 static inline void __sctp_put_port(struct sock *sk)
7454 {
7455         struct sctp_bind_hashbucket *head =
7456                 &sctp_port_hashtable[sctp_phashfn(sock_net(sk),
7457                                                   inet_sk(sk)->inet_num)];
7458         struct sctp_bind_bucket *pp;
7459
7460         spin_lock(&head->lock);
7461         pp = sctp_sk(sk)->bind_hash;
7462         __sk_del_bind_node(sk);
7463         sctp_sk(sk)->bind_hash = NULL;
7464         inet_sk(sk)->inet_num = 0;
7465         sctp_bucket_destroy(pp);
7466         spin_unlock(&head->lock);
7467 }
7468
7469 void sctp_put_port(struct sock *sk)
7470 {
7471         local_bh_disable();
7472         __sctp_put_port(sk);
7473         local_bh_enable();
7474 }
7475
7476 /*
7477  * The system picks an ephemeral port and choose an address set equivalent
7478  * to binding with a wildcard address.
7479  * One of those addresses will be the primary address for the association.
7480  * This automatically enables the multihoming capability of SCTP.
7481  */
7482 static int sctp_autobind(struct sock *sk)
7483 {
7484         union sctp_addr autoaddr;
7485         struct sctp_af *af;
7486         __be16 port;
7487
7488         /* Initialize a local sockaddr structure to INADDR_ANY. */
7489         af = sctp_sk(sk)->pf->af;
7490
7491         port = htons(inet_sk(sk)->inet_num);
7492         af->inaddr_any(&autoaddr, port);
7493
7494         return sctp_do_bind(sk, &autoaddr, af->sockaddr_len);
7495 }
7496
7497 /* Parse out IPPROTO_SCTP CMSG headers.  Perform only minimal validation.
7498  *
7499  * From RFC 2292
7500  * 4.2 The cmsghdr Structure *
7501  *
7502  * When ancillary data is sent or received, any number of ancillary data
7503  * objects can be specified by the msg_control and msg_controllen members of
7504  * the msghdr structure, because each object is preceded by
7505  * a cmsghdr structure defining the object's length (the cmsg_len member).
7506  * Historically Berkeley-derived implementations have passed only one object
7507  * at a time, but this API allows multiple objects to be
7508  * passed in a single call to sendmsg() or recvmsg(). The following example
7509  * shows two ancillary data objects in a control buffer.
7510  *
7511  *   |<--------------------------- msg_controllen -------------------------->|
7512  *   |                                                                       |
7513  *
7514  *   |<----- ancillary data object ----->|<----- ancillary data object ----->|
7515  *
7516  *   |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->|
7517  *   |                                   |                                   |
7518  *
7519  *   |<---------- cmsg_len ---------->|  |<--------- cmsg_len ----------->|  |
7520  *
7521  *   |<--------- CMSG_LEN() --------->|  |<-------- CMSG_LEN() ---------->|  |
7522  *   |                                |  |                                |  |
7523  *
7524  *   +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
7525  *   |cmsg_|cmsg_|cmsg_|XX|           |XX|cmsg_|cmsg_|cmsg_|XX|           |XX|
7526  *
7527  *   |len  |level|type |XX|cmsg_data[]|XX|len  |level|type |XX|cmsg_data[]|XX|
7528  *
7529  *   +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
7530  *    ^
7531  *    |
7532  *
7533  * msg_control
7534  * points here
7535  */
7536 static int sctp_msghdr_parse(const struct msghdr *msg, struct sctp_cmsgs *cmsgs)
7537 {
7538         struct msghdr *my_msg = (struct msghdr *)msg;
7539         struct cmsghdr *cmsg;
7540
7541         for_each_cmsghdr(cmsg, my_msg) {
7542                 if (!CMSG_OK(my_msg, cmsg))
7543                         return -EINVAL;
7544
7545                 /* Should we parse this header or ignore?  */
7546                 if (cmsg->cmsg_level != IPPROTO_SCTP)
7547                         continue;
7548
7549                 /* Strictly check lengths following example in SCM code.  */
7550                 switch (cmsg->cmsg_type) {
7551                 case SCTP_INIT:
7552                         /* SCTP Socket API Extension
7553                          * 5.3.1 SCTP Initiation Structure (SCTP_INIT)
7554                          *
7555                          * This cmsghdr structure provides information for
7556                          * initializing new SCTP associations with sendmsg().
7557                          * The SCTP_INITMSG socket option uses this same data
7558                          * structure.  This structure is not used for
7559                          * recvmsg().
7560                          *
7561                          * cmsg_level    cmsg_type      cmsg_data[]
7562                          * ------------  ------------   ----------------------
7563                          * IPPROTO_SCTP  SCTP_INIT      struct sctp_initmsg
7564                          */
7565                         if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_initmsg)))
7566                                 return -EINVAL;
7567
7568                         cmsgs->init = CMSG_DATA(cmsg);
7569                         break;
7570
7571                 case SCTP_SNDRCV:
7572                         /* SCTP Socket API Extension
7573                          * 5.3.2 SCTP Header Information Structure(SCTP_SNDRCV)
7574                          *
7575                          * This cmsghdr structure specifies SCTP options for
7576                          * sendmsg() and describes SCTP header information
7577                          * about a received message through recvmsg().
7578                          *
7579                          * cmsg_level    cmsg_type      cmsg_data[]
7580                          * ------------  ------------   ----------------------
7581                          * IPPROTO_SCTP  SCTP_SNDRCV    struct sctp_sndrcvinfo
7582                          */
7583                         if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndrcvinfo)))
7584                                 return -EINVAL;
7585
7586                         cmsgs->srinfo = CMSG_DATA(cmsg);
7587
7588                         if (cmsgs->srinfo->sinfo_flags &
7589                             ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
7590                               SCTP_SACK_IMMEDIATELY | SCTP_PR_SCTP_MASK |
7591                               SCTP_ABORT | SCTP_EOF))
7592                                 return -EINVAL;
7593                         break;
7594
7595                 case SCTP_SNDINFO:
7596                         /* SCTP Socket API Extension
7597                          * 5.3.4 SCTP Send Information Structure (SCTP_SNDINFO)
7598                          *
7599                          * This cmsghdr structure specifies SCTP options for
7600                          * sendmsg(). This structure and SCTP_RCVINFO replaces
7601                          * SCTP_SNDRCV which has been deprecated.
7602                          *
7603                          * cmsg_level    cmsg_type      cmsg_data[]
7604                          * ------------  ------------   ---------------------
7605                          * IPPROTO_SCTP  SCTP_SNDINFO    struct sctp_sndinfo
7606                          */
7607                         if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndinfo)))
7608                                 return -EINVAL;
7609
7610                         cmsgs->sinfo = CMSG_DATA(cmsg);
7611
7612                         if (cmsgs->sinfo->snd_flags &
7613                             ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
7614                               SCTP_SACK_IMMEDIATELY | SCTP_PR_SCTP_MASK |
7615                               SCTP_ABORT | SCTP_EOF))
7616                                 return -EINVAL;
7617                         break;
7618                 default:
7619                         return -EINVAL;
7620                 }
7621         }
7622
7623         return 0;
7624 }
7625
7626 /*
7627  * Wait for a packet..
7628  * Note: This function is the same function as in core/datagram.c
7629  * with a few modifications to make lksctp work.
7630  */
7631 static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p)
7632 {
7633         int error;
7634         DEFINE_WAIT(wait);
7635
7636         prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
7637
7638         /* Socket errors? */
7639         error = sock_error(sk);
7640         if (error)
7641                 goto out;
7642
7643         if (!skb_queue_empty(&sk->sk_receive_queue))
7644                 goto ready;
7645
7646         /* Socket shut down?  */
7647         if (sk->sk_shutdown & RCV_SHUTDOWN)
7648                 goto out;
7649
7650         /* Sequenced packets can come disconnected.  If so we report the
7651          * problem.
7652          */
7653         error = -ENOTCONN;
7654
7655         /* Is there a good reason to think that we may receive some data?  */
7656         if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING))
7657                 goto out;
7658
7659         /* Handle signals.  */
7660         if (signal_pending(current))
7661                 goto interrupted;
7662
7663         /* Let another process have a go.  Since we are going to sleep
7664          * anyway.  Note: This may cause odd behaviors if the message
7665          * does not fit in the user's buffer, but this seems to be the
7666          * only way to honor MSG_DONTWAIT realistically.
7667          */
7668         release_sock(sk);
7669         *timeo_p = schedule_timeout(*timeo_p);
7670         lock_sock(sk);
7671
7672 ready:
7673         finish_wait(sk_sleep(sk), &wait);
7674         return 0;
7675
7676 interrupted:
7677         error = sock_intr_errno(*timeo_p);
7678
7679 out:
7680         finish_wait(sk_sleep(sk), &wait);
7681         *err = error;
7682         return error;
7683 }
7684
7685 /* Receive a datagram.
7686  * Note: This is pretty much the same routine as in core/datagram.c
7687  * with a few changes to make lksctp work.
7688  */
7689 struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags,
7690                                        int noblock, int *err)
7691 {
7692         int error;
7693         struct sk_buff *skb;
7694         long timeo;
7695
7696         timeo = sock_rcvtimeo(sk, noblock);
7697
7698         pr_debug("%s: timeo:%ld, max:%ld\n", __func__, timeo,
7699                  MAX_SCHEDULE_TIMEOUT);
7700
7701         do {
7702                 /* Again only user level code calls this function,
7703                  * so nothing interrupt level
7704                  * will suddenly eat the receive_queue.
7705                  *
7706                  *  Look at current nfs client by the way...
7707                  *  However, this function was correct in any case. 8)
7708                  */
7709                 if (flags & MSG_PEEK) {
7710                         skb = skb_peek(&sk->sk_receive_queue);
7711                         if (skb)
7712                                 refcount_inc(&skb->users);
7713                 } else {
7714                         skb = __skb_dequeue(&sk->sk_receive_queue);
7715                 }
7716
7717                 if (skb)
7718                         return skb;
7719
7720                 /* Caller is allowed not to check sk->sk_err before calling. */
7721                 error = sock_error(sk);
7722                 if (error)
7723                         goto no_packet;
7724
7725                 if (sk->sk_shutdown & RCV_SHUTDOWN)
7726                         break;
7727
7728                 if (sk_can_busy_loop(sk)) {
7729                         sk_busy_loop(sk, noblock);
7730
7731                         if (!skb_queue_empty_lockless(&sk->sk_receive_queue))
7732                                 continue;
7733                 }
7734
7735                 /* User doesn't want to wait.  */
7736                 error = -EAGAIN;
7737                 if (!timeo)
7738                         goto no_packet;
7739         } while (sctp_wait_for_packet(sk, err, &timeo) == 0);
7740
7741         return NULL;
7742
7743 no_packet:
7744         *err = error;
7745         return NULL;
7746 }
7747
7748 /* If sndbuf has changed, wake up per association sndbuf waiters.  */
7749 static void __sctp_write_space(struct sctp_association *asoc)
7750 {
7751         struct sock *sk = asoc->base.sk;
7752
7753         if (sctp_wspace(asoc) <= 0)
7754                 return;
7755
7756         if (waitqueue_active(&asoc->wait))
7757                 wake_up_interruptible(&asoc->wait);
7758
7759         if (sctp_writeable(sk)) {
7760                 struct socket_wq *wq;
7761
7762                 rcu_read_lock();
7763                 wq = rcu_dereference(sk->sk_wq);
7764                 if (wq) {
7765                         if (waitqueue_active(&wq->wait))
7766                                 wake_up_interruptible(&wq->wait);
7767
7768                         /* Note that we try to include the Async I/O support
7769                          * here by modeling from the current TCP/UDP code.
7770                          * We have not tested with it yet.
7771                          */
7772                         if (!(sk->sk_shutdown & SEND_SHUTDOWN))
7773                                 sock_wake_async(wq, SOCK_WAKE_SPACE, POLL_OUT);
7774                 }
7775                 rcu_read_unlock();
7776         }
7777 }
7778
7779 static void sctp_wake_up_waiters(struct sock *sk,
7780                                  struct sctp_association *asoc)
7781 {
7782         struct sctp_association *tmp = asoc;
7783
7784         /* We do accounting for the sndbuf space per association,
7785          * so we only need to wake our own association.
7786          */
7787         if (asoc->ep->sndbuf_policy)
7788                 return __sctp_write_space(asoc);
7789
7790         /* If association goes down and is just flushing its
7791          * outq, then just normally notify others.
7792          */
7793         if (asoc->base.dead)
7794                 return sctp_write_space(sk);
7795
7796         /* Accounting for the sndbuf space is per socket, so we
7797          * need to wake up others, try to be fair and in case of
7798          * other associations, let them have a go first instead
7799          * of just doing a sctp_write_space() call.
7800          *
7801          * Note that we reach sctp_wake_up_waiters() only when
7802          * associations free up queued chunks, thus we are under
7803          * lock and the list of associations on a socket is
7804          * guaranteed not to change.
7805          */
7806         for (tmp = list_next_entry(tmp, asocs); 1;
7807              tmp = list_next_entry(tmp, asocs)) {
7808                 /* Manually skip the head element. */
7809                 if (&tmp->asocs == &((sctp_sk(sk))->ep->asocs))
7810                         continue;
7811                 /* Wake up association. */
7812                 __sctp_write_space(tmp);
7813                 /* We've reached the end. */
7814                 if (tmp == asoc)
7815                         break;
7816         }
7817 }
7818
7819 /* Do accounting for the sndbuf space.
7820  * Decrement the used sndbuf space of the corresponding association by the
7821  * data size which was just transmitted(freed).
7822  */
7823 static void sctp_wfree(struct sk_buff *skb)
7824 {
7825         struct sctp_chunk *chunk = skb_shinfo(skb)->destructor_arg;
7826         struct sctp_association *asoc = chunk->asoc;
7827         struct sock *sk = asoc->base.sk;
7828
7829         asoc->sndbuf_used -= SCTP_DATA_SNDSIZE(chunk) +
7830                                 sizeof(struct sk_buff) +
7831                                 sizeof(struct sctp_chunk);
7832
7833         WARN_ON(refcount_sub_and_test(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc));
7834
7835         /*
7836          * This undoes what is done via sctp_set_owner_w and sk_mem_charge
7837          */
7838         sk->sk_wmem_queued   -= skb->truesize;
7839         sk_mem_uncharge(sk, skb->truesize);
7840
7841         sock_wfree(skb);
7842         sctp_wake_up_waiters(sk, asoc);
7843
7844         sctp_association_put(asoc);
7845 }
7846
7847 /* Do accounting for the receive space on the socket.
7848  * Accounting for the association is done in ulpevent.c
7849  * We set this as a destructor for the cloned data skbs so that
7850  * accounting is done at the correct time.
7851  */
7852 void sctp_sock_rfree(struct sk_buff *skb)
7853 {
7854         struct sock *sk = skb->sk;
7855         struct sctp_ulpevent *event = sctp_skb2event(skb);
7856
7857         atomic_sub(event->rmem_len, &sk->sk_rmem_alloc);
7858
7859         /*
7860          * Mimic the behavior of sock_rfree
7861          */
7862         sk_mem_uncharge(sk, event->rmem_len);
7863 }
7864
7865
7866 /* Helper function to wait for space in the sndbuf.  */
7867 static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
7868                                 size_t msg_len)
7869 {
7870         struct sock *sk = asoc->base.sk;
7871         long current_timeo = *timeo_p;
7872         DEFINE_WAIT(wait);
7873         int err = 0;
7874
7875         pr_debug("%s: asoc:%p, timeo:%ld, msg_len:%zu\n", __func__, asoc,
7876                  *timeo_p, msg_len);
7877
7878         /* Increment the association's refcnt.  */
7879         sctp_association_hold(asoc);
7880
7881         /* Wait on the association specific sndbuf space. */
7882         for (;;) {
7883                 prepare_to_wait_exclusive(&asoc->wait, &wait,
7884                                           TASK_INTERRUPTIBLE);
7885                 if (asoc->base.dead)
7886                         goto do_dead;
7887                 if (!*timeo_p)
7888                         goto do_nonblock;
7889                 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING)
7890                         goto do_error;
7891                 if (signal_pending(current))
7892                         goto do_interrupted;
7893                 if (msg_len <= sctp_wspace(asoc))
7894                         break;
7895
7896                 /* Let another process have a go.  Since we are going
7897                  * to sleep anyway.
7898                  */
7899                 release_sock(sk);
7900                 current_timeo = schedule_timeout(current_timeo);
7901                 lock_sock(sk);
7902                 if (sk != asoc->base.sk)
7903                         goto do_error;
7904
7905                 *timeo_p = current_timeo;
7906         }
7907
7908 out:
7909         finish_wait(&asoc->wait, &wait);
7910
7911         /* Release the association's refcnt.  */
7912         sctp_association_put(asoc);
7913
7914         return err;
7915
7916 do_dead:
7917         err = -ESRCH;
7918         goto out;
7919
7920 do_error:
7921         err = -EPIPE;
7922         goto out;
7923
7924 do_interrupted:
7925         err = sock_intr_errno(*timeo_p);
7926         goto out;
7927
7928 do_nonblock:
7929         err = -EAGAIN;
7930         goto out;
7931 }
7932
7933 void sctp_data_ready(struct sock *sk)
7934 {
7935         struct socket_wq *wq;
7936
7937         rcu_read_lock();
7938         wq = rcu_dereference(sk->sk_wq);
7939         if (skwq_has_sleeper(wq))
7940                 wake_up_interruptible_sync_poll(&wq->wait, POLLIN |
7941                                                 POLLRDNORM | POLLRDBAND);
7942         sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
7943         rcu_read_unlock();
7944 }
7945
7946 /* If socket sndbuf has changed, wake up all per association waiters.  */
7947 void sctp_write_space(struct sock *sk)
7948 {
7949         struct sctp_association *asoc;
7950
7951         /* Wake up the tasks in each wait queue.  */
7952         list_for_each_entry(asoc, &((sctp_sk(sk))->ep->asocs), asocs) {
7953                 __sctp_write_space(asoc);
7954         }
7955 }
7956
7957 /* Is there any sndbuf space available on the socket?
7958  *
7959  * Note that sk_wmem_alloc is the sum of the send buffers on all of the
7960  * associations on the same socket.  For a UDP-style socket with
7961  * multiple associations, it is possible for it to be "unwriteable"
7962  * prematurely.  I assume that this is acceptable because
7963  * a premature "unwriteable" is better than an accidental "writeable" which
7964  * would cause an unwanted block under certain circumstances.  For the 1-1
7965  * UDP-style sockets or TCP-style sockets, this code should work.
7966  *  - Daisy
7967  */
7968 static int sctp_writeable(struct sock *sk)
7969 {
7970         int amt = 0;
7971
7972         amt = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
7973         if (amt < 0)
7974                 amt = 0;
7975         return amt;
7976 }
7977
7978 /* Wait for an association to go into ESTABLISHED state. If timeout is 0,
7979  * returns immediately with EINPROGRESS.
7980  */
7981 static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p)
7982 {
7983         struct sock *sk = asoc->base.sk;
7984         int err = 0;
7985         long current_timeo = *timeo_p;
7986         DEFINE_WAIT(wait);
7987
7988         pr_debug("%s: asoc:%p, timeo:%ld\n", __func__, asoc, *timeo_p);
7989
7990         /* Increment the association's refcnt.  */
7991         sctp_association_hold(asoc);
7992
7993         for (;;) {
7994                 prepare_to_wait_exclusive(&asoc->wait, &wait,
7995                                           TASK_INTERRUPTIBLE);
7996                 if (!*timeo_p)
7997                         goto do_nonblock;
7998                 if (sk->sk_shutdown & RCV_SHUTDOWN)
7999                         break;
8000                 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
8001                     asoc->base.dead)
8002                         goto do_error;
8003                 if (signal_pending(current))
8004                         goto do_interrupted;
8005
8006                 if (sctp_state(asoc, ESTABLISHED))
8007                         break;
8008
8009                 /* Let another process have a go.  Since we are going
8010                  * to sleep anyway.
8011                  */
8012                 release_sock(sk);
8013                 current_timeo = schedule_timeout(current_timeo);
8014                 lock_sock(sk);
8015
8016                 *timeo_p = current_timeo;
8017         }
8018
8019 out:
8020         finish_wait(&asoc->wait, &wait);
8021
8022         /* Release the association's refcnt.  */
8023         sctp_association_put(asoc);
8024
8025         return err;
8026
8027 do_error:
8028         if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
8029                 err = -ETIMEDOUT;
8030         else
8031                 err = -ECONNREFUSED;
8032         goto out;
8033
8034 do_interrupted:
8035         err = sock_intr_errno(*timeo_p);
8036         goto out;
8037
8038 do_nonblock:
8039         err = -EINPROGRESS;
8040         goto out;
8041 }
8042
8043 static int sctp_wait_for_accept(struct sock *sk, long timeo)
8044 {
8045         struct sctp_endpoint *ep;
8046         int err = 0;
8047         DEFINE_WAIT(wait);
8048
8049         ep = sctp_sk(sk)->ep;
8050
8051
8052         for (;;) {
8053                 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
8054                                           TASK_INTERRUPTIBLE);
8055
8056                 if (list_empty(&ep->asocs)) {
8057                         release_sock(sk);
8058                         timeo = schedule_timeout(timeo);
8059                         lock_sock(sk);
8060                 }
8061
8062                 err = -EINVAL;
8063                 if (!sctp_sstate(sk, LISTENING))
8064                         break;
8065
8066                 err = 0;
8067                 if (!list_empty(&ep->asocs))
8068                         break;
8069
8070                 err = sock_intr_errno(timeo);
8071                 if (signal_pending(current))
8072                         break;
8073
8074                 err = -EAGAIN;
8075                 if (!timeo)
8076                         break;
8077         }
8078
8079         finish_wait(sk_sleep(sk), &wait);
8080
8081         return err;
8082 }
8083
8084 static void sctp_wait_for_close(struct sock *sk, long timeout)
8085 {
8086         DEFINE_WAIT(wait);
8087
8088         do {
8089                 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
8090                 if (list_empty(&sctp_sk(sk)->ep->asocs))
8091                         break;
8092                 release_sock(sk);
8093                 timeout = schedule_timeout(timeout);
8094                 lock_sock(sk);
8095         } while (!signal_pending(current) && timeout);
8096
8097         finish_wait(sk_sleep(sk), &wait);
8098 }
8099
8100 static void sctp_skb_set_owner_r_frag(struct sk_buff *skb, struct sock *sk)
8101 {
8102         struct sk_buff *frag;
8103
8104         if (!skb->data_len)
8105                 goto done;
8106
8107         /* Don't forget the fragments. */
8108         skb_walk_frags(skb, frag)
8109                 sctp_skb_set_owner_r_frag(frag, sk);
8110
8111 done:
8112         sctp_skb_set_owner_r(skb, sk);
8113 }
8114
8115 void sctp_copy_sock(struct sock *newsk, struct sock *sk,
8116                     struct sctp_association *asoc)
8117 {
8118         struct inet_sock *inet = inet_sk(sk);
8119         struct inet_sock *newinet;
8120
8121         newsk->sk_type = sk->sk_type;
8122         newsk->sk_bound_dev_if = sk->sk_bound_dev_if;
8123         newsk->sk_flags = sk->sk_flags;
8124         newsk->sk_tsflags = sk->sk_tsflags;
8125         newsk->sk_no_check_tx = sk->sk_no_check_tx;
8126         newsk->sk_no_check_rx = sk->sk_no_check_rx;
8127         newsk->sk_reuse = sk->sk_reuse;
8128
8129         newsk->sk_shutdown = sk->sk_shutdown;
8130         newsk->sk_destruct = sctp_destruct_sock;
8131         newsk->sk_family = sk->sk_family;
8132         newsk->sk_protocol = IPPROTO_SCTP;
8133         newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
8134         newsk->sk_sndbuf = sk->sk_sndbuf;
8135         newsk->sk_rcvbuf = sk->sk_rcvbuf;
8136         newsk->sk_lingertime = sk->sk_lingertime;
8137         newsk->sk_rcvtimeo = sk->sk_rcvtimeo;
8138         newsk->sk_sndtimeo = sk->sk_sndtimeo;
8139         newsk->sk_rxhash = sk->sk_rxhash;
8140
8141         newinet = inet_sk(newsk);
8142
8143         /* Initialize sk's sport, dport, rcv_saddr and daddr for
8144          * getsockname() and getpeername()
8145          */
8146         newinet->inet_sport = inet->inet_sport;
8147         newinet->inet_saddr = inet->inet_saddr;
8148         newinet->inet_rcv_saddr = inet->inet_rcv_saddr;
8149         newinet->inet_dport = htons(asoc->peer.port);
8150         newinet->pmtudisc = inet->pmtudisc;
8151         newinet->inet_id = prandom_u32();
8152
8153         newinet->uc_ttl = inet->uc_ttl;
8154         newinet->mc_loop = 1;
8155         newinet->mc_ttl = 1;
8156         newinet->mc_index = 0;
8157         newinet->mc_list = NULL;
8158
8159         if (newsk->sk_flags & SK_FLAGS_TIMESTAMP)
8160                 net_enable_timestamp();
8161
8162         security_sk_clone(sk, newsk);
8163 }
8164
8165 static inline void sctp_copy_descendant(struct sock *sk_to,
8166                                         const struct sock *sk_from)
8167 {
8168         int ancestor_size = sizeof(struct inet_sock) +
8169                             sizeof(struct sctp_sock) -
8170                             offsetof(struct sctp_sock, auto_asconf_list);
8171
8172         if (sk_from->sk_family == PF_INET6)
8173                 ancestor_size += sizeof(struct ipv6_pinfo);
8174
8175         __inet_sk_copy_descendant(sk_to, sk_from, ancestor_size);
8176 }
8177
8178 /* Populate the fields of the newsk from the oldsk and migrate the assoc
8179  * and its messages to the newsk.
8180  */
8181 static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
8182                               struct sctp_association *assoc,
8183                               enum sctp_socket_type type)
8184 {
8185         struct sctp_sock *oldsp = sctp_sk(oldsk);
8186         struct sctp_sock *newsp = sctp_sk(newsk);
8187         struct sctp_bind_bucket *pp; /* hash list port iterator */
8188         struct sctp_endpoint *newep = newsp->ep;
8189         struct sk_buff *skb, *tmp;
8190         struct sctp_ulpevent *event;
8191         struct sctp_bind_hashbucket *head;
8192
8193         /* Migrate socket buffer sizes and all the socket level options to the
8194          * new socket.
8195          */
8196         newsk->sk_sndbuf = oldsk->sk_sndbuf;
8197         newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
8198         /* Brute force copy old sctp opt. */
8199         sctp_copy_descendant(newsk, oldsk);
8200
8201         /* Restore the ep value that was overwritten with the above structure
8202          * copy.
8203          */
8204         newsp->ep = newep;
8205         newsp->hmac = NULL;
8206
8207         /* Hook this new socket in to the bind_hash list. */
8208         head = &sctp_port_hashtable[sctp_phashfn(sock_net(oldsk),
8209                                                  inet_sk(oldsk)->inet_num)];
8210         spin_lock_bh(&head->lock);
8211         pp = sctp_sk(oldsk)->bind_hash;
8212         sk_add_bind_node(newsk, &pp->owner);
8213         sctp_sk(newsk)->bind_hash = pp;
8214         inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num;
8215         spin_unlock_bh(&head->lock);
8216
8217         /* Copy the bind_addr list from the original endpoint to the new
8218          * endpoint so that we can handle restarts properly
8219          */
8220         sctp_bind_addr_dup(&newsp->ep->base.bind_addr,
8221                                 &oldsp->ep->base.bind_addr, GFP_KERNEL);
8222
8223         sctp_auto_asconf_init(newsp);
8224
8225         /* Move any messages in the old socket's receive queue that are for the
8226          * peeled off association to the new socket's receive queue.
8227          */
8228         sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) {
8229                 event = sctp_skb2event(skb);
8230                 if (event->asoc == assoc) {
8231                         __skb_unlink(skb, &oldsk->sk_receive_queue);
8232                         __skb_queue_tail(&newsk->sk_receive_queue, skb);
8233                         sctp_skb_set_owner_r_frag(skb, newsk);
8234                 }
8235         }
8236
8237         /* Clean up any messages pending delivery due to partial
8238          * delivery.   Three cases:
8239          * 1) No partial deliver;  no work.
8240          * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby.
8241          * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue.
8242          */
8243         skb_queue_head_init(&newsp->pd_lobby);
8244         atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode);
8245
8246         if (atomic_read(&sctp_sk(oldsk)->pd_mode)) {
8247                 struct sk_buff_head *queue;
8248
8249                 /* Decide which queue to move pd_lobby skbs to. */
8250                 if (assoc->ulpq.pd_mode) {
8251                         queue = &newsp->pd_lobby;
8252                 } else
8253                         queue = &newsk->sk_receive_queue;
8254
8255                 /* Walk through the pd_lobby, looking for skbs that
8256                  * need moved to the new socket.
8257                  */
8258                 sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) {
8259                         event = sctp_skb2event(skb);
8260                         if (event->asoc == assoc) {
8261                                 __skb_unlink(skb, &oldsp->pd_lobby);
8262                                 __skb_queue_tail(queue, skb);
8263                                 sctp_skb_set_owner_r_frag(skb, newsk);
8264                         }
8265                 }
8266
8267                 /* Clear up any skbs waiting for the partial
8268                  * delivery to finish.
8269                  */
8270                 if (assoc->ulpq.pd_mode)
8271                         sctp_clear_pd(oldsk, NULL);
8272
8273         }
8274
8275         sctp_skb_for_each(skb, &assoc->ulpq.reasm, tmp)
8276                 sctp_skb_set_owner_r_frag(skb, newsk);
8277
8278         sctp_skb_for_each(skb, &assoc->ulpq.lobby, tmp)
8279                 sctp_skb_set_owner_r_frag(skb, newsk);
8280
8281         /* Set the type of socket to indicate that it is peeled off from the
8282          * original UDP-style socket or created with the accept() call on a
8283          * TCP-style socket..
8284          */
8285         newsp->type = type;
8286
8287         /* Mark the new socket "in-use" by the user so that any packets
8288          * that may arrive on the association after we've moved it are
8289          * queued to the backlog.  This prevents a potential race between
8290          * backlog processing on the old socket and new-packet processing
8291          * on the new socket.
8292          *
8293          * The caller has just allocated newsk so we can guarantee that other
8294          * paths won't try to lock it and then oldsk.
8295          */
8296         lock_sock_nested(newsk, SINGLE_DEPTH_NESTING);
8297         sctp_for_each_tx_datachunk(assoc, true, sctp_clear_owner_w);
8298         sctp_assoc_migrate(assoc, newsk);
8299         sctp_for_each_tx_datachunk(assoc, false, sctp_set_owner_w);
8300
8301         /* If the association on the newsk is already closed before accept()
8302          * is called, set RCV_SHUTDOWN flag.
8303          */
8304         if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP)) {
8305                 newsk->sk_state = SCTP_SS_CLOSED;
8306                 newsk->sk_shutdown |= RCV_SHUTDOWN;
8307         } else {
8308                 newsk->sk_state = SCTP_SS_ESTABLISHED;
8309         }
8310
8311         release_sock(newsk);
8312 }
8313
8314
8315 /* This proto struct describes the ULP interface for SCTP.  */
8316 struct proto sctp_prot = {
8317         .name        =  "SCTP",
8318         .owner       =  THIS_MODULE,
8319         .close       =  sctp_close,
8320         .disconnect  =  sctp_disconnect,
8321         .accept      =  sctp_accept,
8322         .ioctl       =  sctp_ioctl,
8323         .init        =  sctp_init_sock,
8324         .destroy     =  sctp_destroy_sock,
8325         .shutdown    =  sctp_shutdown,
8326         .setsockopt  =  sctp_setsockopt,
8327         .getsockopt  =  sctp_getsockopt,
8328         .sendmsg     =  sctp_sendmsg,
8329         .recvmsg     =  sctp_recvmsg,
8330         .bind        =  sctp_bind,
8331         .backlog_rcv =  sctp_backlog_rcv,
8332         .hash        =  sctp_hash,
8333         .unhash      =  sctp_unhash,
8334         .no_autobind =  true,
8335         .obj_size    =  sizeof(struct sctp_sock),
8336         .sysctl_mem  =  sysctl_sctp_mem,
8337         .sysctl_rmem =  sysctl_sctp_rmem,
8338         .sysctl_wmem =  sysctl_sctp_wmem,
8339         .memory_pressure = &sctp_memory_pressure,
8340         .enter_memory_pressure = sctp_enter_memory_pressure,
8341         .memory_allocated = &sctp_memory_allocated,
8342         .sockets_allocated = &sctp_sockets_allocated,
8343 };
8344
8345 #if IS_ENABLED(CONFIG_IPV6)
8346
8347 #include <net/transp_v6.h>
8348 static void sctp_v6_destroy_sock(struct sock *sk)
8349 {
8350         sctp_destroy_sock(sk);
8351         inet6_destroy_sock(sk);
8352 }
8353
8354 struct proto sctpv6_prot = {
8355         .name           = "SCTPv6",
8356         .owner          = THIS_MODULE,
8357         .close          = sctp_close,
8358         .disconnect     = sctp_disconnect,
8359         .accept         = sctp_accept,
8360         .ioctl          = sctp_ioctl,
8361         .init           = sctp_init_sock,
8362         .destroy        = sctp_v6_destroy_sock,
8363         .shutdown       = sctp_shutdown,
8364         .setsockopt     = sctp_setsockopt,
8365         .getsockopt     = sctp_getsockopt,
8366         .sendmsg        = sctp_sendmsg,
8367         .recvmsg        = sctp_recvmsg,
8368         .bind           = sctp_bind,
8369         .backlog_rcv    = sctp_backlog_rcv,
8370         .hash           = sctp_hash,
8371         .unhash         = sctp_unhash,
8372         .no_autobind    = true,
8373         .obj_size       = sizeof(struct sctp6_sock),
8374         .sysctl_mem     = sysctl_sctp_mem,
8375         .sysctl_rmem    = sysctl_sctp_rmem,
8376         .sysctl_wmem    = sysctl_sctp_wmem,
8377         .memory_pressure = &sctp_memory_pressure,
8378         .enter_memory_pressure = sctp_enter_memory_pressure,
8379         .memory_allocated = &sctp_memory_allocated,
8380         .sockets_allocated = &sctp_sockets_allocated,
8381 };
8382 #endif /* IS_ENABLED(CONFIG_IPV6) */