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