Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
[muen/linux.git] / net / sctp / socket.c
1 /* SCTP kernel implementation
2  * (C) Copyright IBM Corp. 2001, 2004
3  * Copyright (c) 1999-2000 Cisco, Inc.
4  * Copyright (c) 1999-2001 Motorola, Inc.
5  * Copyright (c) 2001-2003 Intel Corp.
6  * Copyright (c) 2001-2002 Nokia, Inc.
7  * Copyright (c) 2001 La Monte H.P. Yarroll
8  *
9  * This file is part of the SCTP kernel implementation
10  *
11  * These functions interface with the sockets layer to implement the
12  * SCTP Extensions for the Sockets API.
13  *
14  * Note that the descriptions from the specification are USER level
15  * functions--this file is the functions which populate the struct proto
16  * for SCTP which is the BOTTOM of the sockets interface.
17  *
18  * This SCTP implementation is free software;
19  * you can redistribute it and/or modify it under the terms of
20  * the GNU General Public License as published by
21  * the Free Software Foundation; either version 2, or (at your option)
22  * any later version.
23  *
24  * This SCTP implementation is distributed in the hope that it
25  * will be useful, but WITHOUT ANY WARRANTY; without even the implied
26  *                 ************************
27  * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
28  * See the GNU General Public License for more details.
29  *
30  * You should have received a copy of the GNU General Public License
31  * along with GNU CC; see the file COPYING.  If not, see
32  * <http://www.gnu.org/licenses/>.
33  *
34  * Please send any bug reports or fixes you make to the
35  * email address(es):
36  *    lksctp developers <linux-sctp@vger.kernel.org>
37  *
38  * Written or modified by:
39  *    La Monte H.P. Yarroll <piggy@acm.org>
40  *    Narasimha Budihal     <narsi@refcode.org>
41  *    Karl Knutson          <karl@athena.chicago.il.us>
42  *    Jon Grimm             <jgrimm@us.ibm.com>
43  *    Xingang Guo           <xingang.guo@intel.com>
44  *    Daisy Chang           <daisyc@us.ibm.com>
45  *    Sridhar Samudrala     <samudrala@us.ibm.com>
46  *    Inaky Perez-Gonzalez  <inaky.gonzalez@intel.com>
47  *    Ardelle Fan           <ardelle.fan@intel.com>
48  *    Ryan Layer            <rmlayer@us.ibm.com>
49  *    Anup Pemmaiah         <pemmaiah@cc.usu.edu>
50  *    Kevin Gao             <kevin.gao@intel.com>
51  */
52
53 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
54
55 #include <crypto/hash.h>
56 #include <linux/types.h>
57 #include <linux/kernel.h>
58 #include <linux/wait.h>
59 #include <linux/time.h>
60 #include <linux/sched/signal.h>
61 #include <linux/ip.h>
62 #include <linux/capability.h>
63 #include <linux/fcntl.h>
64 #include <linux/poll.h>
65 #include <linux/init.h>
66 #include <linux/slab.h>
67 #include <linux/file.h>
68 #include <linux/compat.h>
69
70 #include <net/ip.h>
71 #include <net/icmp.h>
72 #include <net/route.h>
73 #include <net/ipv6.h>
74 #include <net/inet_common.h>
75 #include <net/busy_poll.h>
76
77 #include <linux/socket.h> /* for sa_family_t */
78 #include <linux/export.h>
79 #include <net/sock.h>
80 #include <net/sctp/sctp.h>
81 #include <net/sctp/sm.h>
82 #include <net/sctp/stream_sched.h>
83
84 /* Forward declarations for internal helper functions. */
85 static int sctp_writeable(struct sock *sk);
86 static void sctp_wfree(struct sk_buff *skb);
87 static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
88                                 size_t msg_len);
89 static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p);
90 static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
91 static int sctp_wait_for_accept(struct sock *sk, long timeo);
92 static void sctp_wait_for_close(struct sock *sk, long timeo);
93 static void sctp_destruct_sock(struct sock *sk);
94 static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
95                                         union sctp_addr *addr, int len);
96 static int sctp_bindx_add(struct sock *, struct sockaddr *, int);
97 static int sctp_bindx_rem(struct sock *, struct sockaddr *, int);
98 static int sctp_send_asconf_add_ip(struct sock *, struct sockaddr *, int);
99 static int sctp_send_asconf_del_ip(struct sock *, struct sockaddr *, int);
100 static int sctp_send_asconf(struct sctp_association *asoc,
101                             struct sctp_chunk *chunk);
102 static int sctp_do_bind(struct sock *, union sctp_addr *, int);
103 static int sctp_autobind(struct sock *sk);
104 static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
105                               struct sctp_association *assoc,
106                               enum sctp_socket_type type);
107
108 static unsigned long sctp_memory_pressure;
109 static atomic_long_t sctp_memory_allocated;
110 struct percpu_counter sctp_sockets_allocated;
111
112 static void sctp_enter_memory_pressure(struct sock *sk)
113 {
114         sctp_memory_pressure = 1;
115 }
116
117
118 /* Get the sndbuf space available at the time on the association.  */
119 static inline int sctp_wspace(struct sctp_association *asoc)
120 {
121         int amt;
122
123         if (asoc->ep->sndbuf_policy)
124                 amt = asoc->sndbuf_used;
125         else
126                 amt = sk_wmem_alloc_get(asoc->base.sk);
127
128         if (amt >= asoc->base.sk->sk_sndbuf) {
129                 if (asoc->base.sk->sk_userlocks & SOCK_SNDBUF_LOCK)
130                         amt = 0;
131                 else {
132                         amt = sk_stream_wspace(asoc->base.sk);
133                         if (amt < 0)
134                                 amt = 0;
135                 }
136         } else {
137                 amt = asoc->base.sk->sk_sndbuf - amt;
138         }
139         return amt;
140 }
141
142 /* Increment the used sndbuf space count of the corresponding association by
143  * the size of the outgoing data chunk.
144  * Also, set the skb destructor for sndbuf accounting later.
145  *
146  * Since it is always 1-1 between chunk and skb, and also a new skb is always
147  * allocated for chunk bundling in sctp_packet_transmit(), we can use the
148  * destructor in the data chunk skb for the purpose of the sndbuf space
149  * tracking.
150  */
151 static inline void sctp_set_owner_w(struct sctp_chunk *chunk)
152 {
153         struct sctp_association *asoc = chunk->asoc;
154         struct sock *sk = asoc->base.sk;
155
156         /* The sndbuf space is tracked per association.  */
157         sctp_association_hold(asoc);
158
159         if (chunk->shkey)
160                 sctp_auth_shkey_hold(chunk->shkey);
161
162         skb_set_owner_w(chunk->skb, sk);
163
164         chunk->skb->destructor = sctp_wfree;
165         /* Save the chunk pointer in skb for sctp_wfree to use later.  */
166         skb_shinfo(chunk->skb)->destructor_arg = chunk;
167
168         asoc->sndbuf_used += SCTP_DATA_SNDSIZE(chunk) +
169                                 sizeof(struct sk_buff) +
170                                 sizeof(struct sctp_chunk);
171
172         refcount_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
173         sk->sk_wmem_queued += chunk->skb->truesize;
174         sk_mem_charge(sk, chunk->skb->truesize);
175 }
176
177 static void sctp_clear_owner_w(struct sctp_chunk *chunk)
178 {
179         skb_orphan(chunk->skb);
180 }
181
182 static void sctp_for_each_tx_datachunk(struct sctp_association *asoc,
183                                        void (*cb)(struct sctp_chunk *))
184
185 {
186         struct sctp_outq *q = &asoc->outqueue;
187         struct sctp_transport *t;
188         struct sctp_chunk *chunk;
189
190         list_for_each_entry(t, &asoc->peer.transport_addr_list, transports)
191                 list_for_each_entry(chunk, &t->transmitted, transmitted_list)
192                         cb(chunk);
193
194         list_for_each_entry(chunk, &q->retransmit, transmitted_list)
195                 cb(chunk);
196
197         list_for_each_entry(chunk, &q->sacked, transmitted_list)
198                 cb(chunk);
199
200         list_for_each_entry(chunk, &q->abandoned, transmitted_list)
201                 cb(chunk);
202
203         list_for_each_entry(chunk, &q->out_chunk_list, list)
204                 cb(chunk);
205 }
206
207 static void sctp_for_each_rx_skb(struct sctp_association *asoc, struct sock *sk,
208                                  void (*cb)(struct sk_buff *, struct sock *))
209
210 {
211         struct sk_buff *skb, *tmp;
212
213         sctp_skb_for_each(skb, &asoc->ulpq.lobby, tmp)
214                 cb(skb, sk);
215
216         sctp_skb_for_each(skb, &asoc->ulpq.reasm, tmp)
217                 cb(skb, sk);
218
219         sctp_skb_for_each(skb, &asoc->ulpq.reasm_uo, tmp)
220                 cb(skb, sk);
221 }
222
223 /* Verify that this is a valid address. */
224 static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr,
225                                    int len)
226 {
227         struct sctp_af *af;
228
229         /* Verify basic sockaddr. */
230         af = sctp_sockaddr_af(sctp_sk(sk), addr, len);
231         if (!af)
232                 return -EINVAL;
233
234         /* Is this a valid SCTP address?  */
235         if (!af->addr_valid(addr, sctp_sk(sk), NULL))
236                 return -EINVAL;
237
238         if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr)))
239                 return -EINVAL;
240
241         return 0;
242 }
243
244 /* Look up the association by its id.  If this is not a UDP-style
245  * socket, the ID field is always ignored.
246  */
247 struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
248 {
249         struct sctp_association *asoc = NULL;
250
251         /* If this is not a UDP-style socket, assoc id should be ignored. */
252         if (!sctp_style(sk, UDP)) {
253                 /* Return NULL if the socket state is not ESTABLISHED. It
254                  * could be a TCP-style listening socket or a socket which
255                  * hasn't yet called connect() to establish an association.
256                  */
257                 if (!sctp_sstate(sk, ESTABLISHED) && !sctp_sstate(sk, CLOSING))
258                         return NULL;
259
260                 /* Get the first and the only association from the list. */
261                 if (!list_empty(&sctp_sk(sk)->ep->asocs))
262                         asoc = list_entry(sctp_sk(sk)->ep->asocs.next,
263                                           struct sctp_association, asocs);
264                 return asoc;
265         }
266
267         /* Otherwise this is a UDP-style socket. */
268         if (!id || (id == (sctp_assoc_t)-1))
269                 return NULL;
270
271         spin_lock_bh(&sctp_assocs_id_lock);
272         asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id);
273         spin_unlock_bh(&sctp_assocs_id_lock);
274
275         if (!asoc || (asoc->base.sk != sk) || asoc->base.dead)
276                 return NULL;
277
278         return asoc;
279 }
280
281 /* Look up the transport from an address and an assoc id. If both address and
282  * id are specified, the associations matching the address and the id should be
283  * the same.
284  */
285 static struct sctp_transport *sctp_addr_id2transport(struct sock *sk,
286                                               struct sockaddr_storage *addr,
287                                               sctp_assoc_t id)
288 {
289         struct sctp_association *addr_asoc = NULL, *id_asoc = NULL;
290         struct sctp_af *af = sctp_get_af_specific(addr->ss_family);
291         union sctp_addr *laddr = (union sctp_addr *)addr;
292         struct sctp_transport *transport;
293
294         if (!af || sctp_verify_addr(sk, laddr, af->sockaddr_len))
295                 return NULL;
296
297         addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
298                                                laddr,
299                                                &transport);
300
301         if (!addr_asoc)
302                 return NULL;
303
304         id_asoc = sctp_id2assoc(sk, id);
305         if (id_asoc && (id_asoc != addr_asoc))
306                 return NULL;
307
308         sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
309                                                 (union sctp_addr *)addr);
310
311         return transport;
312 }
313
314 /* API 3.1.2 bind() - UDP Style Syntax
315  * The syntax of bind() is,
316  *
317  *   ret = bind(int sd, struct sockaddr *addr, int addrlen);
318  *
319  *   sd      - the socket descriptor returned by socket().
320  *   addr    - the address structure (struct sockaddr_in or struct
321  *             sockaddr_in6 [RFC 2553]),
322  *   addr_len - the size of the address structure.
323  */
324 static int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len)
325 {
326         int retval = 0;
327
328         lock_sock(sk);
329
330         pr_debug("%s: sk:%p, addr:%p, addr_len:%d\n", __func__, sk,
331                  addr, addr_len);
332
333         /* Disallow binding twice. */
334         if (!sctp_sk(sk)->ep->base.bind_addr.port)
335                 retval = sctp_do_bind(sk, (union sctp_addr *)addr,
336                                       addr_len);
337         else
338                 retval = -EINVAL;
339
340         release_sock(sk);
341
342         return retval;
343 }
344
345 static long sctp_get_port_local(struct sock *, union sctp_addr *);
346
347 /* Verify this is a valid sockaddr. */
348 static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
349                                         union sctp_addr *addr, int len)
350 {
351         struct sctp_af *af;
352
353         /* Check minimum size.  */
354         if (len < sizeof (struct sockaddr))
355                 return NULL;
356
357         if (!opt->pf->af_supported(addr->sa.sa_family, opt))
358                 return NULL;
359
360         if (addr->sa.sa_family == AF_INET6) {
361                 if (len < SIN6_LEN_RFC2133)
362                         return NULL;
363                 /* V4 mapped address are really of AF_INET family */
364                 if (ipv6_addr_v4mapped(&addr->v6.sin6_addr) &&
365                     !opt->pf->af_supported(AF_INET, opt))
366                         return NULL;
367         }
368
369         /* If we get this far, af is valid. */
370         af = sctp_get_af_specific(addr->sa.sa_family);
371
372         if (len < af->sockaddr_len)
373                 return NULL;
374
375         return af;
376 }
377
378 /* Bind a local address either to an endpoint or to an association.  */
379 static int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
380 {
381         struct net *net = sock_net(sk);
382         struct sctp_sock *sp = sctp_sk(sk);
383         struct sctp_endpoint *ep = sp->ep;
384         struct sctp_bind_addr *bp = &ep->base.bind_addr;
385         struct sctp_af *af;
386         unsigned short snum;
387         int ret = 0;
388
389         /* Common sockaddr verification. */
390         af = sctp_sockaddr_af(sp, addr, len);
391         if (!af) {
392                 pr_debug("%s: sk:%p, newaddr:%p, len:%d EINVAL\n",
393                          __func__, sk, addr, len);
394                 return -EINVAL;
395         }
396
397         snum = ntohs(addr->v4.sin_port);
398
399         pr_debug("%s: sk:%p, new addr:%pISc, port:%d, new port:%d, len:%d\n",
400                  __func__, sk, &addr->sa, bp->port, snum, len);
401
402         /* PF specific bind() address verification. */
403         if (!sp->pf->bind_verify(sp, addr))
404                 return -EADDRNOTAVAIL;
405
406         /* We must either be unbound, or bind to the same port.
407          * It's OK to allow 0 ports if we are already bound.
408          * We'll just inhert an already bound port in this case
409          */
410         if (bp->port) {
411                 if (!snum)
412                         snum = bp->port;
413                 else if (snum != bp->port) {
414                         pr_debug("%s: new port %d doesn't match existing port "
415                                  "%d\n", __func__, snum, bp->port);
416                         return -EINVAL;
417                 }
418         }
419
420         if (snum && snum < inet_prot_sock(net) &&
421             !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
422                 return -EACCES;
423
424         /* See if the address matches any of the addresses we may have
425          * already bound before checking against other endpoints.
426          */
427         if (sctp_bind_addr_match(bp, addr, sp))
428                 return -EINVAL;
429
430         /* Make sure we are allowed to bind here.
431          * The function sctp_get_port_local() does duplicate address
432          * detection.
433          */
434         addr->v4.sin_port = htons(snum);
435         if ((ret = sctp_get_port_local(sk, addr))) {
436                 return -EADDRINUSE;
437         }
438
439         /* Refresh ephemeral port.  */
440         if (!bp->port)
441                 bp->port = inet_sk(sk)->inet_num;
442
443         /* Add the address to the bind address list.
444          * Use GFP_ATOMIC since BHs will be disabled.
445          */
446         ret = sctp_add_bind_addr(bp, addr, af->sockaddr_len,
447                                  SCTP_ADDR_SRC, GFP_ATOMIC);
448
449         /* Copy back into socket for getsockname() use. */
450         if (!ret) {
451                 inet_sk(sk)->inet_sport = htons(inet_sk(sk)->inet_num);
452                 sp->pf->to_sk_saddr(addr, sk);
453         }
454
455         return ret;
456 }
457
458  /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
459  *
460  * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
461  * at any one time.  If a sender, after sending an ASCONF chunk, decides
462  * it needs to transfer another ASCONF Chunk, it MUST wait until the
463  * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
464  * subsequent ASCONF. Note this restriction binds each side, so at any
465  * time two ASCONF may be in-transit on any given association (one sent
466  * from each endpoint).
467  */
468 static int sctp_send_asconf(struct sctp_association *asoc,
469                             struct sctp_chunk *chunk)
470 {
471         struct net      *net = sock_net(asoc->base.sk);
472         int             retval = 0;
473
474         /* If there is an outstanding ASCONF chunk, queue it for later
475          * transmission.
476          */
477         if (asoc->addip_last_asconf) {
478                 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
479                 goto out;
480         }
481
482         /* Hold the chunk until an ASCONF_ACK is received. */
483         sctp_chunk_hold(chunk);
484         retval = sctp_primitive_ASCONF(net, asoc, chunk);
485         if (retval)
486                 sctp_chunk_free(chunk);
487         else
488                 asoc->addip_last_asconf = chunk;
489
490 out:
491         return retval;
492 }
493
494 /* Add a list of addresses as bind addresses to local endpoint or
495  * association.
496  *
497  * Basically run through each address specified in the addrs/addrcnt
498  * array/length pair, determine if it is IPv6 or IPv4 and call
499  * sctp_do_bind() on it.
500  *
501  * If any of them fails, then the operation will be reversed and the
502  * ones that were added will be removed.
503  *
504  * Only sctp_setsockopt_bindx() is supposed to call this function.
505  */
506 static int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt)
507 {
508         int cnt;
509         int retval = 0;
510         void *addr_buf;
511         struct sockaddr *sa_addr;
512         struct sctp_af *af;
513
514         pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n", __func__, sk,
515                  addrs, addrcnt);
516
517         addr_buf = addrs;
518         for (cnt = 0; cnt < addrcnt; cnt++) {
519                 /* The list may contain either IPv4 or IPv6 address;
520                  * determine the address length for walking thru the list.
521                  */
522                 sa_addr = addr_buf;
523                 af = sctp_get_af_specific(sa_addr->sa_family);
524                 if (!af) {
525                         retval = -EINVAL;
526                         goto err_bindx_add;
527                 }
528
529                 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
530                                       af->sockaddr_len);
531
532                 addr_buf += af->sockaddr_len;
533
534 err_bindx_add:
535                 if (retval < 0) {
536                         /* Failed. Cleanup the ones that have been added */
537                         if (cnt > 0)
538                                 sctp_bindx_rem(sk, addrs, cnt);
539                         return retval;
540                 }
541         }
542
543         return retval;
544 }
545
546 /* Send an ASCONF chunk with Add IP address parameters to all the peers of the
547  * associations that are part of the endpoint indicating that a list of local
548  * addresses are added to the endpoint.
549  *
550  * If any of the addresses is already in the bind address list of the
551  * association, we do not send the chunk for that association.  But it will not
552  * affect other associations.
553  *
554  * Only sctp_setsockopt_bindx() is supposed to call this function.
555  */
556 static int sctp_send_asconf_add_ip(struct sock          *sk,
557                                    struct sockaddr      *addrs,
558                                    int                  addrcnt)
559 {
560         struct net *net = sock_net(sk);
561         struct sctp_sock                *sp;
562         struct sctp_endpoint            *ep;
563         struct sctp_association         *asoc;
564         struct sctp_bind_addr           *bp;
565         struct sctp_chunk               *chunk;
566         struct sctp_sockaddr_entry      *laddr;
567         union sctp_addr                 *addr;
568         union sctp_addr                 saveaddr;
569         void                            *addr_buf;
570         struct sctp_af                  *af;
571         struct list_head                *p;
572         int                             i;
573         int                             retval = 0;
574
575         if (!net->sctp.addip_enable)
576                 return retval;
577
578         sp = sctp_sk(sk);
579         ep = sp->ep;
580
581         pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
582                  __func__, sk, addrs, addrcnt);
583
584         list_for_each_entry(asoc, &ep->asocs, asocs) {
585                 if (!asoc->peer.asconf_capable)
586                         continue;
587
588                 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_ADD_IP)
589                         continue;
590
591                 if (!sctp_state(asoc, ESTABLISHED))
592                         continue;
593
594                 /* Check if any address in the packed array of addresses is
595                  * in the bind address list of the association. If so,
596                  * do not send the asconf chunk to its peer, but continue with
597                  * other associations.
598                  */
599                 addr_buf = addrs;
600                 for (i = 0; i < addrcnt; i++) {
601                         addr = addr_buf;
602                         af = sctp_get_af_specific(addr->v4.sin_family);
603                         if (!af) {
604                                 retval = -EINVAL;
605                                 goto out;
606                         }
607
608                         if (sctp_assoc_lookup_laddr(asoc, addr))
609                                 break;
610
611                         addr_buf += af->sockaddr_len;
612                 }
613                 if (i < addrcnt)
614                         continue;
615
616                 /* Use the first valid address in bind addr list of
617                  * association as Address Parameter of ASCONF CHUNK.
618                  */
619                 bp = &asoc->base.bind_addr;
620                 p = bp->address_list.next;
621                 laddr = list_entry(p, struct sctp_sockaddr_entry, list);
622                 chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs,
623                                                    addrcnt, SCTP_PARAM_ADD_IP);
624                 if (!chunk) {
625                         retval = -ENOMEM;
626                         goto out;
627                 }
628
629                 /* Add the new addresses to the bind address list with
630                  * use_as_src set to 0.
631                  */
632                 addr_buf = addrs;
633                 for (i = 0; i < addrcnt; i++) {
634                         addr = addr_buf;
635                         af = sctp_get_af_specific(addr->v4.sin_family);
636                         memcpy(&saveaddr, addr, af->sockaddr_len);
637                         retval = sctp_add_bind_addr(bp, &saveaddr,
638                                                     sizeof(saveaddr),
639                                                     SCTP_ADDR_NEW, GFP_ATOMIC);
640                         addr_buf += af->sockaddr_len;
641                 }
642                 if (asoc->src_out_of_asoc_ok) {
643                         struct sctp_transport *trans;
644
645                         list_for_each_entry(trans,
646                             &asoc->peer.transport_addr_list, transports) {
647                                 /* Clear the source and route cache */
648                                 sctp_transport_dst_release(trans);
649                                 trans->cwnd = min(4*asoc->pathmtu, max_t(__u32,
650                                     2*asoc->pathmtu, 4380));
651                                 trans->ssthresh = asoc->peer.i.a_rwnd;
652                                 trans->rto = asoc->rto_initial;
653                                 sctp_max_rto(asoc, trans);
654                                 trans->rtt = trans->srtt = trans->rttvar = 0;
655                                 sctp_transport_route(trans, NULL,
656                                     sctp_sk(asoc->base.sk));
657                         }
658                 }
659                 retval = sctp_send_asconf(asoc, chunk);
660         }
661
662 out:
663         return retval;
664 }
665
666 /* Remove a list of addresses from bind addresses list.  Do not remove the
667  * last address.
668  *
669  * Basically run through each address specified in the addrs/addrcnt
670  * array/length pair, determine if it is IPv6 or IPv4 and call
671  * sctp_del_bind() on it.
672  *
673  * If any of them fails, then the operation will be reversed and the
674  * ones that were removed will be added back.
675  *
676  * At least one address has to be left; if only one address is
677  * available, the operation will return -EBUSY.
678  *
679  * Only sctp_setsockopt_bindx() is supposed to call this function.
680  */
681 static int sctp_bindx_rem(struct sock *sk, struct sockaddr *addrs, int addrcnt)
682 {
683         struct sctp_sock *sp = sctp_sk(sk);
684         struct sctp_endpoint *ep = sp->ep;
685         int cnt;
686         struct sctp_bind_addr *bp = &ep->base.bind_addr;
687         int retval = 0;
688         void *addr_buf;
689         union sctp_addr *sa_addr;
690         struct sctp_af *af;
691
692         pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
693                  __func__, sk, addrs, addrcnt);
694
695         addr_buf = addrs;
696         for (cnt = 0; cnt < addrcnt; cnt++) {
697                 /* If the bind address list is empty or if there is only one
698                  * bind address, there is nothing more to be removed (we need
699                  * at least one address here).
700                  */
701                 if (list_empty(&bp->address_list) ||
702                     (sctp_list_single_entry(&bp->address_list))) {
703                         retval = -EBUSY;
704                         goto err_bindx_rem;
705                 }
706
707                 sa_addr = addr_buf;
708                 af = sctp_get_af_specific(sa_addr->sa.sa_family);
709                 if (!af) {
710                         retval = -EINVAL;
711                         goto err_bindx_rem;
712                 }
713
714                 if (!af->addr_valid(sa_addr, sp, NULL)) {
715                         retval = -EADDRNOTAVAIL;
716                         goto err_bindx_rem;
717                 }
718
719                 if (sa_addr->v4.sin_port &&
720                     sa_addr->v4.sin_port != htons(bp->port)) {
721                         retval = -EINVAL;
722                         goto err_bindx_rem;
723                 }
724
725                 if (!sa_addr->v4.sin_port)
726                         sa_addr->v4.sin_port = htons(bp->port);
727
728                 /* FIXME - There is probably a need to check if sk->sk_saddr and
729                  * sk->sk_rcv_addr are currently set to one of the addresses to
730                  * be removed. This is something which needs to be looked into
731                  * when we are fixing the outstanding issues with multi-homing
732                  * socket routing and failover schemes. Refer to comments in
733                  * sctp_do_bind(). -daisy
734                  */
735                 retval = sctp_del_bind_addr(bp, sa_addr);
736
737                 addr_buf += af->sockaddr_len;
738 err_bindx_rem:
739                 if (retval < 0) {
740                         /* Failed. Add the ones that has been removed back */
741                         if (cnt > 0)
742                                 sctp_bindx_add(sk, addrs, cnt);
743                         return retval;
744                 }
745         }
746
747         return retval;
748 }
749
750 /* Send an ASCONF chunk with Delete IP address parameters to all the peers of
751  * the associations that are part of the endpoint indicating that a list of
752  * local addresses are removed from the endpoint.
753  *
754  * If any of the addresses is already in the bind address list of the
755  * association, we do not send the chunk for that association.  But it will not
756  * affect other associations.
757  *
758  * Only sctp_setsockopt_bindx() is supposed to call this function.
759  */
760 static int sctp_send_asconf_del_ip(struct sock          *sk,
761                                    struct sockaddr      *addrs,
762                                    int                  addrcnt)
763 {
764         struct net *net = sock_net(sk);
765         struct sctp_sock        *sp;
766         struct sctp_endpoint    *ep;
767         struct sctp_association *asoc;
768         struct sctp_transport   *transport;
769         struct sctp_bind_addr   *bp;
770         struct sctp_chunk       *chunk;
771         union sctp_addr         *laddr;
772         void                    *addr_buf;
773         struct sctp_af          *af;
774         struct sctp_sockaddr_entry *saddr;
775         int                     i;
776         int                     retval = 0;
777         int                     stored = 0;
778
779         chunk = NULL;
780         if (!net->sctp.addip_enable)
781                 return retval;
782
783         sp = sctp_sk(sk);
784         ep = sp->ep;
785
786         pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
787                  __func__, sk, addrs, addrcnt);
788
789         list_for_each_entry(asoc, &ep->asocs, asocs) {
790
791                 if (!asoc->peer.asconf_capable)
792                         continue;
793
794                 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_DEL_IP)
795                         continue;
796
797                 if (!sctp_state(asoc, ESTABLISHED))
798                         continue;
799
800                 /* Check if any address in the packed array of addresses is
801                  * not present in the bind address list of the association.
802                  * If so, do not send the asconf chunk to its peer, but
803                  * continue with other associations.
804                  */
805                 addr_buf = addrs;
806                 for (i = 0; i < addrcnt; i++) {
807                         laddr = addr_buf;
808                         af = sctp_get_af_specific(laddr->v4.sin_family);
809                         if (!af) {
810                                 retval = -EINVAL;
811                                 goto out;
812                         }
813
814                         if (!sctp_assoc_lookup_laddr(asoc, laddr))
815                                 break;
816
817                         addr_buf += af->sockaddr_len;
818                 }
819                 if (i < addrcnt)
820                         continue;
821
822                 /* Find one address in the association's bind address list
823                  * that is not in the packed array of addresses. This is to
824                  * make sure that we do not delete all the addresses in the
825                  * association.
826                  */
827                 bp = &asoc->base.bind_addr;
828                 laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs,
829                                                addrcnt, sp);
830                 if ((laddr == NULL) && (addrcnt == 1)) {
831                         if (asoc->asconf_addr_del_pending)
832                                 continue;
833                         asoc->asconf_addr_del_pending =
834                             kzalloc(sizeof(union sctp_addr), GFP_ATOMIC);
835                         if (asoc->asconf_addr_del_pending == NULL) {
836                                 retval = -ENOMEM;
837                                 goto out;
838                         }
839                         asoc->asconf_addr_del_pending->sa.sa_family =
840                                     addrs->sa_family;
841                         asoc->asconf_addr_del_pending->v4.sin_port =
842                                     htons(bp->port);
843                         if (addrs->sa_family == AF_INET) {
844                                 struct sockaddr_in *sin;
845
846                                 sin = (struct sockaddr_in *)addrs;
847                                 asoc->asconf_addr_del_pending->v4.sin_addr.s_addr = sin->sin_addr.s_addr;
848                         } else if (addrs->sa_family == AF_INET6) {
849                                 struct sockaddr_in6 *sin6;
850
851                                 sin6 = (struct sockaddr_in6 *)addrs;
852                                 asoc->asconf_addr_del_pending->v6.sin6_addr = sin6->sin6_addr;
853                         }
854
855                         pr_debug("%s: keep the last address asoc:%p %pISc at %p\n",
856                                  __func__, asoc, &asoc->asconf_addr_del_pending->sa,
857                                  asoc->asconf_addr_del_pending);
858
859                         asoc->src_out_of_asoc_ok = 1;
860                         stored = 1;
861                         goto skip_mkasconf;
862                 }
863
864                 if (laddr == NULL)
865                         return -EINVAL;
866
867                 /* We do not need RCU protection throughout this loop
868                  * because this is done under a socket lock from the
869                  * setsockopt call.
870                  */
871                 chunk = sctp_make_asconf_update_ip(asoc, laddr, addrs, addrcnt,
872                                                    SCTP_PARAM_DEL_IP);
873                 if (!chunk) {
874                         retval = -ENOMEM;
875                         goto out;
876                 }
877
878 skip_mkasconf:
879                 /* Reset use_as_src flag for the addresses in the bind address
880                  * list that are to be deleted.
881                  */
882                 addr_buf = addrs;
883                 for (i = 0; i < addrcnt; i++) {
884                         laddr = addr_buf;
885                         af = sctp_get_af_specific(laddr->v4.sin_family);
886                         list_for_each_entry(saddr, &bp->address_list, list) {
887                                 if (sctp_cmp_addr_exact(&saddr->a, laddr))
888                                         saddr->state = SCTP_ADDR_DEL;
889                         }
890                         addr_buf += af->sockaddr_len;
891                 }
892
893                 /* Update the route and saddr entries for all the transports
894                  * as some of the addresses in the bind address list are
895                  * about to be deleted and cannot be used as source addresses.
896                  */
897                 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
898                                         transports) {
899                         sctp_transport_dst_release(transport);
900                         sctp_transport_route(transport, NULL,
901                                              sctp_sk(asoc->base.sk));
902                 }
903
904                 if (stored)
905                         /* We don't need to transmit ASCONF */
906                         continue;
907                 retval = sctp_send_asconf(asoc, chunk);
908         }
909 out:
910         return retval;
911 }
912
913 /* set addr events to assocs in the endpoint.  ep and addr_wq must be locked */
914 int sctp_asconf_mgmt(struct sctp_sock *sp, struct sctp_sockaddr_entry *addrw)
915 {
916         struct sock *sk = sctp_opt2sk(sp);
917         union sctp_addr *addr;
918         struct sctp_af *af;
919
920         /* It is safe to write port space in caller. */
921         addr = &addrw->a;
922         addr->v4.sin_port = htons(sp->ep->base.bind_addr.port);
923         af = sctp_get_af_specific(addr->sa.sa_family);
924         if (!af)
925                 return -EINVAL;
926         if (sctp_verify_addr(sk, addr, af->sockaddr_len))
927                 return -EINVAL;
928
929         if (addrw->state == SCTP_ADDR_NEW)
930                 return sctp_send_asconf_add_ip(sk, (struct sockaddr *)addr, 1);
931         else
932                 return sctp_send_asconf_del_ip(sk, (struct sockaddr *)addr, 1);
933 }
934
935 /* Helper for tunneling sctp_bindx() requests through sctp_setsockopt()
936  *
937  * API 8.1
938  * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt,
939  *                int flags);
940  *
941  * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
942  * If the sd is an IPv6 socket, the addresses passed can either be IPv4
943  * or IPv6 addresses.
944  *
945  * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
946  * Section 3.1.2 for this usage.
947  *
948  * addrs is a pointer to an array of one or more socket addresses. Each
949  * address is contained in its appropriate structure (i.e. struct
950  * sockaddr_in or struct sockaddr_in6) the family of the address type
951  * must be used to distinguish the address length (note that this
952  * representation is termed a "packed array" of addresses). The caller
953  * specifies the number of addresses in the array with addrcnt.
954  *
955  * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns
956  * -1, and sets errno to the appropriate error code.
957  *
958  * For SCTP, the port given in each socket address must be the same, or
959  * sctp_bindx() will fail, setting errno to EINVAL.
960  *
961  * The flags parameter is formed from the bitwise OR of zero or more of
962  * the following currently defined flags:
963  *
964  * SCTP_BINDX_ADD_ADDR
965  *
966  * SCTP_BINDX_REM_ADDR
967  *
968  * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the
969  * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given
970  * addresses from the association. The two flags are mutually exclusive;
971  * if both are given, sctp_bindx() will fail with EINVAL. A caller may
972  * not remove all addresses from an association; sctp_bindx() will
973  * reject such an attempt with EINVAL.
974  *
975  * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate
976  * additional addresses with an endpoint after calling bind().  Or use
977  * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening
978  * socket is associated with so that no new association accepted will be
979  * associated with those addresses. If the endpoint supports dynamic
980  * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a
981  * endpoint to send the appropriate message to the peer to change the
982  * peers address lists.
983  *
984  * Adding and removing addresses from a connected association is
985  * optional functionality. Implementations that do not support this
986  * functionality should return EOPNOTSUPP.
987  *
988  * Basically do nothing but copying the addresses from user to kernel
989  * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk.
990  * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
991  * from userspace.
992  *
993  * On exit there is no need to do sockfd_put(), sys_setsockopt() does
994  * it.
995  *
996  * sk        The sk of the socket
997  * addrs     The pointer to the addresses in user land
998  * addrssize Size of the addrs buffer
999  * op        Operation to perform (add or remove, see the flags of
1000  *           sctp_bindx)
1001  *
1002  * Returns 0 if ok, <0 errno code on error.
1003  */
1004 static int sctp_setsockopt_bindx(struct sock *sk,
1005                                  struct sockaddr __user *addrs,
1006                                  int addrs_size, int op)
1007 {
1008         struct sockaddr *kaddrs;
1009         int err;
1010         int addrcnt = 0;
1011         int walk_size = 0;
1012         struct sockaddr *sa_addr;
1013         void *addr_buf;
1014         struct sctp_af *af;
1015
1016         pr_debug("%s: sk:%p addrs:%p addrs_size:%d opt:%d\n",
1017                  __func__, sk, addrs, addrs_size, op);
1018
1019         if (unlikely(addrs_size <= 0))
1020                 return -EINVAL;
1021
1022         kaddrs = vmemdup_user(addrs, addrs_size);
1023         if (unlikely(IS_ERR(kaddrs)))
1024                 return PTR_ERR(kaddrs);
1025
1026         /* Walk through the addrs buffer and count the number of addresses. */
1027         addr_buf = kaddrs;
1028         while (walk_size < addrs_size) {
1029                 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1030                         kvfree(kaddrs);
1031                         return -EINVAL;
1032                 }
1033
1034                 sa_addr = addr_buf;
1035                 af = sctp_get_af_specific(sa_addr->sa_family);
1036
1037                 /* If the address family is not supported or if this address
1038                  * causes the address buffer to overflow return EINVAL.
1039                  */
1040                 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1041                         kvfree(kaddrs);
1042                         return -EINVAL;
1043                 }
1044                 addrcnt++;
1045                 addr_buf += af->sockaddr_len;
1046                 walk_size += af->sockaddr_len;
1047         }
1048
1049         /* Do the work. */
1050         switch (op) {
1051         case SCTP_BINDX_ADD_ADDR:
1052                 /* Allow security module to validate bindx addresses. */
1053                 err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_BINDX_ADD,
1054                                                  (struct sockaddr *)kaddrs,
1055                                                  addrs_size);
1056                 if (err)
1057                         goto out;
1058                 err = sctp_bindx_add(sk, kaddrs, addrcnt);
1059                 if (err)
1060                         goto out;
1061                 err = sctp_send_asconf_add_ip(sk, kaddrs, addrcnt);
1062                 break;
1063
1064         case SCTP_BINDX_REM_ADDR:
1065                 err = sctp_bindx_rem(sk, kaddrs, addrcnt);
1066                 if (err)
1067                         goto out;
1068                 err = sctp_send_asconf_del_ip(sk, kaddrs, addrcnt);
1069                 break;
1070
1071         default:
1072                 err = -EINVAL;
1073                 break;
1074         }
1075
1076 out:
1077         kvfree(kaddrs);
1078
1079         return err;
1080 }
1081
1082 /* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size)
1083  *
1084  * Common routine for handling connect() and sctp_connectx().
1085  * Connect will come in with just a single address.
1086  */
1087 static int __sctp_connect(struct sock *sk,
1088                           struct sockaddr *kaddrs,
1089                           int addrs_size,
1090                           sctp_assoc_t *assoc_id)
1091 {
1092         struct net *net = sock_net(sk);
1093         struct sctp_sock *sp;
1094         struct sctp_endpoint *ep;
1095         struct sctp_association *asoc = NULL;
1096         struct sctp_association *asoc2;
1097         struct sctp_transport *transport;
1098         union sctp_addr to;
1099         enum sctp_scope scope;
1100         long timeo;
1101         int err = 0;
1102         int addrcnt = 0;
1103         int walk_size = 0;
1104         union sctp_addr *sa_addr = NULL;
1105         void *addr_buf;
1106         unsigned short port;
1107         unsigned int f_flags = 0;
1108
1109         sp = sctp_sk(sk);
1110         ep = sp->ep;
1111
1112         /* connect() cannot be done on a socket that is already in ESTABLISHED
1113          * state - UDP-style peeled off socket or a TCP-style socket that
1114          * is already connected.
1115          * It cannot be done even on a TCP-style listening socket.
1116          */
1117         if (sctp_sstate(sk, ESTABLISHED) || sctp_sstate(sk, CLOSING) ||
1118             (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))) {
1119                 err = -EISCONN;
1120                 goto out_free;
1121         }
1122
1123         /* Walk through the addrs buffer and count the number of addresses. */
1124         addr_buf = kaddrs;
1125         while (walk_size < addrs_size) {
1126                 struct sctp_af *af;
1127
1128                 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1129                         err = -EINVAL;
1130                         goto out_free;
1131                 }
1132
1133                 sa_addr = addr_buf;
1134                 af = sctp_get_af_specific(sa_addr->sa.sa_family);
1135
1136                 /* If the address family is not supported or if this address
1137                  * causes the address buffer to overflow return EINVAL.
1138                  */
1139                 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1140                         err = -EINVAL;
1141                         goto out_free;
1142                 }
1143
1144                 port = ntohs(sa_addr->v4.sin_port);
1145
1146                 /* Save current address so we can work with it */
1147                 memcpy(&to, sa_addr, af->sockaddr_len);
1148
1149                 err = sctp_verify_addr(sk, &to, af->sockaddr_len);
1150                 if (err)
1151                         goto out_free;
1152
1153                 /* Make sure the destination port is correctly set
1154                  * in all addresses.
1155                  */
1156                 if (asoc && asoc->peer.port && asoc->peer.port != port) {
1157                         err = -EINVAL;
1158                         goto out_free;
1159                 }
1160
1161                 /* Check if there already is a matching association on the
1162                  * endpoint (other than the one created here).
1163                  */
1164                 asoc2 = sctp_endpoint_lookup_assoc(ep, &to, &transport);
1165                 if (asoc2 && asoc2 != asoc) {
1166                         if (asoc2->state >= SCTP_STATE_ESTABLISHED)
1167                                 err = -EISCONN;
1168                         else
1169                                 err = -EALREADY;
1170                         goto out_free;
1171                 }
1172
1173                 /* If we could not find a matching association on the endpoint,
1174                  * make sure that there is no peeled-off association matching
1175                  * the peer address even on another socket.
1176                  */
1177                 if (sctp_endpoint_is_peeled_off(ep, &to)) {
1178                         err = -EADDRNOTAVAIL;
1179                         goto out_free;
1180                 }
1181
1182                 if (!asoc) {
1183                         /* If a bind() or sctp_bindx() is not called prior to
1184                          * an sctp_connectx() call, the system picks an
1185                          * ephemeral port and will choose an address set
1186                          * equivalent to binding with a wildcard address.
1187                          */
1188                         if (!ep->base.bind_addr.port) {
1189                                 if (sctp_autobind(sk)) {
1190                                         err = -EAGAIN;
1191                                         goto out_free;
1192                                 }
1193                         } else {
1194                                 /*
1195                                  * If an unprivileged user inherits a 1-many
1196                                  * style socket with open associations on a
1197                                  * privileged port, it MAY be permitted to
1198                                  * accept new associations, but it SHOULD NOT
1199                                  * be permitted to open new associations.
1200                                  */
1201                                 if (ep->base.bind_addr.port <
1202                                     inet_prot_sock(net) &&
1203                                     !ns_capable(net->user_ns,
1204                                     CAP_NET_BIND_SERVICE)) {
1205                                         err = -EACCES;
1206                                         goto out_free;
1207                                 }
1208                         }
1209
1210                         scope = sctp_scope(&to);
1211                         asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1212                         if (!asoc) {
1213                                 err = -ENOMEM;
1214                                 goto out_free;
1215                         }
1216
1217                         err = sctp_assoc_set_bind_addr_from_ep(asoc, scope,
1218                                                               GFP_KERNEL);
1219                         if (err < 0) {
1220                                 goto out_free;
1221                         }
1222
1223                 }
1224
1225                 /* Prime the peer's transport structures.  */
1226                 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL,
1227                                                 SCTP_UNKNOWN);
1228                 if (!transport) {
1229                         err = -ENOMEM;
1230                         goto out_free;
1231                 }
1232
1233                 addrcnt++;
1234                 addr_buf += af->sockaddr_len;
1235                 walk_size += af->sockaddr_len;
1236         }
1237
1238         /* In case the user of sctp_connectx() wants an association
1239          * id back, assign one now.
1240          */
1241         if (assoc_id) {
1242                 err = sctp_assoc_set_id(asoc, GFP_KERNEL);
1243                 if (err < 0)
1244                         goto out_free;
1245         }
1246
1247         err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
1248         if (err < 0) {
1249                 goto out_free;
1250         }
1251
1252         /* Initialize sk's dport and daddr for getpeername() */
1253         inet_sk(sk)->inet_dport = htons(asoc->peer.port);
1254         sp->pf->to_sk_daddr(sa_addr, sk);
1255         sk->sk_err = 0;
1256
1257         /* in-kernel sockets don't generally have a file allocated to them
1258          * if all they do is call sock_create_kern().
1259          */
1260         if (sk->sk_socket->file)
1261                 f_flags = sk->sk_socket->file->f_flags;
1262
1263         timeo = sock_sndtimeo(sk, f_flags & O_NONBLOCK);
1264
1265         if (assoc_id)
1266                 *assoc_id = asoc->assoc_id;
1267
1268         err = sctp_wait_for_connect(asoc, &timeo);
1269         /* Note: the asoc may be freed after the return of
1270          * sctp_wait_for_connect.
1271          */
1272
1273         /* Don't free association on exit. */
1274         asoc = NULL;
1275
1276 out_free:
1277         pr_debug("%s: took out_free path with asoc:%p kaddrs:%p err:%d\n",
1278                  __func__, asoc, kaddrs, err);
1279
1280         if (asoc) {
1281                 /* sctp_primitive_ASSOCIATE may have added this association
1282                  * To the hash table, try to unhash it, just in case, its a noop
1283                  * if it wasn't hashed so we're safe
1284                  */
1285                 sctp_association_free(asoc);
1286         }
1287         return err;
1288 }
1289
1290 /* Helper for tunneling sctp_connectx() requests through sctp_setsockopt()
1291  *
1292  * API 8.9
1293  * int sctp_connectx(int sd, struct sockaddr *addrs, int addrcnt,
1294  *                      sctp_assoc_t *asoc);
1295  *
1296  * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
1297  * If the sd is an IPv6 socket, the addresses passed can either be IPv4
1298  * or IPv6 addresses.
1299  *
1300  * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
1301  * Section 3.1.2 for this usage.
1302  *
1303  * addrs is a pointer to an array of one or more socket addresses. Each
1304  * address is contained in its appropriate structure (i.e. struct
1305  * sockaddr_in or struct sockaddr_in6) the family of the address type
1306  * must be used to distengish the address length (note that this
1307  * representation is termed a "packed array" of addresses). The caller
1308  * specifies the number of addresses in the array with addrcnt.
1309  *
1310  * On success, sctp_connectx() returns 0. It also sets the assoc_id to
1311  * the association id of the new association.  On failure, sctp_connectx()
1312  * returns -1, and sets errno to the appropriate error code.  The assoc_id
1313  * is not touched by the kernel.
1314  *
1315  * For SCTP, the port given in each socket address must be the same, or
1316  * sctp_connectx() will fail, setting errno to EINVAL.
1317  *
1318  * An application can use sctp_connectx to initiate an association with
1319  * an endpoint that is multi-homed.  Much like sctp_bindx() this call
1320  * allows a caller to specify multiple addresses at which a peer can be
1321  * reached.  The way the SCTP stack uses the list of addresses to set up
1322  * the association is implementation dependent.  This function only
1323  * specifies that the stack will try to make use of all the addresses in
1324  * the list when needed.
1325  *
1326  * Note that the list of addresses passed in is only used for setting up
1327  * the association.  It does not necessarily equal the set of addresses
1328  * the peer uses for the resulting association.  If the caller wants to
1329  * find out the set of peer addresses, it must use sctp_getpaddrs() to
1330  * retrieve them after the association has been set up.
1331  *
1332  * Basically do nothing but copying the addresses from user to kernel
1333  * land and invoking either sctp_connectx(). This is used for tunneling
1334  * the sctp_connectx() request through sctp_setsockopt() from userspace.
1335  *
1336  * On exit there is no need to do sockfd_put(), sys_setsockopt() does
1337  * it.
1338  *
1339  * sk        The sk of the socket
1340  * addrs     The pointer to the addresses in user land
1341  * addrssize Size of the addrs buffer
1342  *
1343  * Returns >=0 if ok, <0 errno code on error.
1344  */
1345 static int __sctp_setsockopt_connectx(struct sock *sk,
1346                                       struct sockaddr __user *addrs,
1347                                       int addrs_size,
1348                                       sctp_assoc_t *assoc_id)
1349 {
1350         struct sockaddr *kaddrs;
1351         int err = 0;
1352
1353         pr_debug("%s: sk:%p addrs:%p addrs_size:%d\n",
1354                  __func__, sk, addrs, addrs_size);
1355
1356         if (unlikely(addrs_size <= 0))
1357                 return -EINVAL;
1358
1359         kaddrs = vmemdup_user(addrs, addrs_size);
1360         if (unlikely(IS_ERR(kaddrs)))
1361                 return PTR_ERR(kaddrs);
1362
1363         /* Allow security module to validate connectx addresses. */
1364         err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_CONNECTX,
1365                                          (struct sockaddr *)kaddrs,
1366                                           addrs_size);
1367         if (err)
1368                 goto out_free;
1369
1370         err = __sctp_connect(sk, kaddrs, addrs_size, assoc_id);
1371
1372 out_free:
1373         kvfree(kaddrs);
1374
1375         return err;
1376 }
1377
1378 /*
1379  * This is an older interface.  It's kept for backward compatibility
1380  * to the option that doesn't provide association id.
1381  */
1382 static int sctp_setsockopt_connectx_old(struct sock *sk,
1383                                         struct sockaddr __user *addrs,
1384                                         int addrs_size)
1385 {
1386         return __sctp_setsockopt_connectx(sk, addrs, addrs_size, NULL);
1387 }
1388
1389 /*
1390  * New interface for the API.  The since the API is done with a socket
1391  * option, to make it simple we feed back the association id is as a return
1392  * indication to the call.  Error is always negative and association id is
1393  * always positive.
1394  */
1395 static int sctp_setsockopt_connectx(struct sock *sk,
1396                                     struct sockaddr __user *addrs,
1397                                     int addrs_size)
1398 {
1399         sctp_assoc_t assoc_id = 0;
1400         int err = 0;
1401
1402         err = __sctp_setsockopt_connectx(sk, addrs, addrs_size, &assoc_id);
1403
1404         if (err)
1405                 return err;
1406         else
1407                 return assoc_id;
1408 }
1409
1410 /*
1411  * New (hopefully final) interface for the API.
1412  * We use the sctp_getaddrs_old structure so that use-space library
1413  * can avoid any unnecessary allocations. The only different part
1414  * is that we store the actual length of the address buffer into the
1415  * addrs_num structure member. That way we can re-use the existing
1416  * code.
1417  */
1418 #ifdef CONFIG_COMPAT
1419 struct compat_sctp_getaddrs_old {
1420         sctp_assoc_t    assoc_id;
1421         s32             addr_num;
1422         compat_uptr_t   addrs;          /* struct sockaddr * */
1423 };
1424 #endif
1425
1426 static int sctp_getsockopt_connectx3(struct sock *sk, int len,
1427                                      char __user *optval,
1428                                      int __user *optlen)
1429 {
1430         struct sctp_getaddrs_old param;
1431         sctp_assoc_t assoc_id = 0;
1432         int err = 0;
1433
1434 #ifdef CONFIG_COMPAT
1435         if (in_compat_syscall()) {
1436                 struct compat_sctp_getaddrs_old param32;
1437
1438                 if (len < sizeof(param32))
1439                         return -EINVAL;
1440                 if (copy_from_user(&param32, optval, sizeof(param32)))
1441                         return -EFAULT;
1442
1443                 param.assoc_id = param32.assoc_id;
1444                 param.addr_num = param32.addr_num;
1445                 param.addrs = compat_ptr(param32.addrs);
1446         } else
1447 #endif
1448         {
1449                 if (len < sizeof(param))
1450                         return -EINVAL;
1451                 if (copy_from_user(&param, optval, sizeof(param)))
1452                         return -EFAULT;
1453         }
1454
1455         err = __sctp_setsockopt_connectx(sk, (struct sockaddr __user *)
1456                                          param.addrs, param.addr_num,
1457                                          &assoc_id);
1458         if (err == 0 || err == -EINPROGRESS) {
1459                 if (copy_to_user(optval, &assoc_id, sizeof(assoc_id)))
1460                         return -EFAULT;
1461                 if (put_user(sizeof(assoc_id), optlen))
1462                         return -EFAULT;
1463         }
1464
1465         return err;
1466 }
1467
1468 /* API 3.1.4 close() - UDP Style Syntax
1469  * Applications use close() to perform graceful shutdown (as described in
1470  * Section 10.1 of [SCTP]) on ALL the associations currently represented
1471  * by a UDP-style socket.
1472  *
1473  * The syntax is
1474  *
1475  *   ret = close(int sd);
1476  *
1477  *   sd      - the socket descriptor of the associations to be closed.
1478  *
1479  * To gracefully shutdown a specific association represented by the
1480  * UDP-style socket, an application should use the sendmsg() call,
1481  * passing no user data, but including the appropriate flag in the
1482  * ancillary data (see Section xxxx).
1483  *
1484  * If sd in the close() call is a branched-off socket representing only
1485  * one association, the shutdown is performed on that association only.
1486  *
1487  * 4.1.6 close() - TCP Style Syntax
1488  *
1489  * Applications use close() to gracefully close down an association.
1490  *
1491  * The syntax is:
1492  *
1493  *    int close(int sd);
1494  *
1495  *      sd      - the socket descriptor of the association to be closed.
1496  *
1497  * After an application calls close() on a socket descriptor, no further
1498  * socket operations will succeed on that descriptor.
1499  *
1500  * API 7.1.4 SO_LINGER
1501  *
1502  * An application using the TCP-style socket can use this option to
1503  * perform the SCTP ABORT primitive.  The linger option structure is:
1504  *
1505  *  struct  linger {
1506  *     int     l_onoff;                // option on/off
1507  *     int     l_linger;               // linger time
1508  * };
1509  *
1510  * To enable the option, set l_onoff to 1.  If the l_linger value is set
1511  * to 0, calling close() is the same as the ABORT primitive.  If the
1512  * value is set to a negative value, the setsockopt() call will return
1513  * an error.  If the value is set to a positive value linger_time, the
1514  * close() can be blocked for at most linger_time ms.  If the graceful
1515  * shutdown phase does not finish during this period, close() will
1516  * return but the graceful shutdown phase continues in the system.
1517  */
1518 static void sctp_close(struct sock *sk, long timeout)
1519 {
1520         struct net *net = sock_net(sk);
1521         struct sctp_endpoint *ep;
1522         struct sctp_association *asoc;
1523         struct list_head *pos, *temp;
1524         unsigned int data_was_unread;
1525
1526         pr_debug("%s: sk:%p, timeout:%ld\n", __func__, sk, timeout);
1527
1528         lock_sock_nested(sk, SINGLE_DEPTH_NESTING);
1529         sk->sk_shutdown = SHUTDOWN_MASK;
1530         inet_sk_set_state(sk, SCTP_SS_CLOSING);
1531
1532         ep = sctp_sk(sk)->ep;
1533
1534         /* Clean up any skbs sitting on the receive queue.  */
1535         data_was_unread = sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1536         data_was_unread += sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1537
1538         /* Walk all associations on an endpoint.  */
1539         list_for_each_safe(pos, temp, &ep->asocs) {
1540                 asoc = list_entry(pos, struct sctp_association, asocs);
1541
1542                 if (sctp_style(sk, TCP)) {
1543                         /* A closed association can still be in the list if
1544                          * it belongs to a TCP-style listening socket that is
1545                          * not yet accepted. If so, free it. If not, send an
1546                          * ABORT or SHUTDOWN based on the linger options.
1547                          */
1548                         if (sctp_state(asoc, CLOSED)) {
1549                                 sctp_association_free(asoc);
1550                                 continue;
1551                         }
1552                 }
1553
1554                 if (data_was_unread || !skb_queue_empty(&asoc->ulpq.lobby) ||
1555                     !skb_queue_empty(&asoc->ulpq.reasm) ||
1556                     !skb_queue_empty(&asoc->ulpq.reasm_uo) ||
1557                     (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) {
1558                         struct sctp_chunk *chunk;
1559
1560                         chunk = sctp_make_abort_user(asoc, NULL, 0);
1561                         sctp_primitive_ABORT(net, asoc, chunk);
1562                 } else
1563                         sctp_primitive_SHUTDOWN(net, asoc, NULL);
1564         }
1565
1566         /* On a TCP-style socket, block for at most linger_time if set. */
1567         if (sctp_style(sk, TCP) && timeout)
1568                 sctp_wait_for_close(sk, timeout);
1569
1570         /* This will run the backlog queue.  */
1571         release_sock(sk);
1572
1573         /* Supposedly, no process has access to the socket, but
1574          * the net layers still may.
1575          * Also, sctp_destroy_sock() needs to be called with addr_wq_lock
1576          * held and that should be grabbed before socket lock.
1577          */
1578         spin_lock_bh(&net->sctp.addr_wq_lock);
1579         bh_lock_sock_nested(sk);
1580
1581         /* Hold the sock, since sk_common_release() will put sock_put()
1582          * and we have just a little more cleanup.
1583          */
1584         sock_hold(sk);
1585         sk_common_release(sk);
1586
1587         bh_unlock_sock(sk);
1588         spin_unlock_bh(&net->sctp.addr_wq_lock);
1589
1590         sock_put(sk);
1591
1592         SCTP_DBG_OBJCNT_DEC(sock);
1593 }
1594
1595 /* Handle EPIPE error. */
1596 static int sctp_error(struct sock *sk, int flags, int err)
1597 {
1598         if (err == -EPIPE)
1599                 err = sock_error(sk) ? : -EPIPE;
1600         if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1601                 send_sig(SIGPIPE, current, 0);
1602         return err;
1603 }
1604
1605 /* API 3.1.3 sendmsg() - UDP Style Syntax
1606  *
1607  * An application uses sendmsg() and recvmsg() calls to transmit data to
1608  * and receive data from its peer.
1609  *
1610  *  ssize_t sendmsg(int socket, const struct msghdr *message,
1611  *                  int flags);
1612  *
1613  *  socket  - the socket descriptor of the endpoint.
1614  *  message - pointer to the msghdr structure which contains a single
1615  *            user message and possibly some ancillary data.
1616  *
1617  *            See Section 5 for complete description of the data
1618  *            structures.
1619  *
1620  *  flags   - flags sent or received with the user message, see Section
1621  *            5 for complete description of the flags.
1622  *
1623  * Note:  This function could use a rewrite especially when explicit
1624  * connect support comes in.
1625  */
1626 /* BUG:  We do not implement the equivalent of sk_stream_wait_memory(). */
1627
1628 static int sctp_msghdr_parse(const struct msghdr *msg,
1629                              struct sctp_cmsgs *cmsgs);
1630
1631 static int sctp_sendmsg_parse(struct sock *sk, struct sctp_cmsgs *cmsgs,
1632                               struct sctp_sndrcvinfo *srinfo,
1633                               const struct msghdr *msg, size_t msg_len)
1634 {
1635         __u16 sflags;
1636         int err;
1637
1638         if (sctp_sstate(sk, LISTENING) && sctp_style(sk, TCP))
1639                 return -EPIPE;
1640
1641         if (msg_len > sk->sk_sndbuf)
1642                 return -EMSGSIZE;
1643
1644         memset(cmsgs, 0, sizeof(*cmsgs));
1645         err = sctp_msghdr_parse(msg, cmsgs);
1646         if (err) {
1647                 pr_debug("%s: msghdr parse err:%x\n", __func__, err);
1648                 return err;
1649         }
1650
1651         memset(srinfo, 0, sizeof(*srinfo));
1652         if (cmsgs->srinfo) {
1653                 srinfo->sinfo_stream = cmsgs->srinfo->sinfo_stream;
1654                 srinfo->sinfo_flags = cmsgs->srinfo->sinfo_flags;
1655                 srinfo->sinfo_ppid = cmsgs->srinfo->sinfo_ppid;
1656                 srinfo->sinfo_context = cmsgs->srinfo->sinfo_context;
1657                 srinfo->sinfo_assoc_id = cmsgs->srinfo->sinfo_assoc_id;
1658                 srinfo->sinfo_timetolive = cmsgs->srinfo->sinfo_timetolive;
1659         }
1660
1661         if (cmsgs->sinfo) {
1662                 srinfo->sinfo_stream = cmsgs->sinfo->snd_sid;
1663                 srinfo->sinfo_flags = cmsgs->sinfo->snd_flags;
1664                 srinfo->sinfo_ppid = cmsgs->sinfo->snd_ppid;
1665                 srinfo->sinfo_context = cmsgs->sinfo->snd_context;
1666                 srinfo->sinfo_assoc_id = cmsgs->sinfo->snd_assoc_id;
1667         }
1668
1669         if (cmsgs->prinfo) {
1670                 srinfo->sinfo_timetolive = cmsgs->prinfo->pr_value;
1671                 SCTP_PR_SET_POLICY(srinfo->sinfo_flags,
1672                                    cmsgs->prinfo->pr_policy);
1673         }
1674
1675         sflags = srinfo->sinfo_flags;
1676         if (!sflags && msg_len)
1677                 return 0;
1678
1679         if (sctp_style(sk, TCP) && (sflags & (SCTP_EOF | SCTP_ABORT)))
1680                 return -EINVAL;
1681
1682         if (((sflags & SCTP_EOF) && msg_len > 0) ||
1683             (!(sflags & (SCTP_EOF | SCTP_ABORT)) && msg_len == 0))
1684                 return -EINVAL;
1685
1686         if ((sflags & SCTP_ADDR_OVER) && !msg->msg_name)
1687                 return -EINVAL;
1688
1689         return 0;
1690 }
1691
1692 static int sctp_sendmsg_new_asoc(struct sock *sk, __u16 sflags,
1693                                  struct sctp_cmsgs *cmsgs,
1694                                  union sctp_addr *daddr,
1695                                  struct sctp_transport **tp)
1696 {
1697         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
1698         struct net *net = sock_net(sk);
1699         struct sctp_association *asoc;
1700         enum sctp_scope scope;
1701         struct cmsghdr *cmsg;
1702         struct sctp_af *af;
1703         int err;
1704
1705         *tp = NULL;
1706
1707         if (sflags & (SCTP_EOF | SCTP_ABORT))
1708                 return -EINVAL;
1709
1710         if (sctp_style(sk, TCP) && (sctp_sstate(sk, ESTABLISHED) ||
1711                                     sctp_sstate(sk, CLOSING)))
1712                 return -EADDRNOTAVAIL;
1713
1714         if (sctp_endpoint_is_peeled_off(ep, daddr))
1715                 return -EADDRNOTAVAIL;
1716
1717         if (!ep->base.bind_addr.port) {
1718                 if (sctp_autobind(sk))
1719                         return -EAGAIN;
1720         } else {
1721                 if (ep->base.bind_addr.port < inet_prot_sock(net) &&
1722                     !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
1723                         return -EACCES;
1724         }
1725
1726         scope = sctp_scope(daddr);
1727
1728         /* Label connection socket for first association 1-to-many
1729          * style for client sequence socket()->sendmsg(). This
1730          * needs to be done before sctp_assoc_add_peer() as that will
1731          * set up the initial packet that needs to account for any
1732          * security ip options (CIPSO/CALIPSO) added to the packet.
1733          */
1734         af = sctp_get_af_specific(daddr->sa.sa_family);
1735         if (!af)
1736                 return -EINVAL;
1737         err = security_sctp_bind_connect(sk, SCTP_SENDMSG_CONNECT,
1738                                          (struct sockaddr *)daddr,
1739                                          af->sockaddr_len);
1740         if (err < 0)
1741                 return err;
1742
1743         asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1744         if (!asoc)
1745                 return -ENOMEM;
1746
1747         if (sctp_assoc_set_bind_addr_from_ep(asoc, scope, GFP_KERNEL) < 0) {
1748                 err = -ENOMEM;
1749                 goto free;
1750         }
1751
1752         if (cmsgs->init) {
1753                 struct sctp_initmsg *init = cmsgs->init;
1754
1755                 if (init->sinit_num_ostreams) {
1756                         __u16 outcnt = init->sinit_num_ostreams;
1757
1758                         asoc->c.sinit_num_ostreams = outcnt;
1759                         /* outcnt has been changed, need to re-init stream */
1760                         err = sctp_stream_init(&asoc->stream, outcnt, 0,
1761                                                GFP_KERNEL);
1762                         if (err)
1763                                 goto free;
1764                 }
1765
1766                 if (init->sinit_max_instreams)
1767                         asoc->c.sinit_max_instreams = init->sinit_max_instreams;
1768
1769                 if (init->sinit_max_attempts)
1770                         asoc->max_init_attempts = init->sinit_max_attempts;
1771
1772                 if (init->sinit_max_init_timeo)
1773                         asoc->max_init_timeo =
1774                                 msecs_to_jiffies(init->sinit_max_init_timeo);
1775         }
1776
1777         *tp = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL, SCTP_UNKNOWN);
1778         if (!*tp) {
1779                 err = -ENOMEM;
1780                 goto free;
1781         }
1782
1783         if (!cmsgs->addrs_msg)
1784                 return 0;
1785
1786         /* sendv addr list parse */
1787         for_each_cmsghdr(cmsg, cmsgs->addrs_msg) {
1788                 struct sctp_transport *transport;
1789                 struct sctp_association *old;
1790                 union sctp_addr _daddr;
1791                 int dlen;
1792
1793                 if (cmsg->cmsg_level != IPPROTO_SCTP ||
1794                     (cmsg->cmsg_type != SCTP_DSTADDRV4 &&
1795                      cmsg->cmsg_type != SCTP_DSTADDRV6))
1796                         continue;
1797
1798                 daddr = &_daddr;
1799                 memset(daddr, 0, sizeof(*daddr));
1800                 dlen = cmsg->cmsg_len - sizeof(struct cmsghdr);
1801                 if (cmsg->cmsg_type == SCTP_DSTADDRV4) {
1802                         if (dlen < sizeof(struct in_addr)) {
1803                                 err = -EINVAL;
1804                                 goto free;
1805                         }
1806
1807                         dlen = sizeof(struct in_addr);
1808                         daddr->v4.sin_family = AF_INET;
1809                         daddr->v4.sin_port = htons(asoc->peer.port);
1810                         memcpy(&daddr->v4.sin_addr, CMSG_DATA(cmsg), dlen);
1811                 } else {
1812                         if (dlen < sizeof(struct in6_addr)) {
1813                                 err = -EINVAL;
1814                                 goto free;
1815                         }
1816
1817                         dlen = sizeof(struct in6_addr);
1818                         daddr->v6.sin6_family = AF_INET6;
1819                         daddr->v6.sin6_port = htons(asoc->peer.port);
1820                         memcpy(&daddr->v6.sin6_addr, CMSG_DATA(cmsg), dlen);
1821                 }
1822                 err = sctp_verify_addr(sk, daddr, sizeof(*daddr));
1823                 if (err)
1824                         goto free;
1825
1826                 old = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
1827                 if (old && old != asoc) {
1828                         if (old->state >= SCTP_STATE_ESTABLISHED)
1829                                 err = -EISCONN;
1830                         else
1831                                 err = -EALREADY;
1832                         goto free;
1833                 }
1834
1835                 if (sctp_endpoint_is_peeled_off(ep, daddr)) {
1836                         err = -EADDRNOTAVAIL;
1837                         goto free;
1838                 }
1839
1840                 transport = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL,
1841                                                 SCTP_UNKNOWN);
1842                 if (!transport) {
1843                         err = -ENOMEM;
1844                         goto free;
1845                 }
1846         }
1847
1848         return 0;
1849
1850 free:
1851         sctp_association_free(asoc);
1852         return err;
1853 }
1854
1855 static int sctp_sendmsg_check_sflags(struct sctp_association *asoc,
1856                                      __u16 sflags, struct msghdr *msg,
1857                                      size_t msg_len)
1858 {
1859         struct sock *sk = asoc->base.sk;
1860         struct net *net = sock_net(sk);
1861
1862         if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP))
1863                 return -EPIPE;
1864
1865         if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP) &&
1866             !sctp_state(asoc, ESTABLISHED))
1867                 return 0;
1868
1869         if (sflags & SCTP_EOF) {
1870                 pr_debug("%s: shutting down association:%p\n", __func__, asoc);
1871                 sctp_primitive_SHUTDOWN(net, asoc, NULL);
1872
1873                 return 0;
1874         }
1875
1876         if (sflags & SCTP_ABORT) {
1877                 struct sctp_chunk *chunk;
1878
1879                 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1880                 if (!chunk)
1881                         return -ENOMEM;
1882
1883                 pr_debug("%s: aborting association:%p\n", __func__, asoc);
1884                 sctp_primitive_ABORT(net, asoc, chunk);
1885
1886                 return 0;
1887         }
1888
1889         return 1;
1890 }
1891
1892 static int sctp_sendmsg_to_asoc(struct sctp_association *asoc,
1893                                 struct msghdr *msg, size_t msg_len,
1894                                 struct sctp_transport *transport,
1895                                 struct sctp_sndrcvinfo *sinfo)
1896 {
1897         struct sock *sk = asoc->base.sk;
1898         struct net *net = sock_net(sk);
1899         struct sctp_datamsg *datamsg;
1900         bool wait_connect = false;
1901         struct sctp_chunk *chunk;
1902         long timeo;
1903         int err;
1904
1905         if (sinfo->sinfo_stream >= asoc->stream.outcnt) {
1906                 err = -EINVAL;
1907                 goto err;
1908         }
1909
1910         if (unlikely(!asoc->stream.out[sinfo->sinfo_stream].ext)) {
1911                 err = sctp_stream_init_ext(&asoc->stream, sinfo->sinfo_stream);
1912                 if (err)
1913                         goto err;
1914         }
1915
1916         if (sctp_sk(sk)->disable_fragments && msg_len > asoc->frag_point) {
1917                 err = -EMSGSIZE;
1918                 goto err;
1919         }
1920
1921         if (asoc->pmtu_pending)
1922                 sctp_assoc_pending_pmtu(asoc);
1923
1924         if (sctp_wspace(asoc) < msg_len)
1925                 sctp_prsctp_prune(asoc, sinfo, msg_len - sctp_wspace(asoc));
1926
1927         if (!sctp_wspace(asoc)) {
1928                 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1929                 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1930                 if (err)
1931                         goto err;
1932         }
1933
1934         if (sctp_state(asoc, CLOSED)) {
1935                 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
1936                 if (err)
1937                         goto err;
1938
1939                 if (sctp_sk(sk)->strm_interleave) {
1940                         timeo = sock_sndtimeo(sk, 0);
1941                         err = sctp_wait_for_connect(asoc, &timeo);
1942                         if (err)
1943                                 goto err;
1944                 } else {
1945                         wait_connect = true;
1946                 }
1947
1948                 pr_debug("%s: we associated primitively\n", __func__);
1949         }
1950
1951         datamsg = sctp_datamsg_from_user(asoc, sinfo, &msg->msg_iter);
1952         if (IS_ERR(datamsg)) {
1953                 err = PTR_ERR(datamsg);
1954                 goto err;
1955         }
1956
1957         asoc->force_delay = !!(msg->msg_flags & MSG_MORE);
1958
1959         list_for_each_entry(chunk, &datamsg->chunks, frag_list) {
1960                 sctp_chunk_hold(chunk);
1961                 sctp_set_owner_w(chunk);
1962                 chunk->transport = transport;
1963         }
1964
1965         err = sctp_primitive_SEND(net, asoc, datamsg);
1966         if (err) {
1967                 sctp_datamsg_free(datamsg);
1968                 goto err;
1969         }
1970
1971         pr_debug("%s: we sent primitively\n", __func__);
1972
1973         sctp_datamsg_put(datamsg);
1974
1975         if (unlikely(wait_connect)) {
1976                 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1977                 sctp_wait_for_connect(asoc, &timeo);
1978         }
1979
1980         err = msg_len;
1981
1982 err:
1983         return err;
1984 }
1985
1986 static union sctp_addr *sctp_sendmsg_get_daddr(struct sock *sk,
1987                                                const struct msghdr *msg,
1988                                                struct sctp_cmsgs *cmsgs)
1989 {
1990         union sctp_addr *daddr = NULL;
1991         int err;
1992
1993         if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
1994                 int len = msg->msg_namelen;
1995
1996                 if (len > sizeof(*daddr))
1997                         len = sizeof(*daddr);
1998
1999                 daddr = (union sctp_addr *)msg->msg_name;
2000
2001                 err = sctp_verify_addr(sk, daddr, len);
2002                 if (err)
2003                         return ERR_PTR(err);
2004         }
2005
2006         return daddr;
2007 }
2008
2009 static void sctp_sendmsg_update_sinfo(struct sctp_association *asoc,
2010                                       struct sctp_sndrcvinfo *sinfo,
2011                                       struct sctp_cmsgs *cmsgs)
2012 {
2013         if (!cmsgs->srinfo && !cmsgs->sinfo) {
2014                 sinfo->sinfo_stream = asoc->default_stream;
2015                 sinfo->sinfo_ppid = asoc->default_ppid;
2016                 sinfo->sinfo_context = asoc->default_context;
2017                 sinfo->sinfo_assoc_id = sctp_assoc2id(asoc);
2018
2019                 if (!cmsgs->prinfo)
2020                         sinfo->sinfo_flags = asoc->default_flags;
2021         }
2022
2023         if (!cmsgs->srinfo && !cmsgs->prinfo)
2024                 sinfo->sinfo_timetolive = asoc->default_timetolive;
2025
2026         if (cmsgs->authinfo) {
2027                 /* Reuse sinfo_tsn to indicate that authinfo was set and
2028                  * sinfo_ssn to save the keyid on tx path.
2029                  */
2030                 sinfo->sinfo_tsn = 1;
2031                 sinfo->sinfo_ssn = cmsgs->authinfo->auth_keynumber;
2032         }
2033 }
2034
2035 static int sctp_sendmsg(struct sock *sk, struct msghdr *msg, size_t msg_len)
2036 {
2037         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
2038         struct sctp_transport *transport = NULL;
2039         struct sctp_sndrcvinfo _sinfo, *sinfo;
2040         struct sctp_association *asoc;
2041         struct sctp_cmsgs cmsgs;
2042         union sctp_addr *daddr;
2043         bool new = false;
2044         __u16 sflags;
2045         int err;
2046
2047         /* Parse and get snd_info */
2048         err = sctp_sendmsg_parse(sk, &cmsgs, &_sinfo, msg, msg_len);
2049         if (err)
2050                 goto out;
2051
2052         sinfo  = &_sinfo;
2053         sflags = sinfo->sinfo_flags;
2054
2055         /* Get daddr from msg */
2056         daddr = sctp_sendmsg_get_daddr(sk, msg, &cmsgs);
2057         if (IS_ERR(daddr)) {
2058                 err = PTR_ERR(daddr);
2059                 goto out;
2060         }
2061
2062         lock_sock(sk);
2063
2064         /* SCTP_SENDALL process */
2065         if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP)) {
2066                 list_for_each_entry(asoc, &ep->asocs, asocs) {
2067                         err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
2068                                                         msg_len);
2069                         if (err == 0)
2070                                 continue;
2071                         if (err < 0)
2072                                 goto out_unlock;
2073
2074                         sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
2075
2076                         err = sctp_sendmsg_to_asoc(asoc, msg, msg_len,
2077                                                    NULL, sinfo);
2078                         if (err < 0)
2079                                 goto out_unlock;
2080
2081                         iov_iter_revert(&msg->msg_iter, err);
2082                 }
2083
2084                 goto out_unlock;
2085         }
2086
2087         /* Get and check or create asoc */
2088         if (daddr) {
2089                 asoc = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
2090                 if (asoc) {
2091                         err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
2092                                                         msg_len);
2093                         if (err <= 0)
2094                                 goto out_unlock;
2095                 } else {
2096                         err = sctp_sendmsg_new_asoc(sk, sflags, &cmsgs, daddr,
2097                                                     &transport);
2098                         if (err)
2099                                 goto out_unlock;
2100
2101                         asoc = transport->asoc;
2102                         new = true;
2103                 }
2104
2105                 if (!sctp_style(sk, TCP) && !(sflags & SCTP_ADDR_OVER))
2106                         transport = NULL;
2107         } else {
2108                 asoc = sctp_id2assoc(sk, sinfo->sinfo_assoc_id);
2109                 if (!asoc) {
2110                         err = -EPIPE;
2111                         goto out_unlock;
2112                 }
2113
2114                 err = sctp_sendmsg_check_sflags(asoc, sflags, msg, msg_len);
2115                 if (err <= 0)
2116                         goto out_unlock;
2117         }
2118
2119         /* Update snd_info with the asoc */
2120         sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
2121
2122         /* Send msg to the asoc */
2123         err = sctp_sendmsg_to_asoc(asoc, msg, msg_len, transport, sinfo);
2124         if (err < 0 && err != -ESRCH && new)
2125                 sctp_association_free(asoc);
2126
2127 out_unlock:
2128         release_sock(sk);
2129 out:
2130         return sctp_error(sk, msg->msg_flags, err);
2131 }
2132
2133 /* This is an extended version of skb_pull() that removes the data from the
2134  * start of a skb even when data is spread across the list of skb's in the
2135  * frag_list. len specifies the total amount of data that needs to be removed.
2136  * when 'len' bytes could be removed from the skb, it returns 0.
2137  * If 'len' exceeds the total skb length,  it returns the no. of bytes that
2138  * could not be removed.
2139  */
2140 static int sctp_skb_pull(struct sk_buff *skb, int len)
2141 {
2142         struct sk_buff *list;
2143         int skb_len = skb_headlen(skb);
2144         int rlen;
2145
2146         if (len <= skb_len) {
2147                 __skb_pull(skb, len);
2148                 return 0;
2149         }
2150         len -= skb_len;
2151         __skb_pull(skb, skb_len);
2152
2153         skb_walk_frags(skb, list) {
2154                 rlen = sctp_skb_pull(list, len);
2155                 skb->len -= (len-rlen);
2156                 skb->data_len -= (len-rlen);
2157
2158                 if (!rlen)
2159                         return 0;
2160
2161                 len = rlen;
2162         }
2163
2164         return len;
2165 }
2166
2167 /* API 3.1.3  recvmsg() - UDP Style Syntax
2168  *
2169  *  ssize_t recvmsg(int socket, struct msghdr *message,
2170  *                    int flags);
2171  *
2172  *  socket  - the socket descriptor of the endpoint.
2173  *  message - pointer to the msghdr structure which contains a single
2174  *            user message and possibly some ancillary data.
2175  *
2176  *            See Section 5 for complete description of the data
2177  *            structures.
2178  *
2179  *  flags   - flags sent or received with the user message, see Section
2180  *            5 for complete description of the flags.
2181  */
2182 static int sctp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
2183                         int noblock, int flags, int *addr_len)
2184 {
2185         struct sctp_ulpevent *event = NULL;
2186         struct sctp_sock *sp = sctp_sk(sk);
2187         struct sk_buff *skb, *head_skb;
2188         int copied;
2189         int err = 0;
2190         int skb_len;
2191
2192         pr_debug("%s: sk:%p, msghdr:%p, len:%zd, noblock:%d, flags:0x%x, "
2193                  "addr_len:%p)\n", __func__, sk, msg, len, noblock, flags,
2194                  addr_len);
2195
2196         lock_sock(sk);
2197
2198         if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED) &&
2199             !sctp_sstate(sk, CLOSING) && !sctp_sstate(sk, CLOSED)) {
2200                 err = -ENOTCONN;
2201                 goto out;
2202         }
2203
2204         skb = sctp_skb_recv_datagram(sk, flags, noblock, &err);
2205         if (!skb)
2206                 goto out;
2207
2208         /* Get the total length of the skb including any skb's in the
2209          * frag_list.
2210          */
2211         skb_len = skb->len;
2212
2213         copied = skb_len;
2214         if (copied > len)
2215                 copied = len;
2216
2217         err = skb_copy_datagram_msg(skb, 0, msg, copied);
2218
2219         event = sctp_skb2event(skb);
2220
2221         if (err)
2222                 goto out_free;
2223
2224         if (event->chunk && event->chunk->head_skb)
2225                 head_skb = event->chunk->head_skb;
2226         else
2227                 head_skb = skb;
2228         sock_recv_ts_and_drops(msg, sk, head_skb);
2229         if (sctp_ulpevent_is_notification(event)) {
2230                 msg->msg_flags |= MSG_NOTIFICATION;
2231                 sp->pf->event_msgname(event, msg->msg_name, addr_len);
2232         } else {
2233                 sp->pf->skb_msgname(head_skb, msg->msg_name, addr_len);
2234         }
2235
2236         /* Check if we allow SCTP_NXTINFO. */
2237         if (sp->recvnxtinfo)
2238                 sctp_ulpevent_read_nxtinfo(event, msg, sk);
2239         /* Check if we allow SCTP_RCVINFO. */
2240         if (sp->recvrcvinfo)
2241                 sctp_ulpevent_read_rcvinfo(event, msg);
2242         /* Check if we allow SCTP_SNDRCVINFO. */
2243         if (sp->subscribe.sctp_data_io_event)
2244                 sctp_ulpevent_read_sndrcvinfo(event, msg);
2245
2246         err = copied;
2247
2248         /* If skb's length exceeds the user's buffer, update the skb and
2249          * push it back to the receive_queue so that the next call to
2250          * recvmsg() will return the remaining data. Don't set MSG_EOR.
2251          */
2252         if (skb_len > copied) {
2253                 msg->msg_flags &= ~MSG_EOR;
2254                 if (flags & MSG_PEEK)
2255                         goto out_free;
2256                 sctp_skb_pull(skb, copied);
2257                 skb_queue_head(&sk->sk_receive_queue, skb);
2258
2259                 /* When only partial message is copied to the user, increase
2260                  * rwnd by that amount. If all the data in the skb is read,
2261                  * rwnd is updated when the event is freed.
2262                  */
2263                 if (!sctp_ulpevent_is_notification(event))
2264                         sctp_assoc_rwnd_increase(event->asoc, copied);
2265                 goto out;
2266         } else if ((event->msg_flags & MSG_NOTIFICATION) ||
2267                    (event->msg_flags & MSG_EOR))
2268                 msg->msg_flags |= MSG_EOR;
2269         else
2270                 msg->msg_flags &= ~MSG_EOR;
2271
2272 out_free:
2273         if (flags & MSG_PEEK) {
2274                 /* Release the skb reference acquired after peeking the skb in
2275                  * sctp_skb_recv_datagram().
2276                  */
2277                 kfree_skb(skb);
2278         } else {
2279                 /* Free the event which includes releasing the reference to
2280                  * the owner of the skb, freeing the skb and updating the
2281                  * rwnd.
2282                  */
2283                 sctp_ulpevent_free(event);
2284         }
2285 out:
2286         release_sock(sk);
2287         return err;
2288 }
2289
2290 /* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
2291  *
2292  * This option is a on/off flag.  If enabled no SCTP message
2293  * fragmentation will be performed.  Instead if a message being sent
2294  * exceeds the current PMTU size, the message will NOT be sent and
2295  * instead a error will be indicated to the user.
2296  */
2297 static int sctp_setsockopt_disable_fragments(struct sock *sk,
2298                                              char __user *optval,
2299                                              unsigned int optlen)
2300 {
2301         int val;
2302
2303         if (optlen < sizeof(int))
2304                 return -EINVAL;
2305
2306         if (get_user(val, (int __user *)optval))
2307                 return -EFAULT;
2308
2309         sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1;
2310
2311         return 0;
2312 }
2313
2314 static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
2315                                   unsigned int optlen)
2316 {
2317         struct sctp_association *asoc;
2318         struct sctp_ulpevent *event;
2319
2320         if (optlen > sizeof(struct sctp_event_subscribe))
2321                 return -EINVAL;
2322         if (copy_from_user(&sctp_sk(sk)->subscribe, optval, optlen))
2323                 return -EFAULT;
2324
2325         /* At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT,
2326          * if there is no data to be sent or retransmit, the stack will
2327          * immediately send up this notification.
2328          */
2329         if (sctp_ulpevent_type_enabled(SCTP_SENDER_DRY_EVENT,
2330                                        &sctp_sk(sk)->subscribe)) {
2331                 asoc = sctp_id2assoc(sk, 0);
2332
2333                 if (asoc && sctp_outq_is_empty(&asoc->outqueue)) {
2334                         event = sctp_ulpevent_make_sender_dry_event(asoc,
2335                                         GFP_USER | __GFP_NOWARN);
2336                         if (!event)
2337                                 return -ENOMEM;
2338
2339                         asoc->stream.si->enqueue_event(&asoc->ulpq, event);
2340                 }
2341         }
2342
2343         return 0;
2344 }
2345
2346 /* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
2347  *
2348  * This socket option is applicable to the UDP-style socket only.  When
2349  * set it will cause associations that are idle for more than the
2350  * specified number of seconds to automatically close.  An association
2351  * being idle is defined an association that has NOT sent or received
2352  * user data.  The special value of '0' indicates that no automatic
2353  * close of any associations should be performed.  The option expects an
2354  * integer defining the number of seconds of idle time before an
2355  * association is closed.
2356  */
2357 static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval,
2358                                      unsigned int optlen)
2359 {
2360         struct sctp_sock *sp = sctp_sk(sk);
2361         struct net *net = sock_net(sk);
2362
2363         /* Applicable to UDP-style socket only */
2364         if (sctp_style(sk, TCP))
2365                 return -EOPNOTSUPP;
2366         if (optlen != sizeof(int))
2367                 return -EINVAL;
2368         if (copy_from_user(&sp->autoclose, optval, optlen))
2369                 return -EFAULT;
2370
2371         if (sp->autoclose > net->sctp.max_autoclose)
2372                 sp->autoclose = net->sctp.max_autoclose;
2373
2374         return 0;
2375 }
2376
2377 /* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
2378  *
2379  * Applications can enable or disable heartbeats for any peer address of
2380  * an association, modify an address's heartbeat interval, force a
2381  * heartbeat to be sent immediately, and adjust the address's maximum
2382  * number of retransmissions sent before an address is considered
2383  * unreachable.  The following structure is used to access and modify an
2384  * address's parameters:
2385  *
2386  *  struct sctp_paddrparams {
2387  *     sctp_assoc_t            spp_assoc_id;
2388  *     struct sockaddr_storage spp_address;
2389  *     uint32_t                spp_hbinterval;
2390  *     uint16_t                spp_pathmaxrxt;
2391  *     uint32_t                spp_pathmtu;
2392  *     uint32_t                spp_sackdelay;
2393  *     uint32_t                spp_flags;
2394  * };
2395  *
2396  *   spp_assoc_id    - (one-to-many style socket) This is filled in the
2397  *                     application, and identifies the association for
2398  *                     this query.
2399  *   spp_address     - This specifies which address is of interest.
2400  *   spp_hbinterval  - This contains the value of the heartbeat interval,
2401  *                     in milliseconds.  If a  value of zero
2402  *                     is present in this field then no changes are to
2403  *                     be made to this parameter.
2404  *   spp_pathmaxrxt  - This contains the maximum number of
2405  *                     retransmissions before this address shall be
2406  *                     considered unreachable. If a  value of zero
2407  *                     is present in this field then no changes are to
2408  *                     be made to this parameter.
2409  *   spp_pathmtu     - When Path MTU discovery is disabled the value
2410  *                     specified here will be the "fixed" path mtu.
2411  *                     Note that if the spp_address field is empty
2412  *                     then all associations on this address will
2413  *                     have this fixed path mtu set upon them.
2414  *
2415  *   spp_sackdelay   - When delayed sack is enabled, this value specifies
2416  *                     the number of milliseconds that sacks will be delayed
2417  *                     for. This value will apply to all addresses of an
2418  *                     association if the spp_address field is empty. Note
2419  *                     also, that if delayed sack is enabled and this
2420  *                     value is set to 0, no change is made to the last
2421  *                     recorded delayed sack timer value.
2422  *
2423  *   spp_flags       - These flags are used to control various features
2424  *                     on an association. The flag field may contain
2425  *                     zero or more of the following options.
2426  *
2427  *                     SPP_HB_ENABLE  - Enable heartbeats on the
2428  *                     specified address. Note that if the address
2429  *                     field is empty all addresses for the association
2430  *                     have heartbeats enabled upon them.
2431  *
2432  *                     SPP_HB_DISABLE - Disable heartbeats on the
2433  *                     speicifed address. Note that if the address
2434  *                     field is empty all addresses for the association
2435  *                     will have their heartbeats disabled. Note also
2436  *                     that SPP_HB_ENABLE and SPP_HB_DISABLE are
2437  *                     mutually exclusive, only one of these two should
2438  *                     be specified. Enabling both fields will have
2439  *                     undetermined results.
2440  *
2441  *                     SPP_HB_DEMAND - Request a user initiated heartbeat
2442  *                     to be made immediately.
2443  *
2444  *                     SPP_HB_TIME_IS_ZERO - Specify's that the time for
2445  *                     heartbeat delayis to be set to the value of 0
2446  *                     milliseconds.
2447  *
2448  *                     SPP_PMTUD_ENABLE - This field will enable PMTU
2449  *                     discovery upon the specified address. Note that
2450  *                     if the address feild is empty then all addresses
2451  *                     on the association are effected.
2452  *
2453  *                     SPP_PMTUD_DISABLE - This field will disable PMTU
2454  *                     discovery upon the specified address. Note that
2455  *                     if the address feild is empty then all addresses
2456  *                     on the association are effected. Not also that
2457  *                     SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2458  *                     exclusive. Enabling both will have undetermined
2459  *                     results.
2460  *
2461  *                     SPP_SACKDELAY_ENABLE - Setting this flag turns
2462  *                     on delayed sack. The time specified in spp_sackdelay
2463  *                     is used to specify the sack delay for this address. Note
2464  *                     that if spp_address is empty then all addresses will
2465  *                     enable delayed sack and take on the sack delay
2466  *                     value specified in spp_sackdelay.
2467  *                     SPP_SACKDELAY_DISABLE - Setting this flag turns
2468  *                     off delayed sack. If the spp_address field is blank then
2469  *                     delayed sack is disabled for the entire association. Note
2470  *                     also that this field is mutually exclusive to
2471  *                     SPP_SACKDELAY_ENABLE, setting both will have undefined
2472  *                     results.
2473  */
2474 static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2475                                        struct sctp_transport   *trans,
2476                                        struct sctp_association *asoc,
2477                                        struct sctp_sock        *sp,
2478                                        int                      hb_change,
2479                                        int                      pmtud_change,
2480                                        int                      sackdelay_change)
2481 {
2482         int error;
2483
2484         if (params->spp_flags & SPP_HB_DEMAND && trans) {
2485                 struct net *net = sock_net(trans->asoc->base.sk);
2486
2487                 error = sctp_primitive_REQUESTHEARTBEAT(net, trans->asoc, trans);
2488                 if (error)
2489                         return error;
2490         }
2491
2492         /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2493          * this field is ignored.  Note also that a value of zero indicates
2494          * the current setting should be left unchanged.
2495          */
2496         if (params->spp_flags & SPP_HB_ENABLE) {
2497
2498                 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2499                  * set.  This lets us use 0 value when this flag
2500                  * is set.
2501                  */
2502                 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2503                         params->spp_hbinterval = 0;
2504
2505                 if (params->spp_hbinterval ||
2506                     (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2507                         if (trans) {
2508                                 trans->hbinterval =
2509                                     msecs_to_jiffies(params->spp_hbinterval);
2510                         } else if (asoc) {
2511                                 asoc->hbinterval =
2512                                     msecs_to_jiffies(params->spp_hbinterval);
2513                         } else {
2514                                 sp->hbinterval = params->spp_hbinterval;
2515                         }
2516                 }
2517         }
2518
2519         if (hb_change) {
2520                 if (trans) {
2521                         trans->param_flags =
2522                                 (trans->param_flags & ~SPP_HB) | hb_change;
2523                 } else if (asoc) {
2524                         asoc->param_flags =
2525                                 (asoc->param_flags & ~SPP_HB) | hb_change;
2526                 } else {
2527                         sp->param_flags =
2528                                 (sp->param_flags & ~SPP_HB) | hb_change;
2529                 }
2530         }
2531
2532         /* When Path MTU discovery is disabled the value specified here will
2533          * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2534          * include the flag SPP_PMTUD_DISABLE for this field to have any
2535          * effect).
2536          */
2537         if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
2538                 if (trans) {
2539                         trans->pathmtu = params->spp_pathmtu;
2540                         sctp_assoc_sync_pmtu(asoc);
2541                 } else if (asoc) {
2542                         asoc->pathmtu = params->spp_pathmtu;
2543                 } else {
2544                         sp->pathmtu = params->spp_pathmtu;
2545                 }
2546         }
2547
2548         if (pmtud_change) {
2549                 if (trans) {
2550                         int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2551                                 (params->spp_flags & SPP_PMTUD_ENABLE);
2552                         trans->param_flags =
2553                                 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2554                         if (update) {
2555                                 sctp_transport_pmtu(trans, sctp_opt2sk(sp));
2556                                 sctp_assoc_sync_pmtu(asoc);
2557                         }
2558                 } else if (asoc) {
2559                         asoc->param_flags =
2560                                 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2561                 } else {
2562                         sp->param_flags =
2563                                 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2564                 }
2565         }
2566
2567         /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2568          * value of this field is ignored.  Note also that a value of zero
2569          * indicates the current setting should be left unchanged.
2570          */
2571         if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
2572                 if (trans) {
2573                         trans->sackdelay =
2574                                 msecs_to_jiffies(params->spp_sackdelay);
2575                 } else if (asoc) {
2576                         asoc->sackdelay =
2577                                 msecs_to_jiffies(params->spp_sackdelay);
2578                 } else {
2579                         sp->sackdelay = params->spp_sackdelay;
2580                 }
2581         }
2582
2583         if (sackdelay_change) {
2584                 if (trans) {
2585                         trans->param_flags =
2586                                 (trans->param_flags & ~SPP_SACKDELAY) |
2587                                 sackdelay_change;
2588                 } else if (asoc) {
2589                         asoc->param_flags =
2590                                 (asoc->param_flags & ~SPP_SACKDELAY) |
2591                                 sackdelay_change;
2592                 } else {
2593                         sp->param_flags =
2594                                 (sp->param_flags & ~SPP_SACKDELAY) |
2595                                 sackdelay_change;
2596                 }
2597         }
2598
2599         /* Note that a value of zero indicates the current setting should be
2600            left unchanged.
2601          */
2602         if (params->spp_pathmaxrxt) {
2603                 if (trans) {
2604                         trans->pathmaxrxt = params->spp_pathmaxrxt;
2605                 } else if (asoc) {
2606                         asoc->pathmaxrxt = params->spp_pathmaxrxt;
2607                 } else {
2608                         sp->pathmaxrxt = params->spp_pathmaxrxt;
2609                 }
2610         }
2611
2612         return 0;
2613 }
2614
2615 static int sctp_setsockopt_peer_addr_params(struct sock *sk,
2616                                             char __user *optval,
2617                                             unsigned int optlen)
2618 {
2619         struct sctp_paddrparams  params;
2620         struct sctp_transport   *trans = NULL;
2621         struct sctp_association *asoc = NULL;
2622         struct sctp_sock        *sp = sctp_sk(sk);
2623         int error;
2624         int hb_change, pmtud_change, sackdelay_change;
2625
2626         if (optlen != sizeof(struct sctp_paddrparams))
2627                 return -EINVAL;
2628
2629         if (copy_from_user(&params, optval, optlen))
2630                 return -EFAULT;
2631
2632         /* Validate flags and value parameters. */
2633         hb_change        = params.spp_flags & SPP_HB;
2634         pmtud_change     = params.spp_flags & SPP_PMTUD;
2635         sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2636
2637         if (hb_change        == SPP_HB ||
2638             pmtud_change     == SPP_PMTUD ||
2639             sackdelay_change == SPP_SACKDELAY ||
2640             params.spp_sackdelay > 500 ||
2641             (params.spp_pathmtu &&
2642              params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
2643                 return -EINVAL;
2644
2645         /* If an address other than INADDR_ANY is specified, and
2646          * no transport is found, then the request is invalid.
2647          */
2648         if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
2649                 trans = sctp_addr_id2transport(sk, &params.spp_address,
2650                                                params.spp_assoc_id);
2651                 if (!trans)
2652                         return -EINVAL;
2653         }
2654
2655         /* Get association, if assoc_id != 0 and the socket is a one
2656          * to many style socket, and an association was not found, then
2657          * the id was invalid.
2658          */
2659         asoc = sctp_id2assoc(sk, params.spp_assoc_id);
2660         if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP))
2661                 return -EINVAL;
2662
2663         /* Heartbeat demand can only be sent on a transport or
2664          * association, but not a socket.
2665          */
2666         if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2667                 return -EINVAL;
2668
2669         /* Process parameters. */
2670         error = sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2671                                             hb_change, pmtud_change,
2672                                             sackdelay_change);
2673
2674         if (error)
2675                 return error;
2676
2677         /* If changes are for association, also apply parameters to each
2678          * transport.
2679          */
2680         if (!trans && asoc) {
2681                 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2682                                 transports) {
2683                         sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2684                                                     hb_change, pmtud_change,
2685                                                     sackdelay_change);
2686                 }
2687         }
2688
2689         return 0;
2690 }
2691
2692 static inline __u32 sctp_spp_sackdelay_enable(__u32 param_flags)
2693 {
2694         return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_ENABLE;
2695 }
2696
2697 static inline __u32 sctp_spp_sackdelay_disable(__u32 param_flags)
2698 {
2699         return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_DISABLE;
2700 }
2701
2702 /*
2703  * 7.1.23.  Get or set delayed ack timer (SCTP_DELAYED_SACK)
2704  *
2705  * This option will effect the way delayed acks are performed.  This
2706  * option allows you to get or set the delayed ack time, in
2707  * milliseconds.  It also allows changing the delayed ack frequency.
2708  * Changing the frequency to 1 disables the delayed sack algorithm.  If
2709  * the assoc_id is 0, then this sets or gets the endpoints default
2710  * values.  If the assoc_id field is non-zero, then the set or get
2711  * effects the specified association for the one to many model (the
2712  * assoc_id field is ignored by the one to one model).  Note that if
2713  * sack_delay or sack_freq are 0 when setting this option, then the
2714  * current values will remain unchanged.
2715  *
2716  * struct sctp_sack_info {
2717  *     sctp_assoc_t            sack_assoc_id;
2718  *     uint32_t                sack_delay;
2719  *     uint32_t                sack_freq;
2720  * };
2721  *
2722  * sack_assoc_id -  This parameter, indicates which association the user
2723  *    is performing an action upon.  Note that if this field's value is
2724  *    zero then the endpoints default value is changed (effecting future
2725  *    associations only).
2726  *
2727  * sack_delay -  This parameter contains the number of milliseconds that
2728  *    the user is requesting the delayed ACK timer be set to.  Note that
2729  *    this value is defined in the standard to be between 200 and 500
2730  *    milliseconds.
2731  *
2732  * sack_freq -  This parameter contains the number of packets that must
2733  *    be received before a sack is sent without waiting for the delay
2734  *    timer to expire.  The default value for this is 2, setting this
2735  *    value to 1 will disable the delayed sack algorithm.
2736  */
2737
2738 static int sctp_setsockopt_delayed_ack(struct sock *sk,
2739                                        char __user *optval, unsigned int optlen)
2740 {
2741         struct sctp_sack_info    params;
2742         struct sctp_transport   *trans = NULL;
2743         struct sctp_association *asoc = NULL;
2744         struct sctp_sock        *sp = sctp_sk(sk);
2745
2746         if (optlen == sizeof(struct sctp_sack_info)) {
2747                 if (copy_from_user(&params, optval, optlen))
2748                         return -EFAULT;
2749
2750                 if (params.sack_delay == 0 && params.sack_freq == 0)
2751                         return 0;
2752         } else if (optlen == sizeof(struct sctp_assoc_value)) {
2753                 pr_warn_ratelimited(DEPRECATED
2754                                     "%s (pid %d) "
2755                                     "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
2756                                     "Use struct sctp_sack_info instead\n",
2757                                     current->comm, task_pid_nr(current));
2758                 if (copy_from_user(&params, optval, optlen))
2759                         return -EFAULT;
2760
2761                 if (params.sack_delay == 0)
2762                         params.sack_freq = 1;
2763                 else
2764                         params.sack_freq = 0;
2765         } else
2766                 return -EINVAL;
2767
2768         /* Validate value parameter. */
2769         if (params.sack_delay > 500)
2770                 return -EINVAL;
2771
2772         /* Get association, if sack_assoc_id != 0 and the socket is a one
2773          * to many style socket, and an association was not found, then
2774          * the id was invalid.
2775          */
2776         asoc = sctp_id2assoc(sk, params.sack_assoc_id);
2777         if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
2778                 return -EINVAL;
2779
2780         if (params.sack_delay) {
2781                 if (asoc) {
2782                         asoc->sackdelay =
2783                                 msecs_to_jiffies(params.sack_delay);
2784                         asoc->param_flags =
2785                                 sctp_spp_sackdelay_enable(asoc->param_flags);
2786                 } else {
2787                         sp->sackdelay = params.sack_delay;
2788                         sp->param_flags =
2789                                 sctp_spp_sackdelay_enable(sp->param_flags);
2790                 }
2791         }
2792
2793         if (params.sack_freq == 1) {
2794                 if (asoc) {
2795                         asoc->param_flags =
2796                                 sctp_spp_sackdelay_disable(asoc->param_flags);
2797                 } else {
2798                         sp->param_flags =
2799                                 sctp_spp_sackdelay_disable(sp->param_flags);
2800                 }
2801         } else if (params.sack_freq > 1) {
2802                 if (asoc) {
2803                         asoc->sackfreq = params.sack_freq;
2804                         asoc->param_flags =
2805                                 sctp_spp_sackdelay_enable(asoc->param_flags);
2806                 } else {
2807                         sp->sackfreq = params.sack_freq;
2808                         sp->param_flags =
2809                                 sctp_spp_sackdelay_enable(sp->param_flags);
2810                 }
2811         }
2812
2813         /* If change is for association, also apply to each transport. */
2814         if (asoc) {
2815                 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2816                                 transports) {
2817                         if (params.sack_delay) {
2818                                 trans->sackdelay =
2819                                         msecs_to_jiffies(params.sack_delay);
2820                                 trans->param_flags =
2821                                         sctp_spp_sackdelay_enable(trans->param_flags);
2822                         }
2823                         if (params.sack_freq == 1) {
2824                                 trans->param_flags =
2825                                         sctp_spp_sackdelay_disable(trans->param_flags);
2826                         } else if (params.sack_freq > 1) {
2827                                 trans->sackfreq = params.sack_freq;
2828                                 trans->param_flags =
2829                                         sctp_spp_sackdelay_enable(trans->param_flags);
2830                         }
2831                 }
2832         }
2833
2834         return 0;
2835 }
2836
2837 /* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2838  *
2839  * Applications can specify protocol parameters for the default association
2840  * initialization.  The option name argument to setsockopt() and getsockopt()
2841  * is SCTP_INITMSG.
2842  *
2843  * Setting initialization parameters is effective only on an unconnected
2844  * socket (for UDP-style sockets only future associations are effected
2845  * by the change).  With TCP-style sockets, this option is inherited by
2846  * sockets derived from a listener socket.
2847  */
2848 static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, unsigned int optlen)
2849 {
2850         struct sctp_initmsg sinit;
2851         struct sctp_sock *sp = sctp_sk(sk);
2852
2853         if (optlen != sizeof(struct sctp_initmsg))
2854                 return -EINVAL;
2855         if (copy_from_user(&sinit, optval, optlen))
2856                 return -EFAULT;
2857
2858         if (sinit.sinit_num_ostreams)
2859                 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
2860         if (sinit.sinit_max_instreams)
2861                 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
2862         if (sinit.sinit_max_attempts)
2863                 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
2864         if (sinit.sinit_max_init_timeo)
2865                 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
2866
2867         return 0;
2868 }
2869
2870 /*
2871  * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2872  *
2873  *   Applications that wish to use the sendto() system call may wish to
2874  *   specify a default set of parameters that would normally be supplied
2875  *   through the inclusion of ancillary data.  This socket option allows
2876  *   such an application to set the default sctp_sndrcvinfo structure.
2877  *   The application that wishes to use this socket option simply passes
2878  *   in to this call the sctp_sndrcvinfo structure defined in Section
2879  *   5.2.2) The input parameters accepted by this call include
2880  *   sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2881  *   sinfo_timetolive.  The user must provide the sinfo_assoc_id field in
2882  *   to this call if the caller is using the UDP model.
2883  */
2884 static int sctp_setsockopt_default_send_param(struct sock *sk,
2885                                               char __user *optval,
2886                                               unsigned int optlen)
2887 {
2888         struct sctp_sock *sp = sctp_sk(sk);
2889         struct sctp_association *asoc;
2890         struct sctp_sndrcvinfo info;
2891
2892         if (optlen != sizeof(info))
2893                 return -EINVAL;
2894         if (copy_from_user(&info, optval, optlen))
2895                 return -EFAULT;
2896         if (info.sinfo_flags &
2897             ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2898               SCTP_ABORT | SCTP_EOF))
2899                 return -EINVAL;
2900
2901         asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
2902         if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
2903                 return -EINVAL;
2904         if (asoc) {
2905                 asoc->default_stream = info.sinfo_stream;
2906                 asoc->default_flags = info.sinfo_flags;
2907                 asoc->default_ppid = info.sinfo_ppid;
2908                 asoc->default_context = info.sinfo_context;
2909                 asoc->default_timetolive = info.sinfo_timetolive;
2910         } else {
2911                 sp->default_stream = info.sinfo_stream;
2912                 sp->default_flags = info.sinfo_flags;
2913                 sp->default_ppid = info.sinfo_ppid;
2914                 sp->default_context = info.sinfo_context;
2915                 sp->default_timetolive = info.sinfo_timetolive;
2916         }
2917
2918         return 0;
2919 }
2920
2921 /* RFC6458, Section 8.1.31. Set/get Default Send Parameters
2922  * (SCTP_DEFAULT_SNDINFO)
2923  */
2924 static int sctp_setsockopt_default_sndinfo(struct sock *sk,
2925                                            char __user *optval,
2926                                            unsigned int optlen)
2927 {
2928         struct sctp_sock *sp = sctp_sk(sk);
2929         struct sctp_association *asoc;
2930         struct sctp_sndinfo info;
2931
2932         if (optlen != sizeof(info))
2933                 return -EINVAL;
2934         if (copy_from_user(&info, optval, optlen))
2935                 return -EFAULT;
2936         if (info.snd_flags &
2937             ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2938               SCTP_ABORT | SCTP_EOF))
2939                 return -EINVAL;
2940
2941         asoc = sctp_id2assoc(sk, info.snd_assoc_id);
2942         if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
2943                 return -EINVAL;
2944         if (asoc) {
2945                 asoc->default_stream = info.snd_sid;
2946                 asoc->default_flags = info.snd_flags;
2947                 asoc->default_ppid = info.snd_ppid;
2948                 asoc->default_context = info.snd_context;
2949         } else {
2950                 sp->default_stream = info.snd_sid;
2951                 sp->default_flags = info.snd_flags;
2952                 sp->default_ppid = info.snd_ppid;
2953                 sp->default_context = info.snd_context;
2954         }
2955
2956         return 0;
2957 }
2958
2959 /* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
2960  *
2961  * Requests that the local SCTP stack use the enclosed peer address as
2962  * the association primary.  The enclosed address must be one of the
2963  * association peer's addresses.
2964  */
2965 static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
2966                                         unsigned int optlen)
2967 {
2968         struct sctp_prim prim;
2969         struct sctp_transport *trans;
2970         struct sctp_af *af;
2971         int err;
2972
2973         if (optlen != sizeof(struct sctp_prim))
2974                 return -EINVAL;
2975
2976         if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
2977                 return -EFAULT;
2978
2979         /* Allow security module to validate address but need address len. */
2980         af = sctp_get_af_specific(prim.ssp_addr.ss_family);
2981         if (!af)
2982                 return -EINVAL;
2983
2984         err = security_sctp_bind_connect(sk, SCTP_PRIMARY_ADDR,
2985                                          (struct sockaddr *)&prim.ssp_addr,
2986                                          af->sockaddr_len);
2987         if (err)
2988                 return err;
2989
2990         trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
2991         if (!trans)
2992                 return -EINVAL;
2993
2994         sctp_assoc_set_primary(trans->asoc, trans);
2995
2996         return 0;
2997 }
2998
2999 /*
3000  * 7.1.5 SCTP_NODELAY
3001  *
3002  * Turn on/off any Nagle-like algorithm.  This means that packets are
3003  * generally sent as soon as possible and no unnecessary delays are
3004  * introduced, at the cost of more packets in the network.  Expects an
3005  *  integer boolean flag.
3006  */
3007 static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
3008                                    unsigned int optlen)
3009 {
3010         int val;
3011
3012         if (optlen < sizeof(int))
3013                 return -EINVAL;
3014         if (get_user(val, (int __user *)optval))
3015                 return -EFAULT;
3016
3017         sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
3018         return 0;
3019 }
3020
3021 /*
3022  *
3023  * 7.1.1 SCTP_RTOINFO
3024  *
3025  * The protocol parameters used to initialize and bound retransmission
3026  * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
3027  * and modify these parameters.
3028  * All parameters are time values, in milliseconds.  A value of 0, when
3029  * modifying the parameters, indicates that the current value should not
3030  * be changed.
3031  *
3032  */
3033 static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, unsigned int optlen)
3034 {
3035         struct sctp_rtoinfo rtoinfo;
3036         struct sctp_association *asoc;
3037         unsigned long rto_min, rto_max;
3038         struct sctp_sock *sp = sctp_sk(sk);
3039
3040         if (optlen != sizeof (struct sctp_rtoinfo))
3041                 return -EINVAL;
3042
3043         if (copy_from_user(&rtoinfo, optval, optlen))
3044                 return -EFAULT;
3045
3046         asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
3047
3048         /* Set the values to the specific association */
3049         if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
3050                 return -EINVAL;
3051
3052         rto_max = rtoinfo.srto_max;
3053         rto_min = rtoinfo.srto_min;
3054
3055         if (rto_max)
3056                 rto_max = asoc ? msecs_to_jiffies(rto_max) : rto_max;
3057         else
3058                 rto_max = asoc ? asoc->rto_max : sp->rtoinfo.srto_max;
3059
3060         if (rto_min)
3061                 rto_min = asoc ? msecs_to_jiffies(rto_min) : rto_min;
3062         else
3063                 rto_min = asoc ? asoc->rto_min : sp->rtoinfo.srto_min;
3064
3065         if (rto_min > rto_max)
3066                 return -EINVAL;
3067
3068         if (asoc) {
3069                 if (rtoinfo.srto_initial != 0)
3070                         asoc->rto_initial =
3071                                 msecs_to_jiffies(rtoinfo.srto_initial);
3072                 asoc->rto_max = rto_max;
3073                 asoc->rto_min = rto_min;
3074         } else {
3075                 /* If there is no association or the association-id = 0
3076                  * set the values to the endpoint.
3077                  */
3078                 if (rtoinfo.srto_initial != 0)
3079                         sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
3080                 sp->rtoinfo.srto_max = rto_max;
3081                 sp->rtoinfo.srto_min = rto_min;
3082         }
3083
3084         return 0;
3085 }
3086
3087 /*
3088  *
3089  * 7.1.2 SCTP_ASSOCINFO
3090  *
3091  * This option is used to tune the maximum retransmission attempts
3092  * of the association.
3093  * Returns an error if the new association retransmission value is
3094  * greater than the sum of the retransmission value  of the peer.
3095  * See [SCTP] for more information.
3096  *
3097  */
3098 static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, unsigned int optlen)
3099 {
3100
3101         struct sctp_assocparams assocparams;
3102         struct sctp_association *asoc;
3103
3104         if (optlen != sizeof(struct sctp_assocparams))
3105                 return -EINVAL;
3106         if (copy_from_user(&assocparams, optval, optlen))
3107                 return -EFAULT;
3108
3109         asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
3110
3111         if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
3112                 return -EINVAL;
3113
3114         /* Set the values to the specific association */
3115         if (asoc) {
3116                 if (assocparams.sasoc_asocmaxrxt != 0) {
3117                         __u32 path_sum = 0;
3118                         int   paths = 0;
3119                         struct sctp_transport *peer_addr;
3120
3121                         list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
3122                                         transports) {
3123                                 path_sum += peer_addr->pathmaxrxt;
3124                                 paths++;
3125                         }
3126
3127                         /* Only validate asocmaxrxt if we have more than
3128                          * one path/transport.  We do this because path
3129                          * retransmissions are only counted when we have more
3130                          * then one path.
3131                          */
3132                         if (paths > 1 &&
3133                             assocparams.sasoc_asocmaxrxt > path_sum)
3134                                 return -EINVAL;
3135
3136                         asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
3137                 }
3138
3139                 if (assocparams.sasoc_cookie_life != 0)
3140                         asoc->cookie_life = ms_to_ktime(assocparams.sasoc_cookie_life);
3141         } else {
3142                 /* Set the values to the endpoint */
3143                 struct sctp_sock *sp = sctp_sk(sk);
3144
3145                 if (assocparams.sasoc_asocmaxrxt != 0)
3146                         sp->assocparams.sasoc_asocmaxrxt =
3147                                                 assocparams.sasoc_asocmaxrxt;
3148                 if (assocparams.sasoc_cookie_life != 0)
3149                         sp->assocparams.sasoc_cookie_life =
3150                                                 assocparams.sasoc_cookie_life;
3151         }
3152         return 0;
3153 }
3154
3155 /*
3156  * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
3157  *
3158  * This socket option is a boolean flag which turns on or off mapped V4
3159  * addresses.  If this option is turned on and the socket is type
3160  * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
3161  * If this option is turned off, then no mapping will be done of V4
3162  * addresses and a user will receive both PF_INET6 and PF_INET type
3163  * addresses on the socket.
3164  */
3165 static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen)
3166 {
3167         int val;
3168         struct sctp_sock *sp = sctp_sk(sk);
3169
3170         if (optlen < sizeof(int))
3171                 return -EINVAL;
3172         if (get_user(val, (int __user *)optval))
3173                 return -EFAULT;
3174         if (val)
3175                 sp->v4mapped = 1;
3176         else
3177                 sp->v4mapped = 0;
3178
3179         return 0;
3180 }
3181
3182 /*
3183  * 8.1.16.  Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
3184  * This option will get or set the maximum size to put in any outgoing
3185  * SCTP DATA chunk.  If a message is larger than this size it will be
3186  * fragmented by SCTP into the specified size.  Note that the underlying
3187  * SCTP implementation may fragment into smaller sized chunks when the
3188  * PMTU of the underlying association is smaller than the value set by
3189  * the user.  The default value for this option is '0' which indicates
3190  * the user is NOT limiting fragmentation and only the PMTU will effect
3191  * SCTP's choice of DATA chunk size.  Note also that values set larger
3192  * than the maximum size of an IP datagram will effectively let SCTP
3193  * control fragmentation (i.e. the same as setting this option to 0).
3194  *
3195  * The following structure is used to access and modify this parameter:
3196  *
3197  * struct sctp_assoc_value {
3198  *   sctp_assoc_t assoc_id;
3199  *   uint32_t assoc_value;
3200  * };
3201  *
3202  * assoc_id:  This parameter is ignored for one-to-one style sockets.
3203  *    For one-to-many style sockets this parameter indicates which
3204  *    association the user is performing an action upon.  Note that if
3205  *    this field's value is zero then the endpoints default value is
3206  *    changed (effecting future associations only).
3207  * assoc_value:  This parameter specifies the maximum size in bytes.
3208  */
3209 static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen)
3210 {
3211         struct sctp_sock *sp = sctp_sk(sk);
3212         struct sctp_af *af = sp->pf->af;
3213         struct sctp_assoc_value params;
3214         struct sctp_association *asoc;
3215         int val;
3216
3217         if (optlen == sizeof(int)) {
3218                 pr_warn_ratelimited(DEPRECATED
3219                                     "%s (pid %d) "
3220                                     "Use of int in maxseg socket option.\n"
3221                                     "Use struct sctp_assoc_value instead\n",
3222                                     current->comm, task_pid_nr(current));
3223                 if (copy_from_user(&val, optval, optlen))
3224                         return -EFAULT;
3225                 params.assoc_id = 0;
3226         } else if (optlen == sizeof(struct sctp_assoc_value)) {
3227                 if (copy_from_user(&params, optval, optlen))
3228                         return -EFAULT;
3229                 val = params.assoc_value;
3230         } else {
3231                 return -EINVAL;
3232         }
3233
3234         if (val) {
3235                 int min_len, max_len;
3236
3237                 min_len = SCTP_DEFAULT_MINSEGMENT - af->net_header_len;
3238                 min_len -= af->ip_options_len(sk);
3239                 min_len -= sizeof(struct sctphdr) +
3240                            sizeof(struct sctp_data_chunk);
3241
3242                 max_len = SCTP_MAX_CHUNK_LEN - sizeof(struct sctp_data_chunk);
3243
3244                 if (val < min_len || val > max_len)
3245                         return -EINVAL;
3246         }
3247
3248         asoc = sctp_id2assoc(sk, params.assoc_id);
3249         if (asoc) {
3250                 if (val == 0) {
3251                         val = asoc->pathmtu - af->net_header_len;
3252                         val -= af->ip_options_len(sk);
3253                         val -= sizeof(struct sctphdr) +
3254                                sctp_datachk_len(&asoc->stream);
3255                 }
3256                 asoc->user_frag = val;
3257                 asoc->frag_point = sctp_frag_point(asoc, asoc->pathmtu);
3258         } else {
3259                 if (params.assoc_id && sctp_style(sk, UDP))
3260                         return -EINVAL;
3261                 sp->user_frag = val;
3262         }
3263
3264         return 0;
3265 }
3266
3267
3268 /*
3269  *  7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3270  *
3271  *   Requests that the peer mark the enclosed address as the association
3272  *   primary. The enclosed address must be one of the association's
3273  *   locally bound addresses. The following structure is used to make a
3274  *   set primary request:
3275  */
3276 static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
3277                                              unsigned int optlen)
3278 {
3279         struct net *net = sock_net(sk);
3280         struct sctp_sock        *sp;
3281         struct sctp_association *asoc = NULL;
3282         struct sctp_setpeerprim prim;
3283         struct sctp_chunk       *chunk;
3284         struct sctp_af          *af;
3285         int                     err;
3286
3287         sp = sctp_sk(sk);
3288
3289         if (!net->sctp.addip_enable)
3290                 return -EPERM;
3291
3292         if (optlen != sizeof(struct sctp_setpeerprim))
3293                 return -EINVAL;
3294
3295         if (copy_from_user(&prim, optval, optlen))
3296                 return -EFAULT;
3297
3298         asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
3299         if (!asoc)
3300                 return -EINVAL;
3301
3302         if (!asoc->peer.asconf_capable)
3303                 return -EPERM;
3304
3305         if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
3306                 return -EPERM;
3307
3308         if (!sctp_state(asoc, ESTABLISHED))
3309                 return -ENOTCONN;
3310
3311         af = sctp_get_af_specific(prim.sspp_addr.ss_family);
3312         if (!af)
3313                 return -EINVAL;
3314
3315         if (!af->addr_valid((union sctp_addr *)&prim.sspp_addr, sp, NULL))
3316                 return -EADDRNOTAVAIL;
3317
3318         if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
3319                 return -EADDRNOTAVAIL;
3320
3321         /* Allow security module to validate address. */
3322         err = security_sctp_bind_connect(sk, SCTP_SET_PEER_PRIMARY_ADDR,
3323                                          (struct sockaddr *)&prim.sspp_addr,
3324                                          af->sockaddr_len);
3325         if (err)
3326                 return err;
3327
3328         /* Create an ASCONF chunk with SET_PRIMARY parameter    */
3329         chunk = sctp_make_asconf_set_prim(asoc,
3330                                           (union sctp_addr *)&prim.sspp_addr);