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